14ae3a97eSKristof Provost#!/usr/bin/env python3 24ae3a97eSKristof Provost# 34ae3a97eSKristof Provost# SPDX-License-Identifier: BSD-2-Clause 44ae3a97eSKristof Provost# 54ae3a97eSKristof Provost# Copyright (c) 2021 Kristof Provost <kp@FreeBSD.org> 64ae3a97eSKristof Provost# 74ae3a97eSKristof Provost# Redistribution and use in source and binary forms, with or without 84ae3a97eSKristof Provost# modification, are permitted provided that the following conditions 94ae3a97eSKristof Provost# are met: 104ae3a97eSKristof Provost# 1. Redistributions of source code must retain the above copyright 114ae3a97eSKristof Provost# notice, this list of conditions and the following disclaimer. 124ae3a97eSKristof Provost# 2. Redistributions in binary form must reproduce the above copyright 134ae3a97eSKristof Provost# notice, this list of conditions and the following disclaimer in the 144ae3a97eSKristof Provost# documentation and/or other materials provided with the distribution. 154ae3a97eSKristof Provost# 164ae3a97eSKristof Provost# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 174ae3a97eSKristof Provost# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 184ae3a97eSKristof Provost# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 194ae3a97eSKristof Provost# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 204ae3a97eSKristof Provost# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 214ae3a97eSKristof Provost# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 224ae3a97eSKristof Provost# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 234ae3a97eSKristof Provost# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 244ae3a97eSKristof Provost# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 254ae3a97eSKristof Provost# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 264ae3a97eSKristof Provost# SUCH DAMAGE. 274ae3a97eSKristof Provost# 284ae3a97eSKristof Provost 294ae3a97eSKristof Provostimport argparse 30a26e895fSKristof Provostimport logging 31a26e895fSKristof Provostlogging.getLogger("scapy").setLevel(logging.CRITICAL) 324ae3a97eSKristof Provostimport scapy.all as sp 334ae3a97eSKristof Provostimport sys 344ae3a97eSKristof Provostimport os 354ae3a97eSKristof Provostcurdir = os.path.dirname(os.path.realpath(__file__)) 364ae3a97eSKristof Provostnetpfil_common = curdir + "/../netpfil/common" 374ae3a97eSKristof Provostsys.path.append(netpfil_common) 384ae3a97eSKristof Provostfrom sniffer import Sniffer 394ae3a97eSKristof Provost 404ae3a97eSKristof Provostdef check_stp(args, packet): 414ae3a97eSKristof Provost stp = packet.getlayer(sp.STP) 424ae3a97eSKristof Provost if stp is None: 434ae3a97eSKristof Provost return False 444ae3a97eSKristof Provost 454ae3a97eSKristof Provost if stp.rootmac != "00:0c:29:01:01:01": 464ae3a97eSKristof Provost return False 474ae3a97eSKristof Provost 484ae3a97eSKristof Provost # Ensure we don't get confused by valid STP packets generated by if_bridge 494ae3a97eSKristof Provost if (stp.maxage >= 6 and stp.maxage <= 40) and \ 504ae3a97eSKristof Provost (stp.hellotime >= 1 and stp.hellotime <= 2) and \ 514ae3a97eSKristof Provost (stp.fwddelay >= 4 and stp.fwddelay <= 30): 524ae3a97eSKristof Provost return False 534ae3a97eSKristof Provost 544ae3a97eSKristof Provost print("This packet should have been dropped") 554ae3a97eSKristof Provost print(packet.show()) 564ae3a97eSKristof Provost return True 574ae3a97eSKristof Provost 584ae3a97eSKristof Provostdef invalid_stp(send_if): 594ae3a97eSKristof Provost llc = sp.Ether(src="00:0c:29:0b:91:0a", dst="01:80:C2:00:00:00") \ 604ae3a97eSKristof Provost / sp.LLC() 614ae3a97eSKristof Provost 624ae3a97eSKristof Provost # Bad maxage 634ae3a97eSKristof Provost stp = llc / sp.STP(proto=0, rootid=32768, rootmac="00:0c:29:01:01:01", \ 644ae3a97eSKristof Provost bridgeid=32768, bridgemac="00:0c:29:01:01:01", \ 654ae3a97eSKristof Provost portid=0x8007, maxage=41, hellotime=2, fwddelay=30) 664ae3a97eSKristof Provost sp.sendp(stp, iface=send_if, verbose=False) 674ae3a97eSKristof Provost stp = llc / sp.STP(proto=0, rootid=32768, rootmac="00:0c:29:01:01:01", \ 684ae3a97eSKristof Provost bridgeid=32768, bridgemac="00:0c:29:01:01:01", \ 694ae3a97eSKristof Provost portid=0x8007, maxage=5, hellotime=2, fwddelay=30) 704ae3a97eSKristof Provost sp.sendp(stp, iface=send_if, verbose=False) 714ae3a97eSKristof Provost 724ae3a97eSKristof Provost # Bad hellotime 734ae3a97eSKristof Provost stp = llc / sp.STP(proto=0, rootid=32768, rootmac="00:0c:29:01:01:01", \ 744ae3a97eSKristof Provost bridgeid=32768, bridgemac="00:0c:29:01:01:01", \ 754ae3a97eSKristof Provost portid=0x8007, maxage=40, hellotime=3, fwddelay=30) 764ae3a97eSKristof Provost sp.sendp(stp, iface=send_if, verbose=False) 774ae3a97eSKristof Provost stp = llc / sp.STP(proto=0, rootid=32768, rootmac="00:0c:29:01:01:01", \ 784ae3a97eSKristof Provost bridgeid=32768, bridgemac="00:0c:29:01:01:01", \ 794ae3a97eSKristof Provost portid=0x8007, maxage=40, hellotime=1, fwddelay=30) 804ae3a97eSKristof Provost sp.sendp(stp, iface=send_if, verbose=False) 814ae3a97eSKristof Provost 824ae3a97eSKristof Provost # Bad fwddelay 834ae3a97eSKristof Provost stp = llc / sp.STP(proto=0, rootid=32768, rootmac="00:0c:29:01:01:01", \ 844ae3a97eSKristof Provost bridgeid=32768, bridgemac="00:0c:29:01:01:01", \ 854ae3a97eSKristof Provost portid=0x8007, maxage=40, hellotime=2, fwddelay=31) 864ae3a97eSKristof Provost sp.sendp(stp, iface=send_if, verbose=False) 874ae3a97eSKristof Provost stp = llc / sp.STP(proto=0, rootid=32768, rootmac="00:0c:29:01:01:01", \ 884ae3a97eSKristof Provost bridgeid=32768, bridgemac="00:0c:29:01:01:01", \ 894ae3a97eSKristof Provost portid=0x8007, maxage=40, hellotime=2, fwddelay=3) 904ae3a97eSKristof Provost sp.sendp(stp, iface=send_if, verbose=False) 914ae3a97eSKristof Provost 924ae3a97eSKristof Provostdef main(): 934ae3a97eSKristof Provost parser = argparse.ArgumentParser("stp.py", 944ae3a97eSKristof Provost description="STP test tool") 954ae3a97eSKristof Provost parser.add_argument('--sendif', nargs=1, 964ae3a97eSKristof Provost required=True, 974ae3a97eSKristof Provost help='The interface through which the packet(s) will be sent') 984ae3a97eSKristof Provost parser.add_argument('--recvif', nargs=1, 994ae3a97eSKristof Provost help='The interface on which to expect the ICMP echo request') 1004ae3a97eSKristof Provost 1014ae3a97eSKristof Provost args = parser.parse_args() 1024ae3a97eSKristof Provost 103*a39dedebSKajetan Staszkiewicz sniffer = Sniffer(args, check_stp, args.recvif[0]) 1044ae3a97eSKristof Provost 1054ae3a97eSKristof Provost invalid_stp(args.sendif[0]) 1064ae3a97eSKristof Provost 1074ae3a97eSKristof Provost sniffer.join() 1084ae3a97eSKristof Provost 1094ae3a97eSKristof Provost # The 'correct' packet is a corrupt STP packet, so it shouldn't turn up. 110*a39dedebSKajetan Staszkiewicz if sniffer.correctPackets: 1114ae3a97eSKristof Provost sys.exit(1) 1124ae3a97eSKristof Provost 1134ae3a97eSKristof Provostif __name__ == '__main__': 1144ae3a97eSKristof Provost main() 115