From: David Gibson <david@gibson.dropbear.id.au>
To: Stefano Brivio <sbrivio@redhat.com>
Cc: passt-dev@passt.top
Subject: Re: [PATCH 27/32] tcp: NAT IPv4-mapped IPv6 addresses like IPv4 addresses
Date: Thu, 17 Nov 2022 13:00:50 +1100 [thread overview]
Message-ID: <Y3WV0jBEf4inOL5d@yekko> (raw)
In-Reply-To: <20221117011520.4e42fe79@elisabeth>
[-- Attachment #1: Type: text/plain, Size: 6850 bytes --]
On Thu, Nov 17, 2022 at 01:15:20AM +0100, Stefano Brivio wrote:
> On Wed, 16 Nov 2022 15:42:07 +1100
> David Gibson <david@gibson.dropbear.id.au> wrote:
>
> > passt usually doesn't NAT, but it does do so for the remapping of the
> > gateway address to refer to the host. Currently we perform this NAT with
> > slightly different rules on both IPv4 addresses and IPv6 addresses, but not
> > on IPv4-mapped IPv6 addresses. This means we won't correctly handle the
> > case of an IPv4 connection over an IPv6 socket, which is possible on Linux
> > (and probably other platforms).
>
> By the way, I really think it's just Linux, I can't think of other
> examples.
Hmm... so descriptions I've seen of the IPv4-mapped IPv6 addresses
seem to imply this is the behaviour in a number of systems. e.g.
https://en.wikipedia.org/wiki/IPv6#IPv4-mapped_IPv6_addresses
> > Refactor tcp_conn_from_sock() to perform the NAT after converting either
> > address family into an inany_addr, so IPv4 and and IPv4-mapped addresses
> > have the same representation.
> >
> > With two new helpers this lets us remove the IPv4 and IPv6 specific paths
> > from tcp_conn_from_sock().
> >
> > Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
> > ---
> > inany.h | 30 ++++++++++++++++++++++++++--
> > tcp.c | 62 ++++++++++++++++++++++++---------------------------------
> > 2 files changed, 54 insertions(+), 38 deletions(-)
> >
> > diff --git a/inany.h b/inany.h
> > index 4e53da9..a677aa7 100644
> > --- a/inany.h
> > +++ b/inany.h
> > @@ -30,11 +30,11 @@ union inany_addr {
> > *
> > * Return: IPv4 address if @addr is IPv4, NULL otherwise
> > */
> > -static inline const struct in_addr *inany_v4(const union inany_addr *addr)
> > +static inline struct in_addr *inany_v4(const union inany_addr *addr)
>
> There must be a reason, but I can't understand why this change is
> needed here.
Because in tcp_snat_inbound() we want to modify, not just examine the
IPv4 address within the IPv6 address. Ideally the return would be
const if and only if the input is, but C can't express that. This
appears to be the conventional half-arsed solution (see, e.g. memchr()
or strstr()).
> > {
> > if (!IN6_IS_ADDR_V4MAPPED(&addr->a6))
> > return NULL;
> > - return &addr->_v4mapped.a4;
> > + return (struct in_addr *)&addr->_v4mapped.a4;
> > }
> >
> > /** inany_equals - Compare two IPv[46] addresses
> > @@ -66,3 +66,29 @@ static inline void inany_from_af(union inany_addr *aa, int af, const void *addr)
> > assert(0);
> > }
> > }
> > +
> > +/** inany_from_sockaddr - Extract IPv[46] address and port number from sockaddr
> > + * @a: Pointer to store IPv[46] address
>
> This is aa below, I'm not sure why.
Fixed.
> > + * @port: Pointer to store port number, host order
> > + * @addr: struct sockaddr_in (IPv4) or struct sockaddr_in6 (IPv6)
>
> This became sa_ (needless to say, addr would make more sense).
Good call, changed.
> > + */
> > +static inline void inany_from_sockaddr(union inany_addr *aa, in_port_t *port,
> > + const void *sa_)
> > +{
> > + const struct sockaddr *sa = (const struct sockaddr *)sa_;
> > +
> > + if (sa->sa_family == AF_INET6) {
> > + struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *)sa;
> > +
> > + inany_from_af(aa, AF_INET6, &sa6->sin6_addr);
> > + *port = ntohs(sa6->sin6_port);
> > + } else if (sa->sa_family == AF_INET) {
> > + struct sockaddr_in *sa4 = (struct sockaddr_in *)sa;
> > +
> > + inany_from_af(aa, AF_INET, &sa4->sin_addr);
> > + *port = ntohs(sa4->sin_port);
> > + } else {
> > + /* Not valid to call with other address families */
> > + assert(0);
> > + }
> > +}
> > diff --git a/tcp.c b/tcp.c
> > index b05ed6c..fca5df4 100644
> > --- a/tcp.c
> > +++ b/tcp.c
> > @@ -2724,6 +2724,29 @@ static void tcp_connect_finish(struct ctx *c, struct tcp_tap_conn *conn)
> > conn_flag(c, conn, ACK_FROM_TAP_DUE);
> > }
> >
> > +static void tcp_snat_inbound(const struct ctx *c, union inany_addr *addr)
>
> What this does is kind of obvious, still a comment would be nice.
Good point, added. Especially since I'm hoping to share this with UDP
at some later point.
> > +{
> > + struct in_addr *addr4 = inany_v4(addr);
> > +
> > + if (addr4) {
> > + if (IN4_IS_ADDR_LOOPBACK(addr4) ||
> > + IN4_IS_ADDR_UNSPECIFIED(addr4) ||
> > + IN4_ARE_ADDR_EQUAL(addr4, &c->ip4.addr_seen))
> > + *addr4 = c->ip4.gw;
> > + } else {
> > + struct in6_addr *addr6 = &addr->a6;
> > +
> > + if (IN6_IS_ADDR_LOOPBACK(addr6) ||
> > + IN6_ARE_ADDR_EQUAL(addr6, &c->ip6.addr_seen) ||
> > + IN6_ARE_ADDR_EQUAL(addr6, &c->ip6.addr)) {
> > + if (IN6_IS_ADDR_LINKLOCAL(&c->ip6.gw))
> > + *addr6 = c->ip6.gw;
> > + else
> > + *addr6 = c->ip6.addr_ll;
> > + }
> > + }
> > +}
> > +
> > /**
> > * tcp_tap_conn_from_sock() - Initialize state for non-spliced connection
> > * @c: Execution context
> > @@ -2744,43 +2767,10 @@ static void tcp_tap_conn_from_sock(struct ctx *c, union epoll_ref ref,
> > conn->ws_to_tap = conn->ws_from_tap = 0;
> > conn_event(c, conn, SOCK_ACCEPTED);
> >
> > - if (sa->sa_family == AF_INET6) {
> > - struct sockaddr_in6 sa6;
> > -
> > - memcpy(&sa6, sa, sizeof(sa6));
> > -
> > - if (IN6_IS_ADDR_LOOPBACK(&sa6.sin6_addr) ||
> > - IN6_ARE_ADDR_EQUAL(&sa6.sin6_addr, &c->ip6.addr_seen) ||
> > - IN6_ARE_ADDR_EQUAL(&sa6.sin6_addr, &c->ip6.addr)) {
> > - struct in6_addr *src;
> > + inany_from_sockaddr(&conn->addr, &conn->sock_port, sa);
> > + conn->tap_port = ref.r.p.tcp.tcp.index;
> >
> > - if (IN6_IS_ADDR_LINKLOCAL(&c->ip6.gw))
> > - src = &c->ip6.gw;
> > - else
> > - src = &c->ip6.addr_ll;
> > -
> > - memcpy(&sa6.sin6_addr, src, sizeof(*src));
> > - }
> > -
> > - inany_from_af(&conn->addr, AF_INET6, &sa6.sin6_addr);
> > -
> > - conn->sock_port = ntohs(sa6.sin6_port);
> > - conn->tap_port = ref.r.p.tcp.tcp.index;
> > - } else {
> > - struct sockaddr_in sa4;
> > -
> > - memcpy(&sa4, sa, sizeof(sa4));
> > -
> > - if (IN4_IS_ADDR_LOOPBACK(&sa4.sin_addr) ||
> > - IN4_IS_ADDR_UNSPECIFIED(&sa4.sin_addr) ||
> > - IN4_ARE_ADDR_EQUAL(&sa4.sin_addr, &c->ip4.addr_seen))
> > - sa4.sin_addr = c->ip4.gw;
> > -
> > - inany_from_af(&conn->addr, AF_INET, &sa4.sin_addr);
> > -
> > - conn->sock_port = ntohs(sa4.sin_port);
> > - conn->tap_port = ref.r.p.tcp.tcp.index;
> > - }
> > + tcp_snat_inbound(c, &conn->addr);
> >
> > tcp_seq_init(c, conn, now);
> > tcp_hash_insert(c, conn);
>
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2022-11-17 2:08 UTC|newest]
Thread overview: 57+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-16 4:41 [PATCH 00/32] Use dual stack sockets to listen for inbound TCP connections David Gibson
2022-11-16 4:41 ` [PATCH 01/32] clang-tidy: Suppress warning about assignments in if statements David Gibson
2022-11-16 23:10 ` Stefano Brivio
2022-11-17 1:20 ` David Gibson
2022-11-16 4:41 ` [PATCH 02/32] style: Minor corrections to function comments David Gibson
2022-11-16 23:11 ` Stefano Brivio
2022-11-17 1:21 ` David Gibson
2022-11-16 4:41 ` [PATCH 03/32] tcp_splice: #include tcp_splice.h in tcp_splice.c David Gibson
2022-11-16 4:41 ` [PATCH 04/32] tcp: Remove unused TCP_MAX_SOCKS constant David Gibson
2022-11-16 4:41 ` [PATCH 05/32] tcp: Better helpers for converting between connection pointer and index David Gibson
2022-11-16 23:11 ` Stefano Brivio
2022-11-17 1:24 ` David Gibson
2022-11-16 4:41 ` [PATCH 06/32] tcp_splice: Helpers for converting from index to/from tcp_splice_conn David Gibson
2022-11-16 4:41 ` [PATCH 07/32] tcp: Move connection state structures into a shared header David Gibson
2022-11-16 4:41 ` [PATCH 08/32] tcp: Add connection union type David Gibson
2022-11-16 4:41 ` [PATCH 09/32] tcp: Improved helpers to update connections after moving David Gibson
2022-11-16 4:41 ` [PATCH 10/32] tcp: Unify spliced and non-spliced connection tables David Gibson
2022-11-16 4:41 ` [PATCH 11/32] tcp: Unify tcp_defer_handler and tcp_splice_defer_handler() David Gibson
2022-11-16 4:41 ` [PATCH 12/32] tcp: Partially unify tcp_timer() and tcp_splice_timer() David Gibson
2022-11-16 4:41 ` [PATCH 13/32] tcp: Unify the IN_EPOLL flag David Gibson
2022-11-16 4:41 ` [PATCH 14/32] tcp: Separate helpers to create ns listening sockets David Gibson
2022-11-16 23:51 ` Stefano Brivio
2022-11-17 1:32 ` David Gibson
2022-11-16 4:41 ` [PATCH 15/32] tcp: Unify part of spliced and non-spliced conn_from_sock path David Gibson
2022-11-16 23:53 ` Stefano Brivio
2022-11-17 1:37 ` David Gibson
2022-11-17 7:30 ` Stefano Brivio
2022-11-17 8:58 ` David Gibson
2022-11-16 4:41 ` [PATCH 16/32] tcp: Use the same sockets to listen for spliced and non-spliced connections David Gibson
2022-11-16 23:54 ` Stefano Brivio
2022-11-17 1:43 ` David Gibson
2022-11-16 4:41 ` [PATCH 17/32] tcp: Remove splice from tcp_epoll_ref David Gibson
2022-11-16 4:41 ` [PATCH 18/32] tcp: Don't store hash bucket in connection structures David Gibson
2022-11-16 4:41 ` [PATCH 19/32] inany: Helper functions for handling addresses which could be IPv4 or IPv6 David Gibson
2022-11-16 23:54 ` Stefano Brivio
2022-11-17 1:48 ` David Gibson
2022-11-16 4:42 ` [PATCH 20/32] tcp: Hash IPv4 and IPv4-mapped-IPv6 addresses the same David Gibson
2022-11-16 4:42 ` [PATCH 21/32] tcp: Take tcp_hash_insert() address from struct tcp_conn David Gibson
2022-11-16 4:42 ` [PATCH 22/32] tcp: Simplify tcp_hash_match() to take an inany_addr David Gibson
2022-11-16 4:42 ` [PATCH 23/32] tcp: Unify initial sequence number calculation for IPv4 and IPv6 David Gibson
2022-11-16 4:42 ` [PATCH 24/32] tcp: Have tcp_seq_init() take its parameters from struct tcp_conn David Gibson
2022-11-16 4:42 ` [PATCH 25/32] tcp: Fix small errors in tcp_seq_init() time handling David Gibson
2022-11-16 4:42 ` [PATCH 26/32] tcp: Remove v6 flag from tcp_epoll_ref David Gibson
2022-11-17 0:15 ` Stefano Brivio
2022-11-17 1:50 ` David Gibson
2022-11-16 4:42 ` [PATCH 27/32] tcp: NAT IPv4-mapped IPv6 addresses like IPv4 addresses David Gibson
2022-11-17 0:15 ` Stefano Brivio
2022-11-17 2:00 ` David Gibson [this message]
2022-11-16 4:42 ` [PATCH 28/32] tcp_splice: Allow splicing of connections from IPv4-mapped loopback David Gibson
2022-11-17 0:15 ` Stefano Brivio
2022-11-17 2:05 ` David Gibson
2022-11-16 4:42 ` [PATCH 29/32] tcp: Consolidate tcp_sock_init[46] David Gibson
2022-11-16 4:42 ` [PATCH 30/32] util: Allow sock_l4() to open dual stack sockets David Gibson
2022-11-16 4:42 ` [PATCH 31/32] util: Always return -1 on error in sock_l4() David Gibson
2022-11-16 4:42 ` [PATCH 32/32] tcp: Use dual stack sockets for port forwarding when possible David Gibson
2022-11-17 0:15 ` Stefano Brivio
2022-11-17 2:08 ` David Gibson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Y3WV0jBEf4inOL5d@yekko \
--to=david@gibson.dropbear.id.au \
--cc=passt-dev@passt.top \
--cc=sbrivio@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).