aboutgitcodebugslistschat
path: root/tcp.c
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2023-08-22 15:29:57 +1000
committerStefano Brivio <sbrivio@redhat.com>2023-08-22 12:15:33 +0200
commit955dd3251c9e9b0a1469015748e4600f68e8de0a (patch)
treecf8a69238316c2e8a526f77b8faad6873c7c7cfe /tcp.c
parent5bf200ae8a1ab298cb393bf1956599d1178567cb (diff)
downloadpasst-955dd3251c9e9b0a1469015748e4600f68e8de0a.tar
passt-955dd3251c9e9b0a1469015748e4600f68e8de0a.tar.gz
passt-955dd3251c9e9b0a1469015748e4600f68e8de0a.tar.bz2
passt-955dd3251c9e9b0a1469015748e4600f68e8de0a.tar.lz
passt-955dd3251c9e9b0a1469015748e4600f68e8de0a.tar.xz
passt-955dd3251c9e9b0a1469015748e4600f68e8de0a.tar.zst
passt-955dd3251c9e9b0a1469015748e4600f68e8de0a.zip
tcp, udp: Don't pre-fill IPv4 destination address in headers
Because packets sent on the tap interface will always be going to the guest/namespace, we more-or-less know what address they'll be going to. So we pre-fill this destination address in our header buffers for IPv4. We can't do the same for IPv6 because we could need either the global or link-local address for the guest. In future we're going to want more flexibility for the destination address, so this pre-filling will get in the way. Change the flow so we always fill in the IPv4 destination address for each packet, rather than prefilling it from proto_update_l2_buf(). In fact for TCP we already redundantly filled the destination for each packet anyway. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'tcp.c')
-rw-r--r--tcp.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/tcp.c b/tcp.c
index c52ea2b..87f443a 100644
--- a/tcp.c
+++ b/tcp.c
@@ -997,10 +997,8 @@ static void tcp_update_check_tcp6(struct tcp6_l2_buf_t *buf)
* tcp_update_l2_buf() - Update L2 buffers with Ethernet and IPv4 addresses
* @eth_d: Ethernet destination address, NULL if unchanged
* @eth_s: Ethernet source address, NULL if unchanged
- * @ip_da: Pointer to IPv4 destination address, NULL if unchanged
*/
-void tcp_update_l2_buf(const unsigned char *eth_d, const unsigned char *eth_s,
- const struct in_addr *ip_da)
+void tcp_update_l2_buf(const unsigned char *eth_d, const unsigned char *eth_s)
{
int i;
@@ -1014,10 +1012,6 @@ void tcp_update_l2_buf(const unsigned char *eth_d, const unsigned char *eth_s,
tap_update_mac(&b6->taph, eth_d, eth_s);
tap_update_mac(&b4f->taph, eth_d, eth_s);
tap_update_mac(&b6f->taph, eth_d, eth_s);
-
- if (ip_da) {
- b4f->iph.daddr = b4->iph.daddr = ip_da->s_addr;
- }
}
}