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