vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 1 | #include "apphandler.h" |
Patrick Williams | 37af733 | 2016-09-02 21:21:42 -0500 | [diff] [blame] | 2 | #include "host-ipmid/ipmid-api.h" |
Patrick Williams | 53a360e | 2016-08-12 22:01:02 -0500 | [diff] [blame] | 3 | #include "ipmid.hpp" |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 4 | #include "types.hpp" |
| 5 | #include "utils.hpp" |
| 6 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 7 | #include <stdio.h> |
| 8 | #include <string.h> |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 9 | #include <stdint.h> |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 10 | #include <systemd/sd-bus.h> |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 11 | #include <mapper.h> |
Nan Li | ee0cb90 | 2016-07-11 15:38:03 +0800 | [diff] [blame] | 12 | #include <array> |
Tom Joseph | 69fabfe | 2017-08-04 10:15:01 +0530 | [diff] [blame] | 13 | #include <vector> |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 14 | #include <experimental/filesystem> |
| 15 | |
Nan Li | 3d0df91 | 2016-10-18 19:51:41 +0800 | [diff] [blame] | 16 | #include <arpa/inet.h> |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 17 | #include "transporthandler.hpp" |
| 18 | |
| 19 | #include <phosphor-logging/log.hpp> |
| 20 | #include <phosphor-logging/elog-errors.hpp> |
| 21 | #include "xyz/openbmc_project/Common/error.hpp" |
| 22 | |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 23 | extern sd_bus *bus; |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 24 | |
Nan Li | 3d0df91 | 2016-10-18 19:51:41 +0800 | [diff] [blame] | 25 | constexpr auto app_obj = "/org/openbmc/NetworkManager/Interface"; |
| 26 | constexpr auto app_ifc = "org.openbmc.NetworkManager"; |
| 27 | constexpr auto app_nwinterface = "eth0"; |
| 28 | |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 29 | constexpr auto ipv4Protocol = "xyz.openbmc_project.Network.IP.Protocol.IPv4"; |
| 30 | |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 31 | void register_netfn_app_functions() __attribute__((constructor)); |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 32 | |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 33 | using namespace phosphor::logging; |
| 34 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 35 | namespace fs = std::experimental::filesystem; |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 36 | |
Nan Li | ee0cb90 | 2016-07-11 15:38:03 +0800 | [diff] [blame] | 37 | // Offset in get device id command. |
| 38 | typedef struct |
| 39 | { |
| 40 | uint8_t id; |
| 41 | uint8_t revision; |
| 42 | uint8_t fw[2]; |
| 43 | uint8_t ipmi_ver; |
| 44 | uint8_t addn_dev_support; |
| 45 | uint8_t manuf_id[3]; |
| 46 | uint8_t prod_id[2]; |
| 47 | uint8_t aux[4]; |
| 48 | }__attribute__((packed)) ipmi_device_id_t; |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 49 | |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 50 | ipmi_ret_t ipmi_app_set_acpi_power_state(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 51 | ipmi_request_t request, ipmi_response_t response, |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 52 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 53 | { |
| 54 | ipmi_ret_t rc = IPMI_CC_OK; |
| 55 | *data_len = 0; |
| 56 | |
| 57 | printf("IPMI SET ACPI STATE Ignoring for now\n"); |
| 58 | return rc; |
| 59 | } |
| 60 | |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 61 | |
| 62 | typedef struct |
| 63 | { |
| 64 | char major; |
| 65 | char minor; |
Chris Austen | 176c965 | 2016-04-30 16:32:17 -0500 | [diff] [blame] | 66 | uint16_t d[2]; |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 67 | } rev_t; |
| 68 | |
| 69 | |
| 70 | /* Currently only supports the vx.x-x-[-x] format Will return -1 if not in */ |
| 71 | /* the format this routine knows how to parse */ |
| 72 | /* version = v0.6-19-gf363f61-dirty */ |
| 73 | /* ^ ^ ^^ ^ */ |
| 74 | /* | | |----------|-- additional details */ |
| 75 | /* | |---------------- Minor */ |
| 76 | /* |------------------ Major */ |
| 77 | /* Additional details : If the option group exists it will force Auxiliary */ |
| 78 | /* Firmware Revision Information 4th byte to 1 indicating the build was */ |
| 79 | /* derived with additional edits */ |
| 80 | int convert_version(const char *p, rev_t *rev) |
| 81 | { |
| 82 | char *s, *token; |
Chris Austen | 176c965 | 2016-04-30 16:32:17 -0500 | [diff] [blame] | 83 | uint16_t commits; |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 84 | |
| 85 | if (*p != 'v') |
| 86 | return -1; |
| 87 | p++; |
| 88 | |
| 89 | s = strdup(p); |
| 90 | token = strtok(s,".-"); |
| 91 | |
| 92 | rev->major = (int8_t) atoi(token); |
| 93 | |
| 94 | token = strtok(NULL, ".-"); |
| 95 | rev->minor = (int8_t) atoi(token); |
| 96 | |
| 97 | // Capture the number of commits on top of the minor tag. |
| 98 | // I'm using BE format like the ipmi spec asked for |
| 99 | token = strtok(NULL,".-"); |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 100 | |
Chris Austen | 176c965 | 2016-04-30 16:32:17 -0500 | [diff] [blame] | 101 | if (token) { |
| 102 | commits = (int16_t) atoi(token); |
| 103 | rev->d[0] = (commits>>8) | (commits<<8); |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 104 | |
Chris Austen | 176c965 | 2016-04-30 16:32:17 -0500 | [diff] [blame] | 105 | // commit number we skip |
| 106 | token = strtok(NULL,".-"); |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 107 | |
Chris Austen | 176c965 | 2016-04-30 16:32:17 -0500 | [diff] [blame] | 108 | } else { |
| 109 | rev->d[0] = 0; |
| 110 | } |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 111 | |
| 112 | // Any value of the optional parameter forces it to 1 |
Chris Austen | 176c965 | 2016-04-30 16:32:17 -0500 | [diff] [blame] | 113 | if (token) |
| 114 | token = strtok(NULL,".-"); |
| 115 | |
| 116 | rev->d[1] = (token != NULL) ? 1 : 0; |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 117 | |
| 118 | free(s); |
| 119 | return 0; |
| 120 | } |
| 121 | |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 122 | ipmi_ret_t ipmi_app_get_device_id(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 123 | ipmi_request_t request, ipmi_response_t response, |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 124 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 125 | { |
| 126 | ipmi_ret_t rc = IPMI_CC_OK; |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 127 | const char *objname = "/org/openbmc/inventory/system/chassis/motherboard/bmc"; |
| 128 | const char *iface = "org.openbmc.InventoryItem"; |
| 129 | char *ver = NULL; |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 130 | char *busname = NULL; |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 131 | int r; |
| 132 | rev_t rev = {0}; |
Nan Li | ee0cb90 | 2016-07-11 15:38:03 +0800 | [diff] [blame] | 133 | ipmi_device_id_t dev_id{}; |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 134 | |
| 135 | // Data length |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 136 | *data_len = sizeof(dev_id); |
| 137 | |
Nan Li | ee0cb90 | 2016-07-11 15:38:03 +0800 | [diff] [blame] | 138 | // From IPMI spec, controller that have different application commands, or different |
| 139 | // definitions of OEM fields, are expected to have different Device ID values. |
| 140 | // Set to 0 now. |
| 141 | |
| 142 | // Device Revision is set to 0 now. |
| 143 | // Bit7 identifies if device provide Device SDRs, obmc don't have SDR,we use ipmi to |
| 144 | // simulate SDR, hence the value: |
| 145 | dev_id.revision = 0x80; |
| 146 | |
| 147 | // Firmware revision is already implemented, so get it from appropriate position. |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 148 | r = mapper_get_service(bus, objname, &busname); |
| 149 | if (r < 0) { |
Brad Bishop | 819ddd4 | 2016-10-05 21:19:19 -0400 | [diff] [blame] | 150 | fprintf(stderr, "Failed to get %s bus name: %s\n", |
| 151 | objname, strerror(-r)); |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 152 | goto finish; |
| 153 | } |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 154 | r = sd_bus_get_property_string(bus,busname,objname,iface,"version", NULL, &ver); |
| 155 | if ( r < 0 ) { |
| 156 | fprintf(stderr, "Failed to obtain version property: %s\n", strerror(-r)); |
| 157 | } else { |
| 158 | r = convert_version(ver, &rev); |
| 159 | if( r >= 0 ) { |
Nan Li | ee0cb90 | 2016-07-11 15:38:03 +0800 | [diff] [blame] | 160 | // bit7 identifies if the device is available, 0=normal operation, |
| 161 | // 1=device firmware, SDR update or self-initialization in progress. |
| 162 | // our SDR is normal working condition, so mask: |
| 163 | dev_id.fw[0] = 0x7F & rev.major; |
Adriana Kobylak | 0e91264 | 2016-06-22 16:54:39 -0500 | [diff] [blame] | 164 | |
| 165 | rev.minor = (rev.minor > 99 ? 99 : rev.minor); |
Nan Li | ee0cb90 | 2016-07-11 15:38:03 +0800 | [diff] [blame] | 166 | dev_id.fw[1] = rev.minor % 10 + (rev.minor / 10) * 16; |
| 167 | memcpy(&dev_id.aux, rev.d, 4); |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 168 | } |
| 169 | } |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 170 | |
Nan Li | ee0cb90 | 2016-07-11 15:38:03 +0800 | [diff] [blame] | 171 | // IPMI Spec verison 2.0 |
| 172 | dev_id.ipmi_ver = 2; |
| 173 | |
| 174 | // Additional device Support. |
| 175 | // List the 'logical device' commands and functions that the controller supports |
| 176 | // that are in addition to the mandatory IPM and Application commands. |
| 177 | // [7] Chassis Device (device functions as chassis device per ICMB spec.) |
| 178 | // [6] Bridge (device responds to Bridge NetFn commands) |
| 179 | // [5] IPMB Event Generator |
| 180 | // [4] IPMB Event Receiver |
| 181 | // [3] FRU Inventory Device |
| 182 | // [2] SEL Device |
| 183 | // [1] SDR Repository Device |
| 184 | // [0] Sensor Device |
| 185 | // We support FRU/SEL/Sensor now: |
| 186 | dev_id.addn_dev_support = 0x8D; |
| 187 | |
| 188 | // This value is the IANA number assigned to "IBM Platform Firmware |
| 189 | // Division", which is also used by our service processor. We may want |
| 190 | // a different number or at least a different version? |
| 191 | dev_id.manuf_id[0] = 0x41; |
| 192 | dev_id.manuf_id[1] = 0xA7; |
| 193 | dev_id.manuf_id[2] = 0x00; |
| 194 | |
| 195 | // Witherspoon's product ID is hardcoded to 4F42(ASCII 'OB'). |
| 196 | // TODO: openbmc/openbmc#495 |
| 197 | dev_id.prod_id[0] = 0x4F; |
| 198 | dev_id.prod_id[1] = 0x42; |
| 199 | |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 200 | // Pack the actual response |
Chris Austen | 7303bdc | 2016-04-17 11:50:54 -0500 | [diff] [blame] | 201 | memcpy(response, &dev_id, *data_len); |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 202 | finish: |
| 203 | free(busname); |
Xo Wang | e553638 | 2017-07-20 20:14:00 -0700 | [diff] [blame] | 204 | free(ver); |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 205 | return rc; |
| 206 | } |
| 207 | |
Nan Li | 41fa24a | 2016-11-10 20:12:37 +0800 | [diff] [blame] | 208 | ipmi_ret_t ipmi_app_get_self_test_results(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 209 | ipmi_request_t request, ipmi_response_t response, |
| 210 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 211 | { |
| 212 | ipmi_ret_t rc = IPMI_CC_OK; |
| 213 | |
| 214 | // Byte 2: |
| 215 | // 55h - No error. |
| 216 | // 56h - Self Test funciton not implemented in this controller. |
| 217 | // 57h - Corrupted or inaccesssible data or devices. |
| 218 | // 58h - Fatal hardware error. |
| 219 | // FFh - reserved. |
| 220 | // all other: Device-specific 'internal failure'. |
| 221 | // Byte 3: |
| 222 | // For byte 2 = 55h, 56h, FFh: 00h |
| 223 | // For byte 2 = 58h, all other: Device-specific |
| 224 | // For byte 2 = 57h: self-test error bitfield. |
| 225 | // Note: returning 57h does not imply that all test were run. |
| 226 | // [7] 1b = Cannot access SEL device. |
| 227 | // [6] 1b = Cannot access SDR Repository. |
| 228 | // [5] 1b = Cannot access BMC FRU device. |
| 229 | // [4] 1b = IPMB signal lines do not respond. |
| 230 | // [3] 1b = SDR Repository empty. |
| 231 | // [2] 1b = Internal Use Area of BMC FRU corrupted. |
| 232 | // [1] 1b = controller update 'boot block' firmware corrupted. |
| 233 | // [0] 1b = controller operational firmware corrupted. |
| 234 | |
| 235 | char selftestresults[2] = {0}; |
| 236 | |
| 237 | *data_len = 2; |
| 238 | |
| 239 | selftestresults[0] = 0x56; |
| 240 | selftestresults[1] = 0; |
| 241 | |
| 242 | memcpy(response, selftestresults, *data_len); |
| 243 | |
| 244 | return rc; |
| 245 | } |
| 246 | |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 247 | ipmi_ret_t ipmi_app_get_device_guid(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 248 | ipmi_request_t request, ipmi_response_t response, |
| 249 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 250 | { |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 251 | const char *objname = "/org/openbmc/control/chassis0"; |
Adriana Kobylak | 31bccae | 2015-11-05 13:31:06 -0600 | [diff] [blame] | 252 | const char *iface = "org.freedesktop.DBus.Properties"; |
| 253 | const char *chassis_iface = "org.openbmc.control.Chassis"; |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 254 | sd_bus_message *reply = NULL; |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 255 | sd_bus_error error = SD_BUS_ERROR_NULL; |
| 256 | int r = 0; |
| 257 | char *uuid = NULL; |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 258 | char *busname = NULL; |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 259 | |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 260 | // UUID is in RFC4122 format. Ex: 61a39523-78f2-11e5-9862-e6402cfc3223 |
| 261 | // Per IPMI Spec 2.0 need to convert to 16 hex bytes and reverse the byte order |
| 262 | // Ex: 0x2332fc2c40e66298e511f2782395a361 |
| 263 | |
| 264 | const int resp_size = 16; // Response is 16 hex bytes per IPMI Spec |
| 265 | uint8_t resp_uuid[resp_size]; // Array to hold the formatted response |
| 266 | int resp_loc = resp_size-1; // Point resp end of array to save in reverse order |
| 267 | int i = 0; |
| 268 | char *tokptr = NULL; |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 269 | char *id_octet = NULL; |
| 270 | |
| 271 | // Status code. |
| 272 | ipmi_ret_t rc = IPMI_CC_OK; |
| 273 | *data_len = 0; |
| 274 | |
| 275 | printf("IPMI GET DEVICE GUID\n"); |
| 276 | |
| 277 | // Call Get properties method with the interface and property name |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 278 | r = mapper_get_service(bus, objname, &busname); |
| 279 | if (r < 0) { |
Brad Bishop | 819ddd4 | 2016-10-05 21:19:19 -0400 | [diff] [blame] | 280 | fprintf(stderr, "Failed to get %s bus name: %s\n", |
| 281 | objname, strerror(-r)); |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 282 | goto finish; |
| 283 | } |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 284 | r = sd_bus_call_method(bus,busname,objname,iface, |
| 285 | "Get",&error, &reply, "ss", |
| 286 | chassis_iface, "uuid"); |
| 287 | if (r < 0) |
| 288 | { |
| 289 | fprintf(stderr, "Failed to call Get Method: %s\n", strerror(-r)); |
| 290 | rc = IPMI_CC_UNSPECIFIED_ERROR; |
| 291 | goto finish; |
| 292 | } |
| 293 | |
| 294 | r = sd_bus_message_read(reply, "v", "s", &uuid); |
| 295 | if (r < 0 || uuid == NULL) |
| 296 | { |
| 297 | fprintf(stderr, "Failed to get a response: %s", strerror(-r)); |
| 298 | rc = IPMI_CC_RESPONSE_ERROR; |
| 299 | goto finish; |
| 300 | } |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 301 | |
| 302 | // Traverse the UUID |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 303 | id_octet = strtok_r(uuid, "-", &tokptr); // Get the UUID octects separated by dash |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 304 | |
| 305 | if (id_octet == NULL) |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 306 | { |
| 307 | // Error |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 308 | fprintf(stderr, "Unexpected UUID format: %s", uuid); |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 309 | rc = IPMI_CC_RESPONSE_ERROR; |
| 310 | goto finish; |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | while (id_octet != NULL) |
| 314 | { |
| 315 | // Calculate the octet string size since it varies |
| 316 | // Divide it by 2 for the array size since 1 byte is built from 2 chars |
| 317 | int tmp_size = strlen(id_octet)/2; |
| 318 | |
| 319 | for(i = 0; i < tmp_size; i++) |
| 320 | { |
Joel Stanley | 38310cd | 2015-11-25 17:32:08 +1030 | [diff] [blame] | 321 | char tmp_array[3] = {0}; // Holder of the 2 chars that will become a byte |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 322 | strncpy(tmp_array, id_octet, 2); // 2 chars at a time |
| 323 | |
| 324 | int resp_byte = strtoul(tmp_array, NULL, 16); // Convert to hex byte |
| 325 | memcpy((void*)&resp_uuid[resp_loc], &resp_byte, 1); // Copy end to first |
| 326 | resp_loc--; |
| 327 | id_octet+=2; // Finished with the 2 chars, advance |
| 328 | } |
| 329 | id_octet=strtok_r(NULL, "-", &tokptr); // Get next octet |
| 330 | } |
| 331 | |
| 332 | // Data length |
| 333 | *data_len = resp_size; |
| 334 | |
| 335 | // Pack the actual response |
| 336 | memcpy(response, &resp_uuid, *data_len); |
| 337 | |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 338 | finish: |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 339 | sd_bus_error_free(&error); |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 340 | reply = sd_bus_message_unref(reply); |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 341 | free(busname); |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 342 | |
| 343 | return rc; |
| 344 | } |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 345 | |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 346 | ipmi_ret_t ipmi_app_get_bt_capabilities(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 347 | ipmi_request_t request, ipmi_response_t response, |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 348 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 349 | { |
| 350 | printf("Handling Netfn:[0x%X], Cmd:[0x%X]\n",netfn,cmd); |
| 351 | |
| 352 | // Status code. |
| 353 | ipmi_ret_t rc = IPMI_CC_OK; |
| 354 | |
Adriana Kobylak | 88ad815 | 2016-12-13 10:09:08 -0600 | [diff] [blame] | 355 | // Per IPMI 2.0 spec, the input and output buffer size must be the max |
| 356 | // buffer size minus one byte to allocate space for the length byte. |
| 357 | uint8_t str[] = {0x01, MAX_IPMI_BUFFER-1, MAX_IPMI_BUFFER-1, 0x0A, 0x01}; |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 358 | |
| 359 | // Data length |
| 360 | *data_len = sizeof(str); |
| 361 | |
| 362 | // Pack the actual response |
| 363 | memcpy(response, &str, *data_len); |
| 364 | |
| 365 | return rc; |
| 366 | } |
| 367 | |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 368 | |
| 369 | struct set_wd_data_t { |
| 370 | uint8_t t_use; |
| 371 | uint8_t t_action; |
| 372 | uint8_t preset; |
| 373 | uint8_t flags; |
| 374 | uint8_t ls; |
| 375 | uint8_t ms; |
| 376 | } __attribute__ ((packed)); |
| 377 | |
| 378 | |
| 379 | |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 380 | ipmi_ret_t ipmi_app_set_watchdog(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 381 | ipmi_request_t request, ipmi_response_t response, |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 382 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 383 | { |
Vishwanatha Subbanna | 8fc0988 | 2017-06-12 19:57:37 +0530 | [diff] [blame] | 384 | const char *objname = "/xyz/openbmc_project/watchdog/host0"; |
| 385 | const char *iface = "xyz.openbmc_project.State.Watchdog"; |
| 386 | const char *property_iface = "org.freedesktop.DBus.Properties"; |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 387 | sd_bus_message *reply = NULL; |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 388 | sd_bus_error error = SD_BUS_ERROR_NULL; |
| 389 | int r = 0; |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 390 | |
| 391 | set_wd_data_t *reqptr = (set_wd_data_t*) request; |
| 392 | uint16_t timer = 0; |
Vishwanatha Subbanna | 8fc0988 | 2017-06-12 19:57:37 +0530 | [diff] [blame] | 393 | |
| 394 | // Making this uint64_t to match with provider |
| 395 | uint64_t timer_ms = 0; |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 396 | char *busname = NULL; |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 397 | *data_len = 0; |
| 398 | |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 399 | // Get number of 100ms intervals |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 400 | timer = (((uint16_t)reqptr->ms) << 8) + reqptr->ls; |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 401 | // Get timer value in ms |
| 402 | timer_ms = timer * 100; |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 403 | |
| 404 | printf("WATCHDOG SET Timer:[0x%X] 100ms intervals\n",timer); |
| 405 | |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 406 | // Get bus name |
| 407 | r = mapper_get_service(bus, objname, &busname); |
| 408 | if (r < 0) { |
Brad Bishop | 819ddd4 | 2016-10-05 21:19:19 -0400 | [diff] [blame] | 409 | fprintf(stderr, "Failed to get %s bus name: %s\n", |
| 410 | objname, strerror(-r)); |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 411 | goto finish; |
| 412 | } |
Adriana Kobylak | 0896be3 | 2015-10-22 13:27:23 -0500 | [diff] [blame] | 413 | |
Vishwanatha Subbanna | 8fc0988 | 2017-06-12 19:57:37 +0530 | [diff] [blame] | 414 | // Disable watchdog if running |
| 415 | r = sd_bus_call_method(bus, busname, objname, property_iface, |
| 416 | "Set", &error, &reply, "ssv", |
| 417 | iface, "Enabled", "b", false); |
| 418 | if(r < 0) { |
| 419 | fprintf(stderr, "Failed to disable Watchdog: %s\n", |
| 420 | strerror(-r)); |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 421 | goto finish; |
| 422 | } |
| 423 | |
Patrick Venture | 6c50ad9 | 2017-07-29 22:38:28 -0700 | [diff] [blame] | 424 | /* |
| 425 | * If the action is 0, it means, do nothing. Multiple actions on timer |
| 426 | * expiration aren't supported by phosphor-watchdog yet, so when the |
| 427 | * action set is "none", we should just leave the timer disabled. |
| 428 | */ |
| 429 | if (0 == reqptr->t_action) |
| 430 | { |
| 431 | goto finish; |
| 432 | } |
| 433 | |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 434 | if (reqptr->t_use & 0x40) |
| 435 | { |
| 436 | sd_bus_error_free(&error); |
| 437 | reply = sd_bus_message_unref(reply); |
| 438 | |
Vishwanatha Subbanna | 8fc0988 | 2017-06-12 19:57:37 +0530 | [diff] [blame] | 439 | // Now Enable Watchdog |
| 440 | r = sd_bus_call_method(bus, busname, objname, property_iface, |
| 441 | "Set", &error, &reply, "ssv", |
| 442 | iface, "Enabled", "b", true); |
| 443 | if(r < 0) { |
| 444 | fprintf(stderr, "Failed to Enable Watchdog: %s\n", |
| 445 | strerror(-r)); |
| 446 | goto finish; |
| 447 | } |
| 448 | |
| 449 | // Set watchdog timer |
| 450 | r = sd_bus_call_method(bus, busname, objname, property_iface, |
| 451 | "Set", &error, &reply, "ssv", |
| 452 | iface, "TimeRemaining", "t", timer_ms); |
| 453 | if(r < 0) { |
| 454 | fprintf(stderr, "Failed to set new expiration time: %s\n", |
| 455 | strerror(-r)); |
| 456 | goto finish; |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 457 | } |
| 458 | } |
| 459 | |
| 460 | finish: |
| 461 | sd_bus_error_free(&error); |
| 462 | reply = sd_bus_message_unref(reply); |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 463 | free(busname); |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 464 | |
| 465 | return (r < 0) ? -1 : IPMI_CC_OK; |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 469 | ipmi_ret_t ipmi_app_reset_watchdog(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 470 | ipmi_request_t request, ipmi_response_t response, |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 471 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 472 | { |
Vishwanatha Subbanna | 8fc0988 | 2017-06-12 19:57:37 +0530 | [diff] [blame] | 473 | const char *objname = "/xyz/openbmc_project/watchdog/host0"; |
| 474 | const char *iface = "xyz.openbmc_project.State.Watchdog"; |
| 475 | const char *property_iface = "org.freedesktop.DBus.Properties"; |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 476 | sd_bus_message *reply = NULL; |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 477 | sd_bus_error error = SD_BUS_ERROR_NULL; |
| 478 | int r = 0; |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 479 | char *busname = NULL; |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 480 | |
Vishwanatha Subbanna | 8fc0988 | 2017-06-12 19:57:37 +0530 | [diff] [blame] | 481 | // Current time interval that is set in watchdog. |
| 482 | uint64_t interval = 0; |
| 483 | |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 484 | // Status code. |
| 485 | ipmi_ret_t rc = IPMI_CC_OK; |
| 486 | *data_len = 0; |
| 487 | |
| 488 | printf("WATCHDOG RESET\n"); |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 489 | // Get bus name |
| 490 | r = mapper_get_service(bus, objname, &busname); |
| 491 | if (r < 0) { |
Brad Bishop | 819ddd4 | 2016-10-05 21:19:19 -0400 | [diff] [blame] | 492 | fprintf(stderr, "Failed to get %s bus name: %s\n", |
| 493 | objname, strerror(-r)); |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 494 | goto finish; |
| 495 | } |
Vishwanatha Subbanna | 8fc0988 | 2017-06-12 19:57:37 +0530 | [diff] [blame] | 496 | |
| 497 | // Get the current interval and set it back. |
| 498 | r = sd_bus_call_method(bus, busname, objname, property_iface, |
| 499 | "Get", &error, &reply, "ss", |
| 500 | iface, "Interval"); |
| 501 | |
| 502 | if(r < 0) { |
| 503 | fprintf(stderr, "Failed to get current Interval msg: %s\n", |
| 504 | strerror(-r)); |
| 505 | goto finish; |
| 506 | } |
| 507 | |
| 508 | // Now extract the value |
| 509 | r = sd_bus_message_read(reply, "v", "t", &interval); |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 510 | if (r < 0) { |
Vishwanatha Subbanna | 8fc0988 | 2017-06-12 19:57:37 +0530 | [diff] [blame] | 511 | fprintf(stderr, "Failed to read current interval: %s\n", |
| 512 | strerror(-r)); |
| 513 | goto finish; |
| 514 | } |
| 515 | |
| 516 | sd_bus_error_free(&error); |
| 517 | reply = sd_bus_message_unref(reply); |
| 518 | |
| 519 | // Set watchdog timer |
| 520 | r = sd_bus_call_method(bus, busname, objname, property_iface, |
| 521 | "Set", &error, &reply, "ssv", |
| 522 | iface, "TimeRemaining", "t", interval); |
| 523 | if(r < 0) { |
| 524 | fprintf(stderr, "Failed to refresh the timer: %s\n", |
| 525 | strerror(-r)); |
| 526 | goto finish; |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 527 | } |
| 528 | |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 529 | finish: |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 530 | sd_bus_error_free(&error); |
vishwa | 1eaea4f | 2016-02-26 11:57:40 -0600 | [diff] [blame] | 531 | reply = sd_bus_message_unref(reply); |
Sergey Solomin | eb9b814 | 2016-08-23 09:07:28 -0500 | [diff] [blame] | 532 | free(busname); |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 533 | |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 534 | return rc; |
| 535 | } |
| 536 | |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 537 | extern struct ChannelConfig_t channelConfig; |
Nan Li | 3d0df91 | 2016-10-18 19:51:41 +0800 | [diff] [blame] | 538 | |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 539 | ipmi_ret_t ipmi_set_channel_access(ipmi_netfn_t netfn, |
| 540 | ipmi_cmd_t cmd, |
| 541 | ipmi_request_t request, |
| 542 | ipmi_response_t response, |
| 543 | ipmi_data_len_t data_len, |
| 544 | ipmi_context_t context) |
Nan Li | 3d0df91 | 2016-10-18 19:51:41 +0800 | [diff] [blame] | 545 | { |
| 546 | ipmi_ret_t rc = IPMI_CC_OK; |
| 547 | |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 548 | std::string ipaddress; |
| 549 | std::string gateway; |
| 550 | uint8_t prefix {}; |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 551 | uint32_t vlanID {}; |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 552 | std::string networkInterfacePath; |
| 553 | ipmi::DbusObjectInfo ipObject; |
| 554 | ipmi::DbusObjectInfo systemObject; |
Nan Li | 3d0df91 | 2016-10-18 19:51:41 +0800 | [diff] [blame] | 555 | |
| 556 | // Todo: parse the request data if needed. |
Nan Li | 3d0df91 | 2016-10-18 19:51:41 +0800 | [diff] [blame] | 557 | // Using Set Channel cmd to apply changes of Set Lan Cmd. |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 558 | try |
| 559 | { |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 560 | sdbusplus::bus::bus bus(ipmid_get_sd_bus_connection()); |
| 561 | |
| 562 | log<level::INFO>("Network data from Cache", |
| 563 | entry("PREFIX=%s", channelConfig.netmask.c_str()), |
| 564 | entry("ADDRESS=%s", channelConfig.ipaddr.c_str()), |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 565 | entry("GATEWAY=%s", channelConfig.gateway.c_str()), |
| 566 | entry("VLAN=%d", channelConfig.vlanID), |
| 567 | entry("IPSRC=%d", channelConfig.ipsrc)); |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 568 | |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 569 | if (channelConfig.vlanID != ipmi::network::VLAN_ID_MASK) |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 570 | { |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 571 | //get the first twelve bits which is vlan id |
| 572 | //not interested in rest of the bits. |
| 573 | channelConfig.vlanID = le32toh(channelConfig.vlanID); |
| 574 | vlanID = channelConfig.vlanID & ipmi::network::VLAN_ID_MASK; |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 575 | } |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 576 | |
| 577 | // if the asked ip src is DHCP then not interested in |
| 578 | // any given data except vlan. |
| 579 | if (channelConfig.ipsrc != ipmi::network::IPOrigin::DHCP) |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 580 | { |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 581 | // always get the system object |
| 582 | systemObject = ipmi::getDbusObject( |
| 583 | bus, |
| 584 | ipmi::network::SYSTEMCONFIG_INTERFACE, |
| 585 | ipmi::network::ROOT); |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 586 | |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 587 | // the below code is to determine the mode of the interface |
| 588 | // as the handling is same, if the system is configured with |
| 589 | // DHCP or user has given all the data. |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 590 | try |
| 591 | { |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 592 | ipmi::ObjectTree ancestorMap; |
| 593 | |
| 594 | ipmi::InterfaceList interfaces { |
| 595 | ipmi::network::ETHERNET_INTERFACE }; |
| 596 | |
| 597 | // if the system is having ip object,then |
| 598 | // get the IP object. |
| 599 | ipObject = ipmi::getDbusObject(bus, |
| 600 | ipmi::network::IP_INTERFACE, |
| 601 | ipmi::network::ROOT, |
| 602 | ipmi::network::IP_TYPE); |
| 603 | |
| 604 | // Get the parent interface of the IP object. |
| 605 | try |
| 606 | { |
| 607 | ancestorMap = ipmi::getAllAncestors(bus, |
| 608 | ipObject.first, |
| 609 | std::move(interfaces)); |
| 610 | } |
| 611 | catch (InternalFailure& e) |
| 612 | { |
| 613 | // if unable to get the parent interface |
| 614 | // then commit the error and return. |
| 615 | log<level::ERR>("Unable to get the parent interface", |
| 616 | entry("PATH=%s", ipObject.first.c_str()), |
| 617 | entry("INTERFACE=%s", |
| 618 | ipmi::network::ETHERNET_INTERFACE)); |
| 619 | commit<InternalFailure>(); |
| 620 | rc = IPMI_CC_UNSPECIFIED_ERROR; |
| 621 | channelConfig.clear(); |
| 622 | return rc; |
| 623 | } |
| 624 | |
| 625 | networkInterfacePath = ancestorMap.begin()->first; |
| 626 | } |
| 627 | catch (InternalFailure& e) |
| 628 | { |
| 629 | // TODO Currently IPMI supports single interface,need to handle |
| 630 | // Multiple interface through |
| 631 | // https://github.com/openbmc/openbmc/issues/2138 |
| 632 | |
| 633 | // if there is no ip configured on the system,then |
| 634 | // get the network interface object. |
| 635 | auto networkInterfaceObject = ipmi::getDbusObject( |
| 636 | bus, |
| 637 | ipmi::network::ETHERNET_INTERFACE, |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 638 | ipmi::network::ROOT, |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 639 | ipmi::network::INTERFACE); |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 640 | |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 641 | networkInterfacePath = std::move(networkInterfaceObject.first); |
| 642 | } |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 643 | |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 644 | // get the configured mode on the system. |
| 645 | auto enableDHCP = ipmi::getDbusProperty( |
| 646 | bus, |
| 647 | ipmi::network::SERVICE, |
| 648 | networkInterfacePath, |
| 649 | ipmi::network::ETHERNET_INTERFACE, |
| 650 | "DHCPEnabled").get<bool>(); |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 651 | |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 652 | // check whether user has given all the data |
| 653 | // or the configured system interface is dhcp enabled, |
| 654 | // in both of the cases get the values from the cache. |
| 655 | if ((!channelConfig.ipaddr.empty() && |
| 656 | !channelConfig.netmask.empty() && |
| 657 | !channelConfig.gateway.empty()) || |
| 658 | (enableDHCP)) // configured system interface mode = DHCP |
| 659 | { |
| 660 | //convert mask into prefix |
| 661 | ipaddress = channelConfig.ipaddr; |
| 662 | prefix = ipmi::network::toPrefix(AF_INET, channelConfig.netmask); |
| 663 | gateway = channelConfig.gateway; |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 664 | if (channelConfig.vlanID != ipmi::network::VLAN_ID_MASK) |
| 665 | { |
| 666 | //get the first twelve bits which is vlan id |
| 667 | //not interested in rest of the bits. |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 668 | channelConfig.vlanID = le32toh(channelConfig.vlanID); |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 669 | vlanID = channelConfig.vlanID & ipmi::network::VLAN_ID_MASK; |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 670 | } |
| 671 | else |
| 672 | { |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 673 | vlanID = ipmi::network::getVLAN(networkInterfacePath); |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 674 | } |
| 675 | |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 676 | } |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 677 | else // asked ip src = static and configured system src = static |
| 678 | // or partially given data. |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 679 | { |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 680 | // We have partial filled cache so get the remaining |
| 681 | // info from the system. |
| 682 | |
| 683 | // Get the network data from the system as user has |
| 684 | // not given all the data then use the data fetched from the |
| 685 | // system but it is implementation dependent,IPMI spec doesn't |
| 686 | // force it. |
| 687 | |
| 688 | // if system is not having any ip object don't throw error, |
| 689 | try |
| 690 | { |
| 691 | auto properties = ipmi::getAllDbusProperties( |
| 692 | bus, |
| 693 | ipObject.second, |
| 694 | ipObject.first, |
| 695 | ipmi::network::IP_INTERFACE); |
| 696 | |
| 697 | ipaddress = channelConfig.ipaddr.empty() ? |
| 698 | properties["Address"].get<std::string>() : |
| 699 | channelConfig.ipaddr; |
| 700 | |
| 701 | prefix = channelConfig.netmask.empty() ? |
| 702 | properties["PrefixLength"].get<uint8_t>() : |
| 703 | ipmi::network::toPrefix(AF_INET, |
| 704 | channelConfig.netmask); |
| 705 | |
| 706 | } |
| 707 | catch (InternalFailure& e) |
| 708 | { |
| 709 | log<level::INFO>("Failed to get IP object which matches", |
| 710 | entry("INTERFACE=%s", ipmi::network::IP_INTERFACE), |
| 711 | entry("MATCH=%s", ipmi::network::IP_TYPE)); |
| 712 | } |
| 713 | |
| 714 | auto systemProperties = ipmi::getAllDbusProperties( |
| 715 | bus, |
| 716 | systemObject.second, |
| 717 | systemObject.first, |
| 718 | ipmi::network::SYSTEMCONFIG_INTERFACE); |
| 719 | |
| 720 | gateway = channelConfig.gateway.empty() ? |
| 721 | systemProperties["DefaultGateway"].get<std::string>() : |
| 722 | channelConfig.gateway; |
| 723 | |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 724 | } |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | // Currently network manager doesn't support purging of all the |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 728 | // ip addresses and the vlan interfaces from the parent interface, |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 729 | // TODO once the support is there, will make the change here. |
| 730 | // https://github.com/openbmc/openbmc/issues/2141. |
| 731 | |
| 732 | // TODO Currently IPMI supports single interface,need to handle |
| 733 | // Multiple interface through |
| 734 | // https://github.com/openbmc/openbmc/issues/2138 |
| 735 | |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 736 | // instead of deleting all the vlan interfaces and |
| 737 | // all the ipv4 address,we will call reset method. |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 738 | //delete all the vlan interfaces |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 739 | |
| 740 | ipmi::deleteAllDbusObjects(bus, |
| 741 | ipmi::network::ROOT, |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 742 | ipmi::network::VLAN_INTERFACE); |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 743 | |
| 744 | // set the interface mode to static |
| 745 | auto networkInterfaceObject = ipmi::getDbusObject( |
| 746 | bus, |
| 747 | ipmi::network::ETHERNET_INTERFACE, |
| 748 | ipmi::network::ROOT, |
| 749 | ipmi::network::INTERFACE); |
| 750 | |
| 751 | // setting the physical interface mode to static. |
| 752 | ipmi::setDbusProperty(bus, |
| 753 | ipmi::network::SERVICE, |
| 754 | networkInterfaceObject.first, |
| 755 | ipmi::network::ETHERNET_INTERFACE, |
| 756 | "DHCPEnabled", |
| 757 | false); |
| 758 | |
| 759 | networkInterfacePath = networkInterfaceObject.first; |
| 760 | |
| 761 | //delete all the ipv4 addresses |
| 762 | ipmi::deleteAllDbusObjects(bus, |
| 763 | ipmi::network::ROOT, |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 764 | ipmi::network::IP_INTERFACE, |
| 765 | ipmi::network::IP_TYPE); |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 766 | |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 767 | if (vlanID) |
| 768 | { |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 769 | ipmi::network::createVLAN(bus, |
| 770 | ipmi::network::SERVICE, |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 771 | ipmi::network::ROOT, |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 772 | ipmi::network::INTERFACE, |
| 773 | vlanID); |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 774 | |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 775 | auto networkInterfaceObject = ipmi::getDbusObject( |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 776 | bus, |
| 777 | ipmi::network::VLAN_INTERFACE, |
| 778 | ipmi::network::ROOT); |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 779 | |
| 780 | networkInterfacePath = networkInterfaceObject.first; |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 781 | } |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 782 | |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 783 | if (channelConfig.ipsrc == ipmi::network::IPOrigin::DHCP) |
| 784 | { |
| 785 | ipmi::setDbusProperty(bus, |
| 786 | ipmi::network::SERVICE, |
| 787 | networkInterfacePath, |
| 788 | ipmi::network::ETHERNET_INTERFACE, |
| 789 | "DHCPEnabled", |
| 790 | true); |
| 791 | } |
| 792 | else |
| 793 | { |
| 794 | //change the mode to static |
| 795 | ipmi::setDbusProperty(bus, |
| 796 | ipmi::network::SERVICE, |
| 797 | networkInterfacePath, |
| 798 | ipmi::network::ETHERNET_INTERFACE, |
| 799 | "DHCPEnabled", |
| 800 | false); |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 801 | |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 802 | if (!ipaddress.empty()) |
| 803 | { |
| 804 | ipmi::network::createIP(bus, |
| 805 | ipmi::network::SERVICE, |
| 806 | networkInterfacePath, |
| 807 | ipv4Protocol, |
| 808 | ipaddress, |
| 809 | prefix); |
| 810 | } |
| 811 | |
| 812 | if (!gateway.empty()) |
| 813 | { |
| 814 | ipmi::setDbusProperty(bus, |
| 815 | systemObject.second, |
| 816 | systemObject.first, |
| 817 | ipmi::network::SYSTEMCONFIG_INTERFACE, |
| 818 | "DefaultGateway", |
| 819 | std::string(gateway)); |
| 820 | } |
| 821 | } |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 822 | |
Nan Li | 3d0df91 | 2016-10-18 19:51:41 +0800 | [diff] [blame] | 823 | } |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 824 | catch (InternalFailure& e) |
| 825 | { |
| 826 | log<level::ERR>("Failed to set network data", |
| 827 | entry("PREFIX=%d", prefix), |
Ratan Gupta | 62736ec | 2017-09-02 12:02:47 +0530 | [diff] [blame^] | 828 | entry("ADDRESS=%s", ipaddress.c_str()), |
| 829 | entry("GATEWAY=%s", gateway.c_str()), |
| 830 | entry("VLANID=%d", vlanID), |
| 831 | entry("IPSRC=%d", channelConfig.ipsrc)); |
Nan Li | 3d0df91 | 2016-10-18 19:51:41 +0800 | [diff] [blame] | 832 | |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 833 | commit<InternalFailure>(); |
Nan Li | 3d0df91 | 2016-10-18 19:51:41 +0800 | [diff] [blame] | 834 | rc = IPMI_CC_UNSPECIFIED_ERROR; |
| 835 | } |
| 836 | |
Ratan Gupta | b8e9955 | 2017-07-27 07:07:48 +0530 | [diff] [blame] | 837 | channelConfig.clear(); |
Nan Li | 3d0df91 | 2016-10-18 19:51:41 +0800 | [diff] [blame] | 838 | return rc; |
| 839 | } |
| 840 | |
Tom Joseph | 69fabfe | 2017-08-04 10:15:01 +0530 | [diff] [blame] | 841 | ipmi_ret_t getChannelAccess(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 842 | ipmi_request_t request, ipmi_response_t response, |
| 843 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 844 | { |
| 845 | auto requestData = reinterpret_cast<const GetChannelAccessRequest*> |
| 846 | (request); |
| 847 | std::vector<uint8_t> outPayload(sizeof(GetChannelAccessResponse)); |
| 848 | auto responseData = reinterpret_cast<GetChannelAccessResponse*> |
| 849 | (outPayload.data()); |
| 850 | |
| 851 | // Channel 1 is arbitrarily assigned to ETH0 channel |
| 852 | constexpr auto channelOne = 0x01; |
| 853 | |
| 854 | /* |
| 855 | * The value Eh is used as a way to identify the current channel that |
| 856 | * the command is being received from. |
| 857 | */ |
| 858 | constexpr auto channelE = 0x0E; |
| 859 | |
| 860 | if (requestData->channelNumber != channelOne && |
| 861 | requestData->channelNumber != channelE) |
| 862 | { |
| 863 | *data_len = 0; |
| 864 | return IPMI_CC_INVALID_FIELD_REQUEST; |
| 865 | } |
| 866 | |
| 867 | /* |
| 868 | * [7:6] - reserved |
| 869 | * [5] - 1b = Alerting disabled |
| 870 | * [4] - 1b = per message authentication disabled |
| 871 | * [3] - 0b = User level authentication enabled |
| 872 | * [2:0] - 2h = always available |
| 873 | */ |
| 874 | constexpr auto channelSetting = 0x32; |
| 875 | |
| 876 | responseData->settings = channelSetting; |
| 877 | //Defaulting the channel privilege to administrator level. |
| 878 | responseData->privilegeLimit = PRIVILEGE_ADMIN; |
| 879 | |
| 880 | *data_len = outPayload.size(); |
| 881 | memcpy(response, outPayload.data(), *data_len); |
| 882 | |
| 883 | return IPMI_CC_OK; |
| 884 | } |
Ratan Gupta | 533d03b | 2017-07-30 10:39:22 +0530 | [diff] [blame] | 885 | |
Chris Austen | c2cd29d | 2016-02-05 20:02:29 -0600 | [diff] [blame] | 886 | // ATTENTION: This ipmi function is very hardcoded on purpose |
| 887 | // OpenBMC does not fully support IPMI. This command is useful |
| 888 | // to have around because it enables testing of interfaces with |
| 889 | // the IPMI tool. |
| 890 | #define GET_CHANNEL_INFO_CHANNEL_OFFSET 0 |
| 891 | // IPMI Table 6-2 |
| 892 | #define IPMI_CHANNEL_TYPE_IPMB 1 |
| 893 | // IPMI Table 6-3 |
| 894 | #define IPMI_CHANNEL_MEDIUM_TYPE_OTHER 6 |
| 895 | |
| 896 | ipmi_ret_t ipmi_app_channel_info(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 897 | ipmi_request_t request, ipmi_response_t response, |
| 898 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 899 | { |
| 900 | ipmi_ret_t rc = IPMI_CC_OK; |
| 901 | uint8_t resp[] = { |
| 902 | 1, |
| 903 | IPMI_CHANNEL_MEDIUM_TYPE_OTHER, |
| 904 | IPMI_CHANNEL_TYPE_IPMB, |
| 905 | 1,0x41,0xA7,0x00,0,0}; |
| 906 | uint8_t *p = (uint8_t*) request; |
| 907 | |
| 908 | printf("IPMI APP GET CHANNEL INFO\n"); |
| 909 | |
tomjose | 7ec0add | 2016-06-27 07:59:28 -0500 | [diff] [blame] | 910 | // The supported channels numbers are 1 and 8. |
| 911 | // Channel Number E is used as way to identify the current channel |
| 912 | // that the command is being is received from. |
tomjose | 13fb441 | 2016-03-08 14:02:34 -0600 | [diff] [blame] | 913 | if (*p == 0xe || *p == 1 || *p == 8) { |
Chris Austen | c2cd29d | 2016-02-05 20:02:29 -0600 | [diff] [blame] | 914 | |
| 915 | *data_len = sizeof(resp); |
| 916 | memcpy(response, resp, *data_len); |
| 917 | |
| 918 | } else { |
| 919 | rc = IPMI_CC_PARM_OUT_OF_RANGE; |
| 920 | *data_len = 0; |
| 921 | } |
| 922 | |
| 923 | return rc; |
| 924 | } |
| 925 | |
Adriana Kobylak | 3a552e1 | 2015-10-19 16:11:00 -0500 | [diff] [blame] | 926 | ipmi_ret_t ipmi_app_wildcard_handler(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 927 | ipmi_request_t request, ipmi_response_t response, |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 928 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 929 | { |
| 930 | printf("Handling WILDCARD Netfn:[0x%X], Cmd:[0x%X]\n",netfn, cmd); |
| 931 | |
| 932 | // Status code. |
Nan Li | 70aa8d9 | 2016-08-29 00:11:10 +0800 | [diff] [blame] | 933 | ipmi_ret_t rc = IPMI_CC_INVALID; |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 934 | |
| 935 | *data_len = strlen("THIS IS WILDCARD"); |
| 936 | |
| 937 | // Now pack actual response |
| 938 | memcpy(response, "THIS IS WILDCARD", *data_len); |
| 939 | |
| 940 | return rc; |
| 941 | } |
| 942 | |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 943 | void register_netfn_app_functions() |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 944 | { |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 945 | // <Get BT Interface Capabilities> |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 946 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_GET_CAP_BIT); |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 947 | ipmi_register_callback(NETFUN_APP, IPMI_CMD_GET_CAP_BIT, NULL, ipmi_app_get_bt_capabilities, |
| 948 | PRIVILEGE_USER); |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 949 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 950 | // <Wildcard Command> |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 951 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_WILDCARD); |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 952 | ipmi_register_callback(NETFUN_APP, IPMI_CMD_WILDCARD, NULL, ipmi_app_wildcard_handler, |
| 953 | PRIVILEGE_USER); |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 954 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 955 | // <Reset Watchdog Timer> |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 956 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_RESET_WD); |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 957 | ipmi_register_callback(NETFUN_APP, IPMI_CMD_RESET_WD, NULL, ipmi_app_reset_watchdog, |
| 958 | PRIVILEGE_OPERATOR); |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 959 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 960 | // <Set Watchdog Timer> |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 961 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_SET_WD); |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 962 | ipmi_register_callback(NETFUN_APP, IPMI_CMD_SET_WD, NULL, ipmi_app_set_watchdog, |
| 963 | PRIVILEGE_OPERATOR); |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 964 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 965 | // <Get Device ID> |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 966 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_GET_DEVICE_ID); |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 967 | ipmi_register_callback(NETFUN_APP, IPMI_CMD_GET_DEVICE_ID, NULL, ipmi_app_get_device_id, |
| 968 | PRIVILEGE_USER); |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 969 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 970 | // <Get Self Test Results> |
Nan Li | 41fa24a | 2016-11-10 20:12:37 +0800 | [diff] [blame] | 971 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_GET_SELF_TEST_RESULTS); |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 972 | ipmi_register_callback(NETFUN_APP, IPMI_CMD_GET_SELF_TEST_RESULTS, NULL, |
| 973 | ipmi_app_get_self_test_results, PRIVILEGE_USER); |
Nan Li | 41fa24a | 2016-11-10 20:12:37 +0800 | [diff] [blame] | 974 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 975 | // <Get Device GUID> |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 976 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_GET_DEVICE_GUID); |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 977 | ipmi_register_callback(NETFUN_APP, IPMI_CMD_GET_DEVICE_GUID, NULL, ipmi_app_get_device_guid, |
| 978 | PRIVILEGE_USER); |
Adriana Kobylak | d100ee5 | 2015-10-20 17:02:37 -0500 | [diff] [blame] | 979 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 980 | // <Set ACPI Power State> |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 981 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_SET_ACPI); |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 982 | ipmi_register_callback(NETFUN_APP, IPMI_CMD_SET_ACPI, NULL, ipmi_app_set_acpi_power_state, |
| 983 | PRIVILEGE_ADMIN); |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 984 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 985 | // <Set Channel Access> |
Nan Li | 3d0df91 | 2016-10-18 19:51:41 +0800 | [diff] [blame] | 986 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, |
| 987 | IPMI_CMD_SET_CHAN_ACCESS); |
| 988 | ipmi_register_callback(NETFUN_APP, IPMI_CMD_SET_CHAN_ACCESS, NULL, |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 989 | ipmi_set_channel_access, PRIVILEGE_ADMIN); |
Chris Austen | c2cd29d | 2016-02-05 20:02:29 -0600 | [diff] [blame] | 990 | |
Tom Joseph | 69fabfe | 2017-08-04 10:15:01 +0530 | [diff] [blame] | 991 | // <Get Channel Access> |
| 992 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_GET_CHANNEL_ACCESS); |
| 993 | ipmi_register_callback(NETFUN_APP, IPMI_CMD_GET_CHANNEL_ACCESS, NULL, |
| 994 | getChannelAccess, PRIVILEGE_USER); |
| 995 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 996 | // <Get Channel Info Command> |
Chris Austen | c2cd29d | 2016-02-05 20:02:29 -0600 | [diff] [blame] | 997 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_APP, IPMI_CMD_GET_CHAN_INFO); |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 998 | ipmi_register_callback(NETFUN_APP, IPMI_CMD_GET_CHAN_INFO, NULL, ipmi_app_channel_info, |
| 999 | PRIVILEGE_USER); |
Chris Austen | c2cd29d | 2016-02-05 20:02:29 -0600 | [diff] [blame] | 1000 | |
vishwabmc | ba0bd5f | 2015-09-30 16:50:23 +0530 | [diff] [blame] | 1001 | return; |
| 1002 | } |
| 1003 | |
Chris Austen | 6caf28b | 2015-10-13 12:40:40 -0500 | [diff] [blame] | 1004 | |