2 * IPMI BMC external connection
4 * Copyright (c) 2015 Corey Minyard, MontaVista Software, LLC
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 * This is designed to connect with OpenIPMI's lanserv serial interface
27 * using the "VM" connection type. See that for details.
30 #include "qemu/osdep.h"
31 #include "qemu/error-report.h"
32 #include "qemu/module.h"
33 #include "qapi/error.h"
34 #include "qemu/timer.h"
35 #include "chardev/char-fe.h"
36 #include "hw/ipmi/ipmi.h"
37 #include "hw/qdev-properties.h"
38 #include "hw/qdev-properties-system.h"
39 #include "migration/vmstate.h"
40 #include "qom/object.h"
42 #define VM_MSG_CHAR 0xA0 /* Marks end of message */
43 #define VM_CMD_CHAR 0xA1 /* Marks end of a command */
44 #define VM_ESCAPE_CHAR 0xAA /* Set bit 4 from the next byte to 0 */
46 #define VM_PROTOCOL_VERSION 1
47 #define VM_CMD_VERSION 0xff /* A version number byte follows */
48 #define VM_CMD_NOATTN 0x00
49 #define VM_CMD_ATTN 0x01
50 #define VM_CMD_ATTN_IRQ 0x02
51 #define VM_CMD_POWEROFF 0x03
52 #define VM_CMD_RESET 0x04
53 #define VM_CMD_ENABLE_IRQ 0x05 /* Enable/disable the messaging irq */
54 #define VM_CMD_DISABLE_IRQ 0x06
55 #define VM_CMD_SEND_NMI 0x07
56 #define VM_CMD_CAPABILITIES 0x08
57 #define VM_CAPABILITIES_POWER 0x01
58 #define VM_CAPABILITIES_RESET 0x02
59 #define VM_CAPABILITIES_IRQ 0x04
60 #define VM_CAPABILITIES_NMI 0x08
61 #define VM_CAPABILITIES_ATTN 0x10
62 #define VM_CAPABILITIES_GRACEFUL_SHUTDOWN 0x20
63 #define VM_CMD_GRACEFUL_SHUTDOWN 0x09
65 #define TYPE_IPMI_BMC_EXTERN "ipmi-bmc-extern"
66 OBJECT_DECLARE_SIMPLE_TYPE(IPMIBmcExtern
, IPMI_BMC_EXTERN
)
67 struct IPMIBmcExtern
{
74 unsigned char inbuf
[MAX_IPMI_MSG_SIZE
+ 2];
81 unsigned char outbuf
[(MAX_IPMI_MSG_SIZE
+ 2) * 2 + 1];
85 struct QEMUTimer
*extern_timer
;
87 /* A reset event is pending to be sent upstream. */
92 ipmb_checksum(const unsigned char *data
, int size
, unsigned char start
)
94 unsigned char csum
= start
;
96 for (; size
> 0; size
--, data
++) {
102 static void continue_send(IPMIBmcExtern
*ibe
)
105 if (ibe
->outlen
== 0) {
109 ret
= qemu_chr_fe_write(&ibe
->chr
, ibe
->outbuf
+ ibe
->outpos
,
110 ibe
->outlen
- ibe
->outpos
);
114 if (ibe
->outpos
< ibe
->outlen
) {
115 /* Not fully transmitted, try again in a 10ms */
116 timer_mod_ns(ibe
->extern_timer
,
117 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) + 10000000);
122 if (!ibe
->sending_cmd
) {
123 ibe
->waiting_rsp
= true;
125 ibe
->sending_cmd
= false;
128 if (ibe
->connected
&& ibe
->send_reset
) {
130 ibe
->outbuf
[0] = VM_CMD_RESET
;
131 ibe
->outbuf
[1] = VM_CMD_CHAR
;
134 ibe
->send_reset
= false;
135 ibe
->sending_cmd
= true;
139 if (ibe
->waiting_rsp
) {
140 /* Make sure we get a response within 4 seconds. */
141 timer_mod_ns(ibe
->extern_timer
,
142 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) + 4000000000ULL);
148 static void extern_timeout(void *opaque
)
150 IPMIBmcExtern
*ibe
= opaque
;
151 IPMIInterface
*s
= ibe
->parent
.intf
;
153 if (ibe
->connected
) {
154 if (ibe
->waiting_rsp
&& (ibe
->outlen
== 0)) {
155 IPMIInterfaceClass
*k
= IPMI_INTERFACE_GET_CLASS(s
);
156 /* The message response timed out, return an error. */
157 ibe
->waiting_rsp
= false;
158 ibe
->inbuf
[1] = ibe
->outbuf
[1] | 0x04;
159 ibe
->inbuf
[2] = ibe
->outbuf
[2];
160 ibe
->inbuf
[3] = IPMI_CC_TIMEOUT
;
161 k
->handle_rsp(s
, ibe
->outbuf
[0], ibe
->inbuf
+ 1, 3);
168 static void addchar(IPMIBmcExtern
*ibe
, unsigned char ch
)
174 ibe
->outbuf
[ibe
->outlen
] = VM_ESCAPE_CHAR
;
179 ibe
->outbuf
[ibe
->outlen
] = ch
;
184 static void ipmi_bmc_extern_handle_command(IPMIBmc
*b
,
185 uint8_t *cmd
, unsigned int cmd_len
,
186 unsigned int max_cmd_len
,
189 IPMIBmcExtern
*ibe
= IPMI_BMC_EXTERN(b
);
190 IPMIInterface
*s
= ibe
->parent
.intf
;
191 uint8_t err
= 0, csum
;
195 /* We already have a command queued. Shouldn't ever happen. */
196 error_report("IPMI KCS: Got command when not finished with the"
197 " previous command");
201 /* If it's too short or it was truncated, return an error. */
203 err
= IPMI_CC_REQUEST_DATA_LENGTH_INVALID
;
204 } else if ((cmd_len
> max_cmd_len
) || (cmd_len
> MAX_IPMI_MSG_SIZE
)) {
205 err
= IPMI_CC_REQUEST_DATA_TRUNCATED
;
206 } else if (!ibe
->connected
) {
207 err
= IPMI_CC_BMC_INIT_IN_PROGRESS
;
210 IPMIInterfaceClass
*k
= IPMI_INTERFACE_GET_CLASS(s
);
211 unsigned char rsp
[3];
212 rsp
[0] = cmd
[0] | 0x04;
215 ibe
->waiting_rsp
= false;
216 k
->handle_rsp(s
, msg_id
, rsp
, 3);
220 addchar(ibe
, msg_id
);
221 for (i
= 0; i
< cmd_len
; i
++) {
222 addchar(ibe
, cmd
[i
]);
224 csum
= ipmb_checksum(&msg_id
, 1, 0);
225 addchar(ibe
, -ipmb_checksum(cmd
, cmd_len
, csum
));
227 ibe
->outbuf
[ibe
->outlen
] = VM_MSG_CHAR
;
230 /* Start the transmit */
237 static void handle_hw_op(IPMIBmcExtern
*ibe
, unsigned char hw_op
)
239 IPMIInterface
*s
= ibe
->parent
.intf
;
240 IPMIInterfaceClass
*k
= IPMI_INTERFACE_GET_CLASS(s
);
244 /* We only support one version at this time. */
255 case VM_CMD_ATTN_IRQ
:
259 case VM_CMD_POWEROFF
:
260 k
->do_hw_op(s
, IPMI_POWEROFF_CHASSIS
, 0);
264 k
->do_hw_op(s
, IPMI_RESET_CHASSIS
, 0);
267 case VM_CMD_ENABLE_IRQ
:
268 k
->set_irq_enable(s
, 1);
271 case VM_CMD_DISABLE_IRQ
:
272 k
->set_irq_enable(s
, 0);
275 case VM_CMD_SEND_NMI
:
276 k
->do_hw_op(s
, IPMI_SEND_NMI
, 0);
279 case VM_CMD_GRACEFUL_SHUTDOWN
:
280 k
->do_hw_op(s
, IPMI_SHUTDOWN_VIA_ACPI_OVERTEMP
, 0);
285 static void handle_msg(IPMIBmcExtern
*ibe
)
287 IPMIInterfaceClass
*k
= IPMI_INTERFACE_GET_CLASS(ibe
->parent
.intf
);
289 if (ibe
->in_escape
) {
290 ipmi_debug("msg escape not ended\n");
293 if (ibe
->inpos
< 5) {
294 ipmi_debug("msg too short\n");
297 if (ibe
->in_too_many
) {
298 ibe
->inbuf
[3] = IPMI_CC_REQUEST_DATA_TRUNCATED
;
300 } else if (ipmb_checksum(ibe
->inbuf
, ibe
->inpos
, 0) != 0) {
301 ipmi_debug("msg checksum failure\n");
304 ibe
->inpos
--; /* Remove checkum */
307 timer_del(ibe
->extern_timer
);
308 ibe
->waiting_rsp
= false;
309 k
->handle_rsp(ibe
->parent
.intf
, ibe
->inbuf
[0], ibe
->inbuf
+ 1, ibe
->inpos
- 1);
312 static int can_receive(void *opaque
)
317 static void receive(void *opaque
, const uint8_t *buf
, int size
)
319 IPMIBmcExtern
*ibe
= opaque
;
323 for (i
= 0; i
< size
; i
++) {
324 unsigned char ch
= buf
[i
];
329 ibe
->in_too_many
= false;
334 if (ibe
->in_too_many
) {
335 ipmi_debug("cmd in too many\n");
336 ibe
->in_too_many
= false;
340 if (ibe
->in_escape
) {
341 ipmi_debug("cmd in escape\n");
342 ibe
->in_too_many
= false;
344 ibe
->in_escape
= false;
347 ibe
->in_too_many
= false;
348 if (ibe
->inpos
< 1) {
351 hw_op
= ibe
->inbuf
[0];
357 ibe
->in_escape
= true;
361 if (ibe
->in_escape
) {
363 ibe
->in_escape
= false;
365 if (ibe
->in_too_many
) {
368 if (ibe
->inpos
>= sizeof(ibe
->inbuf
)) {
369 ibe
->in_too_many
= true;
372 ibe
->inbuf
[ibe
->inpos
] = ch
;
380 handle_hw_op(ibe
, hw_op
);
383 static void chr_event(void *opaque
, QEMUChrEvent event
)
385 IPMIBmcExtern
*ibe
= opaque
;
386 IPMIInterface
*s
= ibe
->parent
.intf
;
387 IPMIInterfaceClass
*k
= IPMI_INTERFACE_GET_CLASS(s
);
391 case CHR_EVENT_OPENED
:
392 ibe
->connected
= true;
395 addchar(ibe
, VM_CMD_VERSION
);
396 addchar(ibe
, VM_PROTOCOL_VERSION
);
397 ibe
->outbuf
[ibe
->outlen
] = VM_CMD_CHAR
;
399 addchar(ibe
, VM_CMD_CAPABILITIES
);
400 v
= VM_CAPABILITIES_IRQ
| VM_CAPABILITIES_ATTN
;
401 if (k
->do_hw_op(ibe
->parent
.intf
, IPMI_POWEROFF_CHASSIS
, 1) == 0) {
402 v
|= VM_CAPABILITIES_POWER
;
404 if (k
->do_hw_op(ibe
->parent
.intf
, IPMI_SHUTDOWN_VIA_ACPI_OVERTEMP
, 1)
406 v
|= VM_CAPABILITIES_GRACEFUL_SHUTDOWN
;
408 if (k
->do_hw_op(ibe
->parent
.intf
, IPMI_RESET_CHASSIS
, 1) == 0) {
409 v
|= VM_CAPABILITIES_RESET
;
411 if (k
->do_hw_op(ibe
->parent
.intf
, IPMI_SEND_NMI
, 1) == 0) {
412 v
|= VM_CAPABILITIES_NMI
;
415 ibe
->outbuf
[ibe
->outlen
] = VM_CMD_CHAR
;
417 ibe
->sending_cmd
= false;
421 case CHR_EVENT_CLOSED
:
422 if (!ibe
->connected
) {
425 ibe
->connected
= false;
427 * Don't hang the OS trying to handle the ATN bit, other end will
428 * resend on a reconnect.
431 if (ibe
->waiting_rsp
) {
432 ibe
->waiting_rsp
= false;
433 ibe
->inbuf
[1] = ibe
->outbuf
[1] | 0x04;
434 ibe
->inbuf
[2] = ibe
->outbuf
[2];
435 ibe
->inbuf
[3] = IPMI_CC_BMC_INIT_IN_PROGRESS
;
436 k
->handle_rsp(s
, ibe
->outbuf
[0], ibe
->inbuf
+ 1, 3);
440 case CHR_EVENT_BREAK
:
441 case CHR_EVENT_MUX_IN
:
442 case CHR_EVENT_MUX_OUT
:
448 static void ipmi_bmc_extern_handle_reset(IPMIBmc
*b
)
450 IPMIBmcExtern
*ibe
= IPMI_BMC_EXTERN(b
);
452 ibe
->send_reset
= true;
456 static void ipmi_bmc_extern_realize(DeviceState
*dev
, Error
**errp
)
458 IPMIBmcExtern
*ibe
= IPMI_BMC_EXTERN(dev
);
460 if (!qemu_chr_fe_backend_connected(&ibe
->chr
)) {
461 error_setg(errp
, "IPMI external bmc requires chardev attribute");
465 qemu_chr_fe_set_handlers(&ibe
->chr
, can_receive
, receive
,
466 chr_event
, NULL
, ibe
, NULL
, true);
469 static int ipmi_bmc_extern_post_migrate(void *opaque
, int version_id
)
471 IPMIBmcExtern
*ibe
= opaque
;
474 * We don't directly restore waiting_rsp, Instead, we return an
475 * error on the interface if a response was being waited for.
477 if (ibe
->waiting_rsp
) {
478 IPMIInterface
*ii
= ibe
->parent
.intf
;
479 IPMIInterfaceClass
*iic
= IPMI_INTERFACE_GET_CLASS(ii
);
481 ibe
->waiting_rsp
= false;
482 ibe
->inbuf
[1] = ibe
->outbuf
[1] | 0x04;
483 ibe
->inbuf
[2] = ibe
->outbuf
[2];
484 ibe
->inbuf
[3] = IPMI_CC_BMC_INIT_IN_PROGRESS
;
485 iic
->handle_rsp(ii
, ibe
->outbuf
[0], ibe
->inbuf
+ 1, 3);
490 static const VMStateDescription vmstate_ipmi_bmc_extern
= {
491 .name
= TYPE_IPMI_BMC_EXTERN
,
493 .minimum_version_id
= 1,
494 .post_load
= ipmi_bmc_extern_post_migrate
,
495 .fields
= (VMStateField
[]) {
496 VMSTATE_BOOL(send_reset
, IPMIBmcExtern
),
497 VMSTATE_BOOL(waiting_rsp
, IPMIBmcExtern
),
498 VMSTATE_END_OF_LIST()
502 static void ipmi_bmc_extern_init(Object
*obj
)
504 IPMIBmcExtern
*ibe
= IPMI_BMC_EXTERN(obj
);
506 ibe
->extern_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, extern_timeout
, ibe
);
507 vmstate_register(NULL
, 0, &vmstate_ipmi_bmc_extern
, ibe
);
510 static void ipmi_bmc_extern_finalize(Object
*obj
)
512 IPMIBmcExtern
*ibe
= IPMI_BMC_EXTERN(obj
);
514 timer_free(ibe
->extern_timer
);
517 static Property ipmi_bmc_extern_properties
[] = {
518 DEFINE_PROP_CHR("chardev", IPMIBmcExtern
, chr
),
519 DEFINE_PROP_END_OF_LIST(),
522 static void ipmi_bmc_extern_class_init(ObjectClass
*oc
, void *data
)
524 DeviceClass
*dc
= DEVICE_CLASS(oc
);
525 IPMIBmcClass
*bk
= IPMI_BMC_CLASS(oc
);
527 bk
->handle_command
= ipmi_bmc_extern_handle_command
;
528 bk
->handle_reset
= ipmi_bmc_extern_handle_reset
;
529 dc
->hotpluggable
= false;
530 dc
->realize
= ipmi_bmc_extern_realize
;
531 device_class_set_props(dc
, ipmi_bmc_extern_properties
);
534 static const TypeInfo ipmi_bmc_extern_type
= {
535 .name
= TYPE_IPMI_BMC_EXTERN
,
536 .parent
= TYPE_IPMI_BMC
,
537 .instance_size
= sizeof(IPMIBmcExtern
),
538 .instance_init
= ipmi_bmc_extern_init
,
539 .instance_finalize
= ipmi_bmc_extern_finalize
,
540 .class_init
= ipmi_bmc_extern_class_init
,
543 static void ipmi_bmc_extern_register_types(void)
545 type_register_static(&ipmi_bmc_extern_type
);
548 type_init(ipmi_bmc_extern_register_types
)