#1# SPDX-License-Identifier: BSD-2-Clause2#3# Copyright (c) 2025 Rubicon Communications, LLC (Netgate)4#5# Redistribution and use in source and binary forms, with or without6# modification, are permitted provided that the following conditions7# are met:8# 1. Redistributions of source code must retain the above copyright9# notice, this list of conditions and the following disclaimer.10# 2. Redistributions in binary form must reproduce the above copyright11# notice, this list of conditions and the following disclaimer in the12# documentation and/or other materials provided with the distribution.13#14# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND15# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE16# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE17# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE18# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL19# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS20# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)21# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT22# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY23# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF24# SUCH DAMAGE.2526import pytest27from utils import DelayedSend28from atf_python.sys.net.tools import ToolsHelper29from atf_python.sys.net.vnet import VnetTestTemplate3031class TestFrag4_NoReassemble(VnetTestTemplate):32REQUIRED_MODULES = [ "pf" ]33TOPOLOGY = {34"vnet1": {"ifaces": ["if1"]},35"vnet2": {"ifaces": ["if1", "if2"]},36"vnet3": {"ifaces": ["if2"]},37"if1": {"prefixes4": [("192.0.2.1/24", "192.0.2.2/24")]},38"if2": {"prefixes4": [("198.51.100.1/24", "198.51.100.2/24")]},39}4041def vnet2_handler(self, vnet):42outifname = vnet.iface_alias_map["if2"].name4344ToolsHelper.print_output("/sbin/pfctl -e")45ToolsHelper.pf_rules([46"set reassemble no",47"nat on %s from 192.0.2.0/24 to any -> (%s)" % (outifname, outifname),48"pass out"49])5051ToolsHelper.print_output("/sbin/sysctl net.inet.ip.forwarding=1")5253def vnet3_handler(self, vnet):54# We deliberately don't set the default gateway here, so if we get a55# reply from this we know we did NAT in vnet256pass5758@pytest.mark.require_user("root")59@pytest.mark.require_progs(["scapy"])60def test_udp_frag(self):61ToolsHelper.print_output("/sbin/route add default 192.0.2.2")62ToolsHelper.print_output("/sbin/ping -c 3 198.51.100.2")6364# Import in the correct vnet, so at to not confuse Scapy65import scapy.all as sp6667pkt = sp.IP(dst="198.51.100.2", frag=123) \68/ sp.UDP(dport=12345, sport=54321)69reply = sp.sr1(pkt, timeout=3)70# We don't expect a reply71assert not reply727374