2 * Hyper-V guest/hypervisor interaction
4 * Copyright (c) 2015-2018 Virtuozzo International GmbH.
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
10 #include "qemu/osdep.h"
11 #include "qemu/main-loop.h"
12 #include "qemu/module.h"
13 #include "qapi/error.h"
14 #include "exec/address-spaces.h"
15 #include "sysemu/kvm.h"
16 #include "qemu/bitops.h"
17 #include "qemu/error-report.h"
18 #include "qemu/lockable.h"
19 #include "qemu/queue.h"
21 #include "qemu/rcu_queue.h"
22 #include "hw/hyperv/hyperv.h"
24 typedef struct SynICState
{
25 DeviceState parent_obj
;
31 hwaddr event_page_addr
;
32 MemoryRegion msg_page_mr
;
33 MemoryRegion event_page_mr
;
34 struct hyperv_message_page
*msg_page
;
35 struct hyperv_event_flags_page
*event_page
;
38 #define TYPE_SYNIC "hyperv-synic"
39 #define SYNIC(obj) OBJECT_CHECK(SynICState, (obj), TYPE_SYNIC)
41 static SynICState
*get_synic(CPUState
*cs
)
43 return SYNIC(object_resolve_path_component(OBJECT(cs
), "synic"));
46 static void synic_update(SynICState
*synic
, bool enable
,
47 hwaddr msg_page_addr
, hwaddr event_page_addr
)
50 synic
->enabled
= enable
;
51 if (synic
->msg_page_addr
!= msg_page_addr
) {
52 if (synic
->msg_page_addr
) {
53 memory_region_del_subregion(get_system_memory(),
57 memory_region_add_subregion(get_system_memory(), msg_page_addr
,
60 synic
->msg_page_addr
= msg_page_addr
;
62 if (synic
->event_page_addr
!= event_page_addr
) {
63 if (synic
->event_page_addr
) {
64 memory_region_del_subregion(get_system_memory(),
65 &synic
->event_page_mr
);
67 if (event_page_addr
) {
68 memory_region_add_subregion(get_system_memory(), event_page_addr
,
69 &synic
->event_page_mr
);
71 synic
->event_page_addr
= event_page_addr
;
75 void hyperv_synic_update(CPUState
*cs
, bool enable
,
76 hwaddr msg_page_addr
, hwaddr event_page_addr
)
78 SynICState
*synic
= get_synic(cs
);
84 synic_update(synic
, enable
, msg_page_addr
, event_page_addr
);
87 static void synic_realize(DeviceState
*dev
, Error
**errp
)
89 Object
*obj
= OBJECT(dev
);
90 SynICState
*synic
= SYNIC(dev
);
91 char *msgp_name
, *eventp_name
;
94 /* memory region names have to be globally unique */
95 vp_index
= hyperv_vp_index(synic
->cs
);
96 msgp_name
= g_strdup_printf("synic-%u-msg-page", vp_index
);
97 eventp_name
= g_strdup_printf("synic-%u-event-page", vp_index
);
99 memory_region_init_ram(&synic
->msg_page_mr
, obj
, msgp_name
,
100 sizeof(*synic
->msg_page
), &error_abort
);
101 memory_region_init_ram(&synic
->event_page_mr
, obj
, eventp_name
,
102 sizeof(*synic
->event_page
), &error_abort
);
103 synic
->msg_page
= memory_region_get_ram_ptr(&synic
->msg_page_mr
);
104 synic
->event_page
= memory_region_get_ram_ptr(&synic
->event_page_mr
);
109 static void synic_reset(DeviceState
*dev
)
111 SynICState
*synic
= SYNIC(dev
);
112 memset(synic
->msg_page
, 0, sizeof(*synic
->msg_page
));
113 memset(synic
->event_page
, 0, sizeof(*synic
->event_page
));
114 synic_update(synic
, false, 0, 0);
117 static void synic_class_init(ObjectClass
*klass
, void *data
)
119 DeviceClass
*dc
= DEVICE_CLASS(klass
);
121 dc
->realize
= synic_realize
;
122 dc
->reset
= synic_reset
;
123 dc
->user_creatable
= false;
126 void hyperv_synic_add(CPUState
*cs
)
131 obj
= object_new(TYPE_SYNIC
);
134 object_property_add_child(OBJECT(cs
), "synic", obj
, &error_abort
);
136 object_property_set_bool(obj
, true, "realized", &error_abort
);
139 void hyperv_synic_reset(CPUState
*cs
)
141 SynICState
*synic
= get_synic(cs
);
144 device_legacy_reset(DEVICE(synic
));
148 static const TypeInfo synic_type_info
= {
150 .parent
= TYPE_DEVICE
,
151 .instance_size
= sizeof(SynICState
),
152 .class_init
= synic_class_init
,
155 static void synic_register_types(void)
157 type_register_static(&synic_type_info
);
160 type_init(synic_register_types
)
163 * KVM has its own message producers (SynIC timers). To guarantee
164 * serialization with both KVM vcpu and the guest cpu, the messages are first
165 * staged in an intermediate area and then posted to the SynIC message page in
168 typedef struct HvSintStagedMessage
{
169 /* message content staged by hyperv_post_msg */
170 struct hyperv_message msg
;
171 /* callback + data (r/o) to complete the processing in a BH */
174 /* message posting status filled by cpu_post_msg */
176 /* passing the buck: */
181 * hyperv_post_msg (e.g. in main loop) grabs the staged area (FREE ->
182 * BUSY), copies msg, and schedules cpu_post_msg on the assigned cpu
186 * cpu_post_msg (vcpu thread) tries to copy staged msg to msg slot,
187 * notify the guest, records the status, marks the posting done (BUSY
188 * -> POSTED), and schedules sint_msg_bh BH
190 HV_STAGED_MSG_POSTED
,
192 * sint_msg_bh (BH) verifies that the posting is done, runs the
193 * callback, and starts over (POSTED -> FREE)
196 } HvSintStagedMessage
;
202 EventNotifier sint_set_notifier
;
203 EventNotifier sint_ack_notifier
;
205 HvSintStagedMessage
*staged_msg
;
210 static CPUState
*hyperv_find_vcpu(uint32_t vp_index
)
212 CPUState
*cs
= qemu_get_cpu(vp_index
);
213 assert(hyperv_vp_index(cs
) == vp_index
);
218 * BH to complete the processing of a staged message.
220 static void sint_msg_bh(void *opaque
)
222 HvSintRoute
*sint_route
= opaque
;
223 HvSintStagedMessage
*staged_msg
= sint_route
->staged_msg
;
225 if (atomic_read(&staged_msg
->state
) != HV_STAGED_MSG_POSTED
) {
226 /* status nor ready yet (spurious ack from guest?), ignore */
230 staged_msg
->cb(staged_msg
->cb_data
, staged_msg
->status
);
231 staged_msg
->status
= 0;
233 /* staged message processing finished, ready to start over */
234 atomic_set(&staged_msg
->state
, HV_STAGED_MSG_FREE
);
235 /* drop the reference taken in hyperv_post_msg */
236 hyperv_sint_route_unref(sint_route
);
240 * Worker to transfer the message from the staging area into the SynIC message
241 * page in vcpu context.
243 static void cpu_post_msg(CPUState
*cs
, run_on_cpu_data data
)
245 HvSintRoute
*sint_route
= data
.host_ptr
;
246 HvSintStagedMessage
*staged_msg
= sint_route
->staged_msg
;
247 SynICState
*synic
= sint_route
->synic
;
248 struct hyperv_message
*dst_msg
;
249 bool wait_for_sint_ack
= false;
251 assert(staged_msg
->state
== HV_STAGED_MSG_BUSY
);
253 if (!synic
->enabled
|| !synic
->msg_page_addr
) {
254 staged_msg
->status
= -ENXIO
;
258 dst_msg
= &synic
->msg_page
->slot
[sint_route
->sint
];
260 if (dst_msg
->header
.message_type
!= HV_MESSAGE_NONE
) {
261 dst_msg
->header
.message_flags
|= HV_MESSAGE_FLAG_PENDING
;
262 staged_msg
->status
= -EAGAIN
;
263 wait_for_sint_ack
= true;
265 memcpy(dst_msg
, &staged_msg
->msg
, sizeof(*dst_msg
));
266 staged_msg
->status
= hyperv_sint_route_set_sint(sint_route
);
269 memory_region_set_dirty(&synic
->msg_page_mr
, 0, sizeof(*synic
->msg_page
));
272 atomic_set(&staged_msg
->state
, HV_STAGED_MSG_POSTED
);
274 * Notify the msg originator of the progress made; if the slot was busy we
275 * set msg_pending flag in it so it will be the guest who will do EOM and
276 * trigger the notification from KVM via sint_ack_notifier
278 if (!wait_for_sint_ack
) {
279 aio_bh_schedule_oneshot(qemu_get_aio_context(), sint_msg_bh
,
285 * Post a Hyper-V message to the staging area, for delivery to guest in the
288 int hyperv_post_msg(HvSintRoute
*sint_route
, struct hyperv_message
*src_msg
)
290 HvSintStagedMessage
*staged_msg
= sint_route
->staged_msg
;
294 /* grab the staging area */
295 if (atomic_cmpxchg(&staged_msg
->state
, HV_STAGED_MSG_FREE
,
296 HV_STAGED_MSG_BUSY
) != HV_STAGED_MSG_FREE
) {
300 memcpy(&staged_msg
->msg
, src_msg
, sizeof(*src_msg
));
302 /* hold a reference on sint_route until the callback is finished */
303 hyperv_sint_route_ref(sint_route
);
305 /* schedule message posting attempt in vcpu thread */
306 async_run_on_cpu(sint_route
->synic
->cs
, cpu_post_msg
,
307 RUN_ON_CPU_HOST_PTR(sint_route
));
311 static void sint_ack_handler(EventNotifier
*notifier
)
313 HvSintRoute
*sint_route
= container_of(notifier
, HvSintRoute
,
315 event_notifier_test_and_clear(notifier
);
318 * the guest consumed the previous message so complete the current one with
319 * -EAGAIN and let the msg originator retry
321 aio_bh_schedule_oneshot(qemu_get_aio_context(), sint_msg_bh
, sint_route
);
325 * Set given event flag for a given sint on a given vcpu, and signal the sint.
327 int hyperv_set_event_flag(HvSintRoute
*sint_route
, unsigned eventno
)
330 SynICState
*synic
= sint_route
->synic
;
331 unsigned long *flags
, set_mask
;
334 if (eventno
> HV_EVENT_FLAGS_COUNT
) {
337 if (!synic
->enabled
|| !synic
->event_page_addr
) {
341 set_idx
= BIT_WORD(eventno
);
342 set_mask
= BIT_MASK(eventno
);
343 flags
= synic
->event_page
->slot
[sint_route
->sint
].flags
;
345 if ((atomic_fetch_or(&flags
[set_idx
], set_mask
) & set_mask
) != set_mask
) {
346 memory_region_set_dirty(&synic
->event_page_mr
, 0,
347 sizeof(*synic
->event_page
));
348 ret
= hyperv_sint_route_set_sint(sint_route
);
355 HvSintRoute
*hyperv_sint_route_new(uint32_t vp_index
, uint32_t sint
,
356 HvSintMsgCb cb
, void *cb_data
)
358 HvSintRoute
*sint_route
;
359 EventNotifier
*ack_notifier
;
364 cs
= hyperv_find_vcpu(vp_index
);
369 synic
= get_synic(cs
);
374 sint_route
= g_new0(HvSintRoute
, 1);
375 r
= event_notifier_init(&sint_route
->sint_set_notifier
, false);
381 ack_notifier
= cb
? &sint_route
->sint_ack_notifier
: NULL
;
383 sint_route
->staged_msg
= g_new0(HvSintStagedMessage
, 1);
384 sint_route
->staged_msg
->cb
= cb
;
385 sint_route
->staged_msg
->cb_data
= cb_data
;
387 r
= event_notifier_init(ack_notifier
, false);
389 goto err_sint_set_notifier
;
392 event_notifier_set_handler(ack_notifier
, sint_ack_handler
);
395 gsi
= kvm_irqchip_add_hv_sint_route(kvm_state
, vp_index
, sint
);
400 r
= kvm_irqchip_add_irqfd_notifier_gsi(kvm_state
,
401 &sint_route
->sint_set_notifier
,
406 sint_route
->gsi
= gsi
;
407 sint_route
->synic
= synic
;
408 sint_route
->sint
= sint
;
409 sint_route
->refcount
= 1;
414 kvm_irqchip_release_virq(kvm_state
, gsi
);
417 event_notifier_set_handler(ack_notifier
, NULL
);
418 event_notifier_cleanup(ack_notifier
);
419 g_free(sint_route
->staged_msg
);
421 err_sint_set_notifier
:
422 event_notifier_cleanup(&sint_route
->sint_set_notifier
);
429 void hyperv_sint_route_ref(HvSintRoute
*sint_route
)
431 sint_route
->refcount
++;
434 void hyperv_sint_route_unref(HvSintRoute
*sint_route
)
440 assert(sint_route
->refcount
> 0);
442 if (--sint_route
->refcount
) {
446 kvm_irqchip_remove_irqfd_notifier_gsi(kvm_state
,
447 &sint_route
->sint_set_notifier
,
449 kvm_irqchip_release_virq(kvm_state
, sint_route
->gsi
);
450 if (sint_route
->staged_msg
) {
451 event_notifier_set_handler(&sint_route
->sint_ack_notifier
, NULL
);
452 event_notifier_cleanup(&sint_route
->sint_ack_notifier
);
453 g_free(sint_route
->staged_msg
);
455 event_notifier_cleanup(&sint_route
->sint_set_notifier
);
459 int hyperv_sint_route_set_sint(HvSintRoute
*sint_route
)
461 return event_notifier_set(&sint_route
->sint_set_notifier
);
464 typedef struct MsgHandler
{
466 QLIST_ENTRY(MsgHandler
) link
;
468 HvMsgHandler handler
;
472 typedef struct EventFlagHandler
{
474 QLIST_ENTRY(EventFlagHandler
) link
;
476 EventNotifier
*notifier
;
479 static QLIST_HEAD(, MsgHandler
) msg_handlers
;
480 static QLIST_HEAD(, EventFlagHandler
) event_flag_handlers
;
481 static QemuMutex handlers_mutex
;
483 static void __attribute__((constructor
)) hv_init(void)
485 QLIST_INIT(&msg_handlers
);
486 QLIST_INIT(&event_flag_handlers
);
487 qemu_mutex_init(&handlers_mutex
);
490 int hyperv_set_msg_handler(uint32_t conn_id
, HvMsgHandler handler
, void *data
)
495 QEMU_LOCK_GUARD(&handlers_mutex
);
496 QLIST_FOREACH(mh
, &msg_handlers
, link
) {
497 if (mh
->conn_id
== conn_id
) {
501 QLIST_REMOVE_RCU(mh
, link
);
510 mh
= g_new(MsgHandler
, 1);
511 mh
->conn_id
= conn_id
;
512 mh
->handler
= handler
;
514 QLIST_INSERT_HEAD_RCU(&msg_handlers
, mh
, link
);
523 uint16_t hyperv_hcall_post_message(uint64_t param
, bool fast
)
527 struct hyperv_post_message_input
*msg
;
531 return HV_STATUS_INVALID_HYPERCALL_CODE
;
533 if (param
& (__alignof__(*msg
) - 1)) {
534 return HV_STATUS_INVALID_ALIGNMENT
;
538 msg
= cpu_physical_memory_map(param
, &len
, 0);
539 if (len
< sizeof(*msg
)) {
540 ret
= HV_STATUS_INSUFFICIENT_MEMORY
;
543 if (msg
->payload_size
> sizeof(msg
->payload
)) {
544 ret
= HV_STATUS_INVALID_HYPERCALL_INPUT
;
548 ret
= HV_STATUS_INVALID_CONNECTION_ID
;
549 WITH_RCU_READ_LOCK_GUARD() {
550 QLIST_FOREACH_RCU(mh
, &msg_handlers
, link
) {
551 if (mh
->conn_id
== (msg
->connection_id
& HV_CONNECTION_ID_MASK
)) {
552 ret
= mh
->handler(msg
, mh
->data
);
559 cpu_physical_memory_unmap(msg
, len
, 0, 0);
563 static int set_event_flag_handler(uint32_t conn_id
, EventNotifier
*notifier
)
566 EventFlagHandler
*handler
;
568 QEMU_LOCK_GUARD(&handlers_mutex
);
569 QLIST_FOREACH(handler
, &event_flag_handlers
, link
) {
570 if (handler
->conn_id
== conn_id
) {
574 QLIST_REMOVE_RCU(handler
, link
);
575 g_free_rcu(handler
, rcu
);
583 handler
= g_new(EventFlagHandler
, 1);
584 handler
->conn_id
= conn_id
;
585 handler
->notifier
= notifier
;
586 QLIST_INSERT_HEAD_RCU(&event_flag_handlers
, handler
, link
);
595 static bool process_event_flags_userspace
;
597 int hyperv_set_event_flag_handler(uint32_t conn_id
, EventNotifier
*notifier
)
599 if (!process_event_flags_userspace
&&
600 !kvm_check_extension(kvm_state
, KVM_CAP_HYPERV_EVENTFD
)) {
601 process_event_flags_userspace
= true;
603 warn_report("Hyper-V event signaling is not supported by this kernel; "
604 "using slower userspace hypercall processing");
607 if (!process_event_flags_userspace
) {
608 struct kvm_hyperv_eventfd hvevfd
= {
610 .fd
= notifier
? event_notifier_get_fd(notifier
) : -1,
611 .flags
= notifier
? 0 : KVM_HYPERV_EVENTFD_DEASSIGN
,
614 return kvm_vm_ioctl(kvm_state
, KVM_HYPERV_EVENTFD
, &hvevfd
);
616 return set_event_flag_handler(conn_id
, notifier
);
619 uint16_t hyperv_hcall_signal_event(uint64_t param
, bool fast
)
621 EventFlagHandler
*handler
;
623 if (unlikely(!fast
)) {
626 if (addr
& (__alignof__(addr
) - 1)) {
627 return HV_STATUS_INVALID_ALIGNMENT
;
630 param
= ldq_phys(&address_space_memory
, addr
);
634 * Per spec, bits 32-47 contain the extra "flag number". However, we
635 * have no use for it, and in all known usecases it is zero, so just
636 * report lookup failure if it isn't.
638 if (param
& 0xffff00000000ULL
) {
639 return HV_STATUS_INVALID_PORT_ID
;
641 /* remaining bits are reserved-zero */
642 if (param
& ~HV_CONNECTION_ID_MASK
) {
643 return HV_STATUS_INVALID_HYPERCALL_INPUT
;
646 RCU_READ_LOCK_GUARD();
647 QLIST_FOREACH_RCU(handler
, &event_flag_handlers
, link
) {
648 if (handler
->conn_id
== param
) {
649 event_notifier_set(handler
->notifier
);
653 return HV_STATUS_INVALID_CONNECTION_ID
;