public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
* [PATCH v2] conf: Fix typo and logic in conf_ports() check for port binding
@ 2023-02-16 19:03 Stefano Brivio
  0 siblings, 0 replies; only message in thread
From: Stefano Brivio @ 2023-02-16 19:03 UTC (permalink / raw)
  To: passt-dev

Ouch, I accidentally pushed the previous change without running the
tests:

- we need to check, in conf_ports(), that udp_sock_init()
  managed to bind at least a port, not the opposite

- for -T and -U, we have no way to know if we'll manage to bind
  the port later, so never report an error for those

Fixes: 3d0de2c1d727 ("conf, tcp, udp: Exit if we fail to bind sockets for all given ports")
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
---
v2: Add the special case for -T and -U

 conf.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/conf.c b/conf.c
index 5426c9b..4dc0660 100644
--- a/conf.c
+++ b/conf.c
@@ -306,6 +306,9 @@ static void conf_ports(const struct ctx *c, char optname, const char *optarg,
 			} else if (optname == 'u') {
 				if (!udp_sock_init(c, 0, af, addr, ifname, i))
 					bound_one = true;
+			} else {
+				/* No way to check in advance for -T and -U */
+				bound_one = true;
 			}
 		}
 
@@ -356,8 +359,11 @@ static void conf_ports(const struct ctx *c, char optname, const char *optarg,
 				if (!tcp_sock_init(c, af, addr, ifname, i))
 					bound_one = true;
 			} else if (optname == 'u') {
-				if (udp_sock_init(c, 0, af, addr, ifname, i))
+				if (!udp_sock_init(c, 0, af, addr, ifname, i))
 					bound_one = true;
+			} else {
+				/* No way to check in advance for -T and -U */
+				bound_one = true;
 			}
 		}
 	} while ((p = next_chunk(p, ',')));
-- 
@@ -306,6 +306,9 @@ static void conf_ports(const struct ctx *c, char optname, const char *optarg,
 			} else if (optname == 'u') {
 				if (!udp_sock_init(c, 0, af, addr, ifname, i))
 					bound_one = true;
+			} else {
+				/* No way to check in advance for -T and -U */
+				bound_one = true;
 			}
 		}
 
@@ -356,8 +359,11 @@ static void conf_ports(const struct ctx *c, char optname, const char *optarg,
 				if (!tcp_sock_init(c, af, addr, ifname, i))
 					bound_one = true;
 			} else if (optname == 'u') {
-				if (udp_sock_init(c, 0, af, addr, ifname, i))
+				if (!udp_sock_init(c, 0, af, addr, ifname, i))
 					bound_one = true;
+			} else {
+				/* No way to check in advance for -T and -U */
+				bound_one = true;
 			}
 		}
 	} while ((p = next_chunk(p, ',')));
-- 
2.35.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2023-02-16 19:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-16 19:03 [PATCH v2] conf: Fix typo and logic in conf_ports() check for port binding Stefano Brivio

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).