1 | The following changes since commit e607bbee553cfe73072870cef458cfa4e78133e2: | 1 | The following changes since commit 7fe7fae8b48e3f9c647fd685e5155ebc8e6fb84d: |
---|---|---|---|
2 | 2 | ||
3 | Merge remote-tracking branch 'remotes/edgar/tags/edgar/xilinx-next-2018-01-26.for-upstream' into staging (2018-01-26 14:24:25 +0000) | 3 | Merge remote-tracking branch 'remotes/dgilbert-gitlab/tags/pull-migration-20210609a' into staging (2021-06-09 16:40:21 +0100) |
4 | 4 | ||
5 | are available in the git repository at: | 5 | are available in the git repository at: |
6 | 6 | ||
7 | https://github.com/jasowang/qemu.git tags/net-pull-request | 7 | https://github.com/jasowang/qemu.git tags/net-pull-request |
8 | 8 | ||
9 | for you to fetch changes up to bf4835a4d5338bb7424827715df22570a8adc67c: | 9 | for you to fetch changes up to 5a2d9929ac1f01a1e8ef2a3f56f69e6069863dad: |
10 | 10 | ||
11 | MAINTAINERS: update Dmitry Fleytman email (2018-01-29 16:05:38 +0800) | 11 | Fixed calculation error of pkt->header_size in fill_pkt_tcp_info() (2021-06-11 10:30:13 +0800) |
12 | 12 | ||
13 | ---------------------------------------------------------------- | 13 | ---------------------------------------------------------------- |
14 | 14 | ||
15 | ---------------------------------------------------------------- | 15 | ---------------------------------------------------------------- |
16 | Mao Zhongyi (2): | 16 | Jason Wang (4): |
17 | colo: modified the payload compare function | 17 | vhost-vdpa: skip ram device from the IOTLB mapping |
18 | colo: compare the packet based on the tcp sequence number | 18 | vhost-vdpa: map virtqueue notification area if possible |
19 | vhost-vdpa: don't initialize backend_features | ||
20 | vhost-vdpa: remove the unused vhost_vdpa_get_acked_features() | ||
19 | 21 | ||
20 | Philippe Mathieu-Daudé (1): | 22 | Paolo Bonzini (1): |
21 | MAINTAINERS: update Dmitry Fleytman email | 23 | netdev: add more commands to preconfig mode |
22 | 24 | ||
23 | Thomas Huth (3): | 25 | Rao, Lei (7): |
24 | net: Allow hubports to connect to other netdevs | 26 | Remove some duplicate trace code. |
25 | net: Allow netdevs to be used with 'hostfwd_add' and 'hostfwd_remove' | 27 | Fix the qemu crash when guest shutdown during checkpoint |
26 | qemu-doc: Get rid of "vlan=X" example in the documentation | 28 | Optimize the function of filter_send |
29 | Remove migrate_set_block_enabled in checkpoint | ||
30 | Add a function named packet_new_nocopy for COLO. | ||
31 | Add the function of colo_compare_cleanup | ||
32 | Fixed calculation error of pkt->header_size in fill_pkt_tcp_info() | ||
27 | 33 | ||
28 | MAINTAINERS | 8 +- | 34 | hmp-commands.hx | 2 + |
29 | hmp-commands.hx | 4 +- | 35 | hw/virtio/vhost-vdpa.c | 100 +++++++++++++++++++++++++++++++++++------ |
30 | net/colo-compare.c | 411 +++++++++++++++++++++++++++++++++-------------------- | 36 | include/hw/virtio/vhost-vdpa.h | 6 +++ |
31 | net/colo.c | 9 ++ | 37 | include/net/vhost-vdpa.h | 1 - |
32 | net/colo.h | 15 ++ | 38 | migration/colo.c | 6 --- |
33 | net/hub.c | 27 +++- | 39 | migration/migration.c | 4 ++ |
34 | net/hub.h | 3 +- | 40 | net/colo-compare.c | 25 +++++------ |
35 | net/net.c | 2 +- | 41 | net/colo-compare.h | 1 + |
36 | net/slirp.c | 33 +++-- | 42 | net/colo.c | 25 +++++++---- |
37 | net/trace-events | 2 +- | 43 | net/colo.h | 1 + |
38 | qapi/net.json | 4 +- | 44 | net/filter-mirror.c | 8 ++-- |
39 | qemu-options.hx | 12 +- | 45 | net/filter-rewriter.c | 3 +- |
40 | 12 files changed, 347 insertions(+), 183 deletions(-) | 46 | net/net.c | 4 ++ |
47 | net/vhost-vdpa.c | 9 ---- | ||
48 | qapi/net.json | 6 ++- | ||
49 | softmmu/runstate.c | 1 + | ||
50 | 16 files changed, 143 insertions(+), 59 deletions(-) | ||
41 | 51 | ||
42 | 52 | ||
53 | |||
54 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | vDPA is not tie to any specific hardware, for safety and simplicity, | ||
2 | vhost-vDPA doesn't allow MMIO area to be mapped via IOTLB. Only the | ||
3 | doorbell could be mapped via mmap(). So this patch exclude skip the | ||
4 | ram device from the IOTLB mapping. | ||
1 | 5 | ||
6 | Reviewed-by: Si-Wei Liu <si-wei.liu@oracle.com> | ||
7 | Signed-off-by: Jason Wang <jasowang@redhat.com> | ||
8 | --- | ||
9 | hw/virtio/vhost-vdpa.c | 12 ++---------- | ||
10 | 1 file changed, 2 insertions(+), 10 deletions(-) | ||
11 | |||
12 | diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c | ||
13 | index XXXXXXX..XXXXXXX 100644 | ||
14 | --- a/hw/virtio/vhost-vdpa.c | ||
15 | +++ b/hw/virtio/vhost-vdpa.c | ||
16 | @@ -XXX,XX +XXX,XX @@ static bool vhost_vdpa_listener_skipped_section(MemoryRegionSection *section) | ||
17 | { | ||
18 | return (!memory_region_is_ram(section->mr) && | ||
19 | !memory_region_is_iommu(section->mr)) || | ||
20 | + /* vhost-vDPA doesn't allow MMIO to be mapped */ | ||
21 | + memory_region_is_ram_device(section->mr) || | ||
22 | /* | ||
23 | * Sizing an enabled 64-bit BAR can cause spurious mappings to | ||
24 | * addresses in the upper part of the 64-bit address space. These | ||
25 | @@ -XXX,XX +XXX,XX @@ static void vhost_vdpa_listener_region_add(MemoryListener *listener, | ||
26 | vaddr, section->readonly); | ||
27 | if (ret) { | ||
28 | error_report("vhost vdpa map fail!"); | ||
29 | - if (memory_region_is_ram_device(section->mr)) { | ||
30 | - /* Allow unexpected mappings not to be fatal for RAM devices */ | ||
31 | - error_report("map ram fail!"); | ||
32 | - return ; | ||
33 | - } | ||
34 | goto fail; | ||
35 | } | ||
36 | |||
37 | return; | ||
38 | |||
39 | fail: | ||
40 | - if (memory_region_is_ram_device(section->mr)) { | ||
41 | - error_report("failed to vdpa_dma_map. pci p2p may not work"); | ||
42 | - return; | ||
43 | - | ||
44 | - } | ||
45 | /* | ||
46 | * On the initfn path, store the first error in the container so we | ||
47 | * can gracefully fail. Runtime, there's not much we can do other | ||
48 | -- | ||
49 | 2.7.4 | ||
50 | |||
51 | diff view generated by jsdifflib |
1 | From: Thomas Huth <thuth@redhat.com> | 1 | This patch implements the vq notification mapping support for |
---|---|---|---|
2 | vhost-vDPA. This is simply done by using mmap()/munmap() for the | ||
3 | vhost-vDPA fd during device start/stop. For the device without | ||
4 | notification mapping support, we fall back to eventfd based | ||
5 | notification gracefully. | ||
2 | 6 | ||
3 | QEMU can emulate hubs to connect NICs and netdevs. This is currently | 7 | Reviewed-by: Si-Wei Liu <si-wei.liu@oracle.com> |
4 | primarily used for the mis-named 'vlan' feature of the networking | ||
5 | subsystem. Now the 'vlan' feature has been marked as deprecated, since | ||
6 | its name is rather confusing and the users often rather mis-configure | ||
7 | their network when trying to use it. But while the 'vlan' parameter | ||
8 | should be removed at one point in time, the basic idea of emulating | ||
9 | a hub in QEMU is still good: It's useful for bundling up the output of | ||
10 | multiple NICs into one single l2tp netdev for example. | ||
11 | |||
12 | Now to be able to use the hubport feature without 'vlan's, there is one | ||
13 | missing piece: The possibility to connect a hubport to a netdev, too. | ||
14 | This patch adds this possibility by introducing a new "netdev=..." | ||
15 | parameter to the hubports. | ||
16 | |||
17 | To bundle up the output of multiple NICs into one socket netdev, you can | ||
18 | now run QEMU with these parameters for example: | ||
19 | |||
20 | qemu-system-ppc64 ... -netdev socket,id=s1,connect=:11122 \ | ||
21 | -netdev hubport,hubid=1,id=h1,netdev=s1 \ | ||
22 | -netdev hubport,hubid=1,id=h2 -device e1000,netdev=h2 \ | ||
23 | -netdev hubport,hubid=1,id=h3 -device virtio-net-pci,netdev=h3 | ||
24 | |||
25 | For using the socket netdev, you have got to start another QEMU as the | ||
26 | receiving side first, for example with network dumping enabled: | ||
27 | |||
28 | qemu-system-x86_64 -M isapc -netdev socket,id=s0,listen=:11122 \ | ||
29 | -device ne2k_isa,netdev=s0 \ | ||
30 | -object filter-dump,id=f1,netdev=s0,file=/tmp/dump.dat | ||
31 | |||
32 | After the ppc64 guest tried to boot from both NICs, you can see in the | ||
33 | dump file (using Wireshark, for example), that the output of both NICs | ||
34 | (the e1000 and the virtio-net-pci) has been successfully transfered | ||
35 | via the socket netdev in this case. | ||
36 | |||
37 | Suggested-by: Paolo Bonzini <pbonzini@redhat.com> | ||
38 | Signed-off-by: Thomas Huth <thuth@redhat.com> | ||
39 | Signed-off-by: Jason Wang <jasowang@redhat.com> | 8 | Signed-off-by: Jason Wang <jasowang@redhat.com> |
40 | --- | 9 | --- |
41 | net/hub.c | 27 +++++++++++++++++++++------ | 10 | hw/virtio/vhost-vdpa.c | 85 ++++++++++++++++++++++++++++++++++++++++++ |
42 | net/hub.h | 3 ++- | 11 | include/hw/virtio/vhost-vdpa.h | 6 +++ |
43 | net/net.c | 2 +- | 12 | 2 files changed, 91 insertions(+) |
44 | qapi/net.json | 4 +++- | ||
45 | qemu-options.hx | 8 +++++--- | ||
46 | 5 files changed, 32 insertions(+), 12 deletions(-) | ||
47 | 13 | ||
48 | diff --git a/net/hub.c b/net/hub.c | 14 | diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c |
49 | index XXXXXXX..XXXXXXX 100644 | 15 | index XXXXXXX..XXXXXXX 100644 |
50 | --- a/net/hub.c | 16 | --- a/hw/virtio/vhost-vdpa.c |
51 | +++ b/net/hub.c | 17 | +++ b/hw/virtio/vhost-vdpa.c |
52 | @@ -XXX,XX +XXX,XX @@ | 18 | @@ -XXX,XX +XXX,XX @@ static int vhost_vdpa_init(struct vhost_dev *dev, void *opaque) |
53 | */ | 19 | return 0; |
54 | |||
55 | #include "qemu/osdep.h" | ||
56 | +#include "qapi/error.h" | ||
57 | #include "monitor/monitor.h" | ||
58 | #include "net/net.h" | ||
59 | #include "clients.h" | ||
60 | @@ -XXX,XX +XXX,XX @@ static NetClientInfo net_hub_port_info = { | ||
61 | .cleanup = net_hub_port_cleanup, | ||
62 | }; | ||
63 | |||
64 | -static NetHubPort *net_hub_port_new(NetHub *hub, const char *name) | ||
65 | +static NetHubPort *net_hub_port_new(NetHub *hub, const char *name, | ||
66 | + NetClientState *hubpeer) | ||
67 | { | ||
68 | NetClientState *nc; | ||
69 | NetHubPort *port; | ||
70 | @@ -XXX,XX +XXX,XX @@ static NetHubPort *net_hub_port_new(NetHub *hub, const char *name) | ||
71 | name = default_name; | ||
72 | } | ||
73 | |||
74 | - nc = qemu_new_net_client(&net_hub_port_info, NULL, "hub", name); | ||
75 | + nc = qemu_new_net_client(&net_hub_port_info, hubpeer, "hub", name); | ||
76 | port = DO_UPCAST(NetHubPort, nc, nc); | ||
77 | port->id = id; | ||
78 | port->hub = hub; | ||
79 | @@ -XXX,XX +XXX,XX @@ static NetHubPort *net_hub_port_new(NetHub *hub, const char *name) | ||
80 | |||
81 | /** | ||
82 | * Create a port on a given hub | ||
83 | + * @hub_id: Number of the hub | ||
84 | * @name: Net client name or NULL for default name. | ||
85 | + * @hubpeer: Peer to use (if "netdev=id" has been specified) | ||
86 | * | ||
87 | * If there is no existing hub with the given id then a new hub is created. | ||
88 | */ | ||
89 | -NetClientState *net_hub_add_port(int hub_id, const char *name) | ||
90 | +NetClientState *net_hub_add_port(int hub_id, const char *name, | ||
91 | + NetClientState *hubpeer) | ||
92 | { | ||
93 | NetHub *hub; | ||
94 | NetHubPort *port; | ||
95 | @@ -XXX,XX +XXX,XX @@ NetClientState *net_hub_add_port(int hub_id, const char *name) | ||
96 | hub = net_hub_new(hub_id); | ||
97 | } | ||
98 | |||
99 | - port = net_hub_port_new(hub, name); | ||
100 | + port = net_hub_port_new(hub, name, hubpeer); | ||
101 | return &port->nc; | ||
102 | } | 20 | } |
103 | 21 | ||
104 | @@ -XXX,XX +XXX,XX @@ NetClientState *net_hub_port_find(int hub_id) | 22 | +static void vhost_vdpa_host_notifier_uninit(struct vhost_dev *dev, |
105 | } | 23 | + int queue_index) |
106 | } | 24 | +{ |
107 | 25 | + size_t page_size = qemu_real_host_page_size; | |
108 | - nc = net_hub_add_port(hub_id, NULL); | 26 | + struct vhost_vdpa *v = dev->opaque; |
109 | + nc = net_hub_add_port(hub_id, NULL, NULL); | 27 | + VirtIODevice *vdev = dev->vdev; |
110 | return nc; | 28 | + VhostVDPAHostNotifier *n; |
111 | } | 29 | + |
112 | 30 | + n = &v->notifier[queue_index]; | |
113 | @@ -XXX,XX +XXX,XX @@ int net_init_hubport(const Netdev *netdev, const char *name, | 31 | + |
114 | NetClientState *peer, Error **errp) | 32 | + if (n->addr) { |
115 | { | 33 | + virtio_queue_set_host_notifier_mr(vdev, queue_index, &n->mr, false); |
116 | const NetdevHubPortOptions *hubport; | 34 | + object_unparent(OBJECT(&n->mr)); |
117 | + NetClientState *hubpeer = NULL; | 35 | + munmap(n->addr, page_size); |
118 | 36 | + n->addr = NULL; | |
119 | assert(netdev->type == NET_CLIENT_DRIVER_HUBPORT); | 37 | + } |
120 | assert(!peer); | 38 | +} |
121 | hubport = &netdev->u.hubport; | 39 | + |
122 | 40 | +static void vhost_vdpa_host_notifiers_uninit(struct vhost_dev *dev, int n) | |
123 | - net_hub_add_port(hubport->hubid, name); | 41 | +{ |
124 | + if (hubport->has_netdev) { | 42 | + int i; |
125 | + hubpeer = qemu_find_netdev(hubport->netdev); | 43 | + |
126 | + if (!hubpeer) { | 44 | + for (i = 0; i < n; i++) { |
127 | + error_setg(errp, "netdev '%s' not found", hubport->netdev); | 45 | + vhost_vdpa_host_notifier_uninit(dev, i); |
128 | + return -1; | 46 | + } |
47 | +} | ||
48 | + | ||
49 | +static int vhost_vdpa_host_notifier_init(struct vhost_dev *dev, int queue_index) | ||
50 | +{ | ||
51 | + size_t page_size = qemu_real_host_page_size; | ||
52 | + struct vhost_vdpa *v = dev->opaque; | ||
53 | + VirtIODevice *vdev = dev->vdev; | ||
54 | + VhostVDPAHostNotifier *n; | ||
55 | + int fd = v->device_fd; | ||
56 | + void *addr; | ||
57 | + char *name; | ||
58 | + | ||
59 | + vhost_vdpa_host_notifier_uninit(dev, queue_index); | ||
60 | + | ||
61 | + n = &v->notifier[queue_index]; | ||
62 | + | ||
63 | + addr = mmap(NULL, page_size, PROT_WRITE, MAP_SHARED, fd, | ||
64 | + queue_index * page_size); | ||
65 | + if (addr == MAP_FAILED) { | ||
66 | + goto err; | ||
67 | + } | ||
68 | + | ||
69 | + name = g_strdup_printf("vhost-vdpa/host-notifier@%p mmaps[%d]", | ||
70 | + v, queue_index); | ||
71 | + memory_region_init_ram_device_ptr(&n->mr, OBJECT(vdev), name, | ||
72 | + page_size, addr); | ||
73 | + g_free(name); | ||
74 | + | ||
75 | + if (virtio_queue_set_host_notifier_mr(vdev, queue_index, &n->mr, true)) { | ||
76 | + munmap(addr, page_size); | ||
77 | + goto err; | ||
78 | + } | ||
79 | + n->addr = addr; | ||
80 | + | ||
81 | + return 0; | ||
82 | + | ||
83 | +err: | ||
84 | + return -1; | ||
85 | +} | ||
86 | + | ||
87 | +static void vhost_vdpa_host_notifiers_init(struct vhost_dev *dev) | ||
88 | +{ | ||
89 | + int i; | ||
90 | + | ||
91 | + for (i = dev->vq_index; i < dev->vq_index + dev->nvqs; i++) { | ||
92 | + if (vhost_vdpa_host_notifier_init(dev, i)) { | ||
93 | + goto err; | ||
129 | + } | 94 | + } |
130 | + } | 95 | + } |
131 | + | 96 | + |
132 | + net_hub_add_port(hubport->hubid, name, hubpeer); | 97 | + return; |
133 | + | 98 | + |
134 | return 0; | 99 | +err: |
135 | } | 100 | + vhost_vdpa_host_notifiers_uninit(dev, i); |
136 | 101 | + return; | |
137 | diff --git a/net/hub.h b/net/hub.h | 102 | +} |
103 | + | ||
104 | static int vhost_vdpa_cleanup(struct vhost_dev *dev) | ||
105 | { | ||
106 | struct vhost_vdpa *v; | ||
107 | assert(dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_VDPA); | ||
108 | v = dev->opaque; | ||
109 | trace_vhost_vdpa_cleanup(dev, v); | ||
110 | + vhost_vdpa_host_notifiers_uninit(dev, dev->nvqs); | ||
111 | memory_listener_unregister(&v->listener); | ||
112 | |||
113 | dev->opaque = NULL; | ||
114 | @@ -XXX,XX +XXX,XX @@ static int vhost_vdpa_dev_start(struct vhost_dev *dev, bool started) | ||
115 | if (started) { | ||
116 | uint8_t status = 0; | ||
117 | memory_listener_register(&v->listener, &address_space_memory); | ||
118 | + vhost_vdpa_host_notifiers_init(dev); | ||
119 | vhost_vdpa_set_vring_ready(dev); | ||
120 | vhost_vdpa_add_status(dev, VIRTIO_CONFIG_S_DRIVER_OK); | ||
121 | vhost_vdpa_call(dev, VHOST_VDPA_GET_STATUS, &status); | ||
122 | @@ -XXX,XX +XXX,XX @@ static int vhost_vdpa_dev_start(struct vhost_dev *dev, bool started) | ||
123 | vhost_vdpa_reset_device(dev); | ||
124 | vhost_vdpa_add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE | | ||
125 | VIRTIO_CONFIG_S_DRIVER); | ||
126 | + vhost_vdpa_host_notifiers_uninit(dev, dev->nvqs); | ||
127 | memory_listener_unregister(&v->listener); | ||
128 | |||
129 | return 0; | ||
130 | diff --git a/include/hw/virtio/vhost-vdpa.h b/include/hw/virtio/vhost-vdpa.h | ||
138 | index XXXXXXX..XXXXXXX 100644 | 131 | index XXXXXXX..XXXXXXX 100644 |
139 | --- a/net/hub.h | 132 | --- a/include/hw/virtio/vhost-vdpa.h |
140 | +++ b/net/hub.h | 133 | +++ b/include/hw/virtio/vhost-vdpa.h |
141 | @@ -XXX,XX +XXX,XX @@ | 134 | @@ -XXX,XX +XXX,XX @@ |
142 | 135 | ||
143 | #include "qemu-common.h" | 136 | #include "hw/virtio/virtio.h" |
144 | 137 | ||
145 | -NetClientState *net_hub_add_port(int hub_id, const char *name); | 138 | +typedef struct VhostVDPAHostNotifier { |
146 | +NetClientState *net_hub_add_port(int hub_id, const char *name, | 139 | + MemoryRegion mr; |
147 | + NetClientState *hubpeer); | 140 | + void *addr; |
148 | NetClientState *net_hub_find_client_by_name(int hub_id, const char *name); | 141 | +} VhostVDPAHostNotifier; |
149 | void net_hub_info(Monitor *mon); | 142 | + |
150 | void net_hub_check_clients(void); | 143 | typedef struct vhost_vdpa { |
151 | diff --git a/net/net.c b/net/net.c | 144 | int device_fd; |
152 | index XXXXXXX..XXXXXXX 100644 | 145 | uint32_t msg_type; |
153 | --- a/net/net.c | 146 | MemoryListener listener; |
154 | +++ b/net/net.c | 147 | struct vhost_dev *dev; |
155 | @@ -XXX,XX +XXX,XX @@ static int net_client_init1(const void *object, bool is_netdev, Error **errp) | 148 | + VhostVDPAHostNotifier notifier[VIRTIO_QUEUE_MAX]; |
156 | /* Do not add to a vlan if it's a nic with a netdev= parameter. */ | 149 | } VhostVDPA; |
157 | if (netdev->type != NET_CLIENT_DRIVER_NIC || | 150 | |
158 | !opts->u.nic.has_netdev) { | ||
159 | - peer = net_hub_add_port(net->has_vlan ? net->vlan : 0, NULL); | ||
160 | + peer = net_hub_add_port(net->has_vlan ? net->vlan : 0, NULL, NULL); | ||
161 | } | ||
162 | |||
163 | if (net->has_vlan && !vlan_warned) { | ||
164 | diff --git a/qapi/net.json b/qapi/net.json | ||
165 | index XXXXXXX..XXXXXXX 100644 | ||
166 | --- a/qapi/net.json | ||
167 | +++ b/qapi/net.json | ||
168 | @@ -XXX,XX +XXX,XX @@ | ||
169 | # Connect two or more net clients through a software hub. | ||
170 | # | ||
171 | # @hubid: hub identifier number | ||
172 | +# @netdev: used to connect hub to a netdev instead of a device (since 2.12) | ||
173 | # | ||
174 | # Since: 1.2 | ||
175 | ## | ||
176 | { 'struct': 'NetdevHubPortOptions', | ||
177 | 'data': { | ||
178 | - 'hubid': 'int32' } } | ||
179 | + 'hubid': 'int32', | ||
180 | + '*netdev': 'str' } } | ||
181 | |||
182 | ## | ||
183 | # @NetdevNetmapOptions: | ||
184 | diff --git a/qemu-options.hx b/qemu-options.hx | ||
185 | index XXXXXXX..XXXXXXX 100644 | ||
186 | --- a/qemu-options.hx | ||
187 | +++ b/qemu-options.hx | ||
188 | @@ -XXX,XX +XXX,XX @@ DEF("netdev", HAS_ARG, QEMU_OPTION_netdev, | ||
189 | #endif | 151 | #endif |
190 | "-netdev vhost-user,id=str,chardev=dev[,vhostforce=on|off]\n" | ||
191 | " configure a vhost-user network, backed by a chardev 'dev'\n" | ||
192 | - "-netdev hubport,id=str,hubid=n\n" | ||
193 | + "-netdev hubport,id=str,hubid=n[,netdev=nd]\n" | ||
194 | " configure a hub port on QEMU VLAN 'n'\n", QEMU_ARCH_ALL) | ||
195 | DEF("net", HAS_ARG, QEMU_OPTION_net, | ||
196 | "-net nic[,vlan=n][,netdev=nd][,macaddr=mac][,model=type][,name=str][,addr=str][,vectors=v]\n" | ||
197 | @@ -XXX,XX +XXX,XX @@ vde_switch -F -sock /tmp/myswitch | ||
198 | qemu-system-i386 linux.img -net nic -net vde,sock=/tmp/myswitch | ||
199 | @end example | ||
200 | |||
201 | -@item -netdev hubport,id=@var{id},hubid=@var{hubid} | ||
202 | +@item -netdev hubport,id=@var{id},hubid=@var{hubid}[,netdev=@var{nd}] | ||
203 | |||
204 | Create a hub port on QEMU "vlan" @var{hubid}. | ||
205 | |||
206 | The hubport netdev lets you connect a NIC to a QEMU "vlan" instead of a single | ||
207 | netdev. @code{-net} and @code{-device} with parameter @option{vlan} create the | ||
208 | -required hub automatically. | ||
209 | +required hub automatically. Alternatively, you can also connect the hubport | ||
210 | +to another netdev with ID @var{nd} by using the @option{netdev=@var{nd}} | ||
211 | +option. | ||
212 | |||
213 | @item -netdev vhost-user,chardev=@var{id}[,vhostforce=on|off][,queues=n] | ||
214 | |||
215 | -- | 152 | -- |
216 | 2.7.4 | 153 | 2.7.4 |
217 | 154 | ||
218 | 155 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | We used to initialize backend_features during vhost_vdpa_init() | ||
2 | regardless whether or not it was supported by vhost. This will lead | ||
3 | the unsupported features like VIRTIO_F_IN_ORDER to be included and set | ||
4 | to the vhost-vdpa during vhost_dev_start. Because the | ||
5 | VIRTIO_F_IN_ORDER is not supported by vhost-vdpa so it won't be | ||
6 | advertised to guest which will break the datapath. | ||
1 | 7 | ||
8 | Fix this by not initializing the backend_features, so the | ||
9 | acked_features could be built only from guest features via | ||
10 | vhost_net_ack_features(). | ||
11 | |||
12 | Fixes: 108a64818e69b ("vhost-vdpa: introduce vhost-vdpa backend") | ||
13 | Cc: qemu-stable@nongnu.org | ||
14 | Cc: Gautam Dawar <gdawar@xilinx.com> | ||
15 | Signed-off-by: Jason Wang <jasowang@redhat.com> | ||
16 | --- | ||
17 | hw/virtio/vhost-vdpa.c | 3 --- | ||
18 | 1 file changed, 3 deletions(-) | ||
19 | |||
20 | diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c | ||
21 | index XXXXXXX..XXXXXXX 100644 | ||
22 | --- a/hw/virtio/vhost-vdpa.c | ||
23 | +++ b/hw/virtio/vhost-vdpa.c | ||
24 | @@ -XXX,XX +XXX,XX @@ static void vhost_vdpa_add_status(struct vhost_dev *dev, uint8_t status) | ||
25 | static int vhost_vdpa_init(struct vhost_dev *dev, void *opaque) | ||
26 | { | ||
27 | struct vhost_vdpa *v; | ||
28 | - uint64_t features; | ||
29 | assert(dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_VDPA); | ||
30 | trace_vhost_vdpa_init(dev, opaque); | ||
31 | |||
32 | v = opaque; | ||
33 | v->dev = dev; | ||
34 | dev->opaque = opaque ; | ||
35 | - vhost_vdpa_call(dev, VHOST_GET_FEATURES, &features); | ||
36 | - dev->backend_features = features; | ||
37 | v->listener = vhost_vdpa_memory_listener; | ||
38 | v->msg_type = VHOST_IOTLB_MSG_V2; | ||
39 | |||
40 | -- | ||
41 | 2.7.4 | ||
42 | |||
43 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | No user for this helper, let's remove it. | ||
1 | 2 | ||
3 | Signed-off-by: Jason Wang <jasowang@redhat.com> | ||
4 | --- | ||
5 | include/net/vhost-vdpa.h | 1 - | ||
6 | net/vhost-vdpa.c | 9 --------- | ||
7 | 2 files changed, 10 deletions(-) | ||
8 | |||
9 | diff --git a/include/net/vhost-vdpa.h b/include/net/vhost-vdpa.h | ||
10 | index XXXXXXX..XXXXXXX 100644 | ||
11 | --- a/include/net/vhost-vdpa.h | ||
12 | +++ b/include/net/vhost-vdpa.h | ||
13 | @@ -XXX,XX +XXX,XX @@ | ||
14 | #define TYPE_VHOST_VDPA "vhost-vdpa" | ||
15 | |||
16 | struct vhost_net *vhost_vdpa_get_vhost_net(NetClientState *nc); | ||
17 | -uint64_t vhost_vdpa_get_acked_features(NetClientState *nc); | ||
18 | |||
19 | extern const int vdpa_feature_bits[]; | ||
20 | |||
21 | diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c | ||
22 | index XXXXXXX..XXXXXXX 100644 | ||
23 | --- a/net/vhost-vdpa.c | ||
24 | +++ b/net/vhost-vdpa.c | ||
25 | @@ -XXX,XX +XXX,XX @@ VHostNetState *vhost_vdpa_get_vhost_net(NetClientState *nc) | ||
26 | return s->vhost_net; | ||
27 | } | ||
28 | |||
29 | -uint64_t vhost_vdpa_get_acked_features(NetClientState *nc) | ||
30 | -{ | ||
31 | - VhostVDPAState *s = DO_UPCAST(VhostVDPAState, nc, nc); | ||
32 | - assert(nc->info->type == NET_CLIENT_DRIVER_VHOST_VDPA); | ||
33 | - s->acked_features = vhost_net_get_acked_features(s->vhost_net); | ||
34 | - | ||
35 | - return s->acked_features; | ||
36 | -} | ||
37 | - | ||
38 | static int vhost_vdpa_net_check_device_id(struct vhost_net *net) | ||
39 | { | ||
40 | uint32_t device_id; | ||
41 | -- | ||
42 | 2.7.4 | ||
43 | |||
44 | diff view generated by jsdifflib |
1 | From: Thomas Huth <thuth@redhat.com> | 1 | From: Paolo Bonzini <pbonzini@redhat.com> |
---|---|---|---|
2 | 2 | ||
3 | It does not make much sense to limit these commands to the legacy 'vlan' | 3 | Creating and destroying network backend does not require a fully |
4 | concept only, they should work with the modern netdevs, too. So now | 4 | constructed machine. Allow the related monitor commands to run before |
5 | it is possible to use this command with one, two or three parameters. | 5 | machine initialization has concluded. |
6 | 6 | ||
7 | With one parameter, the command installs a hostfwd rule on the default | 7 | Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> |
8 | "user" network: | 8 | Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> |
9 | hostfwd_add tcp:... | ||
10 | |||
11 | With two parameters, the command installs a hostfwd rule on a netdev | ||
12 | (that's the new way of using this command): | ||
13 | hostfwd_add netdev_id tcp:... | ||
14 | |||
15 | With three parameters, the command installs a rule on a 'vlan' (aka hub): | ||
16 | hostfwd_add hub_id name tcp:... | ||
17 | |||
18 | Same applies to the hostfwd_remove command now. | ||
19 | |||
20 | Signed-off-by: Thomas Huth <thuth@redhat.com> | ||
21 | Signed-off-by: Jason Wang <jasowang@redhat.com> | 9 | Signed-off-by: Jason Wang <jasowang@redhat.com> |
22 | --- | 10 | --- |
23 | hmp-commands.hx | 4 ++-- | 11 | hmp-commands.hx | 2 ++ |
24 | net/slirp.c | 33 +++++++++++++++++++++++---------- | 12 | qapi/net.json | 6 ++++-- |
25 | 2 files changed, 25 insertions(+), 12 deletions(-) | 13 | 2 files changed, 6 insertions(+), 2 deletions(-) |
26 | 14 | ||
27 | diff --git a/hmp-commands.hx b/hmp-commands.hx | 15 | diff --git a/hmp-commands.hx b/hmp-commands.hx |
28 | index XXXXXXX..XXXXXXX 100644 | 16 | index XXXXXXX..XXXXXXX 100644 |
29 | --- a/hmp-commands.hx | 17 | --- a/hmp-commands.hx |
30 | +++ b/hmp-commands.hx | 18 | +++ b/hmp-commands.hx |
31 | @@ -XXX,XX +XXX,XX @@ ETEXI | 19 | @@ -XXX,XX +XXX,XX @@ ERST |
32 | { | 20 | .help = "add host network device", |
33 | .name = "hostfwd_add", | 21 | .cmd = hmp_netdev_add, |
34 | .args_type = "arg1:s,arg2:s?,arg3:s?", | 22 | .command_completion = netdev_add_completion, |
35 | - .params = "[vlan_id name] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport", | 23 | + .flags = "p", |
36 | + .params = "[hub_id name]|[netdev_id] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport", | ||
37 | .help = "redirect TCP or UDP connections from host to guest (requires -net user)", | ||
38 | .cmd = hmp_hostfwd_add, | ||
39 | }, | 24 | }, |
40 | @@ -XXX,XX +XXX,XX @@ ETEXI | 25 | |
41 | { | 26 | SRST |
42 | .name = "hostfwd_remove", | 27 | @@ -XXX,XX +XXX,XX @@ ERST |
43 | .args_type = "arg1:s,arg2:s?,arg3:s?", | 28 | .help = "remove host network device", |
44 | - .params = "[vlan_id name] [tcp|udp]:[hostaddr]:hostport", | 29 | .cmd = hmp_netdev_del, |
45 | + .params = "[hub_id name]|[netdev_id] [tcp|udp]:[hostaddr]:hostport", | 30 | .command_completion = netdev_del_completion, |
46 | .help = "remove host-to-guest TCP or UDP redirection", | 31 | + .flags = "p", |
47 | .cmd = hmp_hostfwd_remove, | ||
48 | }, | 32 | }, |
49 | diff --git a/net/slirp.c b/net/slirp.c | 33 | |
34 | SRST | ||
35 | diff --git a/qapi/net.json b/qapi/net.json | ||
50 | index XXXXXXX..XXXXXXX 100644 | 36 | index XXXXXXX..XXXXXXX 100644 |
51 | --- a/net/slirp.c | 37 | --- a/qapi/net.json |
52 | +++ b/net/slirp.c | 38 | +++ b/qapi/net.json |
53 | @@ -XXX,XX +XXX,XX @@ error: | 39 | @@ -XXX,XX +XXX,XX @@ |
54 | return -1; | 40 | # <- { "return": {} } |
55 | } | 41 | # |
56 | 42 | ## | |
57 | -static SlirpState *slirp_lookup(Monitor *mon, const char *vlan, | 43 | -{ 'command': 'netdev_add', 'data': 'Netdev', 'boxed': true } |
58 | - const char *stack) | 44 | +{ 'command': 'netdev_add', 'data': 'Netdev', 'boxed': true, |
59 | +static SlirpState *slirp_lookup(Monitor *mon, const char *hub_id, | 45 | + 'allow-preconfig': true } |
60 | + const char *name) | 46 | |
61 | { | 47 | ## |
62 | - | 48 | # @netdev_del: |
63 | - if (vlan) { | 49 | @@ -XXX,XX +XXX,XX @@ |
64 | + if (name) { | 50 | # <- { "return": {} } |
65 | NetClientState *nc; | 51 | # |
66 | - nc = net_hub_find_client_by_name(strtol(vlan, NULL, 0), stack); | 52 | ## |
67 | - if (!nc) { | 53 | -{ 'command': 'netdev_del', 'data': {'id': 'str'} } |
68 | - monitor_printf(mon, "unrecognized (vlan-id, stackname) pair\n"); | 54 | +{ 'command': 'netdev_del', 'data': {'id': 'str'}, |
69 | - return NULL; | 55 | + 'allow-preconfig': true } |
70 | + if (hub_id) { | 56 | |
71 | + nc = net_hub_find_client_by_name(strtol(hub_id, NULL, 0), name); | 57 | ## |
72 | + if (!nc) { | 58 | # @NetLegacyNicOptions: |
73 | + monitor_printf(mon, "unrecognized (vlan-id, stackname) pair\n"); | ||
74 | + return NULL; | ||
75 | + } | ||
76 | + } else { | ||
77 | + nc = qemu_find_netdev(name); | ||
78 | + if (!nc) { | ||
79 | + monitor_printf(mon, "unrecognized netdev id '%s'\n", name); | ||
80 | + return NULL; | ||
81 | + } | ||
82 | } | ||
83 | if (strcmp(nc->model, "user")) { | ||
84 | monitor_printf(mon, "invalid device specified\n"); | ||
85 | @@ -XXX,XX +XXX,XX @@ void hmp_hostfwd_remove(Monitor *mon, const QDict *qdict) | ||
86 | const char *arg2 = qdict_get_try_str(qdict, "arg2"); | ||
87 | const char *arg3 = qdict_get_try_str(qdict, "arg3"); | ||
88 | |||
89 | - if (arg2) { | ||
90 | + if (arg3) { | ||
91 | s = slirp_lookup(mon, arg1, arg2); | ||
92 | src_str = arg3; | ||
93 | + } else if (arg2) { | ||
94 | + s = slirp_lookup(mon, NULL, arg1); | ||
95 | + src_str = arg2; | ||
96 | } else { | ||
97 | s = slirp_lookup(mon, NULL, NULL); | ||
98 | src_str = arg1; | ||
99 | @@ -XXX,XX +XXX,XX @@ void hmp_hostfwd_add(Monitor *mon, const QDict *qdict) | ||
100 | const char *arg2 = qdict_get_try_str(qdict, "arg2"); | ||
101 | const char *arg3 = qdict_get_try_str(qdict, "arg3"); | ||
102 | |||
103 | - if (arg2) { | ||
104 | + if (arg3) { | ||
105 | s = slirp_lookup(mon, arg1, arg2); | ||
106 | redir_str = arg3; | ||
107 | + } else if (arg2) { | ||
108 | + s = slirp_lookup(mon, NULL, arg1); | ||
109 | + redir_str = arg2; | ||
110 | } else { | ||
111 | s = slirp_lookup(mon, NULL, NULL); | ||
112 | redir_str = arg1; | ||
113 | -- | 59 | -- |
114 | 2.7.4 | 60 | 2.7.4 |
115 | 61 | ||
116 | 62 | diff view generated by jsdifflib |
1 | From: Mao Zhongyi <maozy.fnst@cn.fujitsu.com> | 1 | From: "Rao, Lei" <lei.rao@intel.com> |
---|---|---|---|
2 | 2 | ||
3 | Packet size some time different or when network is busy. | 3 | There is the same trace code in the colo_compare_packet_payload. |
4 | Based on same payload size, but TCP protocol can not | ||
5 | guarantee send the same one packet in the same way, | ||
6 | 4 | ||
7 | like that: | 5 | Signed-off-by: Lei Rao <lei.rao@intel.com> |
8 | We send this payload: | 6 | Reviewed-by: Li Zhijian <lizhijian@fujitsu.com> |
9 | ------------------------------ | 7 | Reviewed-by: Zhang Chen <chen.zhang@intel.com> |
10 | | header |1|2|3|4|5|6|7|8|9|0| | 8 | Reviewed-by: Lukas Straub <lukasstraub2@web.de> |
11 | ------------------------------ | 9 | Tested-by: Lukas Straub <lukasstraub2@web.de> |
12 | 10 | Signed-off-by: Zhang Chen <chen.zhang@intel.com> | |
13 | primary: | ||
14 | ppkt1: | ||
15 | ---------------- | ||
16 | | header |1|2|3| | ||
17 | ---------------- | ||
18 | ppkt2: | ||
19 | ------------------------ | ||
20 | | header |4|5|6|7|8|9|0| | ||
21 | ------------------------ | ||
22 | |||
23 | secondary: | ||
24 | spkt1: | ||
25 | ------------------------------ | ||
26 | | header |1|2|3|4|5|6|7|8|9|0| | ||
27 | ------------------------------ | ||
28 | |||
29 | In the original method, ppkt1 and ppkt2 are different in size and | ||
30 | spkt1, so they can't compare and trigger the checkpoint. | ||
31 | |||
32 | I have tested FTP get 200M and 1G file many times, I found that | ||
33 | the performance was less than 1% of the native. | ||
34 | |||
35 | Now I reconstructed the comparison of TCP packets based on the | ||
36 | TCP sequence number. first of all, ppkt1 and spkt1 have the same | ||
37 | starting sequence number, so they can compare, even though their | ||
38 | length is different. And then ppkt1 with a smaller payload length | ||
39 | is used as the comparison length, if the payload is same, send | ||
40 | out the ppkt1 and record the offset(the length of ppkt1 payload) | ||
41 | in spkt1. The next comparison, ppkt2 and spkt1 can be compared | ||
42 | from the recorded position of spkt1. | ||
43 | |||
44 | like that: | ||
45 | ---------------- | ||
46 | | header |1|2|3| ppkt1 | ||
47 | ---------|-----| | ||
48 | | | | ||
49 | ---------v-----v-------------- | ||
50 | | header |1|2|3|4|5|6|7|8|9|0| spkt1 | ||
51 | ---------------|\------------| | ||
52 | | \offset | | ||
53 | ---------v-------------v | ||
54 | | header |4|5|6|7|8|9|0| ppkt2 | ||
55 | ------------------------ | ||
56 | |||
57 | In this way, the performance can reach native 20% in my multiple | ||
58 | tests. | ||
59 | |||
60 | Cc: Zhang Chen <zhangckid@gmail.com> | ||
61 | Cc: Li Zhijian <lizhijian@cn.fujitsu.com> | ||
62 | Cc: Jason Wang <jasowang@redhat.com> | ||
63 | |||
64 | Signed-off-by: Mao Zhongyi <maozy.fnst@cn.fujitsu.com> | ||
65 | Signed-off-by: Li Zhijian <lizhijian@cn.fujitsu.com> | ||
66 | Signed-off-by: Zhang Chen <zhangckid@gmail.com> | ||
67 | Reviewed-by: Zhang Chen <zhangckid@gmail.com> | ||
68 | Tested-by: Zhang Chen <zhangckid@gmail.com> | ||
69 | Signed-off-by: Jason Wang <jasowang@redhat.com> | 11 | Signed-off-by: Jason Wang <jasowang@redhat.com> |
70 | --- | 12 | --- |
71 | net/colo-compare.c | 343 +++++++++++++++++++++++++++++++++++------------------ | 13 | net/colo-compare.c | 13 ------------- |
72 | net/colo.c | 9 ++ | 14 | 1 file changed, 13 deletions(-) |
73 | net/colo.h | 15 +++ | ||
74 | net/trace-events | 2 +- | ||
75 | 4 files changed, 250 insertions(+), 119 deletions(-) | ||
76 | 15 | ||
77 | diff --git a/net/colo-compare.c b/net/colo-compare.c | 16 | diff --git a/net/colo-compare.c b/net/colo-compare.c |
78 | index XXXXXXX..XXXXXXX 100644 | 17 | index XXXXXXX..XXXXXXX 100644 |
79 | --- a/net/colo-compare.c | 18 | --- a/net/colo-compare.c |
80 | +++ b/net/colo-compare.c | 19 | +++ b/net/colo-compare.c |
81 | @@ -XXX,XX +XXX,XX @@ | 20 | @@ -XXX,XX +XXX,XX @@ static int colo_packet_compare_other(Packet *spkt, Packet *ppkt) |
82 | #define COMPARE_READ_LEN_MAX NET_BUFSIZE | 21 | uint16_t offset = ppkt->vnet_hdr_len; |
83 | #define MAX_QUEUE_SIZE 1024 | 22 | |
84 | 23 | trace_colo_compare_main("compare other"); | |
85 | +#define COLO_COMPARE_FREE_PRIMARY 0x01 | 24 | - if (trace_event_get_state_backends(TRACE_COLO_COMPARE_IP_INFO)) { |
86 | +#define COLO_COMPARE_FREE_SECONDARY 0x02 | ||
87 | + | ||
88 | /* TODO: Should be configurable */ | ||
89 | #define REGULAR_PACKET_CHECK_MS 3000 | ||
90 | |||
91 | @@ -XXX,XX +XXX,XX @@ static gint seq_sorter(Packet *a, Packet *b, gpointer data) | ||
92 | return ntohl(atcp->th_seq) - ntohl(btcp->th_seq); | ||
93 | } | ||
94 | |||
95 | +static void fill_pkt_tcp_info(void *data, uint32_t *max_ack) | ||
96 | +{ | ||
97 | + Packet *pkt = data; | ||
98 | + struct tcphdr *tcphd; | ||
99 | + | ||
100 | + tcphd = (struct tcphdr *)pkt->transport_header; | ||
101 | + | ||
102 | + pkt->tcp_seq = ntohl(tcphd->th_seq); | ||
103 | + pkt->tcp_ack = ntohl(tcphd->th_ack); | ||
104 | + *max_ack = *max_ack > pkt->tcp_ack ? *max_ack : pkt->tcp_ack; | ||
105 | + pkt->header_size = pkt->transport_header - (uint8_t *)pkt->data | ||
106 | + + (tcphd->th_off << 2) - pkt->vnet_hdr_len; | ||
107 | + pkt->payload_size = pkt->size - pkt->header_size; | ||
108 | + pkt->seq_end = pkt->tcp_seq + pkt->payload_size; | ||
109 | + pkt->flags = tcphd->th_flags; | ||
110 | +} | ||
111 | + | ||
112 | /* | ||
113 | * Return 1 on success, if return 0 means the | ||
114 | * packet will be dropped | ||
115 | */ | ||
116 | -static int colo_insert_packet(GQueue *queue, Packet *pkt) | ||
117 | +static int colo_insert_packet(GQueue *queue, Packet *pkt, uint32_t *max_ack) | ||
118 | { | ||
119 | if (g_queue_get_length(queue) <= MAX_QUEUE_SIZE) { | ||
120 | if (pkt->ip->ip_p == IPPROTO_TCP) { | ||
121 | + fill_pkt_tcp_info(pkt, max_ack); | ||
122 | g_queue_insert_sorted(queue, | ||
123 | pkt, | ||
124 | (GCompareDataFunc)seq_sorter, | ||
125 | @@ -XXX,XX +XXX,XX @@ static int packet_enqueue(CompareState *s, int mode, Connection **con) | ||
126 | } | ||
127 | |||
128 | if (mode == PRIMARY_IN) { | ||
129 | - if (!colo_insert_packet(&conn->primary_list, pkt)) { | ||
130 | + if (!colo_insert_packet(&conn->primary_list, pkt, &conn->pack)) { | ||
131 | error_report("colo compare primary queue size too big," | ||
132 | "drop packet"); | ||
133 | } | ||
134 | } else { | ||
135 | - if (!colo_insert_packet(&conn->secondary_list, pkt)) { | ||
136 | + if (!colo_insert_packet(&conn->secondary_list, pkt, &conn->sack)) { | ||
137 | error_report("colo compare secondary queue size too big," | ||
138 | "drop packet"); | ||
139 | } | ||
140 | @@ -XXX,XX +XXX,XX @@ static int packet_enqueue(CompareState *s, int mode, Connection **con) | ||
141 | return 0; | ||
142 | } | ||
143 | |||
144 | +static inline bool after(uint32_t seq1, uint32_t seq2) | ||
145 | +{ | ||
146 | + return (int32_t)(seq1 - seq2) > 0; | ||
147 | +} | ||
148 | + | ||
149 | +static void colo_release_primary_pkt(CompareState *s, Packet *pkt) | ||
150 | +{ | ||
151 | + int ret; | ||
152 | + ret = compare_chr_send(s, | ||
153 | + pkt->data, | ||
154 | + pkt->size, | ||
155 | + pkt->vnet_hdr_len); | ||
156 | + if (ret < 0) { | ||
157 | + error_report("colo send primary packet failed"); | ||
158 | + } | ||
159 | + trace_colo_compare_main("packet same and release packet"); | ||
160 | + packet_destroy(pkt, NULL); | ||
161 | +} | ||
162 | + | ||
163 | /* | ||
164 | * The IP packets sent by primary and secondary | ||
165 | * will be compared in here | ||
166 | @@ -XXX,XX +XXX,XX @@ static int colo_compare_packet_payload(Packet *ppkt, | ||
167 | } | ||
168 | |||
169 | /* | ||
170 | - * Called from the compare thread on the primary | ||
171 | - * for compare tcp packet | ||
172 | - * compare_tcp copied from Dr. David Alan Gilbert's branch | ||
173 | - */ | ||
174 | -static int colo_packet_compare_tcp(Packet *spkt, Packet *ppkt) | ||
175 | + * return true means that the payload is consist and | ||
176 | + * need to make the next comparison, false means do | ||
177 | + * the checkpoint | ||
178 | +*/ | ||
179 | +static bool colo_mark_tcp_pkt(Packet *ppkt, Packet *spkt, | ||
180 | + int8_t *mark, uint32_t max_ack) | ||
181 | { | ||
182 | - struct tcphdr *ptcp, *stcp; | ||
183 | - int res; | ||
184 | + *mark = 0; | ||
185 | + | ||
186 | + if (ppkt->tcp_seq == spkt->tcp_seq && ppkt->seq_end == spkt->seq_end) { | ||
187 | + if (colo_compare_packet_payload(ppkt, spkt, | ||
188 | + ppkt->header_size, spkt->header_size, | ||
189 | + ppkt->payload_size)) { | ||
190 | + *mark = COLO_COMPARE_FREE_SECONDARY | COLO_COMPARE_FREE_PRIMARY; | ||
191 | + return true; | ||
192 | + } | ||
193 | + } | ||
194 | + if (ppkt->tcp_seq == spkt->tcp_seq && ppkt->seq_end == spkt->seq_end) { | ||
195 | + if (colo_compare_packet_payload(ppkt, spkt, | ||
196 | + ppkt->header_size, spkt->header_size, | ||
197 | + ppkt->payload_size)) { | ||
198 | + *mark = COLO_COMPARE_FREE_SECONDARY | COLO_COMPARE_FREE_PRIMARY; | ||
199 | + return true; | ||
200 | + } | ||
201 | + } | ||
202 | + | ||
203 | + /* one part of secondary packet payload still need to be compared */ | ||
204 | + if (!after(ppkt->seq_end, spkt->seq_end)) { | ||
205 | + if (colo_compare_packet_payload(ppkt, spkt, | ||
206 | + ppkt->header_size + ppkt->offset, | ||
207 | + spkt->header_size + spkt->offset, | ||
208 | + ppkt->payload_size - ppkt->offset)) { | ||
209 | + if (!after(ppkt->tcp_ack, max_ack)) { | ||
210 | + *mark = COLO_COMPARE_FREE_PRIMARY; | ||
211 | + spkt->offset += ppkt->payload_size - ppkt->offset; | ||
212 | + return true; | ||
213 | + } else { | ||
214 | + /* secondary guest hasn't ack the data, don't send | ||
215 | + * out this packet | ||
216 | + */ | ||
217 | + return false; | ||
218 | + } | ||
219 | + } | ||
220 | + } else { | ||
221 | + /* primary packet is longer than secondary packet, compare | ||
222 | + * the same part and mark the primary packet offset | ||
223 | + */ | ||
224 | + if (colo_compare_packet_payload(ppkt, spkt, | ||
225 | + ppkt->header_size + ppkt->offset, | ||
226 | + spkt->header_size + spkt->offset, | ||
227 | + spkt->payload_size - spkt->offset)) { | ||
228 | + *mark = COLO_COMPARE_FREE_SECONDARY; | ||
229 | + ppkt->offset += spkt->payload_size - spkt->offset; | ||
230 | + return true; | ||
231 | + } | ||
232 | + } | ||
233 | |||
234 | - trace_colo_compare_main("compare tcp"); | ||
235 | + return false; | ||
236 | +} | ||
237 | |||
238 | - ptcp = (struct tcphdr *)ppkt->transport_header; | ||
239 | - stcp = (struct tcphdr *)spkt->transport_header; | ||
240 | +static void colo_compare_tcp(CompareState *s, Connection *conn) | ||
241 | +{ | ||
242 | + Packet *ppkt = NULL, *spkt = NULL; | ||
243 | + int8_t mark; | ||
244 | |||
245 | /* | ||
246 | - * The 'identification' field in the IP header is *very* random | ||
247 | - * it almost never matches. Fudge this by ignoring differences in | ||
248 | - * unfragmented packets; they'll normally sort themselves out if different | ||
249 | - * anyway, and it should recover at the TCP level. | ||
250 | - * An alternative would be to get both the primary and secondary to rewrite | ||
251 | - * somehow; but that would need some sync traffic to sync the state | ||
252 | - */ | ||
253 | - if (ntohs(ppkt->ip->ip_off) & IP_DF) { | ||
254 | - spkt->ip->ip_id = ppkt->ip->ip_id; | ||
255 | - /* and the sum will be different if the IDs were different */ | ||
256 | - spkt->ip->ip_sum = ppkt->ip->ip_sum; | ||
257 | + * If ppkt and spkt have the same payload, but ppkt's ACK | ||
258 | + * is greater than spkt's ACK, in this case we can not | ||
259 | + * send the ppkt because it will cause the secondary guest | ||
260 | + * to miss sending some data in the next. Therefore, we | ||
261 | + * record the maximum ACK in the current queue at both | ||
262 | + * primary side and secondary side. Only when the ack is | ||
263 | + * less than the smaller of the two maximum ack, then we | ||
264 | + * can ensure that the packet's payload is acknowledged by | ||
265 | + * primary and secondary. | ||
266 | + */ | ||
267 | + uint32_t min_ack = conn->pack > conn->sack ? conn->sack : conn->pack; | ||
268 | + | ||
269 | +pri: | ||
270 | + if (g_queue_is_empty(&conn->primary_list)) { | ||
271 | + return; | ||
272 | } | ||
273 | + ppkt = g_queue_pop_head(&conn->primary_list); | ||
274 | +sec: | ||
275 | + if (g_queue_is_empty(&conn->secondary_list)) { | ||
276 | + g_queue_push_head(&conn->primary_list, ppkt); | ||
277 | + return; | ||
278 | + } | ||
279 | + spkt = g_queue_pop_head(&conn->secondary_list); | ||
280 | |||
281 | - /* | ||
282 | - * Check tcp header length for tcp option field. | ||
283 | - * th_off > 5 means this tcp packet have options field. | ||
284 | - * The tcp options maybe always different. | ||
285 | - * for example: | ||
286 | - * From RFC 7323. | ||
287 | - * TCP Timestamps option (TSopt): | ||
288 | - * Kind: 8 | ||
289 | - * | ||
290 | - * Length: 10 bytes | ||
291 | - * | ||
292 | - * +-------+-------+---------------------+---------------------+ | ||
293 | - * |Kind=8 | 10 | TS Value (TSval) |TS Echo Reply (TSecr)| | ||
294 | - * +-------+-------+---------------------+---------------------+ | ||
295 | - * 1 1 4 4 | ||
296 | - * | ||
297 | - * In this case the primary guest's timestamp always different with | ||
298 | - * the secondary guest's timestamp. COLO just focus on payload, | ||
299 | - * so we just need skip this field. | ||
300 | - */ | ||
301 | + if (ppkt->tcp_seq == ppkt->seq_end) { | ||
302 | + colo_release_primary_pkt(s, ppkt); | ||
303 | + ppkt = NULL; | ||
304 | + } | ||
305 | |||
306 | - ptrdiff_t ptcp_offset, stcp_offset; | ||
307 | + if (ppkt && conn->compare_seq && !after(ppkt->seq_end, conn->compare_seq)) { | ||
308 | + trace_colo_compare_main("pri: this packet has compared"); | ||
309 | + colo_release_primary_pkt(s, ppkt); | ||
310 | + ppkt = NULL; | ||
311 | + } | ||
312 | |||
313 | - ptcp_offset = ppkt->transport_header - (uint8_t *)ppkt->data | ||
314 | - + (ptcp->th_off << 2) - ppkt->vnet_hdr_len; | ||
315 | - stcp_offset = spkt->transport_header - (uint8_t *)spkt->data | ||
316 | - + (stcp->th_off << 2) - spkt->vnet_hdr_len; | ||
317 | - if (ppkt->size - ptcp_offset == spkt->size - stcp_offset) { | ||
318 | - res = colo_compare_packet_payload(ppkt, spkt, | ||
319 | - ptcp_offset, stcp_offset, | ||
320 | - ppkt->size - ptcp_offset); | ||
321 | + if (spkt->tcp_seq == spkt->seq_end) { | ||
322 | + packet_destroy(spkt, NULL); | ||
323 | + if (!ppkt) { | ||
324 | + goto pri; | ||
325 | + } else { | ||
326 | + goto sec; | ||
327 | + } | ||
328 | } else { | ||
329 | - trace_colo_compare_main("TCP: payload size of packets are different"); | ||
330 | - res = -1; | ||
331 | + if (conn->compare_seq && !after(spkt->seq_end, conn->compare_seq)) { | ||
332 | + trace_colo_compare_main("sec: this packet has compared"); | ||
333 | + packet_destroy(spkt, NULL); | ||
334 | + if (!ppkt) { | ||
335 | + goto pri; | ||
336 | + } else { | ||
337 | + goto sec; | ||
338 | + } | ||
339 | + } | ||
340 | + if (!ppkt) { | ||
341 | + g_queue_push_head(&conn->secondary_list, spkt); | ||
342 | + goto pri; | ||
343 | + } | ||
344 | } | ||
345 | |||
346 | - if (res != 0 && | ||
347 | - trace_event_get_state_backends(TRACE_COLO_COMPARE_MISCOMPARE)) { | ||
348 | - char pri_ip_src[20], pri_ip_dst[20], sec_ip_src[20], sec_ip_dst[20]; | 25 | - char pri_ip_src[20], pri_ip_dst[20], sec_ip_src[20], sec_ip_dst[20]; |
349 | - | 26 | - |
350 | - strcpy(pri_ip_src, inet_ntoa(ppkt->ip->ip_src)); | 27 | - strcpy(pri_ip_src, inet_ntoa(ppkt->ip->ip_src)); |
351 | - strcpy(pri_ip_dst, inet_ntoa(ppkt->ip->ip_dst)); | 28 | - strcpy(pri_ip_dst, inet_ntoa(ppkt->ip->ip_dst)); |
352 | - strcpy(sec_ip_src, inet_ntoa(spkt->ip->ip_src)); | 29 | - strcpy(sec_ip_src, inet_ntoa(spkt->ip->ip_src)); |
353 | - strcpy(sec_ip_dst, inet_ntoa(spkt->ip->ip_dst)); | 30 | - strcpy(sec_ip_dst, inet_ntoa(spkt->ip->ip_dst)); |
354 | - | 31 | - |
355 | - trace_colo_compare_ip_info(ppkt->size, pri_ip_src, | 32 | - trace_colo_compare_ip_info(ppkt->size, pri_ip_src, |
356 | - pri_ip_dst, spkt->size, | 33 | - pri_ip_dst, spkt->size, |
357 | - sec_ip_src, sec_ip_dst); | 34 | - sec_ip_src, sec_ip_dst); |
35 | - } | ||
358 | - | 36 | - |
359 | - trace_colo_compare_tcp_info("pri tcp packet", | 37 | if (ppkt->size != spkt->size) { |
360 | - ntohl(ptcp->th_seq), | 38 | trace_colo_compare_main("Other: payload size of packets are different"); |
361 | - ntohl(ptcp->th_ack), | 39 | return -1; |
362 | - res, ptcp->th_flags, | ||
363 | - ppkt->size); | ||
364 | - | ||
365 | - trace_colo_compare_tcp_info("sec tcp packet", | ||
366 | - ntohl(stcp->th_seq), | ||
367 | - ntohl(stcp->th_ack), | ||
368 | - res, stcp->th_flags, | ||
369 | - spkt->size); | ||
370 | + if (colo_mark_tcp_pkt(ppkt, spkt, &mark, min_ack)) { | ||
371 | + trace_colo_compare_tcp_info("pri", | ||
372 | + ppkt->tcp_seq, ppkt->tcp_ack, | ||
373 | + ppkt->header_size, ppkt->payload_size, | ||
374 | + ppkt->offset, ppkt->flags); | ||
375 | + | ||
376 | + trace_colo_compare_tcp_info("sec", | ||
377 | + spkt->tcp_seq, spkt->tcp_ack, | ||
378 | + spkt->header_size, spkt->payload_size, | ||
379 | + spkt->offset, spkt->flags); | ||
380 | + | ||
381 | + if (mark == COLO_COMPARE_FREE_PRIMARY) { | ||
382 | + conn->compare_seq = ppkt->seq_end; | ||
383 | + colo_release_primary_pkt(s, ppkt); | ||
384 | + g_queue_push_head(&conn->secondary_list, spkt); | ||
385 | + goto pri; | ||
386 | + } | ||
387 | + if (mark == COLO_COMPARE_FREE_SECONDARY) { | ||
388 | + conn->compare_seq = spkt->seq_end; | ||
389 | + packet_destroy(spkt, NULL); | ||
390 | + goto sec; | ||
391 | + } | ||
392 | + if (mark == (COLO_COMPARE_FREE_PRIMARY | COLO_COMPARE_FREE_SECONDARY)) { | ||
393 | + conn->compare_seq = ppkt->seq_end; | ||
394 | + colo_release_primary_pkt(s, ppkt); | ||
395 | + packet_destroy(spkt, NULL); | ||
396 | + goto pri; | ||
397 | + } | ||
398 | + } else { | ||
399 | + g_queue_push_head(&conn->primary_list, ppkt); | ||
400 | + g_queue_push_head(&conn->secondary_list, spkt); | ||
401 | |||
402 | qemu_hexdump((char *)ppkt->data, stderr, | ||
403 | "colo-compare ppkt", ppkt->size); | ||
404 | qemu_hexdump((char *)spkt->data, stderr, | ||
405 | "colo-compare spkt", spkt->size); | ||
406 | - } | ||
407 | |||
408 | - return res; | ||
409 | + /* | ||
410 | + * colo_compare_inconsistent_notify(); | ||
411 | + * TODO: notice to checkpoint(); | ||
412 | + */ | ||
413 | + } | ||
414 | } | ||
415 | |||
416 | + | ||
417 | /* | ||
418 | * Called from the compare thread on the primary | ||
419 | * for compare udp packet | ||
420 | @@ -XXX,XX +XXX,XX @@ static void colo_old_packet_check(void *opaque) | ||
421 | (GCompareFunc)colo_old_packet_check_one_conn); | ||
422 | } | ||
423 | |||
424 | -/* | ||
425 | - * Called from the compare thread on the primary | ||
426 | - * for compare packet with secondary list of the | ||
427 | - * specified connection when a new packet was | ||
428 | - * queued to it. | ||
429 | - */ | ||
430 | -static void colo_compare_connection(void *opaque, void *user_data) | ||
431 | +static void colo_compare_packet(CompareState *s, Connection *conn, | ||
432 | + int (*HandlePacket)(Packet *spkt, | ||
433 | + Packet *ppkt)) | ||
434 | { | ||
435 | - CompareState *s = user_data; | ||
436 | - Connection *conn = opaque; | ||
437 | Packet *pkt = NULL; | ||
438 | GList *result = NULL; | ||
439 | - int ret; | ||
440 | |||
441 | while (!g_queue_is_empty(&conn->primary_list) && | ||
442 | !g_queue_is_empty(&conn->secondary_list)) { | ||
443 | pkt = g_queue_pop_head(&conn->primary_list); | ||
444 | - switch (conn->ip_proto) { | ||
445 | - case IPPROTO_TCP: | ||
446 | - result = g_queue_find_custom(&conn->secondary_list, | ||
447 | - pkt, (GCompareFunc)colo_packet_compare_tcp); | ||
448 | - break; | ||
449 | - case IPPROTO_UDP: | ||
450 | - result = g_queue_find_custom(&conn->secondary_list, | ||
451 | - pkt, (GCompareFunc)colo_packet_compare_udp); | ||
452 | - break; | ||
453 | - case IPPROTO_ICMP: | ||
454 | - result = g_queue_find_custom(&conn->secondary_list, | ||
455 | - pkt, (GCompareFunc)colo_packet_compare_icmp); | ||
456 | - break; | ||
457 | - default: | ||
458 | - result = g_queue_find_custom(&conn->secondary_list, | ||
459 | - pkt, (GCompareFunc)colo_packet_compare_other); | ||
460 | - break; | ||
461 | - } | ||
462 | + result = g_queue_find_custom(&conn->secondary_list, | ||
463 | + pkt, (GCompareFunc)HandlePacket); | ||
464 | |||
465 | if (result) { | ||
466 | - ret = compare_chr_send(s, | ||
467 | - pkt->data, | ||
468 | - pkt->size, | ||
469 | - pkt->vnet_hdr_len); | ||
470 | - if (ret < 0) { | ||
471 | - error_report("colo_send_primary_packet failed"); | ||
472 | - } | ||
473 | - trace_colo_compare_main("packet same and release packet"); | ||
474 | + colo_release_primary_pkt(s, pkt); | ||
475 | g_queue_remove(&conn->secondary_list, result->data); | ||
476 | - packet_destroy(pkt, NULL); | ||
477 | } else { | ||
478 | /* | ||
479 | * If one packet arrive late, the secondary_list or | ||
480 | @@ -XXX,XX +XXX,XX @@ static void colo_compare_connection(void *opaque, void *user_data) | ||
481 | } | ||
482 | } | ||
483 | |||
484 | +/* | ||
485 | + * Called from the compare thread on the primary | ||
486 | + * for compare packet with secondary list of the | ||
487 | + * specified connection when a new packet was | ||
488 | + * queued to it. | ||
489 | + */ | ||
490 | +static void colo_compare_connection(void *opaque, void *user_data) | ||
491 | +{ | ||
492 | + CompareState *s = user_data; | ||
493 | + Connection *conn = opaque; | ||
494 | + | ||
495 | + switch (conn->ip_proto) { | ||
496 | + case IPPROTO_TCP: | ||
497 | + colo_compare_tcp(s, conn); | ||
498 | + break; | ||
499 | + case IPPROTO_UDP: | ||
500 | + colo_compare_packet(s, conn, colo_packet_compare_udp); | ||
501 | + break; | ||
502 | + case IPPROTO_ICMP: | ||
503 | + colo_compare_packet(s, conn, colo_packet_compare_icmp); | ||
504 | + break; | ||
505 | + default: | ||
506 | + colo_compare_packet(s, conn, colo_packet_compare_other); | ||
507 | + break; | ||
508 | + } | ||
509 | +} | ||
510 | + | ||
511 | static int compare_chr_send(CompareState *s, | ||
512 | const uint8_t *buf, | ||
513 | uint32_t size, | ||
514 | diff --git a/net/colo.c b/net/colo.c | ||
515 | index XXXXXXX..XXXXXXX 100644 | ||
516 | --- a/net/colo.c | ||
517 | +++ b/net/colo.c | ||
518 | @@ -XXX,XX +XXX,XX @@ Connection *connection_new(ConnectionKey *key) | ||
519 | conn->processing = false; | ||
520 | conn->offset = 0; | ||
521 | conn->syn_flag = 0; | ||
522 | + conn->pack = 0; | ||
523 | + conn->sack = 0; | ||
524 | g_queue_init(&conn->primary_list); | ||
525 | g_queue_init(&conn->secondary_list); | ||
526 | |||
527 | @@ -XXX,XX +XXX,XX @@ Packet *packet_new(const void *data, int size, int vnet_hdr_len) | ||
528 | pkt->size = size; | ||
529 | pkt->creation_ms = qemu_clock_get_ms(QEMU_CLOCK_HOST); | ||
530 | pkt->vnet_hdr_len = vnet_hdr_len; | ||
531 | + pkt->tcp_seq = 0; | ||
532 | + pkt->tcp_ack = 0; | ||
533 | + pkt->seq_end = 0; | ||
534 | + pkt->header_size = 0; | ||
535 | + pkt->payload_size = 0; | ||
536 | + pkt->offset = 0; | ||
537 | + pkt->flags = 0; | ||
538 | |||
539 | return pkt; | ||
540 | } | ||
541 | diff --git a/net/colo.h b/net/colo.h | ||
542 | index XXXXXXX..XXXXXXX 100644 | ||
543 | --- a/net/colo.h | ||
544 | +++ b/net/colo.h | ||
545 | @@ -XXX,XX +XXX,XX @@ typedef struct Packet { | ||
546 | int64_t creation_ms; | ||
547 | /* Get vnet_hdr_len from filter */ | ||
548 | uint32_t vnet_hdr_len; | ||
549 | + uint32_t tcp_seq; /* sequence number */ | ||
550 | + uint32_t tcp_ack; /* acknowledgement number */ | ||
551 | + /* the sequence number of the last byte of the packet */ | ||
552 | + uint32_t seq_end; | ||
553 | + uint8_t header_size; /* the header length */ | ||
554 | + uint16_t payload_size; /* the payload length */ | ||
555 | + /* record the payload offset(the length that has been compared) */ | ||
556 | + uint16_t offset; | ||
557 | + uint8_t flags; /* Flags(aka Control bits) */ | ||
558 | } Packet; | ||
559 | |||
560 | typedef struct ConnectionKey { | ||
561 | @@ -XXX,XX +XXX,XX @@ typedef struct Connection { | ||
562 | /* flag to enqueue unprocessed_connections */ | ||
563 | bool processing; | ||
564 | uint8_t ip_proto; | ||
565 | + /* record the sequence number that has been compared */ | ||
566 | + uint32_t compare_seq; | ||
567 | + /* the maximum of acknowledgement number in primary_list queue */ | ||
568 | + uint32_t pack; | ||
569 | + /* the maximum of acknowledgement number in secondary_list queue */ | ||
570 | + uint32_t sack; | ||
571 | /* offset = secondary_seq - primary_seq */ | ||
572 | tcp_seq offset; | ||
573 | /* | ||
574 | diff --git a/net/trace-events b/net/trace-events | ||
575 | index XXXXXXX..XXXXXXX 100644 | ||
576 | --- a/net/trace-events | ||
577 | +++ b/net/trace-events | ||
578 | @@ -XXX,XX +XXX,XX @@ colo_compare_icmp_miscompare(const char *sta, int size) ": %s = %d" | ||
579 | colo_compare_ip_info(int psize, const char *sta, const char *stb, int ssize, const char *stc, const char *std) "ppkt size = %d, ip_src = %s, ip_dst = %s, spkt size = %d, ip_src = %s, ip_dst = %s" | ||
580 | colo_old_packet_check_found(int64_t old_time) "%" PRId64 | ||
581 | colo_compare_miscompare(void) "" | ||
582 | -colo_compare_tcp_info(const char *pkt, uint32_t seq, uint32_t ack, int res, uint32_t flag, int size) "side: %s seq/ack= %u/%u res= %d flags= 0x%x pkt_size: %d\n" | ||
583 | +colo_compare_tcp_info(const char *pkt, uint32_t seq, uint32_t ack, int hdlen, int pdlen, int offset, int flags) "%s: seq/ack= %u/%u hdlen= %d pdlen= %d offset= %d flags=%d\n" | ||
584 | |||
585 | # net/filter-rewriter.c | ||
586 | colo_filter_rewriter_debug(void) "" | ||
587 | -- | 40 | -- |
588 | 2.7.4 | 41 | 2.7.4 |
589 | 42 | ||
590 | 43 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: "Rao, Lei" <lei.rao@intel.com> | ||
1 | 2 | ||
3 | This patch fixes the following: | ||
4 | qemu-system-x86_64: invalid runstate transition: 'colo' ->'shutdown' | ||
5 | Aborted (core dumped) | ||
6 | |||
7 | Signed-off-by: Lei Rao <lei.rao@intel.com> | ||
8 | Reviewed-by: Li Zhijian <lizhijian@fujitsu.com> | ||
9 | Reviewed-by: Zhang Chen <chen.zhang@intel.com> | ||
10 | Reviewed-by: Lukas Straub <lukasstraub2@web.de> | ||
11 | Tested-by: Lukas Straub <lukasstraub2@web.de> | ||
12 | Signed-off-by: Zhang Chen <chen.zhang@intel.com> | ||
13 | Signed-off-by: Jason Wang <jasowang@redhat.com> | ||
14 | --- | ||
15 | softmmu/runstate.c | 1 + | ||
16 | 1 file changed, 1 insertion(+) | ||
17 | |||
18 | diff --git a/softmmu/runstate.c b/softmmu/runstate.c | ||
19 | index XXXXXXX..XXXXXXX 100644 | ||
20 | --- a/softmmu/runstate.c | ||
21 | +++ b/softmmu/runstate.c | ||
22 | @@ -XXX,XX +XXX,XX @@ static const RunStateTransition runstate_transitions_def[] = { | ||
23 | { RUN_STATE_RESTORE_VM, RUN_STATE_PRELAUNCH }, | ||
24 | |||
25 | { RUN_STATE_COLO, RUN_STATE_RUNNING }, | ||
26 | + { RUN_STATE_COLO, RUN_STATE_SHUTDOWN}, | ||
27 | |||
28 | { RUN_STATE_RUNNING, RUN_STATE_DEBUG }, | ||
29 | { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR }, | ||
30 | -- | ||
31 | 2.7.4 | ||
32 | |||
33 | diff view generated by jsdifflib |
1 | From: Philippe Mathieu-Daudé <f4bug@amsat.org> | 1 | From: "Rao, Lei" <lei.rao@intel.com> |
---|---|---|---|
2 | 2 | ||
3 | gently asked by his automatic reply :) | 3 | The iov_size has been calculated in filter_send(). we can directly |
4 | return the size.In this way, this is no need to repeat calculations | ||
5 | in filter_redirector_receive_iov(); | ||
4 | 6 | ||
5 | Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> | 7 | Signed-off-by: Lei Rao <lei.rao@intel.com> |
8 | Reviewed-by: Li Zhijian <lizhijian@fujitsu.com> | ||
9 | Reviewed-by: Zhang Chen <chen.zhang@intel.com> | ||
10 | Reviewed-by: Lukas Straub <lukasstraub2@web.de> | ||
11 | Tested-by: Lukas Straub <lukasstraub2@web.de> | ||
12 | Signed-off-by: Zhang Chen <chen.zhang@intel.com> | ||
6 | Signed-off-by: Jason Wang <jasowang@redhat.com> | 13 | Signed-off-by: Jason Wang <jasowang@redhat.com> |
7 | --- | 14 | --- |
8 | MAINTAINERS | 8 ++++---- | 15 | net/filter-mirror.c | 8 ++++---- |
9 | 1 file changed, 4 insertions(+), 4 deletions(-) | 16 | 1 file changed, 4 insertions(+), 4 deletions(-) |
10 | 17 | ||
11 | diff --git a/MAINTAINERS b/MAINTAINERS | 18 | diff --git a/net/filter-mirror.c b/net/filter-mirror.c |
12 | index XXXXXXX..XXXXXXX 100644 | 19 | index XXXXXXX..XXXXXXX 100644 |
13 | --- a/MAINTAINERS | 20 | --- a/net/filter-mirror.c |
14 | +++ b/MAINTAINERS | 21 | +++ b/net/filter-mirror.c |
15 | @@ -XXX,XX +XXX,XX @@ F: hw/scsi/mfi.h | 22 | @@ -XXX,XX +XXX,XX @@ static int filter_send(MirrorState *s, |
16 | F: tests/megasas-test.c | 23 | goto err; |
17 | 24 | } | |
18 | Network packet abstractions | 25 | |
19 | -M: Dmitry Fleytman <dmitry@daynix.com> | 26 | - return 0; |
20 | +M: Dmitry Fleytman <dmitry.fleytman@gmail.com> | 27 | + return size; |
21 | S: Maintained | 28 | |
22 | F: include/net/eth.h | 29 | err: |
23 | F: net/eth.c | 30 | return ret < 0 ? ret : -EIO; |
24 | @@ -XXX,XX +XXX,XX @@ F: hw/net/net_rx_pkt* | 31 | @@ -XXX,XX +XXX,XX @@ static ssize_t filter_mirror_receive_iov(NetFilterState *nf, |
25 | F: hw/net/net_tx_pkt* | 32 | int ret; |
26 | 33 | ||
27 | Vmware | 34 | ret = filter_send(s, iov, iovcnt); |
28 | -M: Dmitry Fleytman <dmitry@daynix.com> | 35 | - if (ret) { |
29 | +M: Dmitry Fleytman <dmitry.fleytman@gmail.com> | 36 | + if (ret < 0) { |
30 | S: Maintained | 37 | error_report("filter mirror send failed(%s)", strerror(-ret)); |
31 | F: hw/net/vmxnet* | 38 | } |
32 | F: hw/scsi/vmw_pvscsi* | 39 | |
33 | @@ -XXX,XX +XXX,XX @@ F: hw/mem/nvdimm.c | 40 | @@ -XXX,XX +XXX,XX @@ static ssize_t filter_redirector_receive_iov(NetFilterState *nf, |
34 | F: include/hw/mem/nvdimm.h | 41 | |
35 | 42 | if (qemu_chr_fe_backend_connected(&s->chr_out)) { | |
36 | e1000x | 43 | ret = filter_send(s, iov, iovcnt); |
37 | -M: Dmitry Fleytman <dmitry@daynix.com> | 44 | - if (ret) { |
38 | +M: Dmitry Fleytman <dmitry.fleytman@gmail.com> | 45 | + if (ret < 0) { |
39 | S: Maintained | 46 | error_report("filter redirector send failed(%s)", strerror(-ret)); |
40 | F: hw/net/e1000x* | 47 | } |
41 | 48 | - return iov_size(iov, iovcnt); | |
42 | e1000e | 49 | + return ret; |
43 | -M: Dmitry Fleytman <dmitry@daynix.com> | 50 | } else { |
44 | +M: Dmitry Fleytman <dmitry.fleytman@gmail.com> | 51 | return 0; |
45 | S: Maintained | 52 | } |
46 | F: hw/net/e1000e* | ||
47 | |||
48 | -- | 53 | -- |
49 | 2.7.4 | 54 | 2.7.4 |
50 | 55 | ||
51 | 56 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: "Rao, Lei" <lei.rao@intel.com> | ||
1 | 2 | ||
3 | We can detect disk migration in migrate_prepare, if disk migration | ||
4 | is enabled in COLO mode, we can directly report an error.and there | ||
5 | is no need to disable block migration at every checkpoint. | ||
6 | |||
7 | Signed-off-by: Lei Rao <lei.rao@intel.com> | ||
8 | Signed-off-by: Zhang Chen <chen.zhang@intel.com> | ||
9 | Reviewed-by: Li Zhijian <lizhijian@fujitsu.com> | ||
10 | Reviewed-by: Zhang Chen <chen.zhang@intel.com> | ||
11 | Reviewed-by: Lukas Straub <lukasstraub2@web.de> | ||
12 | Tested-by: Lukas Straub <lukasstraub2@web.de> | ||
13 | Signed-off-by: Jason Wang <jasowang@redhat.com> | ||
14 | --- | ||
15 | migration/colo.c | 6 ------ | ||
16 | migration/migration.c | 4 ++++ | ||
17 | 2 files changed, 4 insertions(+), 6 deletions(-) | ||
18 | |||
19 | diff --git a/migration/colo.c b/migration/colo.c | ||
20 | index XXXXXXX..XXXXXXX 100644 | ||
21 | --- a/migration/colo.c | ||
22 | +++ b/migration/colo.c | ||
23 | @@ -XXX,XX +XXX,XX @@ static int colo_do_checkpoint_transaction(MigrationState *s, | ||
24 | if (failover_get_state() != FAILOVER_STATUS_NONE) { | ||
25 | goto out; | ||
26 | } | ||
27 | - | ||
28 | - /* Disable block migration */ | ||
29 | - migrate_set_block_enabled(false, &local_err); | ||
30 | - if (local_err) { | ||
31 | - goto out; | ||
32 | - } | ||
33 | qemu_mutex_lock_iothread(); | ||
34 | |||
35 | #ifdef CONFIG_REPLICATION | ||
36 | diff --git a/migration/migration.c b/migration/migration.c | ||
37 | index XXXXXXX..XXXXXXX 100644 | ||
38 | --- a/migration/migration.c | ||
39 | +++ b/migration/migration.c | ||
40 | @@ -XXX,XX +XXX,XX @@ static bool migrate_prepare(MigrationState *s, bool blk, bool blk_inc, | ||
41 | } | ||
42 | |||
43 | if (blk || blk_inc) { | ||
44 | + if (migrate_colo_enabled()) { | ||
45 | + error_setg(errp, "No disk migration is required in COLO mode"); | ||
46 | + return false; | ||
47 | + } | ||
48 | if (migrate_use_block() || migrate_use_block_incremental()) { | ||
49 | error_setg(errp, "Command options are incompatible with " | ||
50 | "current migration capabilities"); | ||
51 | -- | ||
52 | 2.7.4 | ||
53 | |||
54 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: "Rao, Lei" <lei.rao@intel.com> | ||
1 | 2 | ||
3 | Use the packet_new_nocopy instead of packet_new in the | ||
4 | filter-rewriter module. There will be one less memory | ||
5 | copy in the processing of each network packet. | ||
6 | |||
7 | Signed-off-by: Lei Rao <lei.rao@intel.com> | ||
8 | Signed-off-by: Zhang Chen <chen.zhang@intel.com> | ||
9 | Reviewed-by: Zhang Chen <chen.zhang@intel.com> | ||
10 | Signed-off-by: Jason Wang <jasowang@redhat.com> | ||
11 | --- | ||
12 | net/colo.c | 25 +++++++++++++++++-------- | ||
13 | net/colo.h | 1 + | ||
14 | net/filter-rewriter.c | 3 +-- | ||
15 | 3 files changed, 19 insertions(+), 10 deletions(-) | ||
16 | |||
17 | diff --git a/net/colo.c b/net/colo.c | ||
18 | index XXXXXXX..XXXXXXX 100644 | ||
19 | --- a/net/colo.c | ||
20 | +++ b/net/colo.c | ||
21 | @@ -XXX,XX +XXX,XX @@ void connection_destroy(void *opaque) | ||
22 | |||
23 | Packet *packet_new(const void *data, int size, int vnet_hdr_len) | ||
24 | { | ||
25 | - Packet *pkt = g_slice_new(Packet); | ||
26 | + Packet *pkt = g_slice_new0(Packet); | ||
27 | |||
28 | pkt->data = g_memdup(data, size); | ||
29 | pkt->size = size; | ||
30 | pkt->creation_ms = qemu_clock_get_ms(QEMU_CLOCK_HOST); | ||
31 | pkt->vnet_hdr_len = vnet_hdr_len; | ||
32 | - pkt->tcp_seq = 0; | ||
33 | - pkt->tcp_ack = 0; | ||
34 | - pkt->seq_end = 0; | ||
35 | - pkt->header_size = 0; | ||
36 | - pkt->payload_size = 0; | ||
37 | - pkt->offset = 0; | ||
38 | - pkt->flags = 0; | ||
39 | + | ||
40 | + return pkt; | ||
41 | +} | ||
42 | + | ||
43 | +/* | ||
44 | + * packet_new_nocopy will not copy data, so the caller can't release | ||
45 | + * the data. And it will be released in packet_destroy. | ||
46 | + */ | ||
47 | +Packet *packet_new_nocopy(void *data, int size, int vnet_hdr_len) | ||
48 | +{ | ||
49 | + Packet *pkt = g_slice_new0(Packet); | ||
50 | + | ||
51 | + pkt->data = data; | ||
52 | + pkt->size = size; | ||
53 | + pkt->creation_ms = qemu_clock_get_ms(QEMU_CLOCK_HOST); | ||
54 | + pkt->vnet_hdr_len = vnet_hdr_len; | ||
55 | |||
56 | return pkt; | ||
57 | } | ||
58 | diff --git a/net/colo.h b/net/colo.h | ||
59 | index XXXXXXX..XXXXXXX 100644 | ||
60 | --- a/net/colo.h | ||
61 | +++ b/net/colo.h | ||
62 | @@ -XXX,XX +XXX,XX @@ bool connection_has_tracked(GHashTable *connection_track_table, | ||
63 | ConnectionKey *key); | ||
64 | void connection_hashtable_reset(GHashTable *connection_track_table); | ||
65 | Packet *packet_new(const void *data, int size, int vnet_hdr_len); | ||
66 | +Packet *packet_new_nocopy(void *data, int size, int vnet_hdr_len); | ||
67 | void packet_destroy(void *opaque, void *user_data); | ||
68 | void packet_destroy_partial(void *opaque, void *user_data); | ||
69 | |||
70 | diff --git a/net/filter-rewriter.c b/net/filter-rewriter.c | ||
71 | index XXXXXXX..XXXXXXX 100644 | ||
72 | --- a/net/filter-rewriter.c | ||
73 | +++ b/net/filter-rewriter.c | ||
74 | @@ -XXX,XX +XXX,XX @@ static ssize_t colo_rewriter_receive_iov(NetFilterState *nf, | ||
75 | vnet_hdr_len = nf->netdev->vnet_hdr_len; | ||
76 | } | ||
77 | |||
78 | - pkt = packet_new(buf, size, vnet_hdr_len); | ||
79 | - g_free(buf); | ||
80 | + pkt = packet_new_nocopy(buf, size, vnet_hdr_len); | ||
81 | |||
82 | /* | ||
83 | * if we get tcp packet | ||
84 | -- | ||
85 | 2.7.4 | ||
86 | |||
87 | diff view generated by jsdifflib |
1 | From: Thomas Huth <thuth@redhat.com> | 1 | From: "Rao, Lei" <lei.rao@intel.com> |
---|---|---|---|
2 | 2 | ||
3 | The vlan concept is marked as deprecated, so we should not use | 3 | This patch fixes the following: |
4 | this for examples in the documentation anymore. | 4 | #0 __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50 |
5 | #1 0x00007f6ae4559859 in __GI_abort () at abort.c:79 | ||
6 | #2 0x0000559aaa386720 in error_exit (err=16, msg=0x559aaa5973d0 <__func__.16227> "qemu_mutex_destroy") at util/qemu-thread-posix.c:36 | ||
7 | #3 0x0000559aaa3868c5 in qemu_mutex_destroy (mutex=0x559aabffe828) at util/qemu-thread-posix.c:69 | ||
8 | #4 0x0000559aaa2f93a8 in char_finalize (obj=0x559aabffe800) at chardev/char.c:285 | ||
9 | #5 0x0000559aaa23318a in object_deinit (obj=0x559aabffe800, type=0x559aabfd7d20) at qom/object.c:606 | ||
10 | #6 0x0000559aaa2331b8 in object_deinit (obj=0x559aabffe800, type=0x559aabfd9060) at qom/object.c:610 | ||
11 | #7 0x0000559aaa233200 in object_finalize (data=0x559aabffe800) at qom/object.c:620 | ||
12 | #8 0x0000559aaa234202 in object_unref (obj=0x559aabffe800) at qom/object.c:1074 | ||
13 | #9 0x0000559aaa2356b6 in object_finalize_child_property (obj=0x559aac0dac10, name=0x559aac778760 "compare0-0", opaque=0x559aabffe800) at qom/object.c:1584 | ||
14 | #10 0x0000559aaa232f70 in object_property_del_all (obj=0x559aac0dac10) at qom/object.c:557 | ||
15 | #11 0x0000559aaa2331ed in object_finalize (data=0x559aac0dac10) at qom/object.c:619 | ||
16 | #12 0x0000559aaa234202 in object_unref (obj=0x559aac0dac10) at qom/object.c:1074 | ||
17 | #13 0x0000559aaa2356b6 in object_finalize_child_property (obj=0x559aac0c75c0, name=0x559aac0dadc0 "chardevs", opaque=0x559aac0dac10) at qom/object.c:1584 | ||
18 | #14 0x0000559aaa233071 in object_property_del_child (obj=0x559aac0c75c0, child=0x559aac0dac10, errp=0x0) at qom/object.c:580 | ||
19 | #15 0x0000559aaa233155 in object_unparent (obj=0x559aac0dac10) at qom/object.c:599 | ||
20 | #16 0x0000559aaa2fb721 in qemu_chr_cleanup () at chardev/char.c:1159 | ||
21 | #17 0x0000559aa9f9b110 in main (argc=54, argv=0x7ffeb62fa998, envp=0x7ffeb62fab50) at vl.c:4539 | ||
5 | 22 | ||
6 | Signed-off-by: Thomas Huth <thuth@redhat.com> | 23 | When chardev is cleaned up, chr_write_lock needs to be destroyed. But |
24 | the colo-compare module is not cleaned up normally before it when the | ||
25 | guest poweroff. It is holding chr_write_lock at this time. This will | ||
26 | cause qemu crash.So we add the function of colo_compare_cleanup() before | ||
27 | qemu_chr_cleanup() to fix the bug. | ||
28 | |||
29 | Signed-off-by: Lei Rao <lei.rao@intel.com> | ||
30 | Reviewed-by: Zhang Chen <chen.zhang@intel.com> | ||
31 | Reviewed-by: Lukas Straub <lukasstraub2@web.de> | ||
32 | Tested-by: Lukas Straub <lukasstraub2@web.de> | ||
33 | Signed-off-by: Zhang Chen <chen.zhang@intel.com> | ||
7 | Signed-off-by: Jason Wang <jasowang@redhat.com> | 34 | Signed-off-by: Jason Wang <jasowang@redhat.com> |
8 | --- | 35 | --- |
9 | qemu-options.hx | 4 ++-- | 36 | net/colo-compare.c | 10 ++++++++++ |
10 | 1 file changed, 2 insertions(+), 2 deletions(-) | 37 | net/colo-compare.h | 1 + |
38 | net/net.c | 4 ++++ | ||
39 | 3 files changed, 15 insertions(+) | ||
11 | 40 | ||
12 | diff --git a/qemu-options.hx b/qemu-options.hx | 41 | diff --git a/net/colo-compare.c b/net/colo-compare.c |
13 | index XXXXXXX..XXXXXXX 100644 | 42 | index XXXXXXX..XXXXXXX 100644 |
14 | --- a/qemu-options.hx | 43 | --- a/net/colo-compare.c |
15 | +++ b/qemu-options.hx | 44 | +++ b/net/colo-compare.c |
16 | @@ -XXX,XX +XXX,XX @@ qemu-system-i386 linux.img -net nic -net tap | 45 | @@ -XXX,XX +XXX,XX @@ static void colo_compare_init(Object *obj) |
17 | #launch a QEMU instance with two NICs, each one connected | 46 | compare_set_vnet_hdr); |
18 | #to a TAP device | 47 | } |
19 | qemu-system-i386 linux.img \ | 48 | |
20 | - -net nic,vlan=0 -net tap,vlan=0,ifname=tap0 \ | 49 | +void colo_compare_cleanup(void) |
21 | - -net nic,vlan=1 -net tap,vlan=1,ifname=tap1 | 50 | +{ |
22 | + -netdev tap,id=nd0,ifname=tap0 -device e1000,netdev=nd0 \ | 51 | + CompareState *tmp = NULL; |
23 | + -netdev tap,id=nd1,ifname=tap1 -device rtl8139,netdev=nd1 | 52 | + CompareState *n = NULL; |
24 | @end example | 53 | + |
25 | 54 | + QTAILQ_FOREACH_SAFE(tmp, &net_compares, next, n) { | |
26 | @example | 55 | + object_unparent(OBJECT(tmp)); |
56 | + } | ||
57 | +} | ||
58 | + | ||
59 | static void colo_compare_finalize(Object *obj) | ||
60 | { | ||
61 | CompareState *s = COLO_COMPARE(obj); | ||
62 | diff --git a/net/colo-compare.h b/net/colo-compare.h | ||
63 | index XXXXXXX..XXXXXXX 100644 | ||
64 | --- a/net/colo-compare.h | ||
65 | +++ b/net/colo-compare.h | ||
66 | @@ -XXX,XX +XXX,XX @@ | ||
67 | void colo_notify_compares_event(void *opaque, int event, Error **errp); | ||
68 | void colo_compare_register_notifier(Notifier *notify); | ||
69 | void colo_compare_unregister_notifier(Notifier *notify); | ||
70 | +void colo_compare_cleanup(void); | ||
71 | |||
72 | #endif /* QEMU_COLO_COMPARE_H */ | ||
73 | diff --git a/net/net.c b/net/net.c | ||
74 | index XXXXXXX..XXXXXXX 100644 | ||
75 | --- a/net/net.c | ||
76 | +++ b/net/net.c | ||
77 | @@ -XXX,XX +XXX,XX @@ | ||
78 | #include "qapi/error.h" | ||
79 | #include "qapi/opts-visitor.h" | ||
80 | #include "sysemu/runstate.h" | ||
81 | +#include "net/colo-compare.h" | ||
82 | #include "net/filter.h" | ||
83 | #include "qapi/string-output-visitor.h" | ||
84 | |||
85 | @@ -XXX,XX +XXX,XX @@ void net_cleanup(void) | ||
86 | { | ||
87 | NetClientState *nc; | ||
88 | |||
89 | + /*cleanup colo compare module for COLO*/ | ||
90 | + colo_compare_cleanup(); | ||
91 | + | ||
92 | /* We may del multiple entries during qemu_del_net_client(), | ||
93 | * so QTAILQ_FOREACH_SAFE() is also not safe here. | ||
94 | */ | ||
27 | -- | 95 | -- |
28 | 2.7.4 | 96 | 2.7.4 |
29 | 97 | ||
30 | 98 | diff view generated by jsdifflib |
1 | From: Mao Zhongyi <maozy.fnst@cn.fujitsu.com> | 1 | From: "Rao, Lei" <lei.rao@intel.com> |
---|---|---|---|
2 | 2 | ||
3 | Modified the function colo_packet_compare_common to prepare for the | 3 | The data pointer has skipped vnet_hdr_len in the function of |
4 | tcp packet comparison in the next patch. | 4 | parse_packet_early().So, we can not subtract vnet_hdr_len again |
5 | when calculating pkt->header_size in fill_pkt_tcp_info(). Otherwise, | ||
6 | it will cause network packet comparsion errors and greatly increase | ||
7 | the frequency of checkpoints. | ||
5 | 8 | ||
6 | Cc: Zhang Chen <zhangckid@gmail.com> | 9 | Signed-off-by: Lei Rao <lei.rao@intel.com> |
7 | Cc: Li Zhijian <lizhijian@cn.fujitsu.com> | 10 | Signed-off-by: Zhang Chen <chen.zhang@intel.com> |
8 | Cc: Jason Wang <jasowang@redhat.com> | 11 | Reviewed-by: Li Zhijian <lizhijian@fujitsu.com> |
9 | 12 | Reviewed-by: Zhang Chen <chen.zhang@intel.com> | |
10 | Signed-off-by: Mao Zhongyi <maozy.fnst@cn.fujitsu.com> | 13 | Reviewed-by: Lukas Straub <lukasstraub2@web.de> |
11 | Signed-off-by: Li Zhijian <lizhijian@cn.fujitsu.com> | 14 | Tested-by: Lukas Straub <lukasstraub2@web.de> |
12 | Signed-off-by: Zhang Chen <zhangckid@gmail.com> | ||
13 | Reviewed-by: Zhang Chen <zhangckid@gmail.com> | ||
14 | Signed-off-by: Jason Wang <jasowang@redhat.com> | 15 | Signed-off-by: Jason Wang <jasowang@redhat.com> |
15 | --- | 16 | --- |
16 | net/colo-compare.c | 88 +++++++++++++++++++++++++++--------------------------- | 17 | net/colo-compare.c | 2 +- |
17 | 1 file changed, 44 insertions(+), 44 deletions(-) | 18 | 1 file changed, 1 insertion(+), 1 deletion(-) |
18 | 19 | ||
19 | diff --git a/net/colo-compare.c b/net/colo-compare.c | 20 | diff --git a/net/colo-compare.c b/net/colo-compare.c |
20 | index XXXXXXX..XXXXXXX 100644 | 21 | index XXXXXXX..XXXXXXX 100644 |
21 | --- a/net/colo-compare.c | 22 | --- a/net/colo-compare.c |
22 | +++ b/net/colo-compare.c | 23 | +++ b/net/colo-compare.c |
23 | @@ -XXX,XX +XXX,XX @@ static int packet_enqueue(CompareState *s, int mode, Connection **con) | 24 | @@ -XXX,XX +XXX,XX @@ static void fill_pkt_tcp_info(void *data, uint32_t *max_ack) |
24 | * return: 0 means packet same | 25 | pkt->tcp_ack = ntohl(tcphd->th_ack); |
25 | * > 0 || < 0 means packet different | 26 | *max_ack = *max_ack > pkt->tcp_ack ? *max_ack : pkt->tcp_ack; |
26 | */ | 27 | pkt->header_size = pkt->transport_header - (uint8_t *)pkt->data |
27 | -static int colo_packet_compare_common(Packet *ppkt, | 28 | - + (tcphd->th_off << 2) - pkt->vnet_hdr_len; |
28 | - Packet *spkt, | 29 | + + (tcphd->th_off << 2); |
29 | - int poffset, | 30 | pkt->payload_size = pkt->size - pkt->header_size; |
30 | - int soffset) | 31 | pkt->seq_end = pkt->tcp_seq + pkt->payload_size; |
31 | +static int colo_compare_packet_payload(Packet *ppkt, | 32 | pkt->flags = tcphd->th_flags; |
32 | + Packet *spkt, | ||
33 | + uint16_t poffset, | ||
34 | + uint16_t soffset, | ||
35 | + uint16_t len) | ||
36 | + | ||
37 | { | ||
38 | if (trace_event_get_state_backends(TRACE_COLO_COMPARE_MISCOMPARE)) { | ||
39 | char pri_ip_src[20], pri_ip_dst[20], sec_ip_src[20], sec_ip_dst[20]; | ||
40 | @@ -XXX,XX +XXX,XX @@ static int colo_packet_compare_common(Packet *ppkt, | ||
41 | sec_ip_src, sec_ip_dst); | ||
42 | } | ||
43 | |||
44 | - poffset = ppkt->vnet_hdr_len + poffset; | ||
45 | - soffset = ppkt->vnet_hdr_len + soffset; | ||
46 | - | ||
47 | - if (ppkt->size - poffset == spkt->size - soffset) { | ||
48 | - return memcmp(ppkt->data + poffset, | ||
49 | - spkt->data + soffset, | ||
50 | - spkt->size - soffset); | ||
51 | - } else { | ||
52 | - trace_colo_compare_main("Net packet size are not the same"); | ||
53 | - return -1; | ||
54 | - } | ||
55 | + return memcmp(ppkt->data + poffset, spkt->data + soffset, len); | ||
56 | } | ||
57 | |||
58 | /* | ||
59 | @@ -XXX,XX +XXX,XX @@ static int colo_packet_compare_tcp(Packet *spkt, Packet *ppkt) | ||
60 | * the secondary guest's timestamp. COLO just focus on payload, | ||
61 | * so we just need skip this field. | ||
62 | */ | ||
63 | - if (ptcp->th_off > 5) { | ||
64 | - ptrdiff_t ptcp_offset, stcp_offset; | ||
65 | |||
66 | - ptcp_offset = ppkt->transport_header - (uint8_t *)ppkt->data | ||
67 | - + (ptcp->th_off * 4) - ppkt->vnet_hdr_len; | ||
68 | - stcp_offset = spkt->transport_header - (uint8_t *)spkt->data | ||
69 | - + (stcp->th_off * 4) - spkt->vnet_hdr_len; | ||
70 | + ptrdiff_t ptcp_offset, stcp_offset; | ||
71 | |||
72 | - /* | ||
73 | - * When network is busy, some tcp options(like sack) will unpredictable | ||
74 | - * occur in primary side or secondary side. it will make packet size | ||
75 | - * not same, but the two packet's payload is identical. colo just | ||
76 | - * care about packet payload, so we skip the option field. | ||
77 | - */ | ||
78 | - res = colo_packet_compare_common(ppkt, spkt, ptcp_offset, stcp_offset); | ||
79 | - } else if (ptcp->th_sum == stcp->th_sum) { | ||
80 | - res = colo_packet_compare_common(ppkt, spkt, ETH_HLEN, ETH_HLEN); | ||
81 | + ptcp_offset = ppkt->transport_header - (uint8_t *)ppkt->data | ||
82 | + + (ptcp->th_off << 2) - ppkt->vnet_hdr_len; | ||
83 | + stcp_offset = spkt->transport_header - (uint8_t *)spkt->data | ||
84 | + + (stcp->th_off << 2) - spkt->vnet_hdr_len; | ||
85 | + if (ppkt->size - ptcp_offset == spkt->size - stcp_offset) { | ||
86 | + res = colo_compare_packet_payload(ppkt, spkt, | ||
87 | + ptcp_offset, stcp_offset, | ||
88 | + ppkt->size - ptcp_offset); | ||
89 | } else { | ||
90 | + trace_colo_compare_main("TCP: payload size of packets are different"); | ||
91 | res = -1; | ||
92 | } | ||
93 | |||
94 | @@ -XXX,XX +XXX,XX @@ static int colo_packet_compare_tcp(Packet *spkt, Packet *ppkt) | ||
95 | */ | ||
96 | static int colo_packet_compare_udp(Packet *spkt, Packet *ppkt) | ||
97 | { | ||
98 | - int ret; | ||
99 | - int network_header_length = ppkt->ip->ip_hl * 4; | ||
100 | + uint16_t network_header_length = ppkt->ip->ip_hl << 2; | ||
101 | + uint16_t offset = network_header_length + ETH_HLEN + ppkt->vnet_hdr_len; | ||
102 | |||
103 | trace_colo_compare_main("compare udp"); | ||
104 | |||
105 | @@ -XXX,XX +XXX,XX @@ static int colo_packet_compare_udp(Packet *spkt, Packet *ppkt) | ||
106 | * other field like TOS,TTL,IP Checksum. we only need to compare | ||
107 | * the ip payload here. | ||
108 | */ | ||
109 | - ret = colo_packet_compare_common(ppkt, spkt, | ||
110 | - network_header_length + ETH_HLEN, | ||
111 | - network_header_length + ETH_HLEN); | ||
112 | - | ||
113 | - if (ret) { | ||
114 | + if (ppkt->size != spkt->size) { | ||
115 | + trace_colo_compare_main("UDP: payload size of packets are different"); | ||
116 | + return -1; | ||
117 | + } | ||
118 | + if (colo_compare_packet_payload(ppkt, spkt, offset, offset, | ||
119 | + ppkt->size - offset)) { | ||
120 | trace_colo_compare_udp_miscompare("primary pkt size", ppkt->size); | ||
121 | trace_colo_compare_udp_miscompare("Secondary pkt size", spkt->size); | ||
122 | if (trace_event_get_state_backends(TRACE_COLO_COMPARE_MISCOMPARE)) { | ||
123 | @@ -XXX,XX +XXX,XX @@ static int colo_packet_compare_udp(Packet *spkt, Packet *ppkt) | ||
124 | qemu_hexdump((char *)spkt->data, stderr, "colo-compare sec pkt", | ||
125 | spkt->size); | ||
126 | } | ||
127 | + return -1; | ||
128 | + } else { | ||
129 | + return 0; | ||
130 | } | ||
131 | - | ||
132 | - return ret; | ||
133 | } | ||
134 | |||
135 | /* | ||
136 | @@ -XXX,XX +XXX,XX @@ static int colo_packet_compare_udp(Packet *spkt, Packet *ppkt) | ||
137 | */ | ||
138 | static int colo_packet_compare_icmp(Packet *spkt, Packet *ppkt) | ||
139 | { | ||
140 | - int network_header_length = ppkt->ip->ip_hl * 4; | ||
141 | + uint16_t network_header_length = ppkt->ip->ip_hl << 2; | ||
142 | + uint16_t offset = network_header_length + ETH_HLEN + ppkt->vnet_hdr_len; | ||
143 | |||
144 | trace_colo_compare_main("compare icmp"); | ||
145 | |||
146 | @@ -XXX,XX +XXX,XX @@ static int colo_packet_compare_icmp(Packet *spkt, Packet *ppkt) | ||
147 | * other field like TOS,TTL,IP Checksum. we only need to compare | ||
148 | * the ip payload here. | ||
149 | */ | ||
150 | - if (colo_packet_compare_common(ppkt, spkt, | ||
151 | - network_header_length + ETH_HLEN, | ||
152 | - network_header_length + ETH_HLEN)) { | ||
153 | + if (ppkt->size != spkt->size) { | ||
154 | + trace_colo_compare_main("ICMP: payload size of packets are different"); | ||
155 | + return -1; | ||
156 | + } | ||
157 | + if (colo_compare_packet_payload(ppkt, spkt, offset, offset, | ||
158 | + ppkt->size - offset)) { | ||
159 | trace_colo_compare_icmp_miscompare("primary pkt size", | ||
160 | ppkt->size); | ||
161 | trace_colo_compare_icmp_miscompare("Secondary pkt size", | ||
162 | @@ -XXX,XX +XXX,XX @@ static int colo_packet_compare_icmp(Packet *spkt, Packet *ppkt) | ||
163 | */ | ||
164 | static int colo_packet_compare_other(Packet *spkt, Packet *ppkt) | ||
165 | { | ||
166 | + uint16_t offset = ppkt->vnet_hdr_len; | ||
167 | + | ||
168 | trace_colo_compare_main("compare other"); | ||
169 | if (trace_event_get_state_backends(TRACE_COLO_COMPARE_MISCOMPARE)) { | ||
170 | char pri_ip_src[20], pri_ip_dst[20], sec_ip_src[20], sec_ip_dst[20]; | ||
171 | @@ -XXX,XX +XXX,XX @@ static int colo_packet_compare_other(Packet *spkt, Packet *ppkt) | ||
172 | sec_ip_src, sec_ip_dst); | ||
173 | } | ||
174 | |||
175 | - return colo_packet_compare_common(ppkt, spkt, 0, 0); | ||
176 | + if (ppkt->size != spkt->size) { | ||
177 | + trace_colo_compare_main("Other: payload size of packets are different"); | ||
178 | + return -1; | ||
179 | + } | ||
180 | + return colo_compare_packet_payload(ppkt, spkt, offset, offset, | ||
181 | + ppkt->size - offset); | ||
182 | } | ||
183 | |||
184 | static int colo_old_packet_check_one(Packet *pkt, int64_t *check_time) | ||
185 | -- | 33 | -- |
186 | 2.7.4 | 34 | 2.7.4 |
187 | 35 | ||
188 | 36 | diff view generated by jsdifflib |