passt: Relicense to GPL 2.0, or any later version
In practical terms, passt doesn't benefit from the additional
protection offered by the AGPL over the GPL, because it's not
suitable to be executed over a computer network.
Further, restricting the distribution under the version 3 of the GPL
wouldn't provide any practical advantage either, as long as the passt
codebase is concerned, and might cause unnecessary compatibility
dilemmas.
Change licensing terms to the GNU General Public License Version 2,
or any later version, with written permission from all current and
past contributors, namely: myself, David Gibson, Laine Stump, Andrea
Bolognani, Paul Holzinger, Richard W.M. Jones, Chris Kuhn, Florian
Weimer, Giuseppe Scrivano, Stefan Hajnoczi, and Vasiliy Ulyanov.
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
2023-04-05 18:11:44 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
2021-09-27 13:10:35 +00:00
|
|
|
#
|
|
|
|
# PASST - Plug A Simple Socket Transport
|
|
|
|
# for qemu/UNIX domain socket mode
|
|
|
|
#
|
|
|
|
# PASTA - Pack A Subtle Tap Abstraction
|
|
|
|
# for network namespace/tap device mode
|
|
|
|
#
|
2022-09-13 04:35:16 +00:00
|
|
|
# test/pasta/dhcp - Check DHCP and DHCPv6 functionality in pasta mode
|
2021-09-27 13:10:35 +00:00
|
|
|
#
|
|
|
|
# Copyright (c) 2021 Red Hat GmbH
|
|
|
|
# Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
|
2022-06-10 02:32:44 +00:00
|
|
|
nstools ip jq /sbin/dhclient
|
2021-09-27 13:10:35 +00:00
|
|
|
htools ip jq
|
|
|
|
|
|
|
|
test Interface name
|
2022-06-10 02:32:42 +00:00
|
|
|
nsout IFNAME ip -j link show | jq -rM '.[] | select(.link_type == "ether").ifname'
|
2021-09-27 13:10:35 +00:00
|
|
|
check [ -n "__IFNAME__" ]
|
|
|
|
|
|
|
|
test DHCP: address
|
2022-06-10 02:32:44 +00:00
|
|
|
ns /sbin/dhclient -4 --no-pid __IFNAME__
|
2022-06-10 02:32:42 +00:00
|
|
|
nsout ADDR ip -j -4 addr show|jq -rM '.[] | select(.ifname == "__IFNAME__").addr_info[0].local'
|
|
|
|
hout HOST_ADDR ip -j -4 addr show|jq -rM '.[] | select(.ifname == "__IFNAME__").addr_info[0].local'
|
2021-09-27 13:10:35 +00:00
|
|
|
check [ __ADDR__ = __HOST_ADDR__ ]
|
|
|
|
|
|
|
|
test DHCP: route
|
2022-06-10 02:32:42 +00:00
|
|
|
nsout GW ip -j -4 route show|jq -rM '.[] | select(.dst == "default").gateway'
|
2022-08-18 06:13:54 +00:00
|
|
|
hout HOST_GW ip -j -4 route show|jq -rM '[.[] | select(.dst == "default").gateway] | .[0]'
|
2021-09-27 13:10:35 +00:00
|
|
|
check [ __GW__ = __HOST_GW__ ]
|
|
|
|
|
|
|
|
test DHCP: MTU
|
2022-06-10 02:32:42 +00:00
|
|
|
nsout MTU ip -j link show | jq -rM '.[] | select(.ifname == "__IFNAME__").mtu'
|
2021-09-27 13:10:35 +00:00
|
|
|
check [ __MTU__ = 65520 ]
|
|
|
|
|
|
|
|
test DHCPv6: address
|
2022-06-10 02:32:43 +00:00
|
|
|
ns /sbin/dhclient -6 --no-pid __IFNAME__
|
2022-07-22 05:31:13 +00:00
|
|
|
hout HOST_IFNAME6 ip -j -6 route show|jq -rM '[.[] | select(.dst == "default").dev] | .[0]'
|
2023-12-08 17:41:36 +00:00
|
|
|
nsout ADDR6 ip -j -6 addr show|jq -rM '[.[] | select(.ifname == "__IFNAME__").addr_info[] | select(.prefixlen == 128).local] | .[0]'
|
2024-05-22 07:22:32 +00:00
|
|
|
hout HOST_ADDR6 ip -j -6 addr show|jq -rM '[.[] | select(.ifname == "__HOST_IFNAME6__").addr_info[] | select(.scope == "global" and .deprecated != true).local] | .[0]'
|
2021-09-27 13:10:35 +00:00
|
|
|
check [ __ADDR6__ = __HOST_ADDR6__ ]
|
|
|
|
|
|
|
|
test DHCPv6: route
|
2022-06-10 02:32:42 +00:00
|
|
|
nsout GW6 ip -j -6 route show|jq -rM '.[] | select(.dst == "default").gateway'
|
2022-08-18 06:13:54 +00:00
|
|
|
hout HOST_GW6 ip -j -6 route show|jq -rM '[.[] | select(.dst == "default").gateway] | .[0]'
|
2021-09-27 13:10:35 +00:00
|
|
|
check [ __GW6__ = __HOST_GW6__ ]
|