2023-11-03 02:22:56 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
/* PASST - Plug A Simple Socket Transport
|
|
|
|
* for qemu/UNIX domain socket mode
|
|
|
|
*
|
|
|
|
* PASTA - Pack A Subtle Tap Abstraction
|
|
|
|
* for network namespace/tap device mode
|
|
|
|
*
|
2024-02-28 11:25:20 +00:00
|
|
|
* fwd.c - Port forwarding helpers
|
2023-11-03 02:22:56 +00:00
|
|
|
*
|
|
|
|
* Copyright Red Hat
|
|
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
* Author: David Gibson <david@gibson.dropbear.id.au>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sched.h>
|
2023-11-29 13:19:06 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
2023-11-03 02:22:56 +00:00
|
|
|
|
|
|
|
#include "util.h"
|
2024-03-06 05:58:33 +00:00
|
|
|
#include "ip.h"
|
2024-02-28 11:25:20 +00:00
|
|
|
#include "fwd.h"
|
2023-11-03 02:22:56 +00:00
|
|
|
#include "passt.h"
|
|
|
|
#include "lineread.h"
|
2024-07-18 05:26:43 +00:00
|
|
|
#include "flow_table.h"
|
2023-11-03 02:22:56 +00:00
|
|
|
|
2024-08-29 09:58:45 +00:00
|
|
|
/* Empheral port range: values from RFC 6335 */
|
fwd, conf: Probe host's ephemeral ports
When we forward "all" ports (-t all or -u all), or use an exclude-only
range, we don't actually forward *all* ports - that wouln't leave local
ports to use for outgoing connections. Rather we forward all non-ephemeral
ports - those that won't be used for outgoing connections or datagrams.
Currently we assume the range of ephemeral ports is that recommended by
RFC 6335, 49152-65535. However, that's not the range used by default on
Linux, 32768-60999 but configurable with the net.ipv4.ip_local_port_range
sysctl.
We can't really know what range the guest will consider ephemeral, but if
it differs too much from the host it's likely to cause problems we can't
avoid anyway. So, using the host's ephemeral range is a better guess than
using the RFC 6335 range.
Therefore, add logic to probe the host's ephemeral range, falling back to
the RFC 6335 range if that fails. This has the bonus advantage of
reducing the number of ports bound by -t all -u all on most Linux machines
thereby reducing kernel memory usage. Specifically this reduces kernel
memory usage with -t all -u all from ~380MiB to ~289MiB.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Laurent Vivier <lvivier@redhat.com>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
2024-08-29 09:58:47 +00:00
|
|
|
static in_port_t fwd_ephemeral_min = (1 << 15) + (1 << 14);
|
|
|
|
static in_port_t fwd_ephemeral_max = NUM_PORTS - 1;
|
|
|
|
|
|
|
|
#define PORT_RANGE_SYSCTL "/proc/sys/net/ipv4/ip_local_port_range"
|
|
|
|
|
|
|
|
/** fwd_probe_ephemeral() - Determine what ports this host considers ephemeral
|
|
|
|
*
|
|
|
|
* Work out what ports the host thinks are emphemeral and record it for later
|
|
|
|
* use by fwd_port_is_ephemeral(). If we're unable to probe, assume the range
|
|
|
|
* recommended by RFC 6335.
|
|
|
|
*/
|
|
|
|
void fwd_probe_ephemeral(void)
|
|
|
|
{
|
|
|
|
char *line, *tab, *end;
|
|
|
|
struct lineread lr;
|
|
|
|
long min, max;
|
|
|
|
ssize_t len;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
fd = open(PORT_RANGE_SYSCTL, O_RDONLY | O_CLOEXEC);
|
|
|
|
if (fd < 0) {
|
|
|
|
warn_perror("Unable to open %s", PORT_RANGE_SYSCTL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
lineread_init(&lr, fd);
|
|
|
|
len = lineread_get(&lr, &line);
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
if (len < 0)
|
|
|
|
goto parse_err;
|
|
|
|
|
|
|
|
tab = strchr(line, '\t');
|
|
|
|
if (!tab)
|
|
|
|
goto parse_err;
|
|
|
|
*tab = '\0';
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
min = strtol(line, &end, 10);
|
|
|
|
if (*end || errno)
|
|
|
|
goto parse_err;
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
max = strtol(tab + 1, &end, 10);
|
|
|
|
if (*end || errno)
|
|
|
|
goto parse_err;
|
|
|
|
|
|
|
|
if (min < 0 || min >= NUM_PORTS ||
|
|
|
|
max < 0 || max >= NUM_PORTS)
|
|
|
|
goto parse_err;
|
|
|
|
|
|
|
|
fwd_ephemeral_min = min;
|
|
|
|
fwd_ephemeral_max = max;
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
parse_err:
|
|
|
|
warn("Unable to parse %s", PORT_RANGE_SYSCTL);
|
|
|
|
}
|
2024-08-29 09:58:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* fwd_port_is_ephemeral() - Is port number ephemeral?
|
|
|
|
* @port: Port number
|
|
|
|
*
|
|
|
|
* Return: true if @port is ephemeral, that is may be allocated by the kernel as
|
|
|
|
* a local port for outgoing connections or datagrams, but should not be
|
|
|
|
* used for binding services to.
|
|
|
|
*/
|
|
|
|
bool fwd_port_is_ephemeral(in_port_t port)
|
|
|
|
{
|
|
|
|
return (port >= fwd_ephemeral_min) && (port <= fwd_ephemeral_max);
|
|
|
|
}
|
|
|
|
|
2023-11-03 02:22:57 +00:00
|
|
|
/* See enum in kernel's include/net/tcp_states.h */
|
|
|
|
#define UDP_LISTEN 0x07
|
|
|
|
#define TCP_LISTEN 0x0a
|
|
|
|
|
2023-11-03 02:22:56 +00:00
|
|
|
/**
|
|
|
|
* procfs_scan_listen() - Set bits for listening TCP or UDP sockets from procfs
|
2023-11-03 02:22:59 +00:00
|
|
|
* @fd: fd for relevant /proc/net file
|
2023-11-03 02:22:57 +00:00
|
|
|
* @lstate: Code for listening state to scan for
|
2023-11-03 02:22:56 +00:00
|
|
|
* @map: Bitmap where numbers of ports in listening state will be set
|
|
|
|
* @exclude: Bitmap of ports to exclude from setting (and clear)
|
|
|
|
*
|
|
|
|
* #syscalls:pasta lseek
|
2024-04-11 15:34:04 +00:00
|
|
|
* #syscalls:pasta ppc64le:_llseek ppc64:_llseek arm:_llseek
|
2023-11-03 02:22:56 +00:00
|
|
|
*/
|
2023-11-03 02:22:59 +00:00
|
|
|
static void procfs_scan_listen(int fd, unsigned int lstate,
|
2023-11-03 02:22:57 +00:00
|
|
|
uint8_t *map, const uint8_t *exclude)
|
2023-11-03 02:22:56 +00:00
|
|
|
{
|
|
|
|
struct lineread lr;
|
|
|
|
unsigned long port;
|
|
|
|
unsigned int state;
|
2023-11-03 02:22:57 +00:00
|
|
|
char *line;
|
2023-11-03 02:22:56 +00:00
|
|
|
|
2023-11-07 11:04:33 +00:00
|
|
|
if (fd < 0)
|
|
|
|
return;
|
|
|
|
|
2023-11-03 02:22:59 +00:00
|
|
|
if (lseek(fd, 0, SEEK_SET)) {
|
2024-06-17 09:55:04 +00:00
|
|
|
warn_perror("lseek() failed on /proc/net file");
|
2023-11-03 02:22:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-11-03 02:22:59 +00:00
|
|
|
lineread_init(&lr, fd);
|
2023-11-03 02:22:56 +00:00
|
|
|
lineread_get(&lr, &line); /* throw away header */
|
|
|
|
while (lineread_get(&lr, &line) > 0) {
|
|
|
|
/* NOLINTNEXTLINE(cert-err34-c): != 2 if conversion fails */
|
|
|
|
if (sscanf(line, "%*u: %*x:%lx %*x:%*x %x", &port, &state) != 2)
|
|
|
|
continue;
|
|
|
|
|
2023-11-03 02:22:57 +00:00
|
|
|
if (state != lstate)
|
2023-11-03 02:22:56 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (bitmap_isset(exclude, port))
|
|
|
|
bitmap_clear(map, port);
|
|
|
|
else
|
|
|
|
bitmap_set(map, port);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-02-28 11:25:20 +00:00
|
|
|
* fwd_scan_ports_tcp() - Scan /proc to update TCP forwarding map
|
2023-11-03 02:23:03 +00:00
|
|
|
* @fwd: Forwarding information to update
|
|
|
|
* @rev: Forwarding information for the reverse direction
|
2023-11-03 02:22:56 +00:00
|
|
|
*/
|
2024-02-28 11:25:20 +00:00
|
|
|
void fwd_scan_ports_tcp(struct fwd_ports *fwd, const struct fwd_ports *rev)
|
2023-11-03 02:22:56 +00:00
|
|
|
{
|
2023-11-03 02:23:02 +00:00
|
|
|
memset(fwd->map, 0, PORT_BITMAP_SIZE);
|
|
|
|
procfs_scan_listen(fwd->scan4, TCP_LISTEN, fwd->map, rev->map);
|
|
|
|
procfs_scan_listen(fwd->scan6, TCP_LISTEN, fwd->map, rev->map);
|
2023-11-03 02:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-02-28 11:25:20 +00:00
|
|
|
* fwd_scan_ports_udp() - Scan /proc to update UDP forwarding map
|
2023-11-03 02:23:03 +00:00
|
|
|
* @fwd: Forwarding information to update
|
|
|
|
* @rev: Forwarding information for the reverse direction
|
port_fwd, util: Don't bind UDP ports with opposite-side bound TCP ports
When pasta periodically scans bound ports and binds them on the other
side in order to forward traffic, we bind UDP ports for corresponding
TCP port numbers, too, to support protocols and applications such as
iperf3 which use UDP port numbers matching the ones used by the TCP
data connection.
If we scan UDP ports in order to bind UDP ports, we skip detection of
the UDP ports we already bound ourselves, to avoid looping back our
own ports. Same with scanning and binding TCP ports.
But if we scan for TCP ports in order to bind UDP ports, we need to
skip bound TCP ports too, otherwise, as David pointed out:
- we find a bound TCP port on side A, and bind the corresponding TCP
and UDP ports on side B
- at the next periodic scan, we find that UDP port bound on side B,
and we bind the corresponding UDP port on side A
- at this point, we unbind that UDP port on side B: we would
otherwise loop back our own port.
To fix this, we need to avoid binding UDP ports that we already
bound, on the other side, as a consequence of finding a corresponding
bound TCP port.
Reproducing this issue is straightforward:
./pasta -- iperf3 -s
# Wait one second, then from another terminal:
iperf3 -c ::1 -u
Reported-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
Analysed-by: David Gibson <david@gibson.dropbear.id.au>
Fixes: 457ff122e33c ("udp,pasta: Periodically scan for ports to automatically forward")
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
2023-11-21 16:18:26 +00:00
|
|
|
* @tcp_fwd: Corresponding TCP forwarding information
|
|
|
|
* @tcp_rev: TCP forwarding information for the reverse direction
|
2023-11-03 02:23:01 +00:00
|
|
|
*/
|
2024-02-28 11:25:20 +00:00
|
|
|
void fwd_scan_ports_udp(struct fwd_ports *fwd, const struct fwd_ports *rev,
|
|
|
|
const struct fwd_ports *tcp_fwd,
|
|
|
|
const struct fwd_ports *tcp_rev)
|
2023-11-03 02:23:01 +00:00
|
|
|
{
|
port_fwd, util: Don't bind UDP ports with opposite-side bound TCP ports
When pasta periodically scans bound ports and binds them on the other
side in order to forward traffic, we bind UDP ports for corresponding
TCP port numbers, too, to support protocols and applications such as
iperf3 which use UDP port numbers matching the ones used by the TCP
data connection.
If we scan UDP ports in order to bind UDP ports, we skip detection of
the UDP ports we already bound ourselves, to avoid looping back our
own ports. Same with scanning and binding TCP ports.
But if we scan for TCP ports in order to bind UDP ports, we need to
skip bound TCP ports too, otherwise, as David pointed out:
- we find a bound TCP port on side A, and bind the corresponding TCP
and UDP ports on side B
- at the next periodic scan, we find that UDP port bound on side B,
and we bind the corresponding UDP port on side A
- at this point, we unbind that UDP port on side B: we would
otherwise loop back our own port.
To fix this, we need to avoid binding UDP ports that we already
bound, on the other side, as a consequence of finding a corresponding
bound TCP port.
Reproducing this issue is straightforward:
./pasta -- iperf3 -s
# Wait one second, then from another terminal:
iperf3 -c ::1 -u
Reported-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
Analysed-by: David Gibson <david@gibson.dropbear.id.au>
Fixes: 457ff122e33c ("udp,pasta: Periodically scan for ports to automatically forward")
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
2023-11-21 16:18:26 +00:00
|
|
|
uint8_t exclude[PORT_BITMAP_SIZE];
|
|
|
|
|
|
|
|
bitmap_or(exclude, PORT_BITMAP_SIZE, rev->map, tcp_rev->map);
|
|
|
|
|
2023-11-03 02:23:02 +00:00
|
|
|
memset(fwd->map, 0, PORT_BITMAP_SIZE);
|
port_fwd, util: Don't bind UDP ports with opposite-side bound TCP ports
When pasta periodically scans bound ports and binds them on the other
side in order to forward traffic, we bind UDP ports for corresponding
TCP port numbers, too, to support protocols and applications such as
iperf3 which use UDP port numbers matching the ones used by the TCP
data connection.
If we scan UDP ports in order to bind UDP ports, we skip detection of
the UDP ports we already bound ourselves, to avoid looping back our
own ports. Same with scanning and binding TCP ports.
But if we scan for TCP ports in order to bind UDP ports, we need to
skip bound TCP ports too, otherwise, as David pointed out:
- we find a bound TCP port on side A, and bind the corresponding TCP
and UDP ports on side B
- at the next periodic scan, we find that UDP port bound on side B,
and we bind the corresponding UDP port on side A
- at this point, we unbind that UDP port on side B: we would
otherwise loop back our own port.
To fix this, we need to avoid binding UDP ports that we already
bound, on the other side, as a consequence of finding a corresponding
bound TCP port.
Reproducing this issue is straightforward:
./pasta -- iperf3 -s
# Wait one second, then from another terminal:
iperf3 -c ::1 -u
Reported-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
Analysed-by: David Gibson <david@gibson.dropbear.id.au>
Fixes: 457ff122e33c ("udp,pasta: Periodically scan for ports to automatically forward")
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
2023-11-21 16:18:26 +00:00
|
|
|
procfs_scan_listen(fwd->scan4, UDP_LISTEN, fwd->map, exclude);
|
|
|
|
procfs_scan_listen(fwd->scan6, UDP_LISTEN, fwd->map, exclude);
|
2023-11-03 02:23:01 +00:00
|
|
|
|
|
|
|
/* Also forward UDP ports with the same numbers as bound TCP ports.
|
|
|
|
* This is useful for a handful of protocols (e.g. iperf3) where a TCP
|
|
|
|
* control port is used to set up transfers on a corresponding UDP
|
|
|
|
* port.
|
port_fwd, util: Don't bind UDP ports with opposite-side bound TCP ports
When pasta periodically scans bound ports and binds them on the other
side in order to forward traffic, we bind UDP ports for corresponding
TCP port numbers, too, to support protocols and applications such as
iperf3 which use UDP port numbers matching the ones used by the TCP
data connection.
If we scan UDP ports in order to bind UDP ports, we skip detection of
the UDP ports we already bound ourselves, to avoid looping back our
own ports. Same with scanning and binding TCP ports.
But if we scan for TCP ports in order to bind UDP ports, we need to
skip bound TCP ports too, otherwise, as David pointed out:
- we find a bound TCP port on side A, and bind the corresponding TCP
and UDP ports on side B
- at the next periodic scan, we find that UDP port bound on side B,
and we bind the corresponding UDP port on side A
- at this point, we unbind that UDP port on side B: we would
otherwise loop back our own port.
To fix this, we need to avoid binding UDP ports that we already
bound, on the other side, as a consequence of finding a corresponding
bound TCP port.
Reproducing this issue is straightforward:
./pasta -- iperf3 -s
# Wait one second, then from another terminal:
iperf3 -c ::1 -u
Reported-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
Analysed-by: David Gibson <david@gibson.dropbear.id.au>
Fixes: 457ff122e33c ("udp,pasta: Periodically scan for ports to automatically forward")
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
2023-11-21 16:18:26 +00:00
|
|
|
*
|
|
|
|
* This means we need to skip numbers of TCP ports bound on the other
|
|
|
|
* side, too. Otherwise, we would detect corresponding UDP ports as
|
|
|
|
* bound and try to forward them from the opposite side, but it's
|
|
|
|
* already us handling them.
|
2023-11-03 02:23:01 +00:00
|
|
|
*/
|
port_fwd, util: Don't bind UDP ports with opposite-side bound TCP ports
When pasta periodically scans bound ports and binds them on the other
side in order to forward traffic, we bind UDP ports for corresponding
TCP port numbers, too, to support protocols and applications such as
iperf3 which use UDP port numbers matching the ones used by the TCP
data connection.
If we scan UDP ports in order to bind UDP ports, we skip detection of
the UDP ports we already bound ourselves, to avoid looping back our
own ports. Same with scanning and binding TCP ports.
But if we scan for TCP ports in order to bind UDP ports, we need to
skip bound TCP ports too, otherwise, as David pointed out:
- we find a bound TCP port on side A, and bind the corresponding TCP
and UDP ports on side B
- at the next periodic scan, we find that UDP port bound on side B,
and we bind the corresponding UDP port on side A
- at this point, we unbind that UDP port on side B: we would
otherwise loop back our own port.
To fix this, we need to avoid binding UDP ports that we already
bound, on the other side, as a consequence of finding a corresponding
bound TCP port.
Reproducing this issue is straightforward:
./pasta -- iperf3 -s
# Wait one second, then from another terminal:
iperf3 -c ::1 -u
Reported-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
Analysed-by: David Gibson <david@gibson.dropbear.id.au>
Fixes: 457ff122e33c ("udp,pasta: Periodically scan for ports to automatically forward")
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
2023-11-21 16:18:26 +00:00
|
|
|
procfs_scan_listen(tcp_fwd->scan4, TCP_LISTEN, fwd->map, exclude);
|
|
|
|
procfs_scan_listen(tcp_fwd->scan6, TCP_LISTEN, fwd->map, exclude);
|
2023-11-03 02:22:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-02-28 11:25:20 +00:00
|
|
|
* fwd_scan_ports_init() - Initial setup for automatic port forwarding
|
2023-11-03 02:22:56 +00:00
|
|
|
* @c: Execution context
|
|
|
|
*/
|
2024-02-28 11:25:20 +00:00
|
|
|
void fwd_scan_ports_init(struct ctx *c)
|
2023-11-03 02:22:56 +00:00
|
|
|
{
|
2023-11-03 02:22:59 +00:00
|
|
|
const int flags = O_RDONLY | O_CLOEXEC;
|
2023-11-03 02:22:56 +00:00
|
|
|
|
2023-11-03 02:23:02 +00:00
|
|
|
c->tcp.fwd_in.scan4 = c->tcp.fwd_in.scan6 = -1;
|
|
|
|
c->tcp.fwd_out.scan4 = c->tcp.fwd_out.scan6 = -1;
|
2024-07-18 05:26:52 +00:00
|
|
|
c->udp.fwd_in.scan4 = c->udp.fwd_in.scan6 = -1;
|
|
|
|
c->udp.fwd_out.scan4 = c->udp.fwd_out.scan6 = -1;
|
2023-11-03 02:22:56 +00:00
|
|
|
|
|
|
|
if (c->tcp.fwd_in.mode == FWD_AUTO) {
|
2023-11-03 02:23:02 +00:00
|
|
|
c->tcp.fwd_in.scan4 = open_in_ns(c, "/proc/net/tcp", flags);
|
|
|
|
c->tcp.fwd_in.scan6 = open_in_ns(c, "/proc/net/tcp6", flags);
|
2024-02-28 11:25:20 +00:00
|
|
|
fwd_scan_ports_tcp(&c->tcp.fwd_in, &c->tcp.fwd_out);
|
2023-11-03 02:22:56 +00:00
|
|
|
}
|
2024-07-18 05:26:52 +00:00
|
|
|
if (c->udp.fwd_in.mode == FWD_AUTO) {
|
|
|
|
c->udp.fwd_in.scan4 = open_in_ns(c, "/proc/net/udp", flags);
|
|
|
|
c->udp.fwd_in.scan6 = open_in_ns(c, "/proc/net/udp6", flags);
|
|
|
|
fwd_scan_ports_udp(&c->udp.fwd_in, &c->udp.fwd_out,
|
2024-02-28 11:25:20 +00:00
|
|
|
&c->tcp.fwd_in, &c->tcp.fwd_out);
|
2023-11-03 02:22:56 +00:00
|
|
|
}
|
2023-11-03 02:22:59 +00:00
|
|
|
if (c->tcp.fwd_out.mode == FWD_AUTO) {
|
2023-11-03 02:23:02 +00:00
|
|
|
c->tcp.fwd_out.scan4 = open("/proc/net/tcp", flags);
|
|
|
|
c->tcp.fwd_out.scan6 = open("/proc/net/tcp6", flags);
|
2024-02-28 11:25:20 +00:00
|
|
|
fwd_scan_ports_tcp(&c->tcp.fwd_out, &c->tcp.fwd_in);
|
2023-11-03 02:22:59 +00:00
|
|
|
}
|
2024-07-18 05:26:52 +00:00
|
|
|
if (c->udp.fwd_out.mode == FWD_AUTO) {
|
|
|
|
c->udp.fwd_out.scan4 = open("/proc/net/udp", flags);
|
|
|
|
c->udp.fwd_out.scan6 = open("/proc/net/udp6", flags);
|
|
|
|
fwd_scan_ports_udp(&c->udp.fwd_out, &c->udp.fwd_in,
|
2024-02-28 11:25:20 +00:00
|
|
|
&c->tcp.fwd_out, &c->tcp.fwd_in);
|
2023-11-03 02:22:59 +00:00
|
|
|
}
|
2023-11-03 02:22:56 +00:00
|
|
|
}
|
2024-07-18 05:26:43 +00:00
|
|
|
|
2024-07-24 07:51:12 +00:00
|
|
|
/**
|
|
|
|
* is_dns_flow() - Determine if flow appears to be a DNS request
|
|
|
|
* @proto: Protocol (IP L4 protocol number)
|
|
|
|
* @ini: Flow address information of the initiating side
|
|
|
|
*
|
|
|
|
* Return: true if the flow appears to be directed at a dns server, that is a
|
|
|
|
* TCP or UDP flow to port 53 (domain) or port 853 (domain-s)
|
|
|
|
*/
|
|
|
|
static bool is_dns_flow(uint8_t proto, const struct flowside *ini)
|
|
|
|
{
|
|
|
|
return ((proto == IPPROTO_UDP) || (proto == IPPROTO_TCP)) &&
|
2024-08-21 04:19:57 +00:00
|
|
|
((ini->oport == 53) || (ini->oport == 853));
|
2024-07-24 07:51:12 +00:00
|
|
|
}
|
|
|
|
|
2024-08-21 04:20:12 +00:00
|
|
|
/**
|
|
|
|
* fwd_guest_accessible4() - Is IPv4 address guest-accessible
|
|
|
|
* @c: Execution context
|
|
|
|
* @addr: Host visible IPv4 address
|
|
|
|
*
|
|
|
|
* Return: true if @addr on the host is accessible to the guest without
|
|
|
|
* translation, false otherwise
|
|
|
|
*/
|
|
|
|
static bool fwd_guest_accessible4(const struct ctx *c,
|
|
|
|
const struct in_addr *addr)
|
|
|
|
{
|
|
|
|
if (IN4_IS_ADDR_LOOPBACK(addr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* In socket interfaces 0.0.0.0 generally means "any" or unspecified,
|
|
|
|
* however on the wire it can mean "this host on this network". Since
|
|
|
|
* that has a different meaning for host and guest, we can't let it
|
|
|
|
* through untranslated.
|
|
|
|
*/
|
|
|
|
if (IN4_IS_ADDR_UNSPECIFIED(addr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* For IPv4, addr_seen is initialised to addr, so is always a valid
|
|
|
|
* address
|
|
|
|
*/
|
|
|
|
if (IN4_ARE_ADDR_EQUAL(addr, &c->ip4.addr) ||
|
|
|
|
IN4_ARE_ADDR_EQUAL(addr, &c->ip4.addr_seen))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fwd_guest_accessible6() - Is IPv6 address guest-accessible
|
|
|
|
* @c: Execution context
|
|
|
|
* @addr: Host visible IPv6 address
|
|
|
|
*
|
|
|
|
* Return: true if @addr on the host is accessible to the guest without
|
|
|
|
* translation, false otherwise
|
|
|
|
*/
|
|
|
|
static bool fwd_guest_accessible6(const struct ctx *c,
|
|
|
|
const struct in6_addr *addr)
|
|
|
|
{
|
|
|
|
if (IN6_IS_ADDR_LOOPBACK(addr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (IN6_ARE_ADDR_EQUAL(addr, &c->ip6.addr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* For IPv6, addr_seen starts unspecified, because we don't know what LL
|
|
|
|
* address the guest will take until we see it. Only check against it
|
|
|
|
* if it has been set to a real address.
|
|
|
|
*/
|
|
|
|
if (!IN6_IS_ADDR_UNSPECIFIED(&c->ip6.addr_seen) &&
|
|
|
|
IN6_ARE_ADDR_EQUAL(addr, &c->ip6.addr_seen))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fwd_guest_accessible() - Is IPv[46] address guest-accessible
|
|
|
|
* @c: Execution context
|
|
|
|
* @addr: Host visible IPv[46] address
|
|
|
|
*
|
|
|
|
* Return: true if @addr on the host is accessible to the guest without
|
|
|
|
* translation, false otherwise
|
|
|
|
*/
|
|
|
|
static bool fwd_guest_accessible(const struct ctx *c,
|
|
|
|
const union inany_addr *addr)
|
|
|
|
{
|
|
|
|
const struct in_addr *a4 = inany_v4(addr);
|
|
|
|
|
|
|
|
if (a4)
|
|
|
|
return fwd_guest_accessible4(c, a4);
|
|
|
|
|
|
|
|
return fwd_guest_accessible6(c, &addr->a6);
|
|
|
|
}
|
|
|
|
|
2024-07-18 05:26:43 +00:00
|
|
|
/**
|
|
|
|
* fwd_nat_from_tap() - Determine to forward a flow from the tap interface
|
|
|
|
* @c: Execution context
|
|
|
|
* @proto: Protocol (IP L4 protocol number)
|
|
|
|
* @ini: Flow address information of the initiating side
|
|
|
|
* @tgt: Flow address information on the target side (updated)
|
|
|
|
*
|
|
|
|
* Return: pif of the target interface to forward the flow to, PIF_NONE if the
|
|
|
|
* flow cannot or should not be forwarded at all.
|
|
|
|
*/
|
|
|
|
uint8_t fwd_nat_from_tap(const struct ctx *c, uint8_t proto,
|
|
|
|
const struct flowside *ini, struct flowside *tgt)
|
|
|
|
{
|
2024-07-24 07:51:12 +00:00
|
|
|
if (is_dns_flow(proto, ini) &&
|
2024-08-21 04:19:57 +00:00
|
|
|
inany_equals4(&ini->oaddr, &c->ip4.dns_match))
|
2024-07-18 05:26:45 +00:00
|
|
|
tgt->eaddr = inany_from_v4(c->ip4.dns_host);
|
2024-07-24 07:51:12 +00:00
|
|
|
else if (is_dns_flow(proto, ini) &&
|
2024-08-21 04:19:57 +00:00
|
|
|
inany_equals6(&ini->oaddr, &c->ip6.dns_match))
|
2024-07-18 05:26:45 +00:00
|
|
|
tgt->eaddr.a6 = c->ip6.dns_host;
|
2024-08-21 04:20:15 +00:00
|
|
|
else if (inany_equals4(&ini->oaddr, &c->ip4.map_host_loopback))
|
2024-07-24 07:51:11 +00:00
|
|
|
tgt->eaddr = inany_loopback4;
|
2024-08-21 04:20:15 +00:00
|
|
|
else if (inany_equals6(&ini->oaddr, &c->ip6.map_host_loopback))
|
2024-07-24 07:51:11 +00:00
|
|
|
tgt->eaddr = inany_loopback6;
|
2024-08-21 04:20:19 +00:00
|
|
|
else if (inany_equals4(&ini->oaddr, &c->ip4.map_guest_addr))
|
|
|
|
tgt->eaddr = inany_from_v4(c->ip4.addr);
|
|
|
|
else if (inany_equals6(&ini->oaddr, &c->ip6.map_guest_addr))
|
|
|
|
tgt->eaddr.a6 = c->ip6.addr;
|
2024-07-24 07:51:11 +00:00
|
|
|
else
|
2024-08-21 04:19:57 +00:00
|
|
|
tgt->eaddr = ini->oaddr;
|
2024-07-24 07:51:11 +00:00
|
|
|
|
2024-08-21 04:19:57 +00:00
|
|
|
tgt->eport = ini->oport;
|
2024-07-18 05:26:43 +00:00
|
|
|
|
|
|
|
/* The relevant addr_out controls the host side source address. This
|
|
|
|
* may be unspecified, which allows the kernel to pick an address.
|
|
|
|
*/
|
|
|
|
if (inany_v4(&tgt->eaddr))
|
2024-08-21 04:19:57 +00:00
|
|
|
tgt->oaddr = inany_from_v4(c->ip4.addr_out);
|
2024-07-18 05:26:43 +00:00
|
|
|
else
|
2024-08-21 04:19:57 +00:00
|
|
|
tgt->oaddr.a6 = c->ip6.addr_out;
|
2024-07-18 05:26:43 +00:00
|
|
|
|
|
|
|
/* Let the kernel pick a host side source port */
|
2024-08-21 04:19:57 +00:00
|
|
|
tgt->oport = 0;
|
2024-07-18 05:26:45 +00:00
|
|
|
if (proto == IPPROTO_UDP) {
|
|
|
|
/* But for UDP we preserve the source port */
|
2024-08-21 04:19:57 +00:00
|
|
|
tgt->oport = ini->eport;
|
2024-07-18 05:26:45 +00:00
|
|
|
}
|
2024-07-18 05:26:43 +00:00
|
|
|
|
|
|
|
return PIF_HOST;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fwd_nat_from_splice() - Determine to forward a flow from the splice interface
|
|
|
|
* @c: Execution context
|
|
|
|
* @proto: Protocol (IP L4 protocol number)
|
|
|
|
* @ini: Flow address information of the initiating side
|
|
|
|
* @tgt: Flow address information on the target side (updated)
|
|
|
|
*
|
|
|
|
* Return: pif of the target interface to forward the flow to, PIF_NONE if the
|
|
|
|
* flow cannot or should not be forwarded at all.
|
|
|
|
*/
|
|
|
|
uint8_t fwd_nat_from_splice(const struct ctx *c, uint8_t proto,
|
|
|
|
const struct flowside *ini, struct flowside *tgt)
|
|
|
|
{
|
|
|
|
if (!inany_is_loopback(&ini->eaddr) ||
|
2024-08-21 04:19:57 +00:00
|
|
|
(!inany_is_loopback(&ini->oaddr) && !inany_is_unspecified(&ini->oaddr))) {
|
2024-07-18 05:26:43 +00:00
|
|
|
char estr[INANY_ADDRSTRLEN], fstr[INANY_ADDRSTRLEN];
|
|
|
|
|
|
|
|
debug("Non loopback address on %s: [%s]:%hu -> [%s]:%hu",
|
|
|
|
pif_name(PIF_SPLICE),
|
|
|
|
inany_ntop(&ini->eaddr, estr, sizeof(estr)), ini->eport,
|
2024-08-21 04:19:57 +00:00
|
|
|
inany_ntop(&ini->oaddr, fstr, sizeof(fstr)), ini->oport);
|
2024-07-18 05:26:43 +00:00
|
|
|
return PIF_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inany_v4(&ini->eaddr))
|
|
|
|
tgt->eaddr = inany_loopback4;
|
|
|
|
else
|
|
|
|
tgt->eaddr = inany_loopback6;
|
|
|
|
|
|
|
|
/* Preserve the specific loopback adddress used, but let the kernel pick
|
|
|
|
* a source port on the target side
|
|
|
|
*/
|
2024-08-21 04:19:57 +00:00
|
|
|
tgt->oaddr = ini->eaddr;
|
|
|
|
tgt->oport = 0;
|
2024-07-18 05:26:43 +00:00
|
|
|
|
2024-08-21 04:19:57 +00:00
|
|
|
tgt->eport = ini->oport;
|
2024-07-18 05:26:43 +00:00
|
|
|
if (proto == IPPROTO_TCP)
|
|
|
|
tgt->eport += c->tcp.fwd_out.delta[tgt->eport];
|
2024-07-18 05:26:45 +00:00
|
|
|
else if (proto == IPPROTO_UDP)
|
2024-07-18 05:26:52 +00:00
|
|
|
tgt->eport += c->udp.fwd_out.delta[tgt->eport];
|
2024-07-18 05:26:43 +00:00
|
|
|
|
|
|
|
/* Let the kernel pick a host side source port */
|
2024-08-21 04:19:57 +00:00
|
|
|
tgt->oport = 0;
|
2024-07-18 05:26:45 +00:00
|
|
|
if (proto == IPPROTO_UDP)
|
|
|
|
/* But for UDP preserve the source port */
|
2024-08-21 04:19:57 +00:00
|
|
|
tgt->oport = ini->eport;
|
2024-07-18 05:26:43 +00:00
|
|
|
|
|
|
|
return PIF_HOST;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fwd_nat_from_host() - Determine to forward a flow from the host interface
|
|
|
|
* @c: Execution context
|
|
|
|
* @proto: Protocol (IP L4 protocol number)
|
|
|
|
* @ini: Flow address information of the initiating side
|
|
|
|
* @tgt: Flow address information on the target side (updated)
|
|
|
|
*
|
|
|
|
* Return: pif of the target interface to forward the flow to, PIF_NONE if the
|
|
|
|
* flow cannot or should not be forwarded at all.
|
|
|
|
*/
|
|
|
|
uint8_t fwd_nat_from_host(const struct ctx *c, uint8_t proto,
|
|
|
|
const struct flowside *ini, struct flowside *tgt)
|
|
|
|
{
|
|
|
|
/* Common for spliced and non-spliced cases */
|
2024-08-21 04:19:57 +00:00
|
|
|
tgt->eport = ini->oport;
|
2024-07-18 05:26:43 +00:00
|
|
|
if (proto == IPPROTO_TCP)
|
|
|
|
tgt->eport += c->tcp.fwd_in.delta[tgt->eport];
|
2024-07-18 05:26:45 +00:00
|
|
|
else if (proto == IPPROTO_UDP)
|
2024-07-18 05:26:52 +00:00
|
|
|
tgt->eport += c->udp.fwd_in.delta[tgt->eport];
|
2024-07-18 05:26:43 +00:00
|
|
|
|
|
|
|
if (c->mode == MODE_PASTA && inany_is_loopback(&ini->eaddr) &&
|
2024-07-18 05:26:45 +00:00
|
|
|
(proto == IPPROTO_TCP || proto == IPPROTO_UDP)) {
|
2024-07-18 05:26:43 +00:00
|
|
|
/* spliceable */
|
|
|
|
|
|
|
|
/* Preserve the specific loopback adddress used, but let the
|
|
|
|
* kernel pick a source port on the target side
|
|
|
|
*/
|
2024-08-21 04:19:57 +00:00
|
|
|
tgt->oaddr = ini->eaddr;
|
|
|
|
tgt->oport = 0;
|
2024-07-18 05:26:45 +00:00
|
|
|
if (proto == IPPROTO_UDP)
|
|
|
|
/* But for UDP preserve the source port */
|
2024-08-21 04:19:57 +00:00
|
|
|
tgt->oport = ini->eport;
|
2024-07-18 05:26:43 +00:00
|
|
|
|
|
|
|
if (inany_v4(&ini->eaddr))
|
|
|
|
tgt->eaddr = inany_loopback4;
|
|
|
|
else
|
|
|
|
tgt->eaddr = inany_loopback6;
|
2024-07-18 05:26:45 +00:00
|
|
|
|
2024-07-18 05:26:43 +00:00
|
|
|
return PIF_SPLICE;
|
|
|
|
}
|
|
|
|
|
2024-08-21 04:20:18 +00:00
|
|
|
if (!IN4_IS_ADDR_UNSPECIFIED(&c->ip4.map_host_loopback) &&
|
|
|
|
inany_equals4(&ini->eaddr, &in4addr_loopback)) {
|
|
|
|
/* Specifically 127.0.0.1, not 127.0.0.0/8 */
|
|
|
|
tgt->oaddr = inany_from_v4(c->ip4.map_host_loopback);
|
|
|
|
} else if (!IN6_IS_ADDR_UNSPECIFIED(&c->ip6.map_host_loopback) &&
|
|
|
|
inany_equals6(&ini->eaddr, &in6addr_loopback)) {
|
|
|
|
tgt->oaddr.a6 = c->ip6.map_host_loopback;
|
2024-08-21 04:20:19 +00:00
|
|
|
} else if (!IN4_IS_ADDR_UNSPECIFIED(&c->ip4.map_guest_addr) &&
|
|
|
|
inany_equals4(&ini->eaddr, &c->ip4.addr)) {
|
|
|
|
tgt->oaddr = inany_from_v4(c->ip4.map_guest_addr);
|
|
|
|
} else if (!IN6_IS_ADDR_UNSPECIFIED(&c->ip6.map_guest_addr) &&
|
|
|
|
inany_equals6(&ini->eaddr, &c->ip6.addr)) {
|
|
|
|
tgt->oaddr.a6 = c->ip6.map_guest_addr;
|
2024-08-21 04:20:18 +00:00
|
|
|
} else if (!fwd_guest_accessible(c, &ini->eaddr)) {
|
2024-08-21 04:20:13 +00:00
|
|
|
if (inany_v4(&ini->eaddr)) {
|
|
|
|
if (IN4_IS_ADDR_UNSPECIFIED(&c->ip4.our_tap_addr))
|
|
|
|
/* No source address we can use */
|
|
|
|
return PIF_NONE;
|
|
|
|
tgt->oaddr = inany_from_v4(c->ip4.our_tap_addr);
|
|
|
|
} else {
|
2024-08-21 04:20:12 +00:00
|
|
|
tgt->oaddr.a6 = c->ip6.our_tap_ll;
|
2024-08-21 04:20:13 +00:00
|
|
|
}
|
2024-08-21 04:20:12 +00:00
|
|
|
} else {
|
|
|
|
tgt->oaddr = ini->eaddr;
|
2024-07-18 05:26:43 +00:00
|
|
|
}
|
2024-08-21 04:20:12 +00:00
|
|
|
tgt->oport = ini->eport;
|
2024-07-18 05:26:43 +00:00
|
|
|
|
2024-08-21 04:19:57 +00:00
|
|
|
if (inany_v4(&tgt->oaddr)) {
|
2024-07-18 05:26:43 +00:00
|
|
|
tgt->eaddr = inany_from_v4(c->ip4.addr_seen);
|
|
|
|
} else {
|
2024-08-21 04:19:57 +00:00
|
|
|
if (inany_is_linklocal6(&tgt->oaddr))
|
2024-07-18 05:26:43 +00:00
|
|
|
tgt->eaddr.a6 = c->ip6.addr_ll_seen;
|
|
|
|
else
|
|
|
|
tgt->eaddr.a6 = c->ip6.addr_seen;
|
|
|
|
}
|
|
|
|
|
|
|
|
return PIF_TAP;
|
|
|
|
}
|