1
0
mirror of https://passt.top/passt synced 2024-06-30 23:12:39 +00:00
passt implements a translation layer between a Layer-2 network interface and native Layer-4 sockets (TCP, UDP, ICMP/ICMPv6 echo) on a host. It doesn't require any capabilities or privileges, and it can be used as a simple replacement for Slirp.
Go to file
Stefano Brivio 105b916361 passt: New design and implementation with native Layer 4 sockets
This is a reimplementation, partially building on the earlier draft,
that uses L4 sockets (SOCK_DGRAM, SOCK_STREAM) instead of SOCK_RAW,
providing L4-L2 translation functionality without requiring any
security capability.

Conceptually, this follows the design presented at:
	https://gitlab.com/abologna/kubevirt-and-kvm/-/blob/master/Networking.md

The most significant novelty here comes from TCP and UDP translation
layers. In particular, the TCP state and translation logic follows
the intent of being minimalistic, without reimplementing a full TCP
stack in either direction, and synchronising as much as possible the
TCP dynamic and flows between guest and host kernel.

Another important introduction concerns addressing, port translation
and forwarding. The Layer 4 implementations now attempt to bind on
all unbound ports, in order to forward connections in a transparent
way.

While at it:
- the qemu 'tap' back-end can't be used as-is by qrap anymore,
  because of explicit checks now introduced in qemu to ensure that
  the corresponding file descriptor is actually a tap device. For
  this reason, qrap now operates on a 'socket' back-end type,
  accounting for and building the additional header reporting
  frame length

- provide a demo script that sets up namespaces, addresses and
  routes, and starts the daemon. A virtual machine started in the
  network namespace, wrapped by qrap, will now directly interface
  with passt and communicate using Layer 4 sockets provided by the
  host kernel.

Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
2021-02-16 09:28:55 +01:00
doc passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
arp.c passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
arp.h merd: ARP and DHCP handlers, connection tracking fixes 2021-02-16 07:57:57 +01:00
dhcp.c passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
dhcp.h merd: ARP and DHCP handlers, connection tracking fixes 2021-02-16 07:57:57 +01:00
Makefile passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
ndp.c passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
ndp.h passt: Add IPv6 and NDP support, further fixes for IPv4 CT 2021-02-16 07:58:05 +01:00
passt.c passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
passt.h passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
qrap.c passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
tap.c passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
tap.h passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
tcp.c passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
tcp.h passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
udp.c passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
udp.h passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
util.c passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00
util.h passt: New design and implementation with native Layer 4 sockets 2021-02-16 09:28:55 +01:00