blob: 6759462bb3f87e0bffeb0bd5f0465191a05e7fb3 [file] [log] [blame]
vishwabmcba0bd5f2015-09-30 16:50:23 +05301#include "apphandler.h"
Patrick Williams37af7332016-09-02 21:21:42 -05002#include "host-ipmid/ipmid-api.h"
Patrick Williams53a360e2016-08-12 22:01:02 -05003#include "ipmid.hpp"
vishwabmcba0bd5f2015-09-30 16:50:23 +05304#include <stdio.h>
5#include <string.h>
Chris Austen6caf28b2015-10-13 12:40:40 -05006#include <stdint.h>
Adriana Kobylak3a552e12015-10-19 16:11:00 -05007#include <systemd/sd-bus.h>
Sergey Solomineb9b8142016-08-23 09:07:28 -05008#include <mapper.h>
Nan Liee0cb902016-07-11 15:38:03 +08009#include <array>
Nan Li3d0df912016-10-18 19:51:41 +080010#include <arpa/inet.h>
11#include "transporthandler.h"
Adriana Kobylak3a552e12015-10-19 16:11:00 -050012
13extern sd_bus *bus;
vishwabmcba0bd5f2015-09-30 16:50:23 +053014
Nan Li3d0df912016-10-18 19:51:41 +080015constexpr auto app_obj = "/org/openbmc/NetworkManager/Interface";
16constexpr auto app_ifc = "org.openbmc.NetworkManager";
17constexpr auto app_nwinterface = "eth0";
18
Chris Austen6caf28b2015-10-13 12:40:40 -050019void register_netfn_app_functions() __attribute__((constructor));
vishwabmcba0bd5f2015-09-30 16:50:23 +053020
Nan Liee0cb902016-07-11 15:38:03 +080021// Offset in get device id command.
22typedef struct
23{
24 uint8_t id;
25 uint8_t revision;
26 uint8_t fw[2];
27 uint8_t ipmi_ver;
28 uint8_t addn_dev_support;
29 uint8_t manuf_id[3];
30 uint8_t prod_id[2];
31 uint8_t aux[4];
32}__attribute__((packed)) ipmi_device_id_t;
Chris Austen7303bdc2016-04-17 11:50:54 -050033
Adriana Kobylak3a552e12015-10-19 16:11:00 -050034ipmi_ret_t ipmi_app_set_acpi_power_state(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
35 ipmi_request_t request, ipmi_response_t response,
Chris Austen6caf28b2015-10-13 12:40:40 -050036 ipmi_data_len_t data_len, ipmi_context_t context)
37{
38 ipmi_ret_t rc = IPMI_CC_OK;
39 *data_len = 0;
40
41 printf("IPMI SET ACPI STATE Ignoring for now\n");
42 return rc;
43}
44
Chris Austen7303bdc2016-04-17 11:50:54 -050045
46typedef struct
47{
48 char major;
49 char minor;
Chris Austen176c9652016-04-30 16:32:17 -050050 uint16_t d[2];
Chris Austen7303bdc2016-04-17 11:50:54 -050051} rev_t;
52
53
54/* Currently only supports the vx.x-x-[-x] format Will return -1 if not in */
55/* the format this routine knows how to parse */
56/* version = v0.6-19-gf363f61-dirty */
57/* ^ ^ ^^ ^ */
58/* | | |----------|-- additional details */
59/* | |---------------- Minor */
60/* |------------------ Major */
61/* Additional details : If the option group exists it will force Auxiliary */
62/* Firmware Revision Information 4th byte to 1 indicating the build was */
63/* derived with additional edits */
64int convert_version(const char *p, rev_t *rev)
65{
66 char *s, *token;
Chris Austen176c9652016-04-30 16:32:17 -050067 uint16_t commits;
Chris Austen7303bdc2016-04-17 11:50:54 -050068
69 if (*p != 'v')
70 return -1;
71 p++;
72
73 s = strdup(p);
74 token = strtok(s,".-");
75
76 rev->major = (int8_t) atoi(token);
77
78 token = strtok(NULL, ".-");
79 rev->minor = (int8_t) atoi(token);
80
81 // Capture the number of commits on top of the minor tag.
82 // I'm using BE format like the ipmi spec asked for
83 token = strtok(NULL,".-");
Chris Austen7303bdc2016-04-17 11:50:54 -050084
Chris Austen176c9652016-04-30 16:32:17 -050085 if (token) {
86 commits = (int16_t) atoi(token);
87 rev->d[0] = (commits>>8) | (commits<<8);
Chris Austen7303bdc2016-04-17 11:50:54 -050088
Chris Austen176c9652016-04-30 16:32:17 -050089 // commit number we skip
90 token = strtok(NULL,".-");
Chris Austen7303bdc2016-04-17 11:50:54 -050091
Chris Austen176c9652016-04-30 16:32:17 -050092 } else {
93 rev->d[0] = 0;
94 }
Chris Austen7303bdc2016-04-17 11:50:54 -050095
96 // Any value of the optional parameter forces it to 1
Chris Austen176c9652016-04-30 16:32:17 -050097 if (token)
98 token = strtok(NULL,".-");
99
100 rev->d[1] = (token != NULL) ? 1 : 0;
Chris Austen7303bdc2016-04-17 11:50:54 -0500101
102 free(s);
103 return 0;
104}
105
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500106ipmi_ret_t ipmi_app_get_device_id(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
107 ipmi_request_t request, ipmi_response_t response,
Chris Austen6caf28b2015-10-13 12:40:40 -0500108 ipmi_data_len_t data_len, ipmi_context_t context)
109{
110 ipmi_ret_t rc = IPMI_CC_OK;
Chris Austen7303bdc2016-04-17 11:50:54 -0500111 const char *objname = "/org/openbmc/inventory/system/chassis/motherboard/bmc";
112 const char *iface = "org.openbmc.InventoryItem";
113 char *ver = NULL;
Sergey Solomineb9b8142016-08-23 09:07:28 -0500114 char *busname = NULL;
Chris Austen7303bdc2016-04-17 11:50:54 -0500115 int r;
116 rev_t rev = {0};
Nan Liee0cb902016-07-11 15:38:03 +0800117 ipmi_device_id_t dev_id{};
Chris Austen6caf28b2015-10-13 12:40:40 -0500118
119 // Data length
Chris Austen7303bdc2016-04-17 11:50:54 -0500120 *data_len = sizeof(dev_id);
121
Nan Liee0cb902016-07-11 15:38:03 +0800122 // From IPMI spec, controller that have different application commands, or different
123 // definitions of OEM fields, are expected to have different Device ID values.
124 // Set to 0 now.
125
126 // Device Revision is set to 0 now.
127 // Bit7 identifies if device provide Device SDRs, obmc don't have SDR,we use ipmi to
128 // simulate SDR, hence the value:
129 dev_id.revision = 0x80;
130
131 // Firmware revision is already implemented, so get it from appropriate position.
Sergey Solomineb9b8142016-08-23 09:07:28 -0500132 r = mapper_get_service(bus, objname, &busname);
133 if (r < 0) {
Brad Bishop819ddd42016-10-05 21:19:19 -0400134 fprintf(stderr, "Failed to get %s bus name: %s\n",
135 objname, strerror(-r));
Sergey Solomineb9b8142016-08-23 09:07:28 -0500136 goto finish;
137 }
Chris Austen7303bdc2016-04-17 11:50:54 -0500138 r = sd_bus_get_property_string(bus,busname,objname,iface,"version", NULL, &ver);
139 if ( r < 0 ) {
140 fprintf(stderr, "Failed to obtain version property: %s\n", strerror(-r));
141 } else {
142 r = convert_version(ver, &rev);
143 if( r >= 0 ) {
Nan Liee0cb902016-07-11 15:38:03 +0800144 // bit7 identifies if the device is available, 0=normal operation,
145 // 1=device firmware, SDR update or self-initialization in progress.
146 // our SDR is normal working condition, so mask:
147 dev_id.fw[0] = 0x7F & rev.major;
Adriana Kobylak0e912642016-06-22 16:54:39 -0500148
149 rev.minor = (rev.minor > 99 ? 99 : rev.minor);
Nan Liee0cb902016-07-11 15:38:03 +0800150 dev_id.fw[1] = rev.minor % 10 + (rev.minor / 10) * 16;
151 memcpy(&dev_id.aux, rev.d, 4);
Chris Austen7303bdc2016-04-17 11:50:54 -0500152 }
153 }
Chris Austen6caf28b2015-10-13 12:40:40 -0500154
Nan Liee0cb902016-07-11 15:38:03 +0800155 // IPMI Spec verison 2.0
156 dev_id.ipmi_ver = 2;
157
158 // Additional device Support.
159 // List the 'logical device' commands and functions that the controller supports
160 // that are in addition to the mandatory IPM and Application commands.
161 // [7] Chassis Device (device functions as chassis device per ICMB spec.)
162 // [6] Bridge (device responds to Bridge NetFn commands)
163 // [5] IPMB Event Generator
164 // [4] IPMB Event Receiver
165 // [3] FRU Inventory Device
166 // [2] SEL Device
167 // [1] SDR Repository Device
168 // [0] Sensor Device
169 // We support FRU/SEL/Sensor now:
170 dev_id.addn_dev_support = 0x8D;
171
172 // This value is the IANA number assigned to "IBM Platform Firmware
173 // Division", which is also used by our service processor. We may want
174 // a different number or at least a different version?
175 dev_id.manuf_id[0] = 0x41;
176 dev_id.manuf_id[1] = 0xA7;
177 dev_id.manuf_id[2] = 0x00;
178
179 // Witherspoon's product ID is hardcoded to 4F42(ASCII 'OB').
180 // TODO: openbmc/openbmc#495
181 dev_id.prod_id[0] = 0x4F;
182 dev_id.prod_id[1] = 0x42;
183
Chris Austen6caf28b2015-10-13 12:40:40 -0500184 // Pack the actual response
Chris Austen7303bdc2016-04-17 11:50:54 -0500185 memcpy(response, &dev_id, *data_len);
Sergey Solomineb9b8142016-08-23 09:07:28 -0500186finish:
187 free(busname);
Xo Wange5536382017-07-20 20:14:00 -0700188 free(ver);
Chris Austen6caf28b2015-10-13 12:40:40 -0500189 return rc;
190}
191
Nan Li41fa24a2016-11-10 20:12:37 +0800192ipmi_ret_t ipmi_app_get_self_test_results(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
193 ipmi_request_t request, ipmi_response_t response,
194 ipmi_data_len_t data_len, ipmi_context_t context)
195{
196 ipmi_ret_t rc = IPMI_CC_OK;
197
198 // Byte 2:
199 // 55h - No error.
200 // 56h - Self Test funciton not implemented in this controller.
201 // 57h - Corrupted or inaccesssible data or devices.
202 // 58h - Fatal hardware error.
203 // FFh - reserved.
204 // all other: Device-specific 'internal failure'.
205 // Byte 3:
206 // For byte 2 = 55h, 56h, FFh: 00h
207 // For byte 2 = 58h, all other: Device-specific
208 // For byte 2 = 57h: self-test error bitfield.
209 // Note: returning 57h does not imply that all test were run.
210 // [7] 1b = Cannot access SEL device.
211 // [6] 1b = Cannot access SDR Repository.
212 // [5] 1b = Cannot access BMC FRU device.
213 // [4] 1b = IPMB signal lines do not respond.
214 // [3] 1b = SDR Repository empty.
215 // [2] 1b = Internal Use Area of BMC FRU corrupted.
216 // [1] 1b = controller update 'boot block' firmware corrupted.
217 // [0] 1b = controller operational firmware corrupted.
218
219 char selftestresults[2] = {0};
220
221 *data_len = 2;
222
223 selftestresults[0] = 0x56;
224 selftestresults[1] = 0;
225
226 memcpy(response, selftestresults, *data_len);
227
228 return rc;
229}
230
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500231ipmi_ret_t ipmi_app_get_device_guid(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
232 ipmi_request_t request, ipmi_response_t response,
233 ipmi_data_len_t data_len, ipmi_context_t context)
234{
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500235 const char *objname = "/org/openbmc/control/chassis0";
Adriana Kobylak31bccae2015-11-05 13:31:06 -0600236 const char *iface = "org.freedesktop.DBus.Properties";
237 const char *chassis_iface = "org.openbmc.control.Chassis";
vishwa1eaea4f2016-02-26 11:57:40 -0600238 sd_bus_message *reply = NULL;
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500239 sd_bus_error error = SD_BUS_ERROR_NULL;
240 int r = 0;
241 char *uuid = NULL;
Sergey Solomineb9b8142016-08-23 09:07:28 -0500242 char *busname = NULL;
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500243
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500244 // UUID is in RFC4122 format. Ex: 61a39523-78f2-11e5-9862-e6402cfc3223
245 // Per IPMI Spec 2.0 need to convert to 16 hex bytes and reverse the byte order
246 // Ex: 0x2332fc2c40e66298e511f2782395a361
247
248 const int resp_size = 16; // Response is 16 hex bytes per IPMI Spec
249 uint8_t resp_uuid[resp_size]; // Array to hold the formatted response
250 int resp_loc = resp_size-1; // Point resp end of array to save in reverse order
251 int i = 0;
252 char *tokptr = NULL;
vishwa1eaea4f2016-02-26 11:57:40 -0600253 char *id_octet = NULL;
254
255 // Status code.
256 ipmi_ret_t rc = IPMI_CC_OK;
257 *data_len = 0;
258
259 printf("IPMI GET DEVICE GUID\n");
260
261 // Call Get properties method with the interface and property name
Sergey Solomineb9b8142016-08-23 09:07:28 -0500262 r = mapper_get_service(bus, objname, &busname);
263 if (r < 0) {
Brad Bishop819ddd42016-10-05 21:19:19 -0400264 fprintf(stderr, "Failed to get %s bus name: %s\n",
265 objname, strerror(-r));
Sergey Solomineb9b8142016-08-23 09:07:28 -0500266 goto finish;
267 }
vishwa1eaea4f2016-02-26 11:57:40 -0600268 r = sd_bus_call_method(bus,busname,objname,iface,
269 "Get",&error, &reply, "ss",
270 chassis_iface, "uuid");
271 if (r < 0)
272 {
273 fprintf(stderr, "Failed to call Get Method: %s\n", strerror(-r));
274 rc = IPMI_CC_UNSPECIFIED_ERROR;
275 goto finish;
276 }
277
278 r = sd_bus_message_read(reply, "v", "s", &uuid);
279 if (r < 0 || uuid == NULL)
280 {
281 fprintf(stderr, "Failed to get a response: %s", strerror(-r));
282 rc = IPMI_CC_RESPONSE_ERROR;
283 goto finish;
284 }
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500285
286 // Traverse the UUID
vishwa1eaea4f2016-02-26 11:57:40 -0600287 id_octet = strtok_r(uuid, "-", &tokptr); // Get the UUID octects separated by dash
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500288
289 if (id_octet == NULL)
vishwa1eaea4f2016-02-26 11:57:40 -0600290 {
291 // Error
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500292 fprintf(stderr, "Unexpected UUID format: %s", uuid);
vishwa1eaea4f2016-02-26 11:57:40 -0600293 rc = IPMI_CC_RESPONSE_ERROR;
294 goto finish;
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500295 }
296
297 while (id_octet != NULL)
298 {
299 // Calculate the octet string size since it varies
300 // Divide it by 2 for the array size since 1 byte is built from 2 chars
301 int tmp_size = strlen(id_octet)/2;
302
303 for(i = 0; i < tmp_size; i++)
304 {
Joel Stanley38310cd2015-11-25 17:32:08 +1030305 char tmp_array[3] = {0}; // Holder of the 2 chars that will become a byte
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500306 strncpy(tmp_array, id_octet, 2); // 2 chars at a time
307
308 int resp_byte = strtoul(tmp_array, NULL, 16); // Convert to hex byte
309 memcpy((void*)&resp_uuid[resp_loc], &resp_byte, 1); // Copy end to first
310 resp_loc--;
311 id_octet+=2; // Finished with the 2 chars, advance
312 }
313 id_octet=strtok_r(NULL, "-", &tokptr); // Get next octet
314 }
315
316 // Data length
317 *data_len = resp_size;
318
319 // Pack the actual response
320 memcpy(response, &resp_uuid, *data_len);
321
vishwa1eaea4f2016-02-26 11:57:40 -0600322finish:
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500323 sd_bus_error_free(&error);
vishwa1eaea4f2016-02-26 11:57:40 -0600324 reply = sd_bus_message_unref(reply);
Sergey Solomineb9b8142016-08-23 09:07:28 -0500325 free(busname);
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500326
327 return rc;
328}
Chris Austen6caf28b2015-10-13 12:40:40 -0500329
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500330ipmi_ret_t ipmi_app_get_bt_capabilities(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
331 ipmi_request_t request, ipmi_response_t response,
vishwabmcba0bd5f2015-09-30 16:50:23 +0530332 ipmi_data_len_t data_len, ipmi_context_t context)
333{
334 printf("Handling Netfn:[0x%X], Cmd:[0x%X]\n",netfn,cmd);
335
336 // Status code.
337 ipmi_ret_t rc = IPMI_CC_OK;
338
Adriana Kobylak88ad8152016-12-13 10:09:08 -0600339 // Per IPMI 2.0 spec, the input and output buffer size must be the max
340 // buffer size minus one byte to allocate space for the length byte.
341 uint8_t str[] = {0x01, MAX_IPMI_BUFFER-1, MAX_IPMI_BUFFER-1, 0x0A, 0x01};
vishwabmcba0bd5f2015-09-30 16:50:23 +0530342
343 // Data length
344 *data_len = sizeof(str);
345
346 // Pack the actual response
347 memcpy(response, &str, *data_len);
348
349 return rc;
350}
351
Chris Austen6caf28b2015-10-13 12:40:40 -0500352
353struct set_wd_data_t {
354 uint8_t t_use;
355 uint8_t t_action;
356 uint8_t preset;
357 uint8_t flags;
358 uint8_t ls;
359 uint8_t ms;
360} __attribute__ ((packed));
361
362
363
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500364ipmi_ret_t ipmi_app_set_watchdog(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
365 ipmi_request_t request, ipmi_response_t response,
Chris Austen6caf28b2015-10-13 12:40:40 -0500366 ipmi_data_len_t data_len, ipmi_context_t context)
367{
Vishwanatha Subbanna8fc09882017-06-12 19:57:37 +0530368 const char *objname = "/xyz/openbmc_project/watchdog/host0";
369 const char *iface = "xyz.openbmc_project.State.Watchdog";
370 const char *property_iface = "org.freedesktop.DBus.Properties";
vishwa1eaea4f2016-02-26 11:57:40 -0600371 sd_bus_message *reply = NULL;
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500372 sd_bus_error error = SD_BUS_ERROR_NULL;
373 int r = 0;
Chris Austen6caf28b2015-10-13 12:40:40 -0500374
375 set_wd_data_t *reqptr = (set_wd_data_t*) request;
376 uint16_t timer = 0;
Vishwanatha Subbanna8fc09882017-06-12 19:57:37 +0530377
378 // Making this uint64_t to match with provider
379 uint64_t timer_ms = 0;
Sergey Solomineb9b8142016-08-23 09:07:28 -0500380 char *busname = NULL;
Chris Austen6caf28b2015-10-13 12:40:40 -0500381 *data_len = 0;
382
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500383 // Get number of 100ms intervals
Chris Austen6caf28b2015-10-13 12:40:40 -0500384 timer = (((uint16_t)reqptr->ms) << 8) + reqptr->ls;
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500385 // Get timer value in ms
386 timer_ms = timer * 100;
Chris Austen6caf28b2015-10-13 12:40:40 -0500387
388 printf("WATCHDOG SET Timer:[0x%X] 100ms intervals\n",timer);
389
Sergey Solomineb9b8142016-08-23 09:07:28 -0500390 // Get bus name
391 r = mapper_get_service(bus, objname, &busname);
392 if (r < 0) {
Brad Bishop819ddd42016-10-05 21:19:19 -0400393 fprintf(stderr, "Failed to get %s bus name: %s\n",
394 objname, strerror(-r));
Sergey Solomineb9b8142016-08-23 09:07:28 -0500395 goto finish;
396 }
Adriana Kobylak0896be32015-10-22 13:27:23 -0500397
Vishwanatha Subbanna8fc09882017-06-12 19:57:37 +0530398 // Disable watchdog if running
399 r = sd_bus_call_method(bus, busname, objname, property_iface,
400 "Set", &error, &reply, "ssv",
401 iface, "Enabled", "b", false);
402 if(r < 0) {
403 fprintf(stderr, "Failed to disable Watchdog: %s\n",
404 strerror(-r));
vishwa1eaea4f2016-02-26 11:57:40 -0600405 goto finish;
406 }
407
408 if (reqptr->t_use & 0x40)
409 {
410 sd_bus_error_free(&error);
411 reply = sd_bus_message_unref(reply);
412
Vishwanatha Subbanna8fc09882017-06-12 19:57:37 +0530413 // Now Enable Watchdog
414 r = sd_bus_call_method(bus, busname, objname, property_iface,
415 "Set", &error, &reply, "ssv",
416 iface, "Enabled", "b", true);
417 if(r < 0) {
418 fprintf(stderr, "Failed to Enable Watchdog: %s\n",
419 strerror(-r));
420 goto finish;
421 }
422
423 // Set watchdog timer
424 r = sd_bus_call_method(bus, busname, objname, property_iface,
425 "Set", &error, &reply, "ssv",
426 iface, "TimeRemaining", "t", timer_ms);
427 if(r < 0) {
428 fprintf(stderr, "Failed to set new expiration time: %s\n",
429 strerror(-r));
430 goto finish;
vishwa1eaea4f2016-02-26 11:57:40 -0600431 }
432 }
433
434finish:
435 sd_bus_error_free(&error);
436 reply = sd_bus_message_unref(reply);
Sergey Solomineb9b8142016-08-23 09:07:28 -0500437 free(busname);
vishwa1eaea4f2016-02-26 11:57:40 -0600438
439 return (r < 0) ? -1 : IPMI_CC_OK;
Chris Austen6caf28b2015-10-13 12:40:40 -0500440}
441
442
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500443ipmi_ret_t ipmi_app_reset_watchdog(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
444 ipmi_request_t request, ipmi_response_t response,
Chris Austen6caf28b2015-10-13 12:40:40 -0500445 ipmi_data_len_t data_len, ipmi_context_t context)
446{
Vishwanatha Subbanna8fc09882017-06-12 19:57:37 +0530447 const char *objname = "/xyz/openbmc_project/watchdog/host0";
448 const char *iface = "xyz.openbmc_project.State.Watchdog";
449 const char *property_iface = "org.freedesktop.DBus.Properties";
vishwa1eaea4f2016-02-26 11:57:40 -0600450 sd_bus_message *reply = NULL;
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500451 sd_bus_error error = SD_BUS_ERROR_NULL;
452 int r = 0;
Sergey Solomineb9b8142016-08-23 09:07:28 -0500453 char *busname = NULL;
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500454
Vishwanatha Subbanna8fc09882017-06-12 19:57:37 +0530455 // Current time interval that is set in watchdog.
456 uint64_t interval = 0;
457
Chris Austen6caf28b2015-10-13 12:40:40 -0500458 // Status code.
459 ipmi_ret_t rc = IPMI_CC_OK;
460 *data_len = 0;
461
462 printf("WATCHDOG RESET\n");
Sergey Solomineb9b8142016-08-23 09:07:28 -0500463 // Get bus name
464 r = mapper_get_service(bus, objname, &busname);
465 if (r < 0) {
Brad Bishop819ddd42016-10-05 21:19:19 -0400466 fprintf(stderr, "Failed to get %s bus name: %s\n",
467 objname, strerror(-r));
Sergey Solomineb9b8142016-08-23 09:07:28 -0500468 goto finish;
469 }
Vishwanatha Subbanna8fc09882017-06-12 19:57:37 +0530470
471 // Get the current interval and set it back.
472 r = sd_bus_call_method(bus, busname, objname, property_iface,
473 "Get", &error, &reply, "ss",
474 iface, "Interval");
475
476 if(r < 0) {
477 fprintf(stderr, "Failed to get current Interval msg: %s\n",
478 strerror(-r));
479 goto finish;
480 }
481
482 // Now extract the value
483 r = sd_bus_message_read(reply, "v", "t", &interval);
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500484 if (r < 0) {
Vishwanatha Subbanna8fc09882017-06-12 19:57:37 +0530485 fprintf(stderr, "Failed to read current interval: %s\n",
486 strerror(-r));
487 goto finish;
488 }
489
490 sd_bus_error_free(&error);
491 reply = sd_bus_message_unref(reply);
492
493 // Set watchdog timer
494 r = sd_bus_call_method(bus, busname, objname, property_iface,
495 "Set", &error, &reply, "ssv",
496 iface, "TimeRemaining", "t", interval);
497 if(r < 0) {
498 fprintf(stderr, "Failed to refresh the timer: %s\n",
499 strerror(-r));
500 goto finish;
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500501 }
502
Sergey Solomineb9b8142016-08-23 09:07:28 -0500503finish:
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500504 sd_bus_error_free(&error);
vishwa1eaea4f2016-02-26 11:57:40 -0600505 reply = sd_bus_message_unref(reply);
Sergey Solomineb9b8142016-08-23 09:07:28 -0500506 free(busname);
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500507
Chris Austen6caf28b2015-10-13 12:40:40 -0500508 return rc;
509}
510
Nan Li3d0df912016-10-18 19:51:41 +0800511extern struct channel_config_t channel_config;
512
513ipmi_ret_t ipmi_set_channel_access(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
514 ipmi_request_t request, ipmi_response_t response,
515 ipmi_data_len_t data_len, ipmi_context_t context)
516{
517 ipmi_ret_t rc = IPMI_CC_OK;
518
519 sd_bus *bus = ipmid_get_sd_bus_connection();
520 sd_bus_message *reply = nullptr;
521 sd_bus_error error = SD_BUS_ERROR_NULL;
522 int r = 0;
523 char *app = nullptr;
524 int family = 0;
525 unsigned char prefixlen = 0;
526 char* ipaddr = nullptr;
527 uint32_t mask = 0xFFFFFFFF;
528 char* gateway = nullptr;
529 char tmp_netmask[INET_ADDRSTRLEN];
530
531 // Todo: parse the request data if needed.
532
533 // Using Set Channel cmd to apply changes of Set Lan Cmd.
534
535 r = mapper_get_service(bus, app_obj, &app);
536 if (r < 0) {
537 fprintf(stderr, "Failed to get %s bus name: %s\n",
538 app_obj, strerror(-r));
539 rc = IPMI_CC_UNSPECIFIED_ERROR;
540 goto finish;
541 }
542
543 r = sd_bus_call_method(bus, app, app_obj, app_ifc, "GetAddress4", &error,
544 &reply, "s", app_nwinterface);
545 if (r < 0) {
546 fprintf(stderr, "Failed to call Get Method: %s\n", strerror(-r));
547 rc = IPMI_CC_UNSPECIFIED_ERROR;
548 goto finish;
549 }
550
551 r = sd_bus_message_read(reply, "iyss",
552 &family, &prefixlen, &ipaddr, &gateway);
553 if (r < 0) {
554 fprintf(stderr, "Failed to get a response: %s\n", strerror(-r));
555 rc = IPMI_CC_RESPONSE_ERROR;
556 goto finish;
557 }
558
559 printf("N/W data from Cache: %s:%s:%s\n",
560 channel_config.new_ipaddr.c_str(),
561 channel_config.new_netmask.c_str(),
562 channel_config.new_gateway.c_str());
563
564 if(channel_config.new_ipaddr.empty()) {
565 channel_config.new_ipaddr.assign(ipaddr);
566 }
567
568 if(channel_config.new_netmask.empty()) {
569 mask = htonl(mask<<(32-prefixlen));
570 uint8_t* p = (uint8_t*)&mask;
571
572 snprintf(tmp_netmask, INET_ADDRSTRLEN, "%d.%d.%d.%d",
573 *p, *(p+1), *(p+2), *(p+3));
574 channel_config.new_netmask.assign(tmp_netmask);
575 }
576
577 if(channel_config.new_gateway.empty()) {
578 channel_config.new_gateway.assign(gateway);
579 }
580
581 printf("N/W data from HW %s:%d:%s:%s\n",
582 family==AF_INET?"IPv4":"IPv6", prefixlen, ipaddr,gateway);
583 printf("N/W data from Cache: %s:%s:%s\n",
584 channel_config.new_ipaddr.c_str(),
585 channel_config.new_netmask.c_str(),
586 channel_config.new_gateway.c_str());
587
588 r = sd_bus_call_method(bus, // On the System Bus
589 app, // Service to contact
590 app_obj, // Object path
591 app_ifc, // Interface name
592 "SetAddress4", // Method to be called
593 &error, // object to return error
594 &reply, // Response message on success
595 "ssss", // input message (Interface,
596 // IP Address, Netmask, Gateway)
597 app_nwinterface, // eth0
598 channel_config.new_ipaddr.c_str(),
599 channel_config.new_netmask.c_str(),
600 channel_config.new_gateway.c_str());
601 if(r < 0) {
602 fprintf(stderr, "Failed to set network data %s:%s:%s %s\n",
603 channel_config.new_ipaddr.c_str(),
604 channel_config.new_netmask.c_str(),
605 channel_config.new_gateway.c_str(),
606 error.message);
607 rc = IPMI_CC_UNSPECIFIED_ERROR;
608 }
609
610 channel_config.new_ipaddr.clear();
611 channel_config.new_netmask.clear();
612 channel_config.new_gateway.clear();
613
614finish:
615 sd_bus_error_free(&error);
616 reply = sd_bus_message_unref(reply);
617 free(app);
618
619 return rc;
620}
621
Chris Austenc2cd29d2016-02-05 20:02:29 -0600622// ATTENTION: This ipmi function is very hardcoded on purpose
623// OpenBMC does not fully support IPMI. This command is useful
624// to have around because it enables testing of interfaces with
625// the IPMI tool.
626#define GET_CHANNEL_INFO_CHANNEL_OFFSET 0
627// IPMI Table 6-2
628#define IPMI_CHANNEL_TYPE_IPMB 1
629// IPMI Table 6-3
630#define IPMI_CHANNEL_MEDIUM_TYPE_OTHER 6
631
632ipmi_ret_t ipmi_app_channel_info(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
633 ipmi_request_t request, ipmi_response_t response,
634 ipmi_data_len_t data_len, ipmi_context_t context)
635{
636 ipmi_ret_t rc = IPMI_CC_OK;
637 uint8_t resp[] = {
638 1,
639 IPMI_CHANNEL_MEDIUM_TYPE_OTHER,
640 IPMI_CHANNEL_TYPE_IPMB,
641 1,0x41,0xA7,0x00,0,0};
642 uint8_t *p = (uint8_t*) request;
643
644 printf("IPMI APP GET CHANNEL INFO\n");
645
tomjose7ec0add2016-06-27 07:59:28 -0500646 // The supported channels numbers are 1 and 8.
647 // Channel Number E is used as way to identify the current channel
648 // that the command is being is received from.
tomjose13fb4412016-03-08 14:02:34 -0600649 if (*p == 0xe || *p == 1 || *p == 8) {
Chris Austenc2cd29d2016-02-05 20:02:29 -0600650
651 *data_len = sizeof(resp);
652 memcpy(response, resp, *data_len);
653
654 } else {
655 rc = IPMI_CC_PARM_OUT_OF_RANGE;
656 *data_len = 0;
657 }
658
659 return rc;
660}
661
Adriana Kobylak3a552e12015-10-19 16:11:00 -0500662ipmi_ret_t ipmi_app_wildcard_handler(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
663 ipmi_request_t request, ipmi_response_t response,
vishwabmcba0bd5f2015-09-30 16:50:23 +0530664 ipmi_data_len_t data_len, ipmi_context_t context)
665{
666 printf("Handling WILDCARD Netfn:[0x%X], Cmd:[0x%X]\n",netfn, cmd);
667
668 // Status code.
Nan Li70aa8d92016-08-29 00:11:10 +0800669 ipmi_ret_t rc = IPMI_CC_INVALID;
vishwabmcba0bd5f2015-09-30 16:50:23 +0530670
671 *data_len = strlen("THIS IS WILDCARD");
672
673 // Now pack actual response
674 memcpy(response, "THIS IS WILDCARD", *data_len);
675
676 return rc;
677}
678
Chris Austen6caf28b2015-10-13 12:40:40 -0500679void register_netfn_app_functions()
vishwabmcba0bd5f2015-09-30 16:50:23 +0530680{
Tom05732372016-09-06 17:21:23 +0530681 // <Get BT Interface Capabilities>
vishwabmcba0bd5f2015-09-30 16:50:23 +0530682 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_GET_CAP_BIT);
Tom05732372016-09-06 17:21:23 +0530683 ipmi_register_callback(NETFUN_APP, IPMI_CMD_GET_CAP_BIT, NULL, ipmi_app_get_bt_capabilities,
684 PRIVILEGE_USER);
Chris Austen6caf28b2015-10-13 12:40:40 -0500685
Tom05732372016-09-06 17:21:23 +0530686 // <Wildcard Command>
Chris Austen6caf28b2015-10-13 12:40:40 -0500687 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_WILDCARD);
Tom05732372016-09-06 17:21:23 +0530688 ipmi_register_callback(NETFUN_APP, IPMI_CMD_WILDCARD, NULL, ipmi_app_wildcard_handler,
689 PRIVILEGE_USER);
Chris Austen6caf28b2015-10-13 12:40:40 -0500690
Tom05732372016-09-06 17:21:23 +0530691 // <Reset Watchdog Timer>
Chris Austen6caf28b2015-10-13 12:40:40 -0500692 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_RESET_WD);
Tom05732372016-09-06 17:21:23 +0530693 ipmi_register_callback(NETFUN_APP, IPMI_CMD_RESET_WD, NULL, ipmi_app_reset_watchdog,
694 PRIVILEGE_OPERATOR);
Chris Austen6caf28b2015-10-13 12:40:40 -0500695
Tom05732372016-09-06 17:21:23 +0530696 // <Set Watchdog Timer>
Chris Austen6caf28b2015-10-13 12:40:40 -0500697 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_SET_WD);
Tom05732372016-09-06 17:21:23 +0530698 ipmi_register_callback(NETFUN_APP, IPMI_CMD_SET_WD, NULL, ipmi_app_set_watchdog,
699 PRIVILEGE_OPERATOR);
Chris Austen6caf28b2015-10-13 12:40:40 -0500700
Tom05732372016-09-06 17:21:23 +0530701 // <Get Device ID>
Chris Austen6caf28b2015-10-13 12:40:40 -0500702 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_GET_DEVICE_ID);
Tom05732372016-09-06 17:21:23 +0530703 ipmi_register_callback(NETFUN_APP, IPMI_CMD_GET_DEVICE_ID, NULL, ipmi_app_get_device_id,
704 PRIVILEGE_USER);
Chris Austen6caf28b2015-10-13 12:40:40 -0500705
Tom05732372016-09-06 17:21:23 +0530706 // <Get Self Test Results>
Nan Li41fa24a2016-11-10 20:12:37 +0800707 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_GET_SELF_TEST_RESULTS);
Tom05732372016-09-06 17:21:23 +0530708 ipmi_register_callback(NETFUN_APP, IPMI_CMD_GET_SELF_TEST_RESULTS, NULL,
709 ipmi_app_get_self_test_results, PRIVILEGE_USER);
Nan Li41fa24a2016-11-10 20:12:37 +0800710
Tom05732372016-09-06 17:21:23 +0530711 // <Get Device GUID>
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500712 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_GET_DEVICE_GUID);
Tom05732372016-09-06 17:21:23 +0530713 ipmi_register_callback(NETFUN_APP, IPMI_CMD_GET_DEVICE_GUID, NULL, ipmi_app_get_device_guid,
714 PRIVILEGE_USER);
Adriana Kobylakd100ee52015-10-20 17:02:37 -0500715
Tom05732372016-09-06 17:21:23 +0530716 // <Set ACPI Power State>
Chris Austen6caf28b2015-10-13 12:40:40 -0500717 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_SET_ACPI);
Tom05732372016-09-06 17:21:23 +0530718 ipmi_register_callback(NETFUN_APP, IPMI_CMD_SET_ACPI, NULL, ipmi_app_set_acpi_power_state,
719 PRIVILEGE_ADMIN);
Chris Austen6caf28b2015-10-13 12:40:40 -0500720
Tom05732372016-09-06 17:21:23 +0530721 // <Set Channel Access>
Nan Li3d0df912016-10-18 19:51:41 +0800722 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP,
723 IPMI_CMD_SET_CHAN_ACCESS);
724 ipmi_register_callback(NETFUN_APP, IPMI_CMD_SET_CHAN_ACCESS, NULL,
Tom05732372016-09-06 17:21:23 +0530725 ipmi_set_channel_access, PRIVILEGE_ADMIN);
Chris Austenc2cd29d2016-02-05 20:02:29 -0600726
Tom05732372016-09-06 17:21:23 +0530727 // <Get Channel Info Command>
Chris Austenc2cd29d2016-02-05 20:02:29 -0600728 printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_GET_CHAN_INFO);
Tom05732372016-09-06 17:21:23 +0530729 ipmi_register_callback(NETFUN_APP, IPMI_CMD_GET_CHAN_INFO, NULL, ipmi_app_channel_info,
730 PRIVILEGE_USER);
Chris Austenc2cd29d2016-02-05 20:02:29 -0600731
vishwabmcba0bd5f2015-09-30 16:50:23 +0530732 return;
733}
734
Chris Austen6caf28b2015-10-13 12:40:40 -0500735