From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from gandalf.ozlabs.org (gandalf.ozlabs.org [150.107.74.76]) by passt.top (Postfix) with ESMTPS id C61055A026D for ; Thu, 21 Dec 2023 07:53:32 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gibson.dropbear.id.au; s=202312; t=1703141610; bh=Rpqrch8LZDlo6R54xyE3SQI/Zs7KzYaMM2n+wwcX5cY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=BgeTf3uMeN66D1d1xE7+/Fwa33f1ZUb31BKGjyaA6qgdb6CNCpGHyXrOWGvwH3HLQ 8GpifBBayLWsnQfce/3zWK656onUb1h38RlJHqsz2cORtBKcYrhC7+oQaDbCuMGSpP nCOLIMyXnPdnzN5Qp6SjTcCv4Tp/QqwSOL3HZ97MpJJ5i2+bcQCDDQ6Fpmu46pJFEV y1qnjx8jDAu0bHMSPbru9XY8kZdLT0AFyMXz60iV4JHaTsoGbwMBBaeJNv0gyGpjsC 125pO+T7Jj+RfI7XeSbIqCwQLdVlYKT/RSTd3WDI/ZGCZRvT1VkCw2k/bMFUjaCagj ZqtAzarizreTQ== Received: by gandalf.ozlabs.org (Postfix, from userid 1007) id 4Swh3G4DNGz4xQb; Thu, 21 Dec 2023 17:53:30 +1100 (AEDT) From: David Gibson To: Stefano Brivio , passt-dev@passt.top Subject: [PATCH v2 02/12] icmp: Don't set "port" on destination sockaddr for ping sockets Date: Thu, 21 Dec 2023 17:53:17 +1100 Message-ID: <20231221065327.1307827-3-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20231221065327.1307827-1-david@gibson.dropbear.id.au> References: <20231221065327.1307827-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: HX7RTBJWQ4HDQWXAM343PIXGUUJMFNNK X-Message-ID-Hash: HX7RTBJWQ4HDQWXAM343PIXGUUJMFNNK X-MailFrom: dgibson@gandalf.ozlabs.org X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: David Gibson X-Mailman-Version: 3.3.8 Precedence: list List-Id: Development discussion and patches for passt Archived-At: Archived-At: List-Archive: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: We set the port to the ICMP id on the sendto() address when using ICMP ping sockets. However, this has no effect: the ICMP id the kernel uses is determined only by the "port" on the socket's *bound* address (which is constructed inside sock_l4(), using the id we also pass to it). Signed-off-by: David Gibson --- icmp.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/icmp.c b/icmp.c index 325dfb0..d3e5bc6 100644 --- a/icmp.c +++ b/icmp.c @@ -182,8 +182,6 @@ int icmp_tap_handler(const struct ctx *c, uint8_t pif, int af, if (ih->type != ICMP_ECHO && ih->type != ICMP_ECHOREPLY) return 1; - sa.sin_port = ih->un.echo.id; - iref.id = id = ntohs(ih->un.echo.id); if ((s = icmp_id_map[V4][id].sock) <= 0) { @@ -229,8 +227,6 @@ int icmp_tap_handler(const struct ctx *c, uint8_t pif, int af, if (ih->icmp6_type != 128 && ih->icmp6_type != 129) return 1; - sa.sin6_port = ih->icmp6_identifier; - iref.id = id = ntohs(ih->icmp6_identifier); if ((s = icmp_id_map[V6][id].sock) <= 0) { s = sock_l4(c, AF_INET6, IPPROTO_ICMPV6, -- 2.43.0