2 * COarse-grain LOck-stepping Virtual Machines for Non-stop Service (COLO)
3 * (a.k.a. Fault Tolerance or Continuous Replication)
5 * Copyright (c) 2016 HUAWEI TECHNOLOGIES CO., LTD.
6 * Copyright (c) 2016 FUJITSU LIMITED
7 * Copyright (c) 2016 Intel Corporation
9 * Author: Zhang Chen <zhangchen.fnst@cn.fujitsu.com>
11 * This work is licensed under the terms of the GNU GPL, version 2 or
12 * later. See the COPYING file in the top-level directory.
15 #include "qemu/osdep.h"
16 #include "qemu/error-report.h"
18 #include "qemu-common.h"
19 #include "qapi/qmp/qerror.h"
20 #include "qapi/error.h"
23 #include "qom/object_interfaces.h"
25 #include "qom/object.h"
26 #include "qemu/typedefs.h"
27 #include "net/queue.h"
28 #include "chardev/char-fe.h"
29 #include "qemu/sockets.h"
30 #include "qapi-visit.h"
33 #define TYPE_COLO_COMPARE "colo-compare"
34 #define COLO_COMPARE(obj) \
35 OBJECT_CHECK(CompareState, (obj), TYPE_COLO_COMPARE)
37 #define COMPARE_READ_LEN_MAX NET_BUFSIZE
38 #define MAX_QUEUE_SIZE 1024
40 /* TODO: Should be configurable */
41 #define REGULAR_PACKET_CHECK_MS 3000
46 +---------------+ +---------------+ +---------------+
47 |conn list +--->conn +--------->conn |
48 +---------------+ +---------------+ +---------------+
50 +---------------+ +---v----+ +---v----+ +---v----+ +---v----+
51 |primary | |secondary |primary | |secondary
52 |packet | |packet + |packet | |packet +
53 +--------+ +--------+ +--------+ +--------+
55 +---v----+ +---v----+ +---v----+ +---v----+
56 |primary | |secondary |primary | |secondary
57 |packet | |packet + |packet | |packet +
58 +--------+ +--------+ +--------+ +--------+
60 +---v----+ +---v----+ +---v----+ +---v----+
61 |primary | |secondary |primary | |secondary
62 |packet | |packet + |packet | |packet +
63 +--------+ +--------+ +--------+ +--------+
65 typedef struct CompareState
{
71 CharBackend chr_pri_in
;
72 CharBackend chr_sec_in
;
74 SocketReadState pri_rs
;
75 SocketReadState sec_rs
;
78 /* connection list: the connections belonged to this NIC could be found
80 * element type: Connection
83 /* hashtable to save connection */
84 GHashTable
*connection_track_table
;
85 /* compare thread, a thread for each NIC */
88 GMainContext
*worker_context
;
89 GMainLoop
*compare_loop
;
92 typedef struct CompareClass
{
93 ObjectClass parent_class
;
101 static int compare_chr_send(CompareState
*s
,
104 uint32_t vnet_hdr_len
);
106 static gint
seq_sorter(Packet
*a
, Packet
*b
, gpointer data
)
108 struct tcphdr
*atcp
, *btcp
;
110 atcp
= (struct tcphdr
*)(a
->transport_header
);
111 btcp
= (struct tcphdr
*)(b
->transport_header
);
112 return ntohl(atcp
->th_seq
) - ntohl(btcp
->th_seq
);
116 * Return 0 on success, if return -1 means the pkt
117 * is unsupported(arp and ipv6) and will be sent later
119 static int packet_enqueue(CompareState
*s
, int mode
)
125 if (mode
== PRIMARY_IN
) {
126 pkt
= packet_new(s
->pri_rs
.buf
,
127 s
->pri_rs
.packet_len
,
128 s
->pri_rs
.vnet_hdr_len
);
130 pkt
= packet_new(s
->sec_rs
.buf
,
131 s
->sec_rs
.packet_len
,
132 s
->sec_rs
.vnet_hdr_len
);
135 if (parse_packet_early(pkt
)) {
136 packet_destroy(pkt
, NULL
);
140 fill_connection_key(pkt
, &key
);
142 conn
= connection_get(s
->connection_track_table
,
146 if (!conn
->processing
) {
147 g_queue_push_tail(&s
->conn_list
, conn
);
148 conn
->processing
= true;
151 if (mode
== PRIMARY_IN
) {
152 if (g_queue_get_length(&conn
->primary_list
) <=
154 g_queue_push_tail(&conn
->primary_list
, pkt
);
155 if (conn
->ip_proto
== IPPROTO_TCP
) {
156 g_queue_sort(&conn
->primary_list
,
157 (GCompareDataFunc
)seq_sorter
,
161 error_report("colo compare primary queue size too big,"
165 if (g_queue_get_length(&conn
->secondary_list
) <=
167 g_queue_push_tail(&conn
->secondary_list
, pkt
);
168 if (conn
->ip_proto
== IPPROTO_TCP
) {
169 g_queue_sort(&conn
->secondary_list
,
170 (GCompareDataFunc
)seq_sorter
,
174 error_report("colo compare secondary queue size too big,"
183 * The IP packets sent by primary and secondary
184 * will be compared in here
185 * TODO support ip fragment, Out-Of-Order
186 * return: 0 means packet same
187 * > 0 || < 0 means packet different
189 static int colo_packet_compare_common(Packet
*ppkt
, Packet
*spkt
, int offset
)
191 if (trace_event_get_state_backends(TRACE_COLO_COMPARE_MISCOMPARE
)) {
192 char pri_ip_src
[20], pri_ip_dst
[20], sec_ip_src
[20], sec_ip_dst
[20];
194 strcpy(pri_ip_src
, inet_ntoa(ppkt
->ip
->ip_src
));
195 strcpy(pri_ip_dst
, inet_ntoa(ppkt
->ip
->ip_dst
));
196 strcpy(sec_ip_src
, inet_ntoa(spkt
->ip
->ip_src
));
197 strcpy(sec_ip_dst
, inet_ntoa(spkt
->ip
->ip_dst
));
199 trace_colo_compare_ip_info(ppkt
->size
, pri_ip_src
,
200 pri_ip_dst
, spkt
->size
,
201 sec_ip_src
, sec_ip_dst
);
204 offset
= ppkt
->vnet_hdr_len
+ offset
;
206 if (ppkt
->size
== spkt
->size
) {
207 return memcmp(ppkt
->data
+ offset
,
209 spkt
->size
- offset
);
211 trace_colo_compare_main("Net packet size are not the same");
217 * Called from the compare thread on the primary
218 * for compare tcp packet
219 * compare_tcp copied from Dr. David Alan Gilbert's branch
221 static int colo_packet_compare_tcp(Packet
*spkt
, Packet
*ppkt
)
223 struct tcphdr
*ptcp
, *stcp
;
226 trace_colo_compare_main("compare tcp");
228 ptcp
= (struct tcphdr
*)ppkt
->transport_header
;
229 stcp
= (struct tcphdr
*)spkt
->transport_header
;
232 * The 'identification' field in the IP header is *very* random
233 * it almost never matches. Fudge this by ignoring differences in
234 * unfragmented packets; they'll normally sort themselves out if different
235 * anyway, and it should recover at the TCP level.
236 * An alternative would be to get both the primary and secondary to rewrite
237 * somehow; but that would need some sync traffic to sync the state
239 if (ntohs(ppkt
->ip
->ip_off
) & IP_DF
) {
240 spkt
->ip
->ip_id
= ppkt
->ip
->ip_id
;
241 /* and the sum will be different if the IDs were different */
242 spkt
->ip
->ip_sum
= ppkt
->ip
->ip_sum
;
246 * Check tcp header length for tcp option field.
247 * th_off > 5 means this tcp packet have options field.
248 * The tcp options maybe always different.
251 * TCP Timestamps option (TSopt):
256 * +-------+-------+---------------------+---------------------+
257 * |Kind=8 | 10 | TS Value (TSval) |TS Echo Reply (TSecr)|
258 * +-------+-------+---------------------+---------------------+
261 * In this case the primary guest's timestamp always different with
262 * the secondary guest's timestamp. COLO just focus on payload,
263 * so we just need skip this field.
265 if (ptcp
->th_off
> 5) {
266 ptrdiff_t tcp_offset
;
268 tcp_offset
= ppkt
->transport_header
- (uint8_t *)ppkt
->data
269 + (ptcp
->th_off
* 4) - ppkt
->vnet_hdr_len
;
270 res
= colo_packet_compare_common(ppkt
, spkt
, tcp_offset
);
271 } else if (ptcp
->th_sum
== stcp
->th_sum
) {
272 res
= colo_packet_compare_common(ppkt
, spkt
, ETH_HLEN
);
278 trace_event_get_state_backends(TRACE_COLO_COMPARE_MISCOMPARE
)) {
279 char pri_ip_src
[20], pri_ip_dst
[20], sec_ip_src
[20], sec_ip_dst
[20];
281 strcpy(pri_ip_src
, inet_ntoa(ppkt
->ip
->ip_src
));
282 strcpy(pri_ip_dst
, inet_ntoa(ppkt
->ip
->ip_dst
));
283 strcpy(sec_ip_src
, inet_ntoa(spkt
->ip
->ip_src
));
284 strcpy(sec_ip_dst
, inet_ntoa(spkt
->ip
->ip_dst
));
286 trace_colo_compare_ip_info(ppkt
->size
, pri_ip_src
,
287 pri_ip_dst
, spkt
->size
,
288 sec_ip_src
, sec_ip_dst
);
290 trace_colo_compare_tcp_info("pri tcp packet",
296 trace_colo_compare_tcp_info("sec tcp packet",
302 qemu_hexdump((char *)ppkt
->data
, stderr
,
303 "colo-compare ppkt", ppkt
->size
);
304 qemu_hexdump((char *)spkt
->data
, stderr
,
305 "colo-compare spkt", spkt
->size
);
312 * Called from the compare thread on the primary
313 * for compare udp packet
315 static int colo_packet_compare_udp(Packet
*spkt
, Packet
*ppkt
)
318 int network_header_length
= ppkt
->ip
->ip_hl
* 4;
320 trace_colo_compare_main("compare udp");
323 * Because of ppkt and spkt are both in the same connection,
324 * The ppkt's src ip, dst ip, src port, dst port, ip_proto all are
325 * same with spkt. In addition, IP header's Identification is a random
326 * field, we can handle it in IP fragmentation function later.
327 * COLO just concern the response net packet payload from primary guest
328 * and secondary guest are same or not, So we ignored all IP header include
329 * other field like TOS,TTL,IP Checksum. we only need to compare
330 * the ip payload here.
332 ret
= colo_packet_compare_common(ppkt
, spkt
,
333 network_header_length
+ ETH_HLEN
);
336 trace_colo_compare_udp_miscompare("primary pkt size", ppkt
->size
);
337 trace_colo_compare_udp_miscompare("Secondary pkt size", spkt
->size
);
338 if (trace_event_get_state_backends(TRACE_COLO_COMPARE_MISCOMPARE
)) {
339 qemu_hexdump((char *)ppkt
->data
, stderr
, "colo-compare pri pkt",
341 qemu_hexdump((char *)spkt
->data
, stderr
, "colo-compare sec pkt",
350 * Called from the compare thread on the primary
351 * for compare icmp packet
353 static int colo_packet_compare_icmp(Packet
*spkt
, Packet
*ppkt
)
355 int network_header_length
= ppkt
->ip
->ip_hl
* 4;
357 trace_colo_compare_main("compare icmp");
360 * Because of ppkt and spkt are both in the same connection,
361 * The ppkt's src ip, dst ip, src port, dst port, ip_proto all are
362 * same with spkt. In addition, IP header's Identification is a random
363 * field, we can handle it in IP fragmentation function later.
364 * COLO just concern the response net packet payload from primary guest
365 * and secondary guest are same or not, So we ignored all IP header include
366 * other field like TOS,TTL,IP Checksum. we only need to compare
367 * the ip payload here.
369 if (colo_packet_compare_common(ppkt
, spkt
,
370 network_header_length
+ ETH_HLEN
)) {
371 trace_colo_compare_icmp_miscompare("primary pkt size",
373 trace_colo_compare_icmp_miscompare("Secondary pkt size",
375 if (trace_event_get_state_backends(TRACE_COLO_COMPARE_MISCOMPARE
)) {
376 qemu_hexdump((char *)ppkt
->data
, stderr
, "colo-compare pri pkt",
378 qemu_hexdump((char *)spkt
->data
, stderr
, "colo-compare sec pkt",
388 * Called from the compare thread on the primary
389 * for compare other packet
391 static int colo_packet_compare_other(Packet
*spkt
, Packet
*ppkt
)
393 trace_colo_compare_main("compare other");
394 if (trace_event_get_state_backends(TRACE_COLO_COMPARE_MISCOMPARE
)) {
395 char pri_ip_src
[20], pri_ip_dst
[20], sec_ip_src
[20], sec_ip_dst
[20];
397 strcpy(pri_ip_src
, inet_ntoa(ppkt
->ip
->ip_src
));
398 strcpy(pri_ip_dst
, inet_ntoa(ppkt
->ip
->ip_dst
));
399 strcpy(sec_ip_src
, inet_ntoa(spkt
->ip
->ip_src
));
400 strcpy(sec_ip_dst
, inet_ntoa(spkt
->ip
->ip_dst
));
402 trace_colo_compare_ip_info(ppkt
->size
, pri_ip_src
,
403 pri_ip_dst
, spkt
->size
,
404 sec_ip_src
, sec_ip_dst
);
407 return colo_packet_compare_common(ppkt
, spkt
, 0);
410 static int colo_old_packet_check_one(Packet
*pkt
, int64_t *check_time
)
412 int64_t now
= qemu_clock_get_ms(QEMU_CLOCK_HOST
);
414 if ((now
- pkt
->creation_ms
) > (*check_time
)) {
415 trace_colo_old_packet_check_found(pkt
->creation_ms
);
422 static int colo_old_packet_check_one_conn(Connection
*conn
,
425 GList
*result
= NULL
;
426 int64_t check_time
= REGULAR_PACKET_CHECK_MS
;
428 result
= g_queue_find_custom(&conn
->primary_list
,
430 (GCompareFunc
)colo_old_packet_check_one
);
433 /* do checkpoint will flush old packet */
434 /* TODO: colo_notify_checkpoint();*/
442 * Look for old packets that the secondary hasn't matched,
443 * if we have some then we have to checkpoint to wake
446 static void colo_old_packet_check(void *opaque
)
448 CompareState
*s
= opaque
;
451 * If we find one old packet, stop finding job and notify
452 * COLO frame do checkpoint.
454 g_queue_find_custom(&s
->conn_list
, NULL
,
455 (GCompareFunc
)colo_old_packet_check_one_conn
);
459 * Called from the compare thread on the primary
460 * for compare connection
462 static void colo_compare_connection(void *opaque
, void *user_data
)
464 CompareState
*s
= user_data
;
465 Connection
*conn
= opaque
;
467 GList
*result
= NULL
;
470 while (!g_queue_is_empty(&conn
->primary_list
) &&
471 !g_queue_is_empty(&conn
->secondary_list
)) {
472 pkt
= g_queue_pop_tail(&conn
->primary_list
);
473 switch (conn
->ip_proto
) {
475 result
= g_queue_find_custom(&conn
->secondary_list
,
476 pkt
, (GCompareFunc
)colo_packet_compare_tcp
);
479 result
= g_queue_find_custom(&conn
->secondary_list
,
480 pkt
, (GCompareFunc
)colo_packet_compare_udp
);
483 result
= g_queue_find_custom(&conn
->secondary_list
,
484 pkt
, (GCompareFunc
)colo_packet_compare_icmp
);
487 result
= g_queue_find_custom(&conn
->secondary_list
,
488 pkt
, (GCompareFunc
)colo_packet_compare_other
);
493 ret
= compare_chr_send(s
,
498 error_report("colo_send_primary_packet failed");
500 trace_colo_compare_main("packet same and release packet");
501 g_queue_remove(&conn
->secondary_list
, result
->data
);
502 packet_destroy(pkt
, NULL
);
505 * If one packet arrive late, the secondary_list or
506 * primary_list will be empty, so we can't compare it
507 * until next comparison.
509 trace_colo_compare_main("packet different");
510 g_queue_push_tail(&conn
->primary_list
, pkt
);
511 /* TODO: colo_notify_checkpoint();*/
517 static int compare_chr_send(CompareState
*s
,
520 uint32_t vnet_hdr_len
)
523 uint32_t len
= htonl(size
);
529 ret
= qemu_chr_fe_write_all(&s
->chr_out
, (uint8_t *)&len
, sizeof(len
));
530 if (ret
!= sizeof(len
)) {
536 * We send vnet header len make other module(like filter-redirector)
537 * know how to parse net packet correctly.
539 len
= htonl(vnet_hdr_len
);
540 ret
= qemu_chr_fe_write_all(&s
->chr_out
, (uint8_t *)&len
, sizeof(len
));
541 if (ret
!= sizeof(len
)) {
546 ret
= qemu_chr_fe_write_all(&s
->chr_out
, (uint8_t *)buf
, size
);
554 return ret
< 0 ? ret
: -EIO
;
557 static int compare_chr_can_read(void *opaque
)
559 return COMPARE_READ_LEN_MAX
;
563 * Called from the main thread on the primary for packets
564 * arriving over the socket from the primary.
566 static void compare_pri_chr_in(void *opaque
, const uint8_t *buf
, int size
)
568 CompareState
*s
= COLO_COMPARE(opaque
);
571 ret
= net_fill_rstate(&s
->pri_rs
, buf
, size
);
573 qemu_chr_fe_set_handlers(&s
->chr_pri_in
, NULL
, NULL
, NULL
, NULL
,
575 error_report("colo-compare primary_in error");
580 * Called from the main thread on the primary for packets
581 * arriving over the socket from the secondary.
583 static void compare_sec_chr_in(void *opaque
, const uint8_t *buf
, int size
)
585 CompareState
*s
= COLO_COMPARE(opaque
);
588 ret
= net_fill_rstate(&s
->sec_rs
, buf
, size
);
590 qemu_chr_fe_set_handlers(&s
->chr_sec_in
, NULL
, NULL
, NULL
, NULL
,
592 error_report("colo-compare secondary_in error");
597 * Check old packet regularly so it can watch for any packets
598 * that the secondary hasn't produced equivalents of.
600 static gboolean
check_old_packet_regular(void *opaque
)
602 CompareState
*s
= opaque
;
604 /* if have old packet we will notify checkpoint */
605 colo_old_packet_check(s
);
610 static void *colo_compare_thread(void *opaque
)
612 CompareState
*s
= opaque
;
613 GSource
*timeout_source
;
615 s
->worker_context
= g_main_context_new();
617 qemu_chr_fe_set_handlers(&s
->chr_pri_in
, compare_chr_can_read
,
618 compare_pri_chr_in
, NULL
, NULL
,
619 s
, s
->worker_context
, true);
620 qemu_chr_fe_set_handlers(&s
->chr_sec_in
, compare_chr_can_read
,
621 compare_sec_chr_in
, NULL
, NULL
,
622 s
, s
->worker_context
, true);
624 s
->compare_loop
= g_main_loop_new(s
->worker_context
, FALSE
);
626 /* To kick any packets that the secondary doesn't match */
627 timeout_source
= g_timeout_source_new(REGULAR_PACKET_CHECK_MS
);
628 g_source_set_callback(timeout_source
,
629 (GSourceFunc
)check_old_packet_regular
, s
, NULL
);
630 g_source_attach(timeout_source
, s
->worker_context
);
632 g_main_loop_run(s
->compare_loop
);
634 g_source_unref(timeout_source
);
635 g_main_loop_unref(s
->compare_loop
);
636 g_main_context_unref(s
->worker_context
);
640 static char *compare_get_pri_indev(Object
*obj
, Error
**errp
)
642 CompareState
*s
= COLO_COMPARE(obj
);
644 return g_strdup(s
->pri_indev
);
647 static void compare_set_pri_indev(Object
*obj
, const char *value
, Error
**errp
)
649 CompareState
*s
= COLO_COMPARE(obj
);
651 g_free(s
->pri_indev
);
652 s
->pri_indev
= g_strdup(value
);
655 static char *compare_get_sec_indev(Object
*obj
, Error
**errp
)
657 CompareState
*s
= COLO_COMPARE(obj
);
659 return g_strdup(s
->sec_indev
);
662 static void compare_set_sec_indev(Object
*obj
, const char *value
, Error
**errp
)
664 CompareState
*s
= COLO_COMPARE(obj
);
666 g_free(s
->sec_indev
);
667 s
->sec_indev
= g_strdup(value
);
670 static char *compare_get_outdev(Object
*obj
, Error
**errp
)
672 CompareState
*s
= COLO_COMPARE(obj
);
674 return g_strdup(s
->outdev
);
677 static void compare_set_outdev(Object
*obj
, const char *value
, Error
**errp
)
679 CompareState
*s
= COLO_COMPARE(obj
);
682 s
->outdev
= g_strdup(value
);
685 static bool compare_get_vnet_hdr(Object
*obj
, Error
**errp
)
687 CompareState
*s
= COLO_COMPARE(obj
);
692 static void compare_set_vnet_hdr(Object
*obj
,
696 CompareState
*s
= COLO_COMPARE(obj
);
701 static void compare_pri_rs_finalize(SocketReadState
*pri_rs
)
703 CompareState
*s
= container_of(pri_rs
, CompareState
, pri_rs
);
705 if (packet_enqueue(s
, PRIMARY_IN
)) {
706 trace_colo_compare_main("primary: unsupported packet in");
710 pri_rs
->vnet_hdr_len
);
712 /* compare connection */
713 g_queue_foreach(&s
->conn_list
, colo_compare_connection
, s
);
717 static void compare_sec_rs_finalize(SocketReadState
*sec_rs
)
719 CompareState
*s
= container_of(sec_rs
, CompareState
, sec_rs
);
721 if (packet_enqueue(s
, SECONDARY_IN
)) {
722 trace_colo_compare_main("secondary: unsupported packet in");
724 /* compare connection */
725 g_queue_foreach(&s
->conn_list
, colo_compare_connection
, s
);
731 * Return 0 is success.
732 * Return 1 is failed.
734 static int find_and_check_chardev(Chardev
**chr
,
738 *chr
= qemu_chr_find(chr_name
);
740 error_setg(errp
, "Device '%s' not found",
745 if (!qemu_chr_has_feature(*chr
, QEMU_CHAR_FEATURE_RECONNECTABLE
)) {
746 error_setg(errp
, "chardev \"%s\" is not reconnectable",
755 * Called from the main thread on the primary
756 * to setup colo-compare.
758 static void colo_compare_complete(UserCreatable
*uc
, Error
**errp
)
760 CompareState
*s
= COLO_COMPARE(uc
);
762 char thread_name
[64];
763 static int compare_id
;
765 if (!s
->pri_indev
|| !s
->sec_indev
|| !s
->outdev
) {
766 error_setg(errp
, "colo compare needs 'primary_in' ,"
767 "'secondary_in','outdev' property set");
769 } else if (!strcmp(s
->pri_indev
, s
->outdev
) ||
770 !strcmp(s
->sec_indev
, s
->outdev
) ||
771 !strcmp(s
->pri_indev
, s
->sec_indev
)) {
772 error_setg(errp
, "'indev' and 'outdev' could not be same "
773 "for compare module");
777 if (find_and_check_chardev(&chr
, s
->pri_indev
, errp
) ||
778 !qemu_chr_fe_init(&s
->chr_pri_in
, chr
, errp
)) {
782 if (find_and_check_chardev(&chr
, s
->sec_indev
, errp
) ||
783 !qemu_chr_fe_init(&s
->chr_sec_in
, chr
, errp
)) {
787 if (find_and_check_chardev(&chr
, s
->outdev
, errp
) ||
788 !qemu_chr_fe_init(&s
->chr_out
, chr
, errp
)) {
792 net_socket_rs_init(&s
->pri_rs
, compare_pri_rs_finalize
, s
->vnet_hdr
);
793 net_socket_rs_init(&s
->sec_rs
, compare_sec_rs_finalize
, s
->vnet_hdr
);
795 g_queue_init(&s
->conn_list
);
797 s
->connection_track_table
= g_hash_table_new_full(connection_key_hash
,
798 connection_key_equal
,
802 sprintf(thread_name
, "colo-compare %d", compare_id
);
803 qemu_thread_create(&s
->thread
, thread_name
,
804 colo_compare_thread
, s
,
805 QEMU_THREAD_JOINABLE
);
811 static void colo_flush_packets(void *opaque
, void *user_data
)
813 CompareState
*s
= user_data
;
814 Connection
*conn
= opaque
;
817 while (!g_queue_is_empty(&conn
->primary_list
)) {
818 pkt
= g_queue_pop_head(&conn
->primary_list
);
823 packet_destroy(pkt
, NULL
);
825 while (!g_queue_is_empty(&conn
->secondary_list
)) {
826 pkt
= g_queue_pop_head(&conn
->secondary_list
);
827 packet_destroy(pkt
, NULL
);
831 static void colo_compare_class_init(ObjectClass
*oc
, void *data
)
833 UserCreatableClass
*ucc
= USER_CREATABLE_CLASS(oc
);
835 ucc
->complete
= colo_compare_complete
;
838 static void colo_compare_init(Object
*obj
)
840 CompareState
*s
= COLO_COMPARE(obj
);
842 object_property_add_str(obj
, "primary_in",
843 compare_get_pri_indev
, compare_set_pri_indev
,
845 object_property_add_str(obj
, "secondary_in",
846 compare_get_sec_indev
, compare_set_sec_indev
,
848 object_property_add_str(obj
, "outdev",
849 compare_get_outdev
, compare_set_outdev
,
853 object_property_add_bool(obj
, "vnet_hdr_support", compare_get_vnet_hdr
,
854 compare_set_vnet_hdr
, NULL
);
857 static void colo_compare_finalize(Object
*obj
)
859 CompareState
*s
= COLO_COMPARE(obj
);
861 qemu_chr_fe_deinit(&s
->chr_pri_in
, false);
862 qemu_chr_fe_deinit(&s
->chr_sec_in
, false);
863 qemu_chr_fe_deinit(&s
->chr_out
, false);
865 g_main_loop_quit(s
->compare_loop
);
866 qemu_thread_join(&s
->thread
);
868 /* Release all unhandled packets after compare thead exited */
869 g_queue_foreach(&s
->conn_list
, colo_flush_packets
, s
);
871 g_queue_clear(&s
->conn_list
);
873 g_hash_table_destroy(s
->connection_track_table
);
874 g_free(s
->pri_indev
);
875 g_free(s
->sec_indev
);
879 static const TypeInfo colo_compare_info
= {
880 .name
= TYPE_COLO_COMPARE
,
881 .parent
= TYPE_OBJECT
,
882 .instance_size
= sizeof(CompareState
),
883 .instance_init
= colo_compare_init
,
884 .instance_finalize
= colo_compare_finalize
,
885 .class_size
= sizeof(CompareClass
),
886 .class_init
= colo_compare_class_init
,
887 .interfaces
= (InterfaceInfo
[]) {
888 { TYPE_USER_CREATABLE
},
893 static void register_types(void)
895 type_register_static(&colo_compare_info
);
898 type_init(register_types
);