blob: b3381f398f704c746fd66a930f4881ffe42179f1 [file] [log] [blame]
Chris Austenac4604a2015-10-13 12:43:27 -05001#include "sensorhandler.h"
Patrick Williams37af7332016-09-02 21:21:42 -05002#include "host-ipmid/ipmid-api.h"
Tomd700e762016-09-20 18:24:13 +05303#include <mapper.h>
Chris Austenac4604a2015-10-13 12:43:27 -05004#include <stdio.h>
5#include <string.h>
6#include <stdint.h>
Chris Austen10ccc0f2015-12-10 18:27:04 -06007#include <systemd/sd-bus.h>
Tomd700e762016-09-20 18:24:13 +05308#include "ipmid.hpp"
Chris Austenac4604a2015-10-13 12:43:27 -05009
Chris Austen8a45e7c2015-10-15 00:31:46 -050010extern int updateSensorRecordFromSSRAESC(const void *);
Tomd700e762016-09-20 18:24:13 +053011extern sd_bus *bus;
Chris Austenac4604a2015-10-13 12:43:27 -050012
13void register_netfn_sen_functions() __attribute__((constructor));
14
Chris Austen0012e9b2015-10-22 01:37:46 -050015struct sensorTypemap_t {
16 uint8_t number;
Chris Austend7cf0e42015-11-07 14:27:12 -060017 uint8_t typecode;
Chris Austen0012e9b2015-10-22 01:37:46 -050018 char dbusname[32];
19} ;
20
21
22sensorTypemap_t g_SensorTypeMap[] = {
23
Chris Austend7cf0e42015-11-07 14:27:12 -060024 {0x01, 0x6F, "Temp"},
25 {0x0C, 0x6F, "DIMM"},
26 {0x0C, 0x6F, "MEMORY_BUFFER"},
27 {0x07, 0x6F, "PROC"},
28 {0x07, 0x6F, "CORE"},
29 {0x07, 0x6F, "CPU"},
30 {0x0F, 0x6F, "BootProgress"},
31 {0xe9, 0x09, "OccStatus"}, // E9 is an internal mapping to handle sensor type code os 0x09
32 {0xC3, 0x6F, "BootCount"},
33 {0x1F, 0x6F, "OperatingSystemStatus"},
Chris Austen800ba712015-12-03 15:31:00 -060034 {0x12, 0x6F, "SYSTEM_EVENT"},
35 {0xC7, 0x03, "SYSTEM"},
36 {0xC7, 0x03, "MAIN_PLANAR"},
Chris Austen10ccc0f2015-12-10 18:27:04 -060037 {0xC2, 0x6F, "PowerCap"},
Chris Austend7cf0e42015-11-07 14:27:12 -060038 {0xFF, 0x00, ""},
Chris Austen0012e9b2015-10-22 01:37:46 -050039};
40
41
Chris Austenac4604a2015-10-13 12:43:27 -050042struct sensor_data_t {
43 uint8_t sennum;
44} __attribute__ ((packed)) ;
45
Chris Austen10ccc0f2015-12-10 18:27:04 -060046struct sensorreadingresp_t {
47 uint8_t value;
48 uint8_t operation;
49 uint8_t indication[2];
50} __attribute__ ((packed)) ;
Chris Austenac4604a2015-10-13 12:43:27 -050051
Tomd700e762016-09-20 18:24:13 +053052
53// Use a lookup table to find the interface name of a specific sensor
54// This will be used until an alternative is found. this is the first
55// step for mapping IPMI
56int find_interface_property_fru_type(dbus_interface_t *interface, const char *property_name, char *property_value) {
57
58 char *str1;
59 sd_bus_error error = SD_BUS_ERROR_NULL;
60 sd_bus_message *reply = NULL, *m=NULL;
61
62
63 int r;
64
65 r = sd_bus_message_new_method_call(bus,&m,interface->bus,interface->path,"org.freedesktop.DBus.Properties","Get");
66 if (r < 0) {
67 fprintf(stderr, "Failed to create a method call: %s", strerror(-r));
68 fprintf(stderr,"Bus: %s Path: %s Interface: %s \n",
69 interface->bus, interface->path, interface->interface);
70 goto final;
71 }
72
73 r = sd_bus_message_append(m, "ss", "org.openbmc.InventoryItem", property_name);
74 if (r < 0) {
75 fprintf(stderr, "Failed to create a input parameter: %s", strerror(-r));
76 fprintf(stderr,"Bus: %s Path: %s Interface: %s \n",
77 interface->bus, interface->path, interface->interface);
78 goto final;
79 }
80
81 r = sd_bus_call(bus, m, 0, &error, &reply);
82 if (r < 0) {
83 fprintf(stderr, "Failed to call the method: %s", strerror(-r));
84 goto final;
85 }
86
87 r = sd_bus_message_read(reply, "v", "s", &str1) ;
88 if (r < 0) {
89 fprintf(stderr, "Failed to get a response: %s", strerror(-r));
90 goto final;
91 }
92
93 strcpy(property_value, str1);
94
95final:
96
97 sd_bus_error_free(&error);
98 m = sd_bus_message_unref(m);
99 reply = sd_bus_message_unref(reply);
100
101 return r;
102}
103
104
105// Use a lookup table to find the interface name of a specific sensor
106// This will be used until an alternative is found. this is the first
107// step for mapping IPMI
108int find_openbmc_path(const char *type, const uint8_t num, dbus_interface_t *interface) {
109 char *busname = NULL;
110 const char *iface = "org.openbmc.managers.System";
111 const char *objname = "/org/openbmc/managers/System";
112 char *str1 = NULL, *str2, *str3;
113 sd_bus_error error = SD_BUS_ERROR_NULL;
114 sd_bus_message *reply = NULL;
115
116
117 int r;
118 r = mapper_get_service(bus, objname, &busname);
119 if (r < 0) {
Brad Bishop819ddd42016-10-05 21:19:19 -0400120 fprintf(stderr, "Failed to get %s busname: %s\n",
121 objname, strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530122 goto final;
123 }
124
125 r = sd_bus_call_method(bus,busname,objname,iface, "getObjectFromByteId",
126 &error, &reply, "sy", type, num);
127 if (r < 0) {
128 fprintf(stderr, "Failed to create a method call: %s", strerror(-r));
129 goto final;
130 }
131
132 r = sd_bus_message_read(reply, "(ss)", &str2, &str3);
133 if (r < 0) {
134 fprintf(stderr, "Failed to get a response: %s", strerror(-r));
135 goto final;
136 }
137
138 r = mapper_get_service(bus, str2, &str1);
139 if (r < 0) {
Brad Bishop819ddd42016-10-05 21:19:19 -0400140 fprintf(stderr, "Failed to get %s busname: %s\n",
141 str2, strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530142 goto final;
143 }
144
145 strncpy(interface->bus, str1, MAX_DBUS_PATH);
146 strncpy(interface->path, str2, MAX_DBUS_PATH);
147 strncpy(interface->interface, str3, MAX_DBUS_PATH);
148
149 interface->sensornumber = num;
150
151final:
152
153 sd_bus_error_free(&error);
154 reply = sd_bus_message_unref(reply);
155 free(busname);
156 free(str1);
157
158 return r;
159}
160
161
162/////////////////////////////////////////////////////////////////////
163//
164// Routines used by ipmi commands wanting to interact on the dbus
165//
166/////////////////////////////////////////////////////////////////////
167int set_sensor_dbus_state_s(uint8_t number, const char *method, const char *value) {
168
169
170 dbus_interface_t a;
171 int r;
172 sd_bus_error error = SD_BUS_ERROR_NULL;
173 sd_bus_message *m=NULL;
174
175 fprintf(ipmidbus, "Attempting to set a dbus Variant Sensor 0x%02x via %s with a value of %s\n",
176 number, method, value);
177
178 r = find_openbmc_path("SENSOR", number, &a);
179
180 if (r < 0) {
181 fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
182 return 0;
183 }
184
185 r = sd_bus_message_new_method_call(bus,&m,a.bus,a.path,a.interface,method);
186 if (r < 0) {
187 fprintf(stderr, "Failed to create a method call: %s", strerror(-r));
188 goto final;
189 }
190
191 r = sd_bus_message_append(m, "v", "s", value);
192 if (r < 0) {
193 fprintf(stderr, "Failed to create a input parameter: %s", strerror(-r));
194 goto final;
195 }
196
197
198 r = sd_bus_call(bus, m, 0, &error, NULL);
199 if (r < 0) {
200 fprintf(stderr, "Failed to call the method: %s", strerror(-r));
201 }
202
203final:
204 sd_bus_error_free(&error);
205 m = sd_bus_message_unref(m);
206
207 return 0;
208}
209int set_sensor_dbus_state_y(uint8_t number, const char *method, const uint8_t value) {
210
211
212 dbus_interface_t a;
213 int r;
214 sd_bus_error error = SD_BUS_ERROR_NULL;
215 sd_bus_message *m=NULL;
216
217 fprintf(ipmidbus, "Attempting to set a dbus Variant Sensor 0x%02x via %s with a value of 0x%02x\n",
218 number, method, value);
219
220 r = find_openbmc_path("SENSOR", number, &a);
221
222 if (r < 0) {
223 fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
224 return 0;
225 }
226
227 r = sd_bus_message_new_method_call(bus,&m,a.bus,a.path,a.interface,method);
228 if (r < 0) {
229 fprintf(stderr, "Failed to create a method call: %s", strerror(-r));
230 goto final;
231 }
232
233 r = sd_bus_message_append(m, "v", "i", value);
234 if (r < 0) {
235 fprintf(stderr, "Failed to create a input parameter: %s", strerror(-r));
236 goto final;
237 }
238
239
240 r = sd_bus_call(bus, m, 0, &error, NULL);
241 if (r < 0) {
242 fprintf(stderr, "12 Failed to call the method: %s", strerror(-r));
243 }
244
245final:
246 sd_bus_error_free(&error);
247 m = sd_bus_message_unref(m);
248
249 return 0;
250}
251
252
Chris Austen0012e9b2015-10-22 01:37:46 -0500253uint8_t dbus_to_sensor_type(char *p) {
Chris Austenac4604a2015-10-13 12:43:27 -0500254
Chris Austen0012e9b2015-10-22 01:37:46 -0500255 sensorTypemap_t *s = g_SensorTypeMap;
256 char r=0;
Chris Austenac4604a2015-10-13 12:43:27 -0500257
Chris Austen0012e9b2015-10-22 01:37:46 -0500258 while (s->number != 0xFF) {
259 if (!strcmp(s->dbusname,p)) {
260 r = s->number;
261 break;
Chris Austenac4604a2015-10-13 12:43:27 -0500262 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500263 s++;
Chris Austenac4604a2015-10-13 12:43:27 -0500264 }
265
Chris Austend7cf0e42015-11-07 14:27:12 -0600266
Chris Austen0012e9b2015-10-22 01:37:46 -0500267 if (s->number == 0xFF)
268 printf("Failed to find Sensor Type %s\n", p);
Chris Austenac4604a2015-10-13 12:43:27 -0500269
Chris Austen0012e9b2015-10-22 01:37:46 -0500270 return r;
Chris Austenac4604a2015-10-13 12:43:27 -0500271}
272
Chris Austen0012e9b2015-10-22 01:37:46 -0500273
274uint8_t dbus_to_sensor_type_from_dbus(dbus_interface_t *a) {
275 char fru_type_name[64];
276 int r= 0;
277
278 r = find_interface_property_fru_type(a, "fru_type", fru_type_name);
279 if (r<0) {
280 fprintf(stderr, "Failed to get a fru type: %s", strerror(-r));
281 return -1;
282 } else {
283 return dbus_to_sensor_type(fru_type_name);
284 }
285}
286
287
288uint8_t find_sensor(uint8_t sensor_number) {
289
290 dbus_interface_t a;
291 char *p;
292 char r;
293
294 r = find_openbmc_path("SENSOR", sensor_number, &a);
295
296 if (r < 0) { return 0; }
297
298 // This is where sensors that do not exist in dbus but do
299 // exist in the host code stop. This should indicate it
300 // is not a supported sensor
Chris Austend7cf0e42015-11-07 14:27:12 -0600301 if (a.interface[0] == 0) { return 0;}
Chris Austen0012e9b2015-10-22 01:37:46 -0500302
303 if (strstr(a.interface, "InventoryItem")) {
304 // InventoryItems are real frus. So need to get the
305 // fru_type property
306 r = dbus_to_sensor_type_from_dbus(&a);
307 } else {
308 // Non InventoryItems
309 p = strrchr (a.path, '/');
310 r = dbus_to_sensor_type(p+1);
311 }
312
313 return r;
314 }
315
Chris Austen10ccc0f2015-12-10 18:27:04 -0600316
317
318
319
Chris Austen0012e9b2015-10-22 01:37:46 -0500320ipmi_ret_t ipmi_sen_get_sensor_type(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
321 ipmi_request_t request, ipmi_response_t response,
Chris Austenac4604a2015-10-13 12:43:27 -0500322 ipmi_data_len_t data_len, ipmi_context_t context)
323{
324 sensor_data_t *reqptr = (sensor_data_t*)request;
325 ipmi_ret_t rc = IPMI_CC_OK;
326
327 printf("IPMI GET_SENSOR_TYPE [0x%02X]\n",reqptr->sennum);
328
329 // TODO Not sure what the System-event-sensor is suppose to return
330 // need to ask Hostboot team
331 unsigned char buf[] = {0x00,0x6F};
332
Chris Austen0012e9b2015-10-22 01:37:46 -0500333 buf[0] = find_sensor(reqptr->sennum);
334
335 // HACK UNTIL Dbus gets updated or we find a better way
336 if (buf[0] == 0) {
Chris Austen800ba712015-12-03 15:31:00 -0600337 rc = IPMI_CC_SENSOR_INVALID;
Chris Austen0012e9b2015-10-22 01:37:46 -0500338 }
339
Chris Austenac4604a2015-10-13 12:43:27 -0500340
341 *data_len = sizeof(buf);
342 memcpy(response, &buf, *data_len);
343
Chris Austenac4604a2015-10-13 12:43:27 -0500344 return rc;
345}
346
347
348
Chris Austen0012e9b2015-10-22 01:37:46 -0500349ipmi_ret_t ipmi_sen_set_sensor(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
350 ipmi_request_t request, ipmi_response_t response,
Chris Austenac4604a2015-10-13 12:43:27 -0500351 ipmi_data_len_t data_len, ipmi_context_t context)
352{
Chris Austenac4604a2015-10-13 12:43:27 -0500353 sensor_data_t *reqptr = (sensor_data_t*)request;
354 ipmi_ret_t rc = IPMI_CC_OK;
Chris Austenac4604a2015-10-13 12:43:27 -0500355
Chris Austen0012e9b2015-10-22 01:37:46 -0500356 printf("IPMI SET_SENSOR [0x%02x]\n",reqptr->sennum);
Chris Austenac4604a2015-10-13 12:43:27 -0500357
Chris Austen8a45e7c2015-10-15 00:31:46 -0500358 updateSensorRecordFromSSRAESC(reqptr);
359
Chris Austenac4604a2015-10-13 12:43:27 -0500360 *data_len=0;
361
Chris Austenac4604a2015-10-13 12:43:27 -0500362 return rc;
363}
364
Chris Austen10ccc0f2015-12-10 18:27:04 -0600365
366ipmi_ret_t ipmi_sen_get_sensor_reading(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
367 ipmi_request_t request, ipmi_response_t response,
368 ipmi_data_len_t data_len, ipmi_context_t context)
369{
370 sensor_data_t *reqptr = (sensor_data_t*)request;
371 ipmi_ret_t rc = IPMI_CC_SENSOR_INVALID;
372 uint8_t type;
373 sensorreadingresp_t *resp = (sensorreadingresp_t*) response;
374 int r;
375 dbus_interface_t a;
376 sd_bus *bus = ipmid_get_sd_bus_connection();
377 sd_bus_message *reply = NULL;
Adriana Kobylak93125982016-03-01 12:48:10 -0600378 int reading = 0;
Chris Austen10ccc0f2015-12-10 18:27:04 -0600379
380
381 printf("IPMI GET_SENSOR_READING [0x%02x]\n",reqptr->sennum);
382
383 r = find_openbmc_path("SENSOR", reqptr->sennum, &a);
384
Nan Li36deb762016-05-12 10:23:41 +0800385 if (r < 0) {
386 fprintf(stderr, "Failed to find Sensor 0x%02x\n", reqptr->sennum);
387 return IPMI_CC_SENSOR_INVALID;
388 }
389
Chris Austen10ccc0f2015-12-10 18:27:04 -0600390 type = find_sensor(reqptr->sennum);
391
392 fprintf(stderr, "Bus: %s, Path: %s, Interface: %s\n", a.bus, a.path, a.interface);
393
394 *data_len=0;
395
396 switch(type) {
397 case 0xC3:
398 case 0xC2:
Adriana Kobylak93125982016-03-01 12:48:10 -0600399 r = sd_bus_get_property(bus,a.bus, a.path, a.interface, "value", NULL, &reply, "i");
Chris Austen10ccc0f2015-12-10 18:27:04 -0600400 if (r < 0) {
401 fprintf(stderr, "Failed to call sd_bus_get_property:%d, %s\n", r, strerror(-r));
402 fprintf(stderr, "Bus: %s, Path: %s, Interface: %s\n",
403 a.bus, a.path, a.interface);
404 break;
405 }
406
Adriana Kobylak93125982016-03-01 12:48:10 -0600407 r = sd_bus_message_read(reply, "i", &reading);
Chris Austen10ccc0f2015-12-10 18:27:04 -0600408 if (r < 0) {
Adriana Kobylak93125982016-03-01 12:48:10 -0600409 fprintf(stderr, "Failed to read sensor: %s\n", strerror(-r));
Chris Austen10ccc0f2015-12-10 18:27:04 -0600410 break;
411 }
412
413 printf("Contents of a 0x%02x is 0x%02x\n", type, reading);
414
415 rc = IPMI_CC_OK;
416 *data_len=sizeof(sensorreadingresp_t);
417
Adriana Kobylak93125982016-03-01 12:48:10 -0600418 resp->value = (uint8_t)reading;
Chris Austen10ccc0f2015-12-10 18:27:04 -0600419 resp->operation = 0;
420 resp->indication[0] = 0;
421 resp->indication[1] = 0;
422 break;
423
424 default:
425 *data_len=0;
426 rc = IPMI_CC_SENSOR_INVALID;
427 break;
428 }
429
430
vishwa1eaea4f2016-02-26 11:57:40 -0600431 reply = sd_bus_message_unref(reply);
Chris Austen10ccc0f2015-12-10 18:27:04 -0600432
433 return rc;
434}
435
Chris Austen0012e9b2015-10-22 01:37:46 -0500436ipmi_ret_t ipmi_sen_wildcard(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
437 ipmi_request_t request, ipmi_response_t response,
Chris Austenac4604a2015-10-13 12:43:27 -0500438 ipmi_data_len_t data_len, ipmi_context_t context)
439{
Nan Li70aa8d92016-08-29 00:11:10 +0800440 ipmi_ret_t rc = IPMI_CC_INVALID;
Chris Austenac4604a2015-10-13 12:43:27 -0500441
442 printf("IPMI S/E Wildcard Netfn:[0x%X], Cmd:[0x%X]\n",netfn,cmd);
443 *data_len = 0;
444
445 return rc;
446}
447
448
449void register_netfn_sen_functions()
450{
451 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_SENSOR, IPMI_CMD_WILDCARD);
452 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_WILDCARD, NULL, ipmi_sen_wildcard);
453
454 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_TYPE);
455 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_TYPE, NULL, ipmi_sen_get_sensor_type);
456
457 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_SENSOR, IPMI_CMD_SET_SENSOR);
458 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_SET_SENSOR, NULL, ipmi_sen_set_sensor);
Chris Austen8a45e7c2015-10-15 00:31:46 -0500459
Chris Austen10ccc0f2015-12-10 18:27:04 -0600460 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_READING);
461 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_READING, NULL, ipmi_sen_get_sensor_reading);
462
Chris Austenac4604a2015-10-13 12:43:27 -0500463 return;
464}