Matthew Barth | 70dbc58 | 2016-09-20 10:16:52 -0500 | [diff] [blame] | 1 | #include "oemhandler.hpp" |
Vishwanatha Subbanna | 0765506 | 2017-07-14 20:31:57 +0530 | [diff] [blame] | 2 | #include "config.h" |
Tom Joseph | 246bc0d | 2017-10-17 16:08:38 +0530 | [diff] [blame] | 3 | #include "elog-errors.hpp" |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 4 | #include <host-ipmid/ipmid-api.h> |
Vishwanatha Subbanna | 0765506 | 2017-07-14 20:31:57 +0530 | [diff] [blame] | 5 | #include <host-ipmid/ipmid-host-cmd.hpp> |
Adriana Kobylak | 187bfce | 2016-03-04 11:55:43 -0600 | [diff] [blame] | 6 | #include <fstream> |
Tom Joseph | 246bc0d | 2017-10-17 16:08:38 +0530 | [diff] [blame] | 7 | #include <memory> |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 8 | #include <stdio.h> |
| 9 | #include <string.h> |
Nan Li | 8a0807a | 2016-05-24 16:59:24 +0800 | [diff] [blame] | 10 | #include <endian.h> |
Vishwanatha Subbanna | 0765506 | 2017-07-14 20:31:57 +0530 | [diff] [blame] | 11 | #include <functional> |
| 12 | #include <systemd/sd-bus.h> |
| 13 | #include <sdbusplus/bus.hpp> |
| 14 | #include <host-interface.hpp> |
Tom Joseph | 246bc0d | 2017-10-17 16:08:38 +0530 | [diff] [blame] | 15 | #include <org/open_power/OCC/Metrics/error.hpp> |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 16 | |
Andrew Jeffery | 8fb3f03 | 2018-07-27 16:45:44 +0930 | [diff] [blame] | 17 | void register_netfn_ibm_oem_commands() __attribute__((constructor)); |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 18 | |
Chris Austen | fcafccf | 2016-02-19 23:15:57 -0600 | [diff] [blame] | 19 | const char *g_esel_path = "/tmp/esel"; |
Chris Austen | 29a8e0f | 2015-10-30 11:44:38 -0500 | [diff] [blame] | 20 | uint16_t g_record_id = 0x0001; |
Tom Joseph | 246bc0d | 2017-10-17 16:08:38 +0530 | [diff] [blame] | 21 | using namespace phosphor::logging; |
| 22 | constexpr auto occMetricsType = 0xDD; |
| 23 | |
| 24 | std::string readESEL(const char* fileName) |
| 25 | { |
| 26 | std::string content {}; |
| 27 | |
| 28 | std::ifstream handle(fileName); |
| 29 | |
| 30 | if (handle.fail()) |
| 31 | { |
| 32 | log<level::ERR>("Failed to open eSEL", |
| 33 | entry("FILENAME=%s", fileName)); |
| 34 | return content; |
| 35 | } |
| 36 | |
| 37 | handle.seekg(0, std::ios::end); |
| 38 | content.resize(handle.tellg()); |
| 39 | handle.seekg(0, std::ios::beg); |
| 40 | handle.read(&content[0], content.size()); |
| 41 | handle.close(); |
| 42 | |
| 43 | return content; |
| 44 | } |
| 45 | |
| 46 | void createOCCLogEntry(const std::string& eSELData) |
| 47 | { |
| 48 | // Each byte in eSEL is formatted as %02x with a space between bytes and |
| 49 | // insert '/0' at the end of the character array. |
| 50 | constexpr auto byteSeperator = 3; |
| 51 | |
| 52 | std::unique_ptr<char[]> data(new char[ |
| 53 | (eSELData.size() * byteSeperator) + 1]()); |
| 54 | |
| 55 | for (size_t i = 0; i < eSELData.size(); i++) |
| 56 | { |
| 57 | sprintf(&data[i * byteSeperator], "%02x ", eSELData[i]); |
| 58 | } |
| 59 | data[eSELData.size() * byteSeperator] = '\0'; |
| 60 | |
| 61 | using error = sdbusplus::org::open_power::OCC::Metrics::Error::Event; |
| 62 | using metadata = org::open_power::OCC::Metrics::Event; |
| 63 | |
| 64 | report<error>(metadata::ESEL(data.get())); |
| 65 | } |
| 66 | |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 67 | |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 68 | /////////////////////////////////////////////////////////////////////////////// |
Patrick Williams | 24fa5a9 | 2015-10-30 14:53:57 -0500 | [diff] [blame] | 69 | // For the First partial add eSEL the SEL Record ID and offset |
| 70 | // value should be 0x0000. The extended data needs to be in |
| 71 | // the form of an IPMI SEL Event Record, with Event sensor type |
| 72 | // of 0xDF and Event Message format of 0x04. The returned |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 73 | // Record ID should be used for all partial eSEL adds. |
| 74 | // |
Chris Austen | ba54afb | 2016-02-19 23:18:42 -0600 | [diff] [blame] | 75 | // This function creates a /tmp/esel file to store the |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 76 | // incoming partial esel. It is the role of some other |
Patrick Williams | 24fa5a9 | 2015-10-30 14:53:57 -0500 | [diff] [blame] | 77 | // function to commit the error log in to long term |
| 78 | // storage. Likely via the ipmi add_sel command. |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 79 | /////////////////////////////////////////////////////////////////////////////// |
Patrick Williams | 24fa5a9 | 2015-10-30 14:53:57 -0500 | [diff] [blame] | 80 | ipmi_ret_t ipmi_ibm_oem_partial_esel(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
Chris Austen | 17160ce | 2015-10-30 11:44:38 -0500 | [diff] [blame] | 81 | ipmi_request_t request, ipmi_response_t response, |
| 82 | ipmi_data_len_t data_len, ipmi_context_t context) |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 83 | { |
Nan Li | 8a0807a | 2016-05-24 16:59:24 +0800 | [diff] [blame] | 84 | uint8_t *reqptr = (uint8_t *) request; |
| 85 | esel_request_t esel_req; |
Chris Austen | ba54afb | 2016-02-19 23:18:42 -0600 | [diff] [blame] | 86 | FILE *fp; |
Nan Li | b6c4c56 | 2016-03-30 17:06:13 +0800 | [diff] [blame] | 87 | int r = 0; |
Chris Austen | ba54afb | 2016-02-19 23:18:42 -0600 | [diff] [blame] | 88 | uint8_t rlen; |
| 89 | ipmi_ret_t rc = IPMI_CC_OK; |
| 90 | const char *pio; |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 91 | |
Nan Li | 8a0807a | 2016-05-24 16:59:24 +0800 | [diff] [blame] | 92 | esel_req.resid = le16toh((((uint16_t) reqptr[1]) << 8) + reqptr[0]); |
| 93 | esel_req.selrecord = le16toh((((uint16_t) reqptr[3]) << 8) + reqptr[2]); |
| 94 | esel_req.offset = le16toh((((uint16_t) reqptr[5]) << 8) + reqptr[4]); |
| 95 | esel_req.progress = reqptr[6]; |
Nan Li | b6c4c56 | 2016-03-30 17:06:13 +0800 | [diff] [blame] | 96 | |
Nan Li | 8a0807a | 2016-05-24 16:59:24 +0800 | [diff] [blame] | 97 | uint16_t used_res_id = get_sel_reserve_id(); |
Nan Li | b6c4c56 | 2016-03-30 17:06:13 +0800 | [diff] [blame] | 98 | |
| 99 | // According to IPMI spec, Reservation ID must be checked. |
Nan Li | 8a0807a | 2016-05-24 16:59:24 +0800 | [diff] [blame] | 100 | if ( used_res_id != esel_req.resid ) { |
Nan Li | b6c4c56 | 2016-03-30 17:06:13 +0800 | [diff] [blame] | 101 | // 0xc5 means Reservation Cancelled or Invalid Reservation ID. |
| 102 | printf("Used Reservation ID = %d\n", used_res_id); |
| 103 | rc = IPMI_CC_INVALID_RESERVATION_ID; |
| 104 | |
Andrew Geissler | d929605 | 2017-06-15 14:57:25 -0500 | [diff] [blame] | 105 | // clean g_esel_path. |
Nan Li | b6c4c56 | 2016-03-30 17:06:13 +0800 | [diff] [blame] | 106 | r = remove(g_esel_path); |
| 107 | if(r < 0) |
| 108 | fprintf(stderr, "Error deleting %s\n", g_esel_path); |
| 109 | |
| 110 | return rc; |
| 111 | } |
| 112 | |
| 113 | // OpenPOWER Host Interface spec says if RecordID and Offset are |
Chris Austen | ba54afb | 2016-02-19 23:18:42 -0600 | [diff] [blame] | 114 | // 0 then then this is a new request |
Nan Li | 8a0807a | 2016-05-24 16:59:24 +0800 | [diff] [blame] | 115 | if (!esel_req.selrecord && !esel_req.offset) |
Chris Austen | ba54afb | 2016-02-19 23:18:42 -0600 | [diff] [blame] | 116 | pio = "wb"; |
| 117 | else |
| 118 | pio = "rb+"; |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 119 | |
Chris Austen | ba54afb | 2016-02-19 23:18:42 -0600 | [diff] [blame] | 120 | rlen = (*data_len) - (uint8_t) (sizeof(esel_request_t)); |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 121 | |
Chris Austen | ba54afb | 2016-02-19 23:18:42 -0600 | [diff] [blame] | 122 | if ((fp = fopen(g_esel_path, pio)) != NULL) { |
Nan Li | 8a0807a | 2016-05-24 16:59:24 +0800 | [diff] [blame] | 123 | fseek(fp, esel_req.offset, SEEK_SET); |
| 124 | fwrite(reqptr+(uint8_t) (sizeof(esel_request_t)), rlen, 1, fp); |
Chris Austen | ba54afb | 2016-02-19 23:18:42 -0600 | [diff] [blame] | 125 | fclose(fp); |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 126 | |
Chris Austen | ba54afb | 2016-02-19 23:18:42 -0600 | [diff] [blame] | 127 | *data_len = sizeof(g_record_id); |
| 128 | memcpy(response, &g_record_id, *data_len); |
| 129 | } else { |
| 130 | fprintf(stderr, "Error trying to perform %s for esel%s\n",pio, g_esel_path); |
| 131 | rc = IPMI_CC_INVALID; |
| 132 | *data_len = 0; |
| 133 | } |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 134 | |
Tom Joseph | 246bc0d | 2017-10-17 16:08:38 +0530 | [diff] [blame] | 135 | // The first bit presents that this is the last partial packet |
Chris Austen | ba54afb | 2016-02-19 23:18:42 -0600 | [diff] [blame] | 136 | // coming down. If that is the case advance the record id so we |
| 137 | // don't overlap logs. This allows anyone to establish a log |
| 138 | // directory system. |
Tom Joseph | 246bc0d | 2017-10-17 16:08:38 +0530 | [diff] [blame] | 139 | if (esel_req.progress & 1 ) |
| 140 | { |
| 141 | g_record_id++; |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 142 | |
Tom Joseph | 246bc0d | 2017-10-17 16:08:38 +0530 | [diff] [blame] | 143 | auto eSELData = readESEL(g_esel_path); |
| 144 | |
| 145 | if (eSELData.empty()) |
| 146 | { |
| 147 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 148 | } |
| 149 | |
| 150 | // If the eSEL record type is OCC metrics, then create the OCC log |
| 151 | // entry. |
| 152 | if (eSELData[2] == occMetricsType) |
| 153 | { |
| 154 | createOCCLogEntry(eSELData); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | return rc; |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 159 | } |
| 160 | |
Adriana Kobylak | 187bfce | 2016-03-04 11:55:43 -0600 | [diff] [blame] | 161 | // Prepare for FW Update. |
| 162 | // Execute needed commands to prepare the system for a fw update from the host. |
| 163 | ipmi_ret_t ipmi_ibm_oem_prep_fw_update(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 164 | ipmi_request_t request, ipmi_response_t response, |
| 165 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 166 | { |
| 167 | ipmi_ret_t ipmi_rc = IPMI_CC_OK; |
| 168 | *data_len = 0; |
| 169 | |
| 170 | int rc = 0; |
| 171 | std::ofstream rwfs_file; |
| 172 | const char *busname = "org.openbmc.control.Bmc"; |
| 173 | const char *objname = "/org/openbmc/control/bmc0"; |
| 174 | const char *iface = "org.openbmc.control.Bmc"; |
| 175 | sd_bus *bus = ipmid_get_sd_bus_connection(); |
| 176 | sd_bus_message *reply = NULL; |
| 177 | sd_bus_error error = SD_BUS_ERROR_NULL; |
| 178 | int r = 0; |
| 179 | |
| 180 | // Set one time flag |
| 181 | rc = system("fw_setenv openbmconce copy-files-to-ram copy-base-filesystem-to-ram"); |
| 182 | rc = WEXITSTATUS(rc); |
| 183 | if (rc != 0) { |
| 184 | fprintf(stderr, "fw_setenv openbmconce failed with rc=%d\n", rc); |
Andrew Geissler | d929605 | 2017-06-15 14:57:25 -0500 | [diff] [blame] | 185 | return IPMI_CC_UNSPECIFIED_ERROR; |
Adriana Kobylak | 187bfce | 2016-03-04 11:55:43 -0600 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | // Touch the image-rwfs file to perform an empty update to force the save |
| 189 | // in case we're already in ram and the flash is the same causing the ram files |
| 190 | // to not be copied back to flash |
| 191 | rwfs_file.open("/run/initramfs/image-rwfs", std::ofstream::out | std::ofstream::app); |
| 192 | rwfs_file.close(); |
| 193 | |
| 194 | // Reboot the BMC for settings to take effect |
| 195 | r = sd_bus_call_method(bus, busname, objname, iface, |
| 196 | "warmReset", &error, &reply, NULL); |
| 197 | if (r < 0) { |
| 198 | fprintf(stderr, "Failed to reset BMC: %s\n", strerror(-r)); |
| 199 | return -1; |
| 200 | } |
| 201 | printf("Warning: BMC is going down for reboot!\n"); |
| 202 | sd_bus_error_free(&error); |
| 203 | reply = sd_bus_message_unref(reply); |
| 204 | |
| 205 | return ipmi_rc; |
| 206 | } |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 207 | |
Adriana Kobylak | 81e2310 | 2018-08-09 14:44:19 -0500 | [diff] [blame^] | 208 | ipmi_ret_t ipmi_ibm_oem_reset_bmc_password(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 209 | ipmi_request_t request, |
| 210 | ipmi_response_t response, |
| 211 | ipmi_data_len_t data_len, |
| 212 | ipmi_context_t context) |
| 213 | { |
| 214 | return IPMI_CC_OK; |
| 215 | } |
| 216 | |
Vishwanatha Subbanna | 0765506 | 2017-07-14 20:31:57 +0530 | [diff] [blame] | 217 | namespace { |
| 218 | // Storage to keep the object alive during process life |
| 219 | std::unique_ptr<open_power::host::command::Host> opHost |
| 220 | __attribute__((init_priority(101))); |
| 221 | std::unique_ptr<sdbusplus::server::manager::manager> objManager |
| 222 | __attribute__((init_priority(101))); |
| 223 | } |
| 224 | |
Andrew Jeffery | 8fb3f03 | 2018-07-27 16:45:44 +0930 | [diff] [blame] | 225 | void register_netfn_ibm_oem_commands() |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 226 | { |
Tom Joseph | 64994ea | 2017-10-25 09:05:43 +0530 | [diff] [blame] | 227 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n",NETFUN_IBM_OEM, IPMI_CMD_PESEL); |
| 228 | ipmi_register_callback(NETFUN_IBM_OEM, IPMI_CMD_PESEL, NULL, ipmi_ibm_oem_partial_esel, |
Tom | cbfd6ec | 2016-09-14 17:45:55 +0530 | [diff] [blame] | 229 | SYSTEM_INTERFACE); |
Adriana Kobylak | 187bfce | 2016-03-04 11:55:43 -0600 | [diff] [blame] | 230 | |
| 231 | printf("Registering NetFn:[0x%X], Cmd:[0x%X]\n", NETFUN_OEM, IPMI_CMD_PREP_FW_UPDATE); |
Tom | cbfd6ec | 2016-09-14 17:45:55 +0530 | [diff] [blame] | 232 | ipmi_register_callback(NETFUN_OEM, IPMI_CMD_PREP_FW_UPDATE, NULL, ipmi_ibm_oem_prep_fw_update, |
| 233 | SYSTEM_INTERFACE); |
Adriana Kobylak | 187bfce | 2016-03-04 11:55:43 -0600 | [diff] [blame] | 234 | |
Adriana Kobylak | 81e2310 | 2018-08-09 14:44:19 -0500 | [diff] [blame^] | 235 | ipmi_register_callback(NETFUN_IBM_OEM, IPMI_CMD_RESET_BMC_PASSWORD, NULL, |
| 236 | ipmi_ibm_oem_reset_bmc_password, SYSTEM_INTERFACE); |
| 237 | |
Vishwanatha Subbanna | 0765506 | 2017-07-14 20:31:57 +0530 | [diff] [blame] | 238 | // Create new object on the bus |
| 239 | auto objPath = std::string{CONTROL_HOST_OBJ_MGR} + '/' + HOST_NAME + '0'; |
| 240 | |
| 241 | // Add sdbusplus ObjectManager. |
| 242 | auto& sdbusPlusHandler = ipmid_get_sdbus_plus_handler(); |
| 243 | objManager = std::make_unique<sdbusplus::server::manager::manager>( |
| 244 | *sdbusPlusHandler, |
| 245 | CONTROL_HOST_OBJ_MGR); |
| 246 | |
| 247 | opHost = std::make_unique<open_power::host::command::Host>( |
| 248 | *sdbusPlusHandler, objPath.c_str()); |
| 249 | |
| 250 | // Service for this is provided by phosphor layer systemcmdintf |
| 251 | // and this will be as part of that. |
Tom | cbfd6ec | 2016-09-14 17:45:55 +0530 | [diff] [blame] | 252 | return; |
Chris Austen | 4d98c1e | 2015-10-13 14:33:50 -0500 | [diff] [blame] | 253 | } |