Patrick Venture | 46470a3 | 2018-09-07 19:26:25 -0700 | [diff] [blame] | 1 | #include "sensorhandler.hpp" |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 2 | |
| 3 | #include "fruread.hpp" |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 4 | |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 5 | #include <mapper.h> |
Chris Austen | 10ccc0f | 2015-12-10 18:27:04 -0600 | [diff] [blame] | 6 | #include <systemd/sd-bus.h> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 7 | |
| 8 | #include <bitset> |
Patrick Venture | 586d35b | 2018-09-07 19:56:18 -0700 | [diff] [blame] | 9 | #include <cmath> |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 10 | #include <cstring> |
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 <set> |
| 18 | #include <xyz/openbmc_project/Common/error.hpp> |
| 19 | #include <xyz/openbmc_project/Sensor/Value/server.hpp> |
| 20 | |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 21 | static constexpr uint8_t fruInventoryDevice = 0x10; |
| 22 | static constexpr uint8_t IPMIFruInventory = 0x02; |
| 23 | static constexpr uint8_t BMCSlaveAddress = 0x20; |
| 24 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 25 | extern int updateSensorRecordFromSSRAESC(const void*); |
| 26 | extern sd_bus* bus; |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 27 | extern const ipmi::sensor::IdInfoMap sensors; |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 28 | extern const FruMap frus; |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 29 | extern const ipmi::sensor::EntityInfoMap entities; |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 30 | |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 31 | using namespace phosphor::logging; |
Dhruvaraj Subhashchandran | 18e9999 | 2017-08-09 09:10:47 -0500 | [diff] [blame] | 32 | using InternalFailure = |
| 33 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 34 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 35 | void register_netfn_sen_functions() __attribute__((constructor)); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 36 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 37 | struct sensorTypemap_t |
| 38 | { |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 39 | uint8_t number; |
Chris Austen | d7cf0e4 | 2015-11-07 14:27:12 -0600 | [diff] [blame] | 40 | uint8_t typecode; |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 41 | char dbusname[32]; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 42 | }; |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 43 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 44 | sensorTypemap_t g_SensorTypeMap[] = { |
| 45 | |
Chris Austen | d7cf0e4 | 2015-11-07 14:27:12 -0600 | [diff] [blame] | 46 | {0x01, 0x6F, "Temp"}, |
| 47 | {0x0C, 0x6F, "DIMM"}, |
| 48 | {0x0C, 0x6F, "MEMORY_BUFFER"}, |
| 49 | {0x07, 0x6F, "PROC"}, |
| 50 | {0x07, 0x6F, "CORE"}, |
| 51 | {0x07, 0x6F, "CPU"}, |
| 52 | {0x0F, 0x6F, "BootProgress"}, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 53 | {0xe9, 0x09, "OccStatus"}, // E9 is an internal mapping to handle sensor |
| 54 | // type code os 0x09 |
Chris Austen | d7cf0e4 | 2015-11-07 14:27:12 -0600 | [diff] [blame] | 55 | {0xC3, 0x6F, "BootCount"}, |
| 56 | {0x1F, 0x6F, "OperatingSystemStatus"}, |
Chris Austen | 800ba71 | 2015-12-03 15:31:00 -0600 | [diff] [blame] | 57 | {0x12, 0x6F, "SYSTEM_EVENT"}, |
| 58 | {0xC7, 0x03, "SYSTEM"}, |
| 59 | {0xC7, 0x03, "MAIN_PLANAR"}, |
Chris Austen | 10ccc0f | 2015-12-10 18:27:04 -0600 | [diff] [blame] | 60 | {0xC2, 0x6F, "PowerCap"}, |
Tom Joseph | 558184e | 2017-09-01 13:45:05 +0530 | [diff] [blame] | 61 | {0x0b, 0xCA, "PowerSupplyRedundancy"}, |
Jayanth Othayoth | 0661beb | 2017-03-22 06:00:58 -0500 | [diff] [blame] | 62 | {0xDA, 0x03, "TurboAllowed"}, |
Tom Joseph | 558184e | 2017-09-01 13:45:05 +0530 | [diff] [blame] | 63 | {0xD8, 0xC8, "PowerSupplyDerating"}, |
Chris Austen | d7cf0e4 | 2015-11-07 14:27:12 -0600 | [diff] [blame] | 64 | {0xFF, 0x00, ""}, |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 65 | }; |
| 66 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 67 | struct sensor_data_t |
| 68 | { |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 69 | uint8_t sennum; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 70 | } __attribute__((packed)); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 71 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 72 | struct sensorreadingresp_t |
| 73 | { |
Chris Austen | 10ccc0f | 2015-12-10 18:27:04 -0600 | [diff] [blame] | 74 | uint8_t value; |
| 75 | uint8_t operation; |
| 76 | uint8_t indication[2]; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 77 | } __attribute__((packed)); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 78 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 79 | int get_bus_for_path(const char* path, char** busname) |
| 80 | { |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 81 | return mapper_get_service(bus, path, busname); |
| 82 | } |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 83 | |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 84 | // Use a lookup table to find the interface name of a specific sensor |
| 85 | // This will be used until an alternative is found. this is the first |
| 86 | // step for mapping IPMI |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 87 | int find_openbmc_path(uint8_t num, dbus_interface_t* interface) |
| 88 | { |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 89 | int rc; |
| 90 | |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 91 | const auto& sensor_it = sensors.find(num); |
| 92 | if (sensor_it == sensors.end()) |
| 93 | { |
Adriana Kobylak | ba23ff7 | 2018-09-12 12:58:43 -0500 | [diff] [blame] | 94 | // The sensor map does not contain the sensor requested |
| 95 | return -EINVAL; |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | const auto& info = sensor_it->second; |
| 99 | |
Patrick Williams | 8451edf | 2017-06-13 09:01:06 -0500 | [diff] [blame] | 100 | char* busname = nullptr; |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 101 | rc = get_bus_for_path(info.sensorPath.c_str(), &busname); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 102 | if (rc < 0) |
| 103 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 104 | std::fprintf(stderr, "Failed to get %s busname: %s\n", |
| 105 | info.sensorPath.c_str(), busname); |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 106 | goto final; |
| 107 | } |
| 108 | |
| 109 | interface->sensortype = info.sensorType; |
| 110 | strcpy(interface->bus, busname); |
| 111 | strcpy(interface->path, info.sensorPath.c_str()); |
| 112 | // Take the interface name from the beginning of the DbusInterfaceMap. This |
| 113 | // works for the Value interface but may not suffice for more complex |
| 114 | // sensors. |
| 115 | // tracked https://github.com/openbmc/phosphor-host-ipmid/issues/103 |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 116 | strcpy(interface->interface, |
| 117 | info.propertyInterfaces.begin()->first.c_str()); |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 118 | interface->sensornumber = num; |
| 119 | |
| 120 | final: |
| 121 | free(busname); |
| 122 | return rc; |
| 123 | } |
| 124 | |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 125 | ///////////////////////////////////////////////////////////////////// |
| 126 | // |
| 127 | // Routines used by ipmi commands wanting to interact on the dbus |
| 128 | // |
| 129 | ///////////////////////////////////////////////////////////////////// |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 130 | int set_sensor_dbus_state_s(uint8_t number, const char* method, |
| 131 | const char* value) |
| 132 | { |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 133 | |
| 134 | dbus_interface_t a; |
| 135 | int r; |
| 136 | sd_bus_error error = SD_BUS_ERROR_NULL; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 137 | sd_bus_message* m = NULL; |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 138 | |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 139 | r = find_openbmc_path(number, &a); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 140 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 141 | if (r < 0) |
| 142 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 143 | std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 144 | return 0; |
| 145 | } |
| 146 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 147 | r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface, |
| 148 | method); |
| 149 | if (r < 0) |
| 150 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 151 | std::fprintf(stderr, "Failed to create a method call: %s", |
| 152 | strerror(-r)); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 153 | goto final; |
| 154 | } |
| 155 | |
| 156 | r = sd_bus_message_append(m, "v", "s", value); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 157 | if (r < 0) |
| 158 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 159 | std::fprintf(stderr, "Failed to create a input parameter: %s", |
| 160 | strerror(-r)); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 161 | goto final; |
| 162 | } |
| 163 | |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 164 | r = sd_bus_call(bus, m, 0, &error, NULL); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 165 | if (r < 0) |
| 166 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 167 | std::fprintf(stderr, "Failed to call the method: %s", strerror(-r)); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | final: |
| 171 | sd_bus_error_free(&error); |
| 172 | m = sd_bus_message_unref(m); |
| 173 | |
| 174 | return 0; |
| 175 | } |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 176 | int set_sensor_dbus_state_y(uint8_t number, const char* method, |
| 177 | const uint8_t value) |
| 178 | { |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 179 | |
| 180 | dbus_interface_t a; |
| 181 | int r; |
| 182 | sd_bus_error error = SD_BUS_ERROR_NULL; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 183 | sd_bus_message* m = NULL; |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 184 | |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 185 | r = find_openbmc_path(number, &a); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 186 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 187 | if (r < 0) |
| 188 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 189 | std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 190 | return 0; |
| 191 | } |
| 192 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 193 | r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface, |
| 194 | method); |
| 195 | if (r < 0) |
| 196 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 197 | std::fprintf(stderr, "Failed to create a method call: %s", |
| 198 | strerror(-r)); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 199 | goto final; |
| 200 | } |
| 201 | |
| 202 | r = sd_bus_message_append(m, "v", "i", value); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 203 | if (r < 0) |
| 204 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 205 | std::fprintf(stderr, "Failed to create a input parameter: %s", |
| 206 | strerror(-r)); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 207 | goto final; |
| 208 | } |
| 209 | |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 210 | r = sd_bus_call(bus, m, 0, &error, NULL); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 211 | if (r < 0) |
| 212 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 213 | std::fprintf(stderr, "12 Failed to call the method: %s", strerror(-r)); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | final: |
| 217 | sd_bus_error_free(&error); |
| 218 | m = sd_bus_message_unref(m); |
| 219 | |
| 220 | return 0; |
| 221 | } |
| 222 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 223 | uint8_t dbus_to_sensor_type(char* p) |
| 224 | { |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 225 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 226 | sensorTypemap_t* s = g_SensorTypeMap; |
| 227 | char r = 0; |
| 228 | while (s->number != 0xFF) |
| 229 | { |
| 230 | if (!strcmp(s->dbusname, p)) |
| 231 | { |
Tom Joseph | 558184e | 2017-09-01 13:45:05 +0530 | [diff] [blame] | 232 | r = s->typecode; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 233 | break; |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 234 | } |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 235 | s++; |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 236 | } |
| 237 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 238 | if (s->number == 0xFF) |
| 239 | printf("Failed to find Sensor Type %s\n", p); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 240 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 241 | return r; |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 242 | } |
| 243 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 244 | uint8_t get_type_from_interface(dbus_interface_t dbus_if) |
| 245 | { |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 246 | |
Brad Bishop | 5600345 | 2016-10-05 21:49:19 -0400 | [diff] [blame] | 247 | uint8_t type; |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 248 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 249 | // This is where sensors that do not exist in dbus but do |
| 250 | // exist in the host code stop. This should indicate it |
| 251 | // is not a supported sensor |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 252 | if (dbus_if.interface[0] == 0) |
| 253 | { |
| 254 | return 0; |
| 255 | } |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 256 | |
Emily Shaffer | 7117441 | 2017-04-05 15:10:40 -0700 | [diff] [blame] | 257 | // Fetch type from interface itself. |
| 258 | if (dbus_if.sensortype != 0) |
| 259 | { |
| 260 | type = dbus_if.sensortype; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 261 | } |
| 262 | else |
| 263 | { |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 264 | // Non InventoryItems |
Patrick Venture | 4491a46 | 2018-10-13 13:00:42 -0700 | [diff] [blame] | 265 | char* p = strrchr(dbus_if.path, '/'); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 266 | type = dbus_to_sensor_type(p + 1); |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 267 | } |
| 268 | |
Brad Bishop | 5600345 | 2016-10-05 21:49:19 -0400 | [diff] [blame] | 269 | return type; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 270 | } |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 271 | |
Emily Shaffer | 391f330 | 2017-04-03 10:27:08 -0700 | [diff] [blame] | 272 | // Replaces find_sensor |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 273 | uint8_t find_type_for_sensor_number(uint8_t num) |
| 274 | { |
Emily Shaffer | 391f330 | 2017-04-03 10:27:08 -0700 | [diff] [blame] | 275 | int r; |
| 276 | dbus_interface_t dbus_if; |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 277 | r = find_openbmc_path(num, &dbus_if); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 278 | if (r < 0) |
| 279 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 280 | std::fprintf(stderr, "Could not find sensor %d\n", num); |
Lei YU | 91875f7 | 2018-04-03 15:14:49 +0800 | [diff] [blame] | 281 | return 0; |
Emily Shaffer | 391f330 | 2017-04-03 10:27:08 -0700 | [diff] [blame] | 282 | } |
| 283 | return get_type_from_interface(dbus_if); |
| 284 | } |
| 285 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 286 | ipmi_ret_t ipmi_sen_get_sensor_type(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 287 | ipmi_request_t request, |
| 288 | ipmi_response_t response, |
| 289 | ipmi_data_len_t data_len, |
| 290 | ipmi_context_t context) |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 291 | { |
Patrick Venture | d99148b | 2018-10-13 10:06:13 -0700 | [diff] [blame] | 292 | auto reqptr = static_cast<sensor_data_t*>(request); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 293 | ipmi_ret_t rc = IPMI_CC_OK; |
| 294 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 295 | printf("IPMI GET_SENSOR_TYPE [0x%02X]\n", reqptr->sennum); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 296 | |
| 297 | // TODO Not sure what the System-event-sensor is suppose to return |
| 298 | // need to ask Hostboot team |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 299 | unsigned char buf[] = {0x00, 0x6F}; |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 300 | |
Emily Shaffer | 391f330 | 2017-04-03 10:27:08 -0700 | [diff] [blame] | 301 | buf[0] = find_type_for_sensor_number(reqptr->sennum); |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 302 | |
| 303 | // HACK UNTIL Dbus gets updated or we find a better way |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 304 | if (buf[0] == 0) |
| 305 | { |
Chris Austen | 800ba71 | 2015-12-03 15:31:00 -0600 | [diff] [blame] | 306 | rc = IPMI_CC_SENSOR_INVALID; |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 307 | } |
| 308 | |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 309 | *data_len = sizeof(buf); |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 310 | std::memcpy(response, &buf, *data_len); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 311 | |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 312 | return rc; |
| 313 | } |
| 314 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 315 | const std::set<std::string> analogSensorInterfaces = { |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 316 | "xyz.openbmc_project.Sensor.Value", |
Patrick Venture | e9a6405 | 2017-08-18 19:17:27 -0700 | [diff] [blame] | 317 | "xyz.openbmc_project.Control.FanPwm", |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 318 | }; |
| 319 | |
| 320 | bool isAnalogSensor(const std::string& interface) |
| 321 | { |
| 322 | return (analogSensorInterfaces.count(interface)); |
| 323 | } |
| 324 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 325 | ipmi_ret_t setSensorReading(void* request) |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 326 | { |
Tom Joseph | 816e92b | 2017-09-06 19:23:00 +0530 | [diff] [blame] | 327 | ipmi::sensor::SetSensorReadingReq cmdData = |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 328 | *(static_cast<ipmi::sensor::SetSensorReadingReq*>(request)); |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 329 | |
| 330 | // Check if the Sensor Number is present |
Dhruvaraj Subhashchandran | e0af720 | 2017-07-12 06:35:20 -0500 | [diff] [blame] | 331 | const auto iter = sensors.find(cmdData.number); |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 332 | if (iter == sensors.end()) |
| 333 | { |
| 334 | return IPMI_CC_SENSOR_INVALID; |
| 335 | } |
| 336 | |
Dhruvaraj Subhashchandran | 18e9999 | 2017-08-09 09:10:47 -0500 | [diff] [blame] | 337 | try |
| 338 | { |
Jayanth Othayoth | 0922bde | 2018-04-02 07:59:34 -0500 | [diff] [blame] | 339 | if (ipmi::sensor::Mutability::Write != |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 340 | (iter->second.mutability & ipmi::sensor::Mutability::Write)) |
Jayanth Othayoth | 0922bde | 2018-04-02 07:59:34 -0500 | [diff] [blame] | 341 | { |
| 342 | log<level::ERR>("Sensor Set operation is not allowed", |
| 343 | entry("SENSOR_NUM=%d", cmdData.number)); |
| 344 | return IPMI_CC_ILLEGAL_COMMAND; |
| 345 | } |
Dhruvaraj Subhashchandran | 18e9999 | 2017-08-09 09:10:47 -0500 | [diff] [blame] | 346 | return iter->second.updateFunc(cmdData, iter->second); |
| 347 | } |
| 348 | catch (InternalFailure& e) |
| 349 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 350 | log<level::ERR>("Set sensor failed", |
| 351 | entry("SENSOR_NUM=%d", cmdData.number)); |
| 352 | commit<InternalFailure>(); |
Dhruvaraj Subhashchandran | 18e9999 | 2017-08-09 09:10:47 -0500 | [diff] [blame] | 353 | } |
Tom Joseph | 8202432 | 2017-09-28 20:07:29 +0530 | [diff] [blame] | 354 | catch (const std::runtime_error& e) |
| 355 | { |
| 356 | log<level::ERR>(e.what()); |
| 357 | } |
Dhruvaraj Subhashchandran | 18e9999 | 2017-08-09 09:10:47 -0500 | [diff] [blame] | 358 | |
| 359 | return IPMI_CC_UNSPECIFIED_ERROR; |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 360 | } |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 361 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 362 | ipmi_ret_t ipmi_sen_set_sensor(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 363 | ipmi_request_t request, ipmi_response_t response, |
| 364 | ipmi_data_len_t data_len, ipmi_context_t context) |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 365 | { |
Patrick Venture | d99148b | 2018-10-13 10:06:13 -0700 | [diff] [blame] | 366 | auto reqptr = static_cast<sensor_data_t*>(request); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 367 | |
Aditya Saripalli | 5fb1460 | 2017-11-09 14:46:27 +0530 | [diff] [blame] | 368 | log<level::DEBUG>("IPMI SET_SENSOR", |
| 369 | entry("SENSOR_NUM=0x%02x", reqptr->sennum)); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 370 | |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 371 | /* |
| 372 | * This would support the Set Sensor Reading command for the presence |
| 373 | * and functional state of Processor, Core & DIMM. For the remaining |
| 374 | * sensors the existing support is invoked. |
| 375 | */ |
| 376 | auto ipmiRC = setSensorReading(request); |
| 377 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 378 | if (ipmiRC == IPMI_CC_SENSOR_INVALID) |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 379 | { |
| 380 | updateSensorRecordFromSSRAESC(reqptr); |
| 381 | ipmiRC = IPMI_CC_OK; |
| 382 | } |
Chris Austen | 8a45e7c | 2015-10-15 00:31:46 -0500 | [diff] [blame] | 383 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 384 | *data_len = 0; |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 385 | return ipmiRC; |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 386 | } |
| 387 | |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 388 | ipmi_ret_t ipmi_sen_get_sensor_reading(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 389 | ipmi_request_t request, |
| 390 | ipmi_response_t response, |
| 391 | ipmi_data_len_t data_len, |
| 392 | ipmi_context_t context) |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 393 | { |
Patrick Venture | d99148b | 2018-10-13 10:06:13 -0700 | [diff] [blame] | 394 | auto reqptr = static_cast<sensor_data_t*>(request); |
| 395 | auto resp = static_cast<sensorreadingresp_t*>(response); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 396 | ipmi::sensor::GetSensorResponse getResponse{}; |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 397 | static constexpr auto scanningEnabledBit = 6; |
| 398 | |
| 399 | const auto iter = sensors.find(reqptr->sennum); |
| 400 | if (iter == sensors.end()) |
| 401 | { |
Adriana Kobylak | ba23ff7 | 2018-09-12 12:58:43 -0500 | [diff] [blame] | 402 | return IPMI_CC_SENSOR_INVALID; |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 403 | } |
| 404 | if (ipmi::sensor::Mutability::Read != |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 405 | (iter->second.mutability & ipmi::sensor::Mutability::Read)) |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 406 | { |
Jayanth Othayoth | 6ccf881 | 2018-04-05 22:58:48 -0500 | [diff] [blame] | 407 | return IPMI_CC_ILLEGAL_COMMAND; |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | try |
| 411 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 412 | getResponse = iter->second.getFunc(iter->second); |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 413 | *data_len = getResponse.size(); |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 414 | std::memcpy(resp, getResponse.data(), *data_len); |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 415 | resp->operation = 1 << scanningEnabledBit; |
| 416 | return IPMI_CC_OK; |
| 417 | } |
| 418 | catch (const std::exception& e) |
| 419 | { |
| 420 | *data_len = getResponse.size(); |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 421 | std::memcpy(resp, getResponse.data(), *data_len); |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 422 | return IPMI_CC_OK; |
| 423 | } |
| 424 | } |
| 425 | |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 426 | void getSensorThresholds(uint8_t sensorNum, |
| 427 | get_sdr::GetSensorThresholdsResponse* response) |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 428 | { |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 429 | constexpr auto warningThreshIntf = |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 430 | "xyz.openbmc_project.Sensor.Threshold.Warning"; |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 431 | constexpr auto criticalThreshIntf = |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 432 | "xyz.openbmc_project.Sensor.Threshold.Critical"; |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 433 | |
| 434 | sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()}; |
| 435 | |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 436 | const auto iter = sensors.find(sensorNum); |
| 437 | const auto info = iter->second; |
| 438 | |
| 439 | auto service = ipmi::getService(bus, info.sensorInterface, info.sensorPath); |
| 440 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 441 | auto warnThresholds = ipmi::getAllDbusProperties( |
| 442 | bus, service, info.sensorPath, warningThreshIntf); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 443 | |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 444 | double warnLow = std::visit(ipmi::VariantToDoubleVisitor(), |
| 445 | warnThresholds["WarningLow"]); |
| 446 | double warnHigh = std::visit(ipmi::VariantToDoubleVisitor(), |
| 447 | warnThresholds["WarningHigh"]); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 448 | |
| 449 | if (warnLow != 0) |
| 450 | { |
Patrick Venture | 586d35b | 2018-09-07 19:56:18 -0700 | [diff] [blame] | 451 | warnLow *= std::pow(10, info.scale - info.exponentR); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 452 | response->lowerNonCritical = static_cast<uint8_t>( |
| 453 | (warnLow - info.scaledOffset) / info.coefficientM); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 454 | response->validMask |= static_cast<uint8_t>( |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 455 | ipmi::sensor::ThresholdMask::NON_CRITICAL_LOW_MASK); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | if (warnHigh != 0) |
| 459 | { |
Patrick Venture | 586d35b | 2018-09-07 19:56:18 -0700 | [diff] [blame] | 460 | warnHigh *= std::pow(10, info.scale - info.exponentR); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 461 | response->upperNonCritical = static_cast<uint8_t>( |
| 462 | (warnHigh - info.scaledOffset) / info.coefficientM); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 463 | response->validMask |= static_cast<uint8_t>( |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 464 | ipmi::sensor::ThresholdMask::NON_CRITICAL_HIGH_MASK); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 465 | } |
| 466 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 467 | auto critThresholds = ipmi::getAllDbusProperties( |
| 468 | bus, service, info.sensorPath, criticalThreshIntf); |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 469 | double critLow = std::visit(ipmi::VariantToDoubleVisitor(), |
| 470 | critThresholds["CriticalLow"]); |
| 471 | double critHigh = std::visit(ipmi::VariantToDoubleVisitor(), |
| 472 | critThresholds["CriticalHigh"]); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 473 | |
| 474 | if (critLow != 0) |
| 475 | { |
Patrick Venture | 586d35b | 2018-09-07 19:56:18 -0700 | [diff] [blame] | 476 | critLow *= std::pow(10, info.scale - info.exponentR); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 477 | response->lowerCritical = static_cast<uint8_t>( |
| 478 | (critLow - info.scaledOffset) / info.coefficientM); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 479 | response->validMask |= static_cast<uint8_t>( |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 480 | ipmi::sensor::ThresholdMask::CRITICAL_LOW_MASK); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | if (critHigh != 0) |
| 484 | { |
Patrick Venture | 586d35b | 2018-09-07 19:56:18 -0700 | [diff] [blame] | 485 | critHigh *= std::pow(10, info.scale - info.exponentR); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 486 | response->upperCritical = static_cast<uint8_t>( |
| 487 | (critHigh - info.scaledOffset) / info.coefficientM); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 488 | response->validMask |= static_cast<uint8_t>( |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 489 | ipmi::sensor::ThresholdMask::CRITICAL_HIGH_MASK); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 490 | } |
| 491 | } |
| 492 | |
| 493 | ipmi_ret_t ipmi_sen_get_sensor_thresholds(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 494 | ipmi_request_t request, |
| 495 | ipmi_response_t response, |
| 496 | ipmi_data_len_t data_len, |
| 497 | ipmi_context_t context) |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 498 | { |
| 499 | constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value"; |
| 500 | |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 501 | if (*data_len != sizeof(uint8_t)) |
| 502 | { |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 503 | *data_len = 0; |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 504 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 505 | } |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 506 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 507 | auto sensorNum = *(reinterpret_cast<const uint8_t*>(request)); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 508 | *data_len = 0; |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 509 | |
| 510 | const auto iter = sensors.find(sensorNum); |
| 511 | if (iter == sensors.end()) |
| 512 | { |
| 513 | return IPMI_CC_SENSOR_INVALID; |
| 514 | } |
| 515 | |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 516 | const auto info = iter->second; |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 517 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 518 | // Proceed only if the sensor value interface is implemented. |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 519 | if (info.propertyInterfaces.find(valueInterface) == |
| 520 | info.propertyInterfaces.end()) |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 521 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 522 | // return with valid mask as 0 |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 523 | return IPMI_CC_OK; |
| 524 | } |
| 525 | |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 526 | auto responseData = |
| 527 | reinterpret_cast<get_sdr::GetSensorThresholdsResponse*>(response); |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 528 | |
| 529 | try |
| 530 | { |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 531 | getSensorThresholds(sensorNum, responseData); |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 532 | } |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 533 | catch (std::exception& e) |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 534 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 535 | // Mask if the property is not present |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 536 | responseData->validMask = 0; |
| 537 | } |
| 538 | |
| 539 | *data_len = sizeof(get_sdr::GetSensorThresholdsResponse); |
| 540 | return IPMI_CC_OK; |
| 541 | } |
| 542 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 543 | ipmi_ret_t ipmi_sen_wildcard(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 544 | ipmi_request_t request, ipmi_response_t response, |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 545 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 546 | { |
Nan Li | 70aa8d9 | 2016-08-29 00:11:10 +0800 | [diff] [blame] | 547 | ipmi_ret_t rc = IPMI_CC_INVALID; |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 548 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 549 | printf("IPMI S/E Wildcard Netfn:[0x%X], Cmd:[0x%X]\n", netfn, cmd); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 550 | *data_len = 0; |
| 551 | |
| 552 | return rc; |
| 553 | } |
| 554 | |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame^] | 555 | /** @brief implements the get SDR Info command |
| 556 | * @param count - Operation |
| 557 | * |
| 558 | * @returns IPMI completion code plus response data |
| 559 | * - sdrCount - sensor/SDR count |
| 560 | * - lunsAndDynamicPopulation - static/Dynamic sensor population flag |
| 561 | */ |
| 562 | ipmi::RspType<uint8_t, // respcount |
| 563 | uint8_t // dynamic population flags |
| 564 | > |
| 565 | ipmiSensorGetDeviceSdrInfo(std::optional<uint8_t> count) |
Emily Shaffer | d06e0e7 | 2017-04-05 09:08:57 -0700 | [diff] [blame] | 566 | { |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame^] | 567 | uint8_t sdrCount; |
| 568 | // multiple LUNs not supported. |
| 569 | constexpr uint8_t lunsAndDynamicPopulation = 1; |
| 570 | constexpr uint8_t getSdrCount = 0x01; |
| 571 | constexpr uint8_t getSensorCount = 0x00; |
| 572 | |
| 573 | if (count.value_or(0) == getSdrCount) |
Emily Shaffer | d06e0e7 | 2017-04-05 09:08:57 -0700 | [diff] [blame] | 574 | { |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame^] | 575 | // Get SDR count. This returns the total number of SDRs in the device. |
| 576 | sdrCount = sensors.size() + frus.size() + entities.size(); |
| 577 | } |
| 578 | else if (count.value_or(0) == getSensorCount) |
| 579 | { |
| 580 | // Get Sensor count. This returns the number of sensors |
| 581 | sdrCount = sensors.size(); |
Emily Shaffer | d06e0e7 | 2017-04-05 09:08:57 -0700 | [diff] [blame] | 582 | } |
| 583 | else |
| 584 | { |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame^] | 585 | return ipmi::responseInvalidCommandOnLun(); |
Emily Shaffer | d06e0e7 | 2017-04-05 09:08:57 -0700 | [diff] [blame] | 586 | } |
| 587 | |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame^] | 588 | return ipmi::responseSuccess(sdrCount, lunsAndDynamicPopulation); |
Emily Shaffer | d06e0e7 | 2017-04-05 09:08:57 -0700 | [diff] [blame] | 589 | } |
| 590 | |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame^] | 591 | /** @brief implements the reserve SDR command |
| 592 | * @returns IPMI completion code plus response data |
| 593 | * - reservationID - reservation ID |
| 594 | */ |
| 595 | ipmi::RspType<uint16_t> ipmiSensorReserveSdr() |
Emily Shaffer | a344afc | 2017-04-13 15:09:39 -0700 | [diff] [blame] | 596 | { |
| 597 | // A constant reservation ID is okay until we implement add/remove SDR. |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame^] | 598 | constexpr uint16_t reservationID = 1; |
Emily Shaffer | a344afc | 2017-04-13 15:09:39 -0700 | [diff] [blame] | 599 | |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame^] | 600 | return ipmi::responseSuccess(reservationID); |
Emily Shaffer | a344afc | 2017-04-13 15:09:39 -0700 | [diff] [blame] | 601 | } |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 602 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 603 | void setUnitFieldsForObject(const ipmi::sensor::Info* info, |
| 604 | get_sdr::SensorDataFullRecordBody* body) |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 605 | { |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 606 | namespace server = sdbusplus::xyz::openbmc_project::Sensor::server; |
| 607 | try |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 608 | { |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 609 | auto unit = server::Value::convertUnitFromString(info->unit); |
| 610 | // Unit strings defined in |
| 611 | // phosphor-dbus-interfaces/xyz/openbmc_project/Sensor/Value.interface.yaml |
| 612 | switch (unit) |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 613 | { |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 614 | case server::Value::Unit::DegreesC: |
| 615 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_DEGREES_C; |
| 616 | break; |
| 617 | case server::Value::Unit::RPMS: |
Kirill Pakhomov | 812e44c | 2018-10-22 16:25:35 +0300 | [diff] [blame] | 618 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_RPM; |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 619 | break; |
| 620 | case server::Value::Unit::Volts: |
| 621 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_VOLTS; |
| 622 | break; |
| 623 | case server::Value::Unit::Meters: |
| 624 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_METERS; |
| 625 | break; |
| 626 | case server::Value::Unit::Amperes: |
| 627 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_AMPERES; |
| 628 | break; |
| 629 | case server::Value::Unit::Joules: |
| 630 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_JOULES; |
| 631 | break; |
| 632 | case server::Value::Unit::Watts: |
| 633 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_WATTS; |
| 634 | break; |
| 635 | default: |
| 636 | // Cannot be hit. |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 637 | std::fprintf(stderr, "Unknown value unit type: = %s\n", |
| 638 | info->unit.c_str()); |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 639 | } |
| 640 | } |
Patrick Venture | 64678b8 | 2018-10-13 13:11:32 -0700 | [diff] [blame] | 641 | catch (const sdbusplus::exception::InvalidEnumString& e) |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 642 | { |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 643 | log<level::WARNING>("Warning: no unit provided for sensor!"); |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 644 | } |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 645 | } |
| 646 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 647 | ipmi_ret_t populate_record_from_dbus(get_sdr::SensorDataFullRecordBody* body, |
| 648 | const ipmi::sensor::Info* info, |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 649 | ipmi_data_len_t data_len) |
| 650 | { |
| 651 | /* Functional sensor case */ |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 652 | if (isAnalogSensor(info->propertyInterfaces.begin()->first)) |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 653 | { |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 654 | |
| 655 | body->sensor_units_1 = 0; // unsigned, no rate, no modifier, not a % |
| 656 | |
| 657 | /* Unit info */ |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 658 | setUnitFieldsForObject(info, body); |
Emily Shaffer | 10f4959 | 2017-05-10 12:01:10 -0700 | [diff] [blame] | 659 | |
| 660 | get_sdr::body::set_b(info->coefficientB, body); |
| 661 | get_sdr::body::set_m(info->coefficientM, body); |
| 662 | get_sdr::body::set_b_exp(info->exponentB, body); |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 663 | get_sdr::body::set_r_exp(info->exponentR, body); |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 664 | |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 665 | get_sdr::body::set_id_type(0b00, body); // 00 = unicode |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 666 | } |
| 667 | |
Tom Joseph | 9642391 | 2018-01-25 00:14:34 +0530 | [diff] [blame] | 668 | /* ID string */ |
| 669 | auto id_string = info->sensorNameFunc(*info); |
| 670 | |
| 671 | if (id_string.length() > FULL_RECORD_ID_STR_MAX_LENGTH) |
| 672 | { |
| 673 | get_sdr::body::set_id_strlen(FULL_RECORD_ID_STR_MAX_LENGTH, body); |
| 674 | } |
| 675 | else |
| 676 | { |
| 677 | get_sdr::body::set_id_strlen(id_string.length(), body); |
| 678 | } |
| 679 | strncpy(body->id_string, id_string.c_str(), |
| 680 | get_sdr::body::get_id_strlen(body)); |
| 681 | |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 682 | return IPMI_CC_OK; |
| 683 | }; |
| 684 | |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 685 | ipmi_ret_t ipmi_fru_get_sdr(ipmi_request_t request, ipmi_response_t response, |
| 686 | ipmi_data_len_t data_len) |
| 687 | { |
| 688 | auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request); |
| 689 | auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 690 | get_sdr::SensorDataFruRecord record{}; |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 691 | auto dataLength = 0; |
| 692 | |
| 693 | auto fru = frus.begin(); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 694 | uint8_t fruID{}; |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 695 | auto recordID = get_sdr::request::get_record_id(req); |
| 696 | |
| 697 | fruID = recordID - FRU_RECORD_ID_START; |
| 698 | fru = frus.find(fruID); |
| 699 | if (fru == frus.end()) |
| 700 | { |
| 701 | return IPMI_CC_SENSOR_INVALID; |
| 702 | } |
| 703 | |
| 704 | /* Header */ |
| 705 | get_sdr::header::set_record_id(recordID, &(record.header)); |
| 706 | record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1 |
| 707 | record.header.record_type = get_sdr::SENSOR_DATA_FRU_RECORD; |
| 708 | record.header.record_length = sizeof(record.key) + sizeof(record.body); |
| 709 | |
| 710 | /* Key */ |
| 711 | record.key.fruID = fruID; |
| 712 | record.key.accessLun |= IPMI_LOGICAL_FRU; |
| 713 | record.key.deviceAddress = BMCSlaveAddress; |
| 714 | |
| 715 | /* Body */ |
| 716 | record.body.entityID = fru->second[0].entityID; |
| 717 | record.body.entityInstance = fru->second[0].entityInstance; |
| 718 | record.body.deviceType = fruInventoryDevice; |
| 719 | record.body.deviceTypeModifier = IPMIFruInventory; |
| 720 | |
| 721 | /* Device ID string */ |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 722 | auto deviceID = |
| 723 | fru->second[0].path.substr(fru->second[0].path.find_last_of('/') + 1, |
| 724 | fru->second[0].path.length()); |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 725 | |
| 726 | if (deviceID.length() > get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH) |
| 727 | { |
| 728 | get_sdr::body::set_device_id_strlen( |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 729 | get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH, &(record.body)); |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 730 | } |
| 731 | else |
| 732 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 733 | get_sdr::body::set_device_id_strlen(deviceID.length(), &(record.body)); |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 734 | } |
| 735 | |
| 736 | strncpy(record.body.deviceID, deviceID.c_str(), |
| 737 | get_sdr::body::get_device_id_strlen(&(record.body))); |
| 738 | |
| 739 | if (++fru == frus.end()) |
| 740 | { |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 741 | // we have reached till end of fru, so assign the next record id to |
| 742 | // 512(Max fru ID = 511) + Entity Record ID(may start with 0). |
| 743 | auto next_record_id = |
| 744 | (entities.size()) ? entities.begin()->first + ENTITY_RECORD_ID_START |
| 745 | : END_OF_RECORD; |
| 746 | get_sdr::response::set_next_record_id(next_record_id, resp); |
| 747 | } |
| 748 | else |
| 749 | { |
| 750 | get_sdr::response::set_next_record_id( |
| 751 | (FRU_RECORD_ID_START + fru->first), resp); |
| 752 | } |
| 753 | |
| 754 | // Check for invalid offset size |
| 755 | if (req->offset > sizeof(record)) |
| 756 | { |
| 757 | return IPMI_CC_PARM_OUT_OF_RANGE; |
| 758 | } |
| 759 | |
| 760 | dataLength = std::min(static_cast<size_t>(req->bytes_to_read), |
| 761 | sizeof(record) - req->offset); |
| 762 | |
| 763 | std::memcpy(resp->record_data, |
| 764 | reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength); |
| 765 | |
| 766 | *data_len = dataLength; |
| 767 | *data_len += 2; // additional 2 bytes for next record ID |
| 768 | |
| 769 | return IPMI_CC_OK; |
| 770 | } |
| 771 | |
| 772 | ipmi_ret_t ipmi_entity_get_sdr(ipmi_request_t request, ipmi_response_t response, |
| 773 | ipmi_data_len_t data_len) |
| 774 | { |
| 775 | auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request); |
| 776 | auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response); |
| 777 | get_sdr::SensorDataEntityRecord record{}; |
| 778 | auto dataLength = 0; |
| 779 | |
| 780 | auto entity = entities.begin(); |
| 781 | uint8_t entityRecordID; |
| 782 | auto recordID = get_sdr::request::get_record_id(req); |
| 783 | |
| 784 | entityRecordID = recordID - ENTITY_RECORD_ID_START; |
| 785 | entity = entities.find(entityRecordID); |
| 786 | if (entity == entities.end()) |
| 787 | { |
| 788 | return IPMI_CC_SENSOR_INVALID; |
| 789 | } |
| 790 | |
| 791 | /* Header */ |
| 792 | get_sdr::header::set_record_id(recordID, &(record.header)); |
| 793 | record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1 |
| 794 | record.header.record_type = get_sdr::SENSOR_DATA_ENTITY_RECORD; |
| 795 | record.header.record_length = sizeof(record.key) + sizeof(record.body); |
| 796 | |
| 797 | /* Key */ |
| 798 | record.key.containerEntityId = entity->second.containerEntityId; |
| 799 | record.key.containerEntityInstance = entity->second.containerEntityInstance; |
| 800 | get_sdr::key::set_flags(entity->second.isList, entity->second.isLinked, |
| 801 | &(record.key)); |
| 802 | record.key.entityId1 = entity->second.containedEntities[0].first; |
| 803 | record.key.entityInstance1 = entity->second.containedEntities[0].second; |
| 804 | |
| 805 | /* Body */ |
| 806 | record.body.entityId2 = entity->second.containedEntities[1].first; |
| 807 | record.body.entityInstance2 = entity->second.containedEntities[1].second; |
| 808 | record.body.entityId3 = entity->second.containedEntities[2].first; |
| 809 | record.body.entityInstance3 = entity->second.containedEntities[2].second; |
| 810 | record.body.entityId4 = entity->second.containedEntities[3].first; |
| 811 | record.body.entityInstance4 = entity->second.containedEntities[3].second; |
| 812 | |
| 813 | if (++entity == entities.end()) |
| 814 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 815 | get_sdr::response::set_next_record_id(END_OF_RECORD, |
| 816 | resp); // last record |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 817 | } |
| 818 | else |
| 819 | { |
| 820 | get_sdr::response::set_next_record_id( |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 821 | (ENTITY_RECORD_ID_START + entity->first), resp); |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 822 | } |
| 823 | |
Emily Shaffer | 0fbdbce | 2018-09-27 09:30:41 -0700 | [diff] [blame] | 824 | // Check for invalid offset size |
| 825 | if (req->offset > sizeof(record)) |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 826 | { |
Emily Shaffer | 0fbdbce | 2018-09-27 09:30:41 -0700 | [diff] [blame] | 827 | return IPMI_CC_PARM_OUT_OF_RANGE; |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 828 | } |
| 829 | |
Emily Shaffer | 0fbdbce | 2018-09-27 09:30:41 -0700 | [diff] [blame] | 830 | dataLength = std::min(static_cast<size_t>(req->bytes_to_read), |
| 831 | sizeof(record) - req->offset); |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 832 | |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 833 | std::memcpy(resp->record_data, |
Jason M. Bills | 1cd8596 | 2018-10-05 12:04:01 -0700 | [diff] [blame] | 834 | reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength); |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 835 | |
| 836 | *data_len = dataLength; |
| 837 | *data_len += 2; // additional 2 bytes for next record ID |
| 838 | |
| 839 | return IPMI_CC_OK; |
| 840 | } |
| 841 | |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 842 | ipmi_ret_t ipmi_sen_get_sdr(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 843 | ipmi_request_t request, ipmi_response_t response, |
| 844 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 845 | { |
| 846 | ipmi_ret_t ret = IPMI_CC_OK; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 847 | get_sdr::GetSdrReq* req = (get_sdr::GetSdrReq*)request; |
| 848 | get_sdr::GetSdrResp* resp = (get_sdr::GetSdrResp*)response; |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 849 | get_sdr::SensorDataFullRecord record = {0}; |
| 850 | if (req != NULL) |
| 851 | { |
| 852 | // Note: we use an iterator so we can provide the next ID at the end of |
| 853 | // the call. |
| 854 | auto sensor = sensors.begin(); |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 855 | auto recordID = get_sdr::request::get_record_id(req); |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 856 | |
| 857 | // At the beginning of a scan, the host side will send us id=0. |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 858 | if (recordID != 0) |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 859 | { |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 860 | // recordID 0 to 255 means it is a FULL record. |
| 861 | // recordID 256 to 511 means it is a FRU record. |
| 862 | // recordID greater then 511 means it is a Entity Association |
| 863 | // record. Currently we are supporting three record types: FULL |
| 864 | // record, FRU record and Enttiy Association record. |
| 865 | if (recordID >= ENTITY_RECORD_ID_START) |
| 866 | { |
| 867 | return ipmi_entity_get_sdr(request, response, data_len); |
| 868 | } |
| 869 | else if (recordID >= FRU_RECORD_ID_START && |
| 870 | recordID < ENTITY_RECORD_ID_START) |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 871 | { |
| 872 | return ipmi_fru_get_sdr(request, response, data_len); |
| 873 | } |
| 874 | else |
| 875 | { |
| 876 | sensor = sensors.find(recordID); |
| 877 | if (sensor == sensors.end()) |
| 878 | { |
| 879 | return IPMI_CC_SENSOR_INVALID; |
| 880 | } |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 881 | } |
| 882 | } |
| 883 | |
| 884 | uint8_t sensor_id = sensor->first; |
| 885 | |
| 886 | /* Header */ |
| 887 | get_sdr::header::set_record_id(sensor_id, &(record.header)); |
| 888 | record.header.sdr_version = 0x51; // Based on IPMI Spec v2.0 rev 1.1 |
| 889 | record.header.record_type = get_sdr::SENSOR_DATA_FULL_RECORD; |
| 890 | record.header.record_length = sizeof(get_sdr::SensorDataFullRecord); |
| 891 | |
| 892 | /* Key */ |
Tom Joseph | 9642391 | 2018-01-25 00:14:34 +0530 | [diff] [blame] | 893 | get_sdr::key::set_owner_id_bmc(&(record.key)); |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 894 | record.key.sensor_number = sensor_id; |
| 895 | |
| 896 | /* Body */ |
Tom Joseph | 9642391 | 2018-01-25 00:14:34 +0530 | [diff] [blame] | 897 | record.body.entity_id = sensor->second.entityType; |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 898 | record.body.sensor_type = sensor->second.sensorType; |
| 899 | record.body.event_reading_type = sensor->second.sensorReadingType; |
Tom Joseph | 9642391 | 2018-01-25 00:14:34 +0530 | [diff] [blame] | 900 | record.body.entity_instance = sensor->second.instance; |
Jaghathiswari Rankappagounder Natarajan | 0780df1 | 2019-02-06 15:29:24 -0800 | [diff] [blame] | 901 | if (ipmi::sensor::Mutability::Write == |
| 902 | (sensor->second.mutability & ipmi::sensor::Mutability::Write)) |
| 903 | { |
| 904 | get_sdr::body::init_settable_state(true, &(record.body)); |
| 905 | } |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 906 | |
| 907 | // Set the type-specific details given the DBus interface |
| 908 | ret = populate_record_from_dbus(&(record.body), &(sensor->second), |
| 909 | data_len); |
| 910 | |
| 911 | if (++sensor == sensors.end()) |
| 912 | { |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 913 | // we have reached till end of sensor, so assign the next record id |
| 914 | // to 256(Max Sensor ID = 255) + FRU ID(may start with 0). |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 915 | auto next_record_id = |
| 916 | (frus.size()) ? frus.begin()->first + FRU_RECORD_ID_START |
| 917 | : END_OF_RECORD; |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 918 | |
| 919 | get_sdr::response::set_next_record_id(next_record_id, resp); |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 920 | } |
| 921 | else |
| 922 | { |
| 923 | get_sdr::response::set_next_record_id(sensor->first, resp); |
| 924 | } |
| 925 | |
Emily Shaffer | 6c9ee51 | 2018-09-27 11:04:36 -0700 | [diff] [blame] | 926 | if (req->offset > sizeof(record)) |
| 927 | { |
| 928 | return IPMI_CC_PARM_OUT_OF_RANGE; |
| 929 | } |
| 930 | |
| 931 | // data_len will ultimately be the size of the record, plus |
| 932 | // the size of the next record ID: |
| 933 | *data_len = std::min(static_cast<size_t>(req->bytes_to_read), |
| 934 | sizeof(record) - req->offset); |
| 935 | |
| 936 | std::memcpy(resp->record_data, |
| 937 | reinterpret_cast<uint8_t*>(&record) + req->offset, |
| 938 | *data_len); |
| 939 | |
| 940 | // data_len should include the LSB and MSB: |
Jason M. Bills | 1cd8596 | 2018-10-05 12:04:01 -0700 | [diff] [blame] | 941 | *data_len += |
| 942 | sizeof(resp->next_record_id_lsb) + sizeof(resp->next_record_id_msb); |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 943 | } |
| 944 | |
| 945 | return ret; |
| 946 | } |
| 947 | |
Jia, Chunhui | 3342a8e | 2018-12-29 13:32:26 +0800 | [diff] [blame] | 948 | static bool isFromSystemChannel() |
| 949 | { |
| 950 | // TODO we could not figure out where the request is from based on IPMI |
| 951 | // command handler parameters. because of it, we can not differentiate |
| 952 | // request from SMS/SMM or IPMB channel |
| 953 | return true; |
| 954 | } |
| 955 | |
| 956 | ipmi_ret_t ipmicmdPlatformEvent(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 957 | ipmi_request_t request, |
| 958 | ipmi_response_t response, |
| 959 | ipmi_data_len_t dataLen, ipmi_context_t context) |
| 960 | { |
| 961 | uint16_t generatorID; |
| 962 | size_t count; |
| 963 | bool assert = true; |
| 964 | std::string sensorPath; |
| 965 | size_t paraLen = *dataLen; |
| 966 | PlatformEventRequest* req; |
| 967 | *dataLen = 0; |
| 968 | |
| 969 | if ((paraLen < selSystemEventSizeWith1Bytes) || |
| 970 | (paraLen > selSystemEventSizeWith3Bytes)) |
| 971 | { |
| 972 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 973 | } |
| 974 | |
| 975 | if (isFromSystemChannel()) |
| 976 | { // first byte for SYSTEM Interface is Generator ID |
| 977 | // +1 to get common struct |
| 978 | req = reinterpret_cast<PlatformEventRequest*>((uint8_t*)request + 1); |
| 979 | // Capture the generator ID |
| 980 | generatorID = *reinterpret_cast<uint8_t*>(request); |
| 981 | // Platform Event usually comes from other firmware, like BIOS. |
| 982 | // Unlike BMC sensor, it does not have BMC DBUS sensor path. |
| 983 | sensorPath = "System"; |
| 984 | } |
| 985 | else |
| 986 | { |
| 987 | req = reinterpret_cast<PlatformEventRequest*>(request); |
| 988 | // TODO GenratorID for IPMB is combination of RqSA and RqLUN |
| 989 | generatorID = 0xff; |
| 990 | sensorPath = "IPMB"; |
| 991 | } |
| 992 | // Content of event data field depends on sensor class. |
| 993 | // When data0 bit[5:4] is non-zero, valid data counts is 3. |
| 994 | // When data0 bit[7:6] is non-zero, valid data counts is 2. |
| 995 | if (((req->data[0] & byte3EnableMask) != 0 && |
| 996 | paraLen < selSystemEventSizeWith3Bytes) || |
| 997 | ((req->data[0] & byte2EnableMask) != 0 && |
| 998 | paraLen < selSystemEventSizeWith2Bytes)) |
| 999 | { |
| 1000 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 1001 | } |
| 1002 | |
| 1003 | // Count bytes of Event Data |
| 1004 | if ((req->data[0] & byte3EnableMask) != 0) |
| 1005 | { |
| 1006 | count = 3; |
| 1007 | } |
| 1008 | else if ((req->data[0] & byte2EnableMask) != 0) |
| 1009 | { |
| 1010 | count = 2; |
| 1011 | } |
| 1012 | else |
| 1013 | { |
| 1014 | count = 1; |
| 1015 | } |
| 1016 | assert = req->eventDirectionType & directionMask ? false : true; |
| 1017 | std::vector<uint8_t> eventData(req->data, req->data + count); |
| 1018 | |
| 1019 | sdbusplus::bus::bus dbus(bus); |
| 1020 | std::string service = |
| 1021 | ipmi::getService(dbus, ipmiSELAddInterface, ipmiSELPath); |
| 1022 | sdbusplus::message::message writeSEL = dbus.new_method_call( |
| 1023 | service.c_str(), ipmiSELPath, ipmiSELAddInterface, "IpmiSelAdd"); |
| 1024 | writeSEL.append(ipmiSELAddMessage, sensorPath, eventData, assert, |
| 1025 | generatorID); |
| 1026 | try |
| 1027 | { |
| 1028 | dbus.call(writeSEL); |
| 1029 | } |
| 1030 | catch (sdbusplus::exception_t& e) |
| 1031 | { |
| 1032 | phosphor::logging::log<phosphor::logging::level::ERR>(e.what()); |
| 1033 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 1034 | } |
| 1035 | return IPMI_CC_OK; |
| 1036 | } |
| 1037 | |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 1038 | void register_netfn_sen_functions() |
| 1039 | { |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 1040 | // <Wildcard Command> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1041 | ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_WILDCARD, nullptr, |
| 1042 | ipmi_sen_wildcard, PRIVILEGE_USER); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 1043 | |
Jia, Chunhui | 3342a8e | 2018-12-29 13:32:26 +0800 | [diff] [blame] | 1044 | // <Platform Event Message> |
| 1045 | ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_PLATFORM_EVENT, nullptr, |
| 1046 | ipmicmdPlatformEvent, PRIVILEGE_OPERATOR); |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 1047 | // <Get Sensor Type> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1048 | ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_TYPE, nullptr, |
| 1049 | ipmi_sen_get_sensor_type, PRIVILEGE_USER); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 1050 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 1051 | // <Set Sensor Reading and Event Status> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1052 | ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_SET_SENSOR, nullptr, |
| 1053 | ipmi_sen_set_sensor, PRIVILEGE_OPERATOR); |
Chris Austen | 8a45e7c | 2015-10-15 00:31:46 -0500 | [diff] [blame] | 1054 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 1055 | // <Get Sensor Reading> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1056 | ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_READING, nullptr, |
| 1057 | ipmi_sen_get_sensor_reading, PRIVILEGE_USER); |
Emily Shaffer | a344afc | 2017-04-13 15:09:39 -0700 | [diff] [blame] | 1058 | |
Tom Joseph | 5ca5095 | 2018-02-22 00:33:38 +0530 | [diff] [blame] | 1059 | // <Reserve Device SDR Repository> |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame^] | 1060 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor, |
| 1061 | ipmi::sensor_event::cmdReserveDeviceSdrRepository, |
| 1062 | ipmi::Privilege::User, ipmiSensorReserveSdr); |
Chris Austen | 10ccc0f | 2015-12-10 18:27:04 -0600 | [diff] [blame] | 1063 | |
Tom Joseph | 5ca5095 | 2018-02-22 00:33:38 +0530 | [diff] [blame] | 1064 | // <Get Device SDR Info> |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame^] | 1065 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor, |
| 1066 | ipmi::sensor_event::cmdGetDeviceSdrInfo, |
| 1067 | ipmi::Privilege::User, ipmiSensorGetDeviceSdrInfo); |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 1068 | |
Tom Joseph | 5ca5095 | 2018-02-22 00:33:38 +0530 | [diff] [blame] | 1069 | // <Get Device SDR> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1070 | ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_DEVICE_SDR, nullptr, |
| 1071 | ipmi_sen_get_sdr, PRIVILEGE_USER); |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 1072 | |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 1073 | // <Get Sensor Thresholds> |
| 1074 | ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_THRESHOLDS, |
| 1075 | nullptr, ipmi_sen_get_sensor_thresholds, |
| 1076 | PRIVILEGE_USER); |
| 1077 | |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 1078 | return; |
| 1079 | } |