aboutgitcodebugslistschat
path: root/udp.c
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2022-11-24 19:54:19 +1100
committerStefano Brivio <sbrivio@redhat.com>2022-12-06 07:42:16 +0100
commitd5338070275c26c0d60120b8b765e8fb4c19264e (patch)
tree7a1610e8df22e7bf12d9893084b6bbd69bb154f5 /udp.c
parent6af7ee74cf8baca069ae948e70e62eae24c1f93b (diff)
downloadpasst-d5338070275c26c0d60120b8b765e8fb4c19264e.tar
passt-d5338070275c26c0d60120b8b765e8fb4c19264e.tar.gz
passt-d5338070275c26c0d60120b8b765e8fb4c19264e.tar.bz2
passt-d5338070275c26c0d60120b8b765e8fb4c19264e.tar.lz
passt-d5338070275c26c0d60120b8b765e8fb4c19264e.tar.xz
passt-d5338070275c26c0d60120b8b765e8fb4c19264e.tar.zst
passt-d5338070275c26c0d60120b8b765e8fb4c19264e.zip
udp: Better factor IPv4 and IPv6 paths in udp_sock_handler()
Apart from which mh array they're operating on the recvmmsg() calls in udp_sock_handler() are identical between the IPv4 and IPv6 paths, as are some of the control structure updates. By using some local variables to refer to the IP version specific control arrays, make some more logic common between the IPv4 and IPv6 paths. As well as slightly reducing the code size, this makes it less likely that we'll accidentally use the IPv4 arrays in the IPv6 path or vice versa as we did in a recently fixed bug. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'udp.c')
-rw-r--r--udp.c40
1 files changed, 18 insertions, 22 deletions
diff --git a/udp.c b/udp.c
index 2810462..4e6afff 100644
--- a/udp.c
+++ b/udp.c
@@ -837,9 +837,10 @@ void udp_sock_handler(const struct ctx *c, union epoll_ref ref, uint32_t events,
const struct timespec *now)
{
ssize_t n, msg_len = 0, missing = 0;
+ struct mmsghdr *tap_mmh, *sock_mmh;
int msg_bufs = 0, msg_i = 0, ret;
- struct mmsghdr *tap_mmh;
struct msghdr *last_mh;
+ struct iovec *tap_iov;
unsigned int i;
if (events == EPOLLERR)
@@ -851,34 +852,29 @@ void udp_sock_handler(const struct ctx *c, union epoll_ref ref, uint32_t events,
}
if (ref.r.p.udp.udp.v6) {
- n = recvmmsg(ref.r.s, udp6_l2_mh_sock, UDP_TAP_FRAMES, 0, NULL);
- if (n <= 0)
- return;
-
- udp6_l2_mh_tap[0].msg_hdr.msg_iov = &udp6_l2_iov_tap[0];
-
- for (i = 0; i < (unsigned)n; i++) {
- udp_sock_fill_data_v6(c, i, ref,
- &msg_i, &msg_bufs, &msg_len, now);
- }
-
- udp6_l2_mh_tap[msg_i].msg_hdr.msg_iovlen = msg_bufs;
tap_mmh = udp6_l2_mh_tap;
+ sock_mmh = udp6_l2_mh_sock;
+ tap_iov = udp6_l2_iov_tap;
} else {
- n = recvmmsg(ref.r.s, udp4_l2_mh_sock, UDP_TAP_FRAMES, 0, NULL);
- if (n <= 0)
- return;
+ tap_mmh = udp4_l2_mh_tap;
+ sock_mmh = udp4_l2_mh_sock;
+ tap_iov = udp4_l2_iov_tap;
+ }
- udp4_l2_mh_tap[0].msg_hdr.msg_iov = &udp4_l2_iov_tap[0];
+ n = recvmmsg(ref.r.s, sock_mmh, UDP_TAP_FRAMES, 0, NULL);
+ if (n <= 0)
+ return;
- for (i = 0; i < (unsigned)n; i++) {
+ tap_mmh[0].msg_hdr.msg_iov = &tap_iov[0];
+ for (i = 0; i < (unsigned)n; i++) {
+ if (ref.r.p.udp.udp.v6)
+ udp_sock_fill_data_v6(c, i, ref,
+ &msg_i, &msg_bufs, &msg_len, now);
+ else
udp_sock_fill_data_v4(c, i, ref,
&msg_i, &msg_bufs, &msg_len, now);
- }
-
- udp4_l2_mh_tap[msg_i].msg_hdr.msg_iovlen = msg_bufs;
- tap_mmh = udp4_l2_mh_tap;
}
+ tap_mmh[msg_i].msg_hdr.msg_iovlen = msg_bufs;
if (c->mode == MODE_PASTA)
return;