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