static void handle_msg(IPMIBmcExtern *ibe) { IPMIInterfaceClass *k = IPMI_INTERFACE_GET_CLASS(ibe->parent.intf); if (ibe->in_escape) { ipmi_debug("msg escape not ended\n"); return; } if (ibe->inpos < 5) { ipmi_debug("msg too short\n"); return; } if (ibe->in_too_many) { ibe->inbuf[3] = IPMI_CC_REQUEST_DATA_TRUNCATED; ibe->inpos = 4; } else if (ipmb_checksum(ibe->inbuf, ibe->inpos, 0) != 0) { ipmi_debug("msg checksum failure\n"); return; } else { ibe->inpos--; /* Remove checkum */ } timer_del(ibe->extern_timer); ibe->waiting_rsp = false; k->handle_rsp(ibe->parent.intf, ibe->inbuf[0], ibe->inbuf + 1, ibe->inpos - 1); }
static void chr_event(void *opaque, int event) { IPMIBmcExtern *ibe = opaque; IPMIInterface *s = ibe->parent.intf; IPMIInterfaceClass *k = IPMI_INTERFACE_GET_CLASS(s); unsigned char v; switch (event) { case CHR_EVENT_OPENED: ibe->connected = true; ibe->outpos = 0; ibe->outlen = 0; addchar(ibe, VM_CMD_VERSION); addchar(ibe, VM_PROTOCOL_VERSION); ibe->outbuf[ibe->outlen] = VM_CMD_CHAR; ibe->outlen++; addchar(ibe, VM_CMD_CAPABILITIES); v = VM_CAPABILITIES_IRQ | VM_CAPABILITIES_ATTN; if (k->do_hw_op(ibe->parent.intf, IPMI_POWEROFF_CHASSIS, 1) == 0) { v |= VM_CAPABILITIES_POWER; } if (k->do_hw_op(ibe->parent.intf, IPMI_SHUTDOWN_VIA_ACPI_OVERTEMP, 1) == 0) { v |= VM_CAPABILITIES_GRACEFUL_SHUTDOWN; } if (k->do_hw_op(ibe->parent.intf, IPMI_RESET_CHASSIS, 1) == 0) { v |= VM_CAPABILITIES_RESET; } if (k->do_hw_op(ibe->parent.intf, IPMI_SEND_NMI, 1) == 0) { v |= VM_CAPABILITIES_NMI; } addchar(ibe, v); ibe->outbuf[ibe->outlen] = VM_CMD_CHAR; ibe->outlen++; ibe->sending_cmd = false; continue_send(ibe); break; case CHR_EVENT_CLOSED: if (!ibe->connected) { return; } ibe->connected = false; if (ibe->waiting_rsp) { ibe->waiting_rsp = false; ibe->inbuf[1] = ibe->outbuf[1] | 0x04; ibe->inbuf[2] = ibe->outbuf[2]; ibe->inbuf[3] = IPMI_CC_BMC_INIT_IN_PROGRESS; k->handle_rsp(s, ibe->outbuf[0], ibe->inbuf + 1, 3); } break; } }
static void ipmi_bmc_extern_handle_command(IPMIBmc *b, uint8_t *cmd, unsigned int cmd_len, unsigned int max_cmd_len, uint8_t msg_id) { IPMIBmcExtern *ibe = IPMI_BMC_EXTERN(b); IPMIInterface *s = ibe->parent.intf; uint8_t err = 0, csum; unsigned int i; if (ibe->outlen) { /* We already have a command queued. Shouldn't ever happen. */ fprintf(stderr, "IPMI KCS: Got command when not finished with the" " previous commmand\n"); abort(); } /* If it's too short or it was truncated, return an error. */ if (cmd_len < 2) { err = IPMI_CC_REQUEST_DATA_LENGTH_INVALID; } else if ((cmd_len > max_cmd_len) || (cmd_len > MAX_IPMI_MSG_SIZE)) { err = IPMI_CC_REQUEST_DATA_TRUNCATED; } else if (!ibe->connected) { err = IPMI_CC_BMC_INIT_IN_PROGRESS; } if (err) { IPMIInterfaceClass *k = IPMI_INTERFACE_GET_CLASS(s); unsigned char rsp[3]; rsp[0] = cmd[0] | 0x04; rsp[1] = cmd[1]; rsp[2] = err; ibe->waiting_rsp = false; k->handle_rsp(s, msg_id, rsp, 3); goto out; } addchar(ibe, msg_id); for (i = 0; i < cmd_len; i++) { addchar(ibe, cmd[i]); } csum = ipmb_checksum(&msg_id, 1, 0); addchar(ibe, -ipmb_checksum(cmd, cmd_len, csum)); ibe->outbuf[ibe->outlen] = VM_MSG_CHAR; ibe->outlen++; /* Start the transmit */ continue_send(ibe); out: return; }
static void extern_timeout(void *opaque) { IPMIBmcExtern *ibe = opaque; IPMIInterface *s = ibe->parent.intf; if (ibe->connected) { if (ibe->waiting_rsp && (ibe->outlen == 0)) { IPMIInterfaceClass *k = IPMI_INTERFACE_GET_CLASS(s); /* The message response timed out, return an error. */ ibe->waiting_rsp = false; ibe->inbuf[1] = ibe->outbuf[1] | 0x04; ibe->inbuf[2] = ibe->outbuf[2]; ibe->inbuf[3] = IPMI_CC_TIMEOUT; k->handle_rsp(s, ibe->outbuf[0], ibe->inbuf + 1, 3); } else { continue_send(ibe); } } }
static int ipmi_bmc_extern_post_migrate(void *opaque, int version_id) { IPMIBmcExtern *ibe = opaque; /* * We don't directly restore waiting_rsp, Instead, we return an * error on the interface if a response was being waited for. */ if (ibe->waiting_rsp) { IPMIInterface *ii = ibe->parent.intf; IPMIInterfaceClass *iic = IPMI_INTERFACE_GET_CLASS(ii); ibe->waiting_rsp = false; ibe->inbuf[1] = ibe->outbuf[1] | 0x04; ibe->inbuf[2] = ibe->outbuf[2]; ibe->inbuf[3] = IPMI_CC_BMC_INIT_IN_PROGRESS; iic->handle_rsp(ii, ibe->outbuf[0], ibe->inbuf + 1, 3); } return 0; }