1 | The following changes since commit d9a4282c4b690e45d25c2b933f318bb41eeb271d: | 1 | The following changes since commit d90f154867ec0ec22fd719164b88716e8fd48672: |
---|---|---|---|
2 | 2 | ||
3 | Merge tag 'pull-tcg-20250308' of https://gitlab.com/rth7680/qemu into staging (2025-03-09 11:45:00 +0800) | 3 | Merge remote-tracking branch 'remotes/dg-gitlab/tags/ppc-for-6.1-20210504' into staging (2021-05-05 20:29:14 +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 ac2ff9b840ce82cc7d5fd9ce4fd3019a434d7dc9: | 9 | for you to fetch changes up to 4f8a39494aded9f2026a26b137378ea2ee3d5338: |
10 | 10 | ||
11 | tap-linux: Open ipvtap and macvtap (2025-03-10 17:07:16 +0800) | 11 | tap-bsd: Remove special casing for older OpenBSD releases (2021-05-27 11:03:55 +0800) |
12 | 12 | ||
13 | ---------------------------------------------------------------- | 13 | ---------------------------------------------------------------- |
14 | -----BEGIN PGP SIGNATURE----- | ||
15 | |||
16 | iQEzBAABCAAdFiEEIV1G9IJGaJ7HfzVi7wSWWzmNYhEFAmfO1zkACgkQ7wSWWzmN | ||
17 | YhET+wf+PkaGeFTNUrOtWpl35fSMKlmOVbb1fkPfuhVBmeY2Vh1EIN3OjqnzdV0F | ||
18 | wxpuk+wwmFiuV1n6RNuMHQ0nz1mhgsSlZh93N5rArC/PUr3iViaT0cb82RjwxhaI | ||
19 | RODBhhy7V9WxEhT9hR8sCP2ky2mrKgcYbjiIEw+IvFZOVQa58rMr2h/cbAb/iH4l | ||
20 | 7T9Wba03JBqOS6qgzSFZOMxvqnYdVjhqXN8M6W9ngRJOjPEAkTB6Evwep6anRjcM | ||
21 | mCUOgkf2sgQwKve8pYAeTMkzXFctvTc/qCU4ZbN8XcoKVVxe2jllGQqdOpMskPEf | ||
22 | slOuINeW5M0K5gyjsb/huqcOTfDI2A== | ||
23 | =/Y0+ | ||
24 | -----END PGP SIGNATURE----- | ||
25 | 14 | ||
26 | ---------------------------------------------------------------- | 15 | ---------------------------------------------------------------- |
27 | Akihiko Odaki (3): | 16 | Brad Smith (1): |
28 | util/iov: Do not assert offset is in iov | 17 | tap-bsd: Remove special casing for older OpenBSD releases |
29 | Revert "hw/net/net_tx_pkt: Fix overrun in update_sctp_checksum()" | ||
30 | tap-linux: Open ipvtap and macvtap | ||
31 | 18 | ||
32 | Eugenio Pérez (2): | 19 | Guenter Roeck (1): |
33 | net: parameterize the removing client from nc list | 20 | hw/net/imx_fec: return 0xffff when accessing non-existing PHY |
34 | net: move backend cleanup to NIC cleanup | ||
35 | 21 | ||
36 | hw/net/net_tx_pkt.c | 4 ---- | 22 | Laurent Vivier (1): |
37 | include/qemu/iov.h | 5 +++-- | 23 | virtio-net: failover: add missing remove_migration_state_change_notifier() |
38 | net/net.c | 44 ++++++++++++++++++++++++++++++++++---------- | 24 | |
39 | net/tap-linux.c | 17 ++++++++++++++--- | 25 | hw/net/imx_fec.c | 8 +++----- |
40 | net/vhost-vdpa.c | 8 -------- | 26 | hw/net/trace-events | 2 ++ |
41 | util/iov.c | 5 ----- | 27 | hw/net/virtio-net.c | 1 + |
42 | 6 files changed, 51 insertions(+), 32 deletions(-) | 28 | net/tap-bsd.c | 8 -------- |
29 | 4 files changed, 6 insertions(+), 13 deletions(-) | ||
43 | 30 | ||
44 | 31 | ||
45 | diff view generated by jsdifflib |
1 | From: Eugenio Pérez <eperezma@redhat.com> | 1 | From: Guenter Roeck <linux@roeck-us.net> |
---|---|---|---|
2 | 2 | ||
3 | Commit a0d7215e33 ("vhost-vdpa: do not cleanup the vdpa/vhost-net | 3 | If a PHY does not exist, attempts to read from it should return 0xffff. |
4 | structures if peer nic is present") effectively delayed the backend | 4 | Otherwise the Linux kernel will believe that a PHY is there and select |
5 | cleanup, allowing the frontend or the guest to access it resources as | 5 | the non-existing PHY. This in turn will result in network errors later |
6 | long as the frontend is still visible to the guest. | 6 | on since the real PHY is not selected or configured. |
7 | 7 | ||
8 | However it does not clean up the resources until the qemu process is | 8 | Since reading from or writing to a non-existing PHY is not an emulation |
9 | over. This causes an effective leak if the device is deleted with | 9 | error, replace guest error messages with traces. |
10 | device_del, as there is no way to close the vdpa device. This makes | ||
11 | impossible to re-add that device to this or other QEMU instances until | ||
12 | the first instance of QEMU is finished. | ||
13 | 10 | ||
14 | Move the cleanup from qemu_cleanup to the NIC deletion and to | 11 | Fixes: 461c51ad4275 ("Add a phy-num property to the i.MX FEC emulator") |
15 | net_cleanup. | 12 | Cc: Jean-Christophe Dubois <jcd@tribudubois.net> |
16 | 13 | Reviewed-by: Bin Meng <bmeng.cn@gmail.com> | |
17 | Fixes: a0d7215e33 ("vhost-vdpa: do not cleanup the vdpa/vhost-net structures if peer nic is present") | 14 | Tested-by: Bin Meng <bmeng.cn@gmail.com> |
18 | Reported-by: Lei Yang <leiyang@redhat.com> | 15 | Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> |
19 | Signed-off-by: Eugenio Pérez <eperezma@redhat.com> | 16 | Signed-off-by: Guenter Roeck <linux@roeck-us.net> |
20 | Signed-off-by: Jonah Palmer <jonah.palmer@oracle.com> | ||
21 | Signed-off-by: Jason Wang <jasowang@redhat.com> | 17 | Signed-off-by: Jason Wang <jasowang@redhat.com> |
22 | --- | 18 | --- |
23 | net/net.c | 33 +++++++++++++++++++++++++++------ | 19 | hw/net/imx_fec.c | 8 +++----- |
24 | net/vhost-vdpa.c | 8 -------- | 20 | hw/net/trace-events | 2 ++ |
25 | 2 files changed, 27 insertions(+), 14 deletions(-) | 21 | 2 files changed, 5 insertions(+), 5 deletions(-) |
26 | 22 | ||
27 | diff --git a/net/net.c b/net/net.c | 23 | diff --git a/hw/net/imx_fec.c b/hw/net/imx_fec.c |
28 | index XXXXXXX..XXXXXXX 100644 | 24 | index XXXXXXX..XXXXXXX 100644 |
29 | --- a/net/net.c | 25 | --- a/hw/net/imx_fec.c |
30 | +++ b/net/net.c | 26 | +++ b/hw/net/imx_fec.c |
31 | @@ -XXX,XX +XXX,XX @@ void qemu_del_net_client(NetClientState *nc) | 27 | @@ -XXX,XX +XXX,XX @@ static uint32_t imx_phy_read(IMXFECState *s, int reg) |
32 | object_unparent(OBJECT(nf)); | 28 | uint32_t phy = reg / 32; |
29 | |||
30 | if (phy != s->phy_num) { | ||
31 | - qemu_log_mask(LOG_GUEST_ERROR, "[%s.phy]%s: Bad phy num %u\n", | ||
32 | - TYPE_IMX_FEC, __func__, phy); | ||
33 | - return 0; | ||
34 | + trace_imx_phy_read_num(phy, s->phy_num); | ||
35 | + return 0xffff; | ||
33 | } | 36 | } |
34 | 37 | ||
35 | - /* If there is a peer NIC, delete and cleanup client, but do not free. */ | 38 | reg %= 32; |
36 | + /* | 39 | @@ -XXX,XX +XXX,XX @@ static void imx_phy_write(IMXFECState *s, int reg, uint32_t val) |
37 | + * If there is a peer NIC, transfer ownership to it. Delete the client | 40 | uint32_t phy = reg / 32; |
38 | + * from net_client list but do not cleanup nor free. This way NIC can | 41 | |
39 | + * still access to members of the backend. | 42 | if (phy != s->phy_num) { |
40 | + * | 43 | - qemu_log_mask(LOG_GUEST_ERROR, "[%s.phy]%s: Bad phy num %u\n", |
41 | + * The cleanup and free will be done when the NIC is free. | 44 | - TYPE_IMX_FEC, __func__, phy); |
42 | + */ | 45 | + trace_imx_phy_write_num(phy, s->phy_num); |
43 | if (nc->peer && nc->peer->info->type == NET_CLIENT_DRIVER_NIC) { | ||
44 | NICState *nic = qemu_get_nic(nc->peer); | ||
45 | if (nic->peer_deleted) { | ||
46 | @@ -XXX,XX +XXX,XX @@ void qemu_del_net_client(NetClientState *nc) | ||
47 | |||
48 | for (i = 0; i < queues; i++) { | ||
49 | ncs[i]->peer->link_down = true; | ||
50 | + QTAILQ_REMOVE(&net_clients, ncs[i], next); | ||
51 | } | ||
52 | |||
53 | if (nc->peer->info->link_status_changed) { | ||
54 | nc->peer->info->link_status_changed(nc->peer); | ||
55 | } | ||
56 | |||
57 | - for (i = 0; i < queues; i++) { | ||
58 | - qemu_cleanup_net_client(ncs[i], true); | ||
59 | - } | ||
60 | - | ||
61 | return; | 46 | return; |
62 | } | 47 | } |
63 | 48 | ||
64 | @@ -XXX,XX +XXX,XX @@ void qemu_del_nic(NICState *nic) | 49 | diff --git a/hw/net/trace-events b/hw/net/trace-events |
65 | |||
66 | for (i = 0; i < queues; i++) { | ||
67 | NetClientState *nc = qemu_get_subqueue(nic, i); | ||
68 | - /* If this is a peer NIC and peer has already been deleted, free it now. */ | ||
69 | + /* | ||
70 | + * If this is a peer NIC and peer has already been deleted, clean it up | ||
71 | + * and free it now. | ||
72 | + */ | ||
73 | if (nic->peer_deleted) { | ||
74 | + qemu_cleanup_net_client(nc->peer, false); | ||
75 | qemu_free_net_client(nc->peer); | ||
76 | } else if (nc->peer) { | ||
77 | /* if there are RX packets pending, complete them */ | ||
78 | @@ -XXX,XX +XXX,XX @@ void net_cleanup(void) | ||
79 | * of the latest NET_CLIENT_DRIVER_NIC, and operate on *p as we walk | ||
80 | * the list. | ||
81 | * | ||
82 | + * However, the NIC may have peers that trust to be clean beyond this | ||
83 | + * point. For example, if they have been removed with device_del. | ||
84 | + * | ||
85 | * The 'nc' variable isn't part of the list traversal; it's purely | ||
86 | * for convenience as too much '(*p)->' has a tendency to make the | ||
87 | * readers' eyes bleed. | ||
88 | @@ -XXX,XX +XXX,XX @@ void net_cleanup(void) | ||
89 | while (*p) { | ||
90 | nc = *p; | ||
91 | if (nc->info->type == NET_CLIENT_DRIVER_NIC) { | ||
92 | + NICState *nic = qemu_get_nic(nc); | ||
93 | + | ||
94 | + if (nic->peer_deleted) { | ||
95 | + int queues = MAX(nic->conf->peers.queues, 1); | ||
96 | + | ||
97 | + for (int i = 0; i < queues; i++) { | ||
98 | + nc = qemu_get_subqueue(nic, i); | ||
99 | + qemu_cleanup_net_client(nc->peer, false); | ||
100 | + } | ||
101 | + } | ||
102 | + | ||
103 | /* Skip NET_CLIENT_DRIVER_NIC entries */ | ||
104 | p = &QTAILQ_NEXT(nc, next); | ||
105 | } else { | ||
106 | diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c | ||
107 | index XXXXXXX..XXXXXXX 100644 | 50 | index XXXXXXX..XXXXXXX 100644 |
108 | --- a/net/vhost-vdpa.c | 51 | --- a/hw/net/trace-events |
109 | +++ b/net/vhost-vdpa.c | 52 | +++ b/hw/net/trace-events |
110 | @@ -XXX,XX +XXX,XX @@ static void vhost_vdpa_cleanup(NetClientState *nc) | 53 | @@ -XXX,XX +XXX,XX @@ i82596_channel_attention(void *s) "%p: Received CHANNEL ATTENTION" |
111 | { | 54 | |
112 | VhostVDPAState *s = DO_UPCAST(VhostVDPAState, nc, nc); | 55 | # imx_fec.c |
113 | 56 | imx_phy_read(uint32_t val, int phy, int reg) "0x%04"PRIx32" <= phy[%d].reg[%d]" | |
114 | - /* | 57 | +imx_phy_read_num(int phy, int configured) "read request from unconfigured phy %d (configured %d)" |
115 | - * If a peer NIC is attached, do not cleanup anything. | 58 | imx_phy_write(uint32_t val, int phy, int reg) "0x%04"PRIx32" => phy[%d].reg[%d]" |
116 | - * Cleanup will happen as a part of qemu_cleanup() -> net_cleanup() | 59 | +imx_phy_write_num(int phy, int configured) "write request to unconfigured phy %d (configured %d)" |
117 | - * when the guest is shutting down. | 60 | imx_phy_update_link(const char *s) "%s" |
118 | - */ | 61 | imx_phy_reset(void) "" |
119 | - if (nc->peer && nc->peer->info->type == NET_CLIENT_DRIVER_NIC) { | 62 | imx_fec_read_bd(uint64_t addr, int flags, int len, int data) "tx_bd 0x%"PRIx64" flags 0x%04x len %d data 0x%08x" |
120 | - return; | ||
121 | - } | ||
122 | munmap(s->cvq_cmd_out_buffer, vhost_vdpa_net_cvq_cmd_page_len()); | ||
123 | munmap(s->status, vhost_vdpa_net_cvq_cmd_page_len()); | ||
124 | if (s->vhost_net) { | ||
125 | -- | 63 | -- |
126 | 2.42.0 | 64 | 2.7.4 |
127 | 65 | ||
128 | 66 | diff view generated by jsdifflib |
1 | From: Eugenio Pérez <eperezma@redhat.com> | 1 | From: Laurent Vivier <lvivier@redhat.com> |
---|---|---|---|
2 | 2 | ||
3 | This change is used in later commits so we can avoid the removal of the | 3 | In the failover case configuration, virtio_net_device_realize() uses an |
4 | netclient if it is delayed. | 4 | add_migration_state_change_notifier() to add a state notifier, but this |
5 | notifier is not removed by the unrealize function when the virtio-net | ||
6 | card is unplugged. | ||
5 | 7 | ||
6 | No functional change intended. | 8 | If the card is unplugged and a migration is started, the notifier is |
9 | called and as it is not valid anymore QEMU crashes. | ||
7 | 10 | ||
8 | Reviewed-by: Si-Wei Liu <si-wei.liu@oracle.com> | 11 | This patch fixes the problem by adding the |
9 | Acked-by: Jason Wang <jasowang@redhat.com> | 12 | remove_migration_state_change_notifier() in virtio_net_device_unrealize(). |
10 | Signed-off-by: Eugenio Pérez <eperezma@redhat.com> | 13 | |
14 | The problem can be reproduced with: | ||
15 | |||
16 | $ qemu-system-x86_64 -enable-kvm -m 1g -M q35 \ | ||
17 | -device pcie-root-port,slot=4,id=root1 \ | ||
18 | -device pcie-root-port,slot=5,id=root2 \ | ||
19 | -device virtio-net-pci,id=net1,mac=52:54:00:6f:55:cc,failover=on,bus=root1 \ | ||
20 | -monitor stdio disk.qcow2 | ||
21 | (qemu) device_del net1 | ||
22 | (qemu) migrate "exec:gzip -c > STATEFILE.gz" | ||
23 | |||
24 | Thread 1 "qemu-system-x86" received signal SIGSEGV, Segmentation fault. | ||
25 | 0x0000000000000000 in ?? () | ||
26 | (gdb) bt | ||
27 | #0 0x0000000000000000 in () | ||
28 | #1 0x0000555555d726d7 in notifier_list_notify (...) | ||
29 | at .../util/notify.c:39 | ||
30 | #2 0x0000555555842c1a in migrate_fd_connect (...) | ||
31 | at .../migration/migration.c:3975 | ||
32 | #3 0x0000555555950f7d in migration_channel_connect (...) | ||
33 | error@entry=0x0) at .../migration/channel.c:107 | ||
34 | #4 0x0000555555910922 in exec_start_outgoing_migration (...) | ||
35 | at .../migration/exec.c:42 | ||
36 | |||
37 | Reported-by: Igor Mammedov <imammedo@redhat.com> | ||
38 | Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> | ||
39 | Reviewed-by: Michael S. Tsirkin <mst@redhat.com> | ||
40 | Signed-off-by: Laurent Vivier <lvivier@redhat.com> | ||
11 | Signed-off-by: Jason Wang <jasowang@redhat.com> | 41 | Signed-off-by: Jason Wang <jasowang@redhat.com> |
12 | --- | 42 | --- |
13 | net/net.c | 13 ++++++++----- | 43 | hw/net/virtio-net.c | 1 + |
14 | 1 file changed, 8 insertions(+), 5 deletions(-) | 44 | 1 file changed, 1 insertion(+) |
15 | 45 | ||
16 | diff --git a/net/net.c b/net/net.c | 46 | diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c |
17 | index XXXXXXX..XXXXXXX 100644 | 47 | index XXXXXXX..XXXXXXX 100644 |
18 | --- a/net/net.c | 48 | --- a/hw/net/virtio-net.c |
19 | +++ b/net/net.c | 49 | +++ b/hw/net/virtio-net.c |
20 | @@ -XXX,XX +XXX,XX @@ NetClientState *qemu_get_peer(NetClientState *nc, int queue_index) | 50 | @@ -XXX,XX +XXX,XX @@ static void virtio_net_device_unrealize(DeviceState *dev) |
21 | return ncs->peer; | 51 | |
22 | } | 52 | if (n->failover) { |
23 | 53 | device_listener_unregister(&n->primary_listener); | |
24 | -static void qemu_cleanup_net_client(NetClientState *nc) | 54 | + remove_migration_state_change_notifier(&n->migration_state); |
25 | +static void qemu_cleanup_net_client(NetClientState *nc, | ||
26 | + bool remove_from_net_clients) | ||
27 | { | ||
28 | - QTAILQ_REMOVE(&net_clients, nc, next); | ||
29 | + if (remove_from_net_clients) { | ||
30 | + QTAILQ_REMOVE(&net_clients, nc, next); | ||
31 | + } | ||
32 | |||
33 | if (nc->info->cleanup) { | ||
34 | nc->info->cleanup(nc); | ||
35 | @@ -XXX,XX +XXX,XX @@ void qemu_del_net_client(NetClientState *nc) | ||
36 | } | ||
37 | |||
38 | for (i = 0; i < queues; i++) { | ||
39 | - qemu_cleanup_net_client(ncs[i]); | ||
40 | + qemu_cleanup_net_client(ncs[i], true); | ||
41 | } | ||
42 | |||
43 | return; | ||
44 | } | 55 | } |
45 | 56 | ||
46 | for (i = 0; i < queues; i++) { | 57 | max_queues = n->multiqueue ? n->max_queues : 1; |
47 | - qemu_cleanup_net_client(ncs[i]); | ||
48 | + qemu_cleanup_net_client(ncs[i], true); | ||
49 | qemu_free_net_client(ncs[i]); | ||
50 | } | ||
51 | } | ||
52 | @@ -XXX,XX +XXX,XX @@ void qemu_del_nic(NICState *nic) | ||
53 | for (i = queues - 1; i >= 0; i--) { | ||
54 | NetClientState *nc = qemu_get_subqueue(nic, i); | ||
55 | |||
56 | - qemu_cleanup_net_client(nc); | ||
57 | + qemu_cleanup_net_client(nc, true); | ||
58 | qemu_free_net_client(nc); | ||
59 | } | ||
60 | |||
61 | -- | 58 | -- |
62 | 2.42.0 | 59 | 2.7.4 |
63 | 60 | ||
64 | 61 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Akihiko Odaki <akihiko.odaki@daynix.com> | ||
2 | 1 | ||
3 | iov_from_buf(), iov_to_buf(), iov_memset(), and iov_copy() asserts | ||
4 | that the given offset fits in the iov while tolerating the specified | ||
5 | number of bytes to operate with to be greater than the size of iov. | ||
6 | This is inconsistent so remove the assertions. | ||
7 | |||
8 | Asserting the offset fits in the iov makes sense if it is expected that | ||
9 | there are other operations that process the content before the offset | ||
10 | and the content is processed in order. Under this expectation, the | ||
11 | offset should point to the end of bytes that are previously processed | ||
12 | and fit in the iov. However, this expectation depends on the details of | ||
13 | the caller, and did not hold true at least one case and required code to | ||
14 | check iov_size(), which is added with commit 83ddb3dbba2e | ||
15 | ("hw/net/net_tx_pkt: Fix overrun in update_sctp_checksum()"). | ||
16 | |||
17 | Adding such a check is inefficient and error-prone. These functions | ||
18 | already tolerate the specified number of bytes to operate with to be | ||
19 | greater than the size of iov to avoid such checks so remove the | ||
20 | assertions to tolerate invalid offset as well. They return the number of | ||
21 | bytes they operated with so their callers can still check the returned | ||
22 | value to ensure there are sufficient space at the given offset. | ||
23 | |||
24 | Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com> | ||
25 | Signed-off-by: Jason Wang <jasowang@redhat.com> | ||
26 | --- | ||
27 | include/qemu/iov.h | 5 +++-- | ||
28 | util/iov.c | 5 ----- | ||
29 | 2 files changed, 3 insertions(+), 7 deletions(-) | ||
30 | |||
31 | diff --git a/include/qemu/iov.h b/include/qemu/iov.h | ||
32 | index XXXXXXX..XXXXXXX 100644 | ||
33 | --- a/include/qemu/iov.h | ||
34 | +++ b/include/qemu/iov.h | ||
35 | @@ -XXX,XX +XXX,XX @@ size_t iov_size(const struct iovec *iov, const unsigned int iov_cnt); | ||
36 | * only part of data will be copied, up to the end of the iovec. | ||
37 | * Number of bytes actually copied will be returned, which is | ||
38 | * min(bytes, iov_size(iov)-offset) | ||
39 | - * `Offset' must point to the inside of iovec. | ||
40 | + * Returns 0 when `offset' points to the outside of iovec. | ||
41 | */ | ||
42 | size_t iov_from_buf_full(const struct iovec *iov, unsigned int iov_cnt, | ||
43 | size_t offset, const void *buf, size_t bytes); | ||
44 | @@ -XXX,XX +XXX,XX @@ iov_to_buf(const struct iovec *iov, const unsigned int iov_cnt, | ||
45 | /** | ||
46 | * Set data bytes pointed out by iovec `iov' of size `iov_cnt' elements, | ||
47 | * starting at byte offset `start', to value `fillc', repeating it | ||
48 | - * `bytes' number of times. `Offset' must point to the inside of iovec. | ||
49 | + * `bytes' number of times. | ||
50 | * If `bytes' is large enough, only last bytes portion of iovec, | ||
51 | * up to the end of it, will be filled with the specified value. | ||
52 | * Function return actual number of bytes processed, which is | ||
53 | * min(size, iov_size(iov) - offset). | ||
54 | + * Returns 0 when `offset' points to the outside of iovec. | ||
55 | */ | ||
56 | size_t iov_memset(const struct iovec *iov, const unsigned int iov_cnt, | ||
57 | size_t offset, int fillc, size_t bytes); | ||
58 | diff --git a/util/iov.c b/util/iov.c | ||
59 | index XXXXXXX..XXXXXXX 100644 | ||
60 | --- a/util/iov.c | ||
61 | +++ b/util/iov.c | ||
62 | @@ -XXX,XX +XXX,XX @@ size_t iov_from_buf_full(const struct iovec *iov, unsigned int iov_cnt, | ||
63 | offset -= iov[i].iov_len; | ||
64 | } | ||
65 | } | ||
66 | - assert(offset == 0); | ||
67 | return done; | ||
68 | } | ||
69 | |||
70 | @@ -XXX,XX +XXX,XX @@ size_t iov_to_buf_full(const struct iovec *iov, const unsigned int iov_cnt, | ||
71 | offset -= iov[i].iov_len; | ||
72 | } | ||
73 | } | ||
74 | - assert(offset == 0); | ||
75 | return done; | ||
76 | } | ||
77 | |||
78 | @@ -XXX,XX +XXX,XX @@ size_t iov_memset(const struct iovec *iov, const unsigned int iov_cnt, | ||
79 | offset -= iov[i].iov_len; | ||
80 | } | ||
81 | } | ||
82 | - assert(offset == 0); | ||
83 | return done; | ||
84 | } | ||
85 | |||
86 | @@ -XXX,XX +XXX,XX @@ unsigned iov_copy(struct iovec *dst_iov, unsigned int dst_iov_cnt, | ||
87 | bytes -= len; | ||
88 | offset = 0; | ||
89 | } | ||
90 | - assert(offset == 0); | ||
91 | return j; | ||
92 | } | ||
93 | |||
94 | @@ -XXX,XX +XXX,XX @@ size_t qemu_iovec_concat_iov(QEMUIOVector *dst, | ||
95 | soffset -= src_iov[i].iov_len; | ||
96 | } | ||
97 | } | ||
98 | - assert(soffset == 0); /* offset beyond end of src */ | ||
99 | |||
100 | return done; | ||
101 | } | ||
102 | -- | ||
103 | 2.42.0 | diff view generated by jsdifflib |
1 | From: Akihiko Odaki <akihiko.odaki@daynix.com> | 1 | From: Brad Smith <brad@comstyle.com> |
---|---|---|---|
2 | 2 | ||
3 | This reverts commit 83ddb3dbba2ee0f1767442ae6ee665058aeb1093. | 3 | OpenBSD added support for tap(4) 10 releases ago. |
4 | 4 | ||
5 | The added check is no longer necessary due to a change of | 5 | Remove the special casing for older releases. |
6 | iov_from_buf(). | ||
7 | 6 | ||
8 | Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> | 7 | Signed-off-by: Brad Smith <brad@comstyle.com> |
9 | Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com> | ||
10 | Signed-off-by: Jason Wang <jasowang@redhat.com> | 8 | Signed-off-by: Jason Wang <jasowang@redhat.com> |
11 | --- | 9 | --- |
12 | hw/net/net_tx_pkt.c | 4 ---- | 10 | net/tap-bsd.c | 8 -------- |
13 | 1 file changed, 4 deletions(-) | 11 | 1 file changed, 8 deletions(-) |
14 | 12 | ||
15 | diff --git a/hw/net/net_tx_pkt.c b/hw/net/net_tx_pkt.c | 13 | diff --git a/net/tap-bsd.c b/net/tap-bsd.c |
16 | index XXXXXXX..XXXXXXX 100644 | 14 | index XXXXXXX..XXXXXXX 100644 |
17 | --- a/hw/net/net_tx_pkt.c | 15 | --- a/net/tap-bsd.c |
18 | +++ b/hw/net/net_tx_pkt.c | 16 | +++ b/net/tap-bsd.c |
19 | @@ -XXX,XX +XXX,XX @@ bool net_tx_pkt_update_sctp_checksum(struct NetTxPkt *pkt) | 17 | @@ -XXX,XX +XXX,XX @@ |
20 | uint32_t csum = 0; | 18 | #include <net/if_tap.h> |
21 | struct iovec *pl_start_frag = pkt->vec + NET_TX_PKT_PL_START_FRAG; | 19 | #endif |
22 | 20 | ||
23 | - if (iov_size(pl_start_frag, pkt->payload_frags) < 8 + sizeof(csum)) { | 21 | -#if defined(__OpenBSD__) |
24 | - return false; | 22 | -#include <sys/param.h> |
25 | - } | 23 | -#endif |
26 | - | 24 | - |
27 | if (iov_from_buf(pl_start_frag, pkt->payload_frags, 8, &csum, sizeof(csum)) < sizeof(csum)) { | 25 | #ifndef __FreeBSD__ |
28 | return false; | 26 | int tap_open(char *ifname, int ifname_size, int *vnet_hdr, |
29 | } | 27 | int vnet_hdr_required, int mq_required, Error **errp) |
28 | @@ -XXX,XX +XXX,XX @@ int tap_open(char *ifname, int ifname_size, int *vnet_hdr, | ||
29 | if (*ifname) { | ||
30 | snprintf(dname, sizeof dname, "/dev/%s", ifname); | ||
31 | } else { | ||
32 | -#if defined(__OpenBSD__) && OpenBSD < 201605 | ||
33 | - snprintf(dname, sizeof dname, "/dev/tun%d", i); | ||
34 | -#else | ||
35 | snprintf(dname, sizeof dname, "/dev/tap%d", i); | ||
36 | -#endif | ||
37 | } | ||
38 | TFR(fd = open(dname, O_RDWR)); | ||
39 | if (fd >= 0) { | ||
30 | -- | 40 | -- |
31 | 2.42.0 | 41 | 2.7.4 |
32 | 42 | ||
33 | 43 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Akihiko Odaki <akihiko.odaki@daynix.com> | ||
2 | 1 | ||
3 | ipvtap and macvtap create a file for each interface unlike tuntap, which | ||
4 | creates one file shared by all interfaces. Try to open a file dedicated | ||
5 | to the interface first for ipvtap and macvtap. | ||
6 | |||
7 | Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com> | ||
8 | Signed-off-by: Jason Wang <jasowang@redhat.com> | ||
9 | --- | ||
10 | net/tap-linux.c | 17 ++++++++++++++--- | ||
11 | 1 file changed, 14 insertions(+), 3 deletions(-) | ||
12 | |||
13 | diff --git a/net/tap-linux.c b/net/tap-linux.c | ||
14 | index XXXXXXX..XXXXXXX 100644 | ||
15 | --- a/net/tap-linux.c | ||
16 | +++ b/net/tap-linux.c | ||
17 | @@ -XXX,XX +XXX,XX @@ int tap_open(char *ifname, int ifname_size, int *vnet_hdr, | ||
18 | int len = sizeof(struct virtio_net_hdr); | ||
19 | unsigned int features; | ||
20 | |||
21 | - fd = RETRY_ON_EINTR(open(PATH_NET_TUN, O_RDWR)); | ||
22 | + | ||
23 | + ret = if_nametoindex(ifname); | ||
24 | + if (ret) { | ||
25 | + g_autofree char *file = g_strdup_printf("/dev/tap%d", ret); | ||
26 | + fd = open(file, O_RDWR); | ||
27 | + } else { | ||
28 | + fd = -1; | ||
29 | + } | ||
30 | + | ||
31 | if (fd < 0) { | ||
32 | - error_setg_errno(errp, errno, "could not open %s", PATH_NET_TUN); | ||
33 | - return -1; | ||
34 | + fd = RETRY_ON_EINTR(open(PATH_NET_TUN, O_RDWR)); | ||
35 | + if (fd < 0) { | ||
36 | + error_setg_errno(errp, errno, "could not open %s", PATH_NET_TUN); | ||
37 | + return -1; | ||
38 | + } | ||
39 | } | ||
40 | memset(&ifr, 0, sizeof(ifr)); | ||
41 | ifr.ifr_flags = IFF_TAP | IFF_NO_PI; | ||
42 | -- | ||
43 | 2.42.0 | diff view generated by jsdifflib |