summaryrefslogtreecommitdiffstats
path: root/test/test_lisp.py
blob: cfe8e0af65db4bf5fffbe9bf1acd8fcbcc4dd9d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#!/usr/bin/env python
import unittest

from scapy.packet import Raw
from scapy.layers.inet import IP, UDP, Ether
from py_lispnetworking.lisp import LISP_GPE_Header

from util import ppp, ForeignAddressFactory
from framework import VppTestCase, VppTestRunner
from lisp import *


class Driver(object):

    config_order = ['locator-sets',
                    'locators',
                    'local-mappings',
                    'remote-mappings',
                    'adjacencies']

    """ Basic class for data driven testing """
    def __init__(self, test, test_cases):
        self._test_cases = test_cases
        self._test = test

    @property
    def test_cases(self):
        return self._test_cases

    @property
    def test(self):
        return self._test

    def create_packet(self, src_if, dst_if, deid, payload=''):
        """
        Create IPv4 packet

        param: src_if
        param: dst_if
        """
        packet = (Ether(dst=src_if.local_mac, src=src_if.remote_mac) /
                  IP(src=src_if.remote_ip4, dst=deid) /
                  Raw(payload))
        return packet

    @abstractmethod
    def run(self):
        """ testing procedure """
        pass


class SimpleDriver(Driver):
    """ Implements simple test procedure """
    def __init__(self, test, test_cases):
        super(SimpleDriver, self).__init__(test, test_cases)

    def verify_capture(self, src_loc, dst_loc, capture):
        """
        Verify captured packet

        :param src_loc: source locator address
        :param dst_loc: destination locator address
        :param capture: list of captured packets
        """
        self.test.assertEqual(len(capture), 1, "Unexpected number of "
                              "packets! Expected 1 but {} received"
                              .format(len(capture)))
        packet = capture[0]
        try:
            ip_hdr = packet[IP]
            # assert the values match
            self.test.assertEqual(ip_hdr.src, src_loc, "IP source address")
            self.test.assertEqual(ip_hdr.dst, dst_loc,
                                  "IP destination address")
            gpe_hdr = packet[LISP_GPE_Header]
            self.test.assertEqual(gpe_hdr.next_proto, 1,
                                  "next_proto is not ipv4!")
            ih = gpe_hdr[IP]
            self.test.assertEqual(ih.src, self.test.pg0.remote_ip4,
                                  "unexpected source EID!")
            self.test.assertEqual(ih.dst, self.test.deid_ip4,
                                  "unexpected dest EID!")
        except:
            self.test.logger.error(ppp("Unexpected or invalid packet:",
                                   packet))
            raise

    def configure_tc(self, tc):
        for config_item in self.config_order:
            for vpp_object in tc[config_item]:
                vpp_object.add_vpp_config()

    def run(self, dest):
        """ Send traffic for each test case and verify that it
            is encapsulated """
        for tc in enumerate(self.test_cases):
            self.test.logger.info('Running {}'.format(tc[1]['name']))
            self.configure_tc(tc[1])

            packet = self.create_packet(self.test.pg0, self.test.pg1, dest,
                                        'data')
            self.test.pg0.add_stream(packet)
            self.test.pg0.enable_capture()
            self.test.pg1.enable_capture()
            self.test.pg_start()
            capture = self.test.pg1.get_capture(1)
            self.verify_capture(self.test.pg1.local_ip4,
                                self.test.pg1.remote_ip4, capture)
            self.test.pg0.assert_nothing_captured()


class TestLisp(VppTestCase):
    """ Basic LISP test """

    @classmethod
    def setUpClass(cls):
        super(TestLisp, cls).setUpClass()
        cls.faf = ForeignAddressFactory()
        cls.create_pg_interfaces(range(2))  # create pg0 and pg1
        for i in cls.pg_interfaces:
            i.admin_up()  # put the interface upsrc_if
            i.config_ip4()  # configure IPv4 address on the interface
            i.resolve_arp()  # resolve ARP, so that we know VPP MAC

    def setUp(self):
        super(TestLisp, self).setUp()
        self.vapi.lisp_enable_disable(is_enabled=1)

    def test_lisp_basic_encap(self):
        """Test case for basic encapsulation"""

        self.deid_ip4_net = self.faf.net
        self.deid_ip4 = self.faf.get_ip4()
        self.seid_ip4 = '{}/{}'.format(self.pg0.local_ip4, 32)
        self.rloc_ip4 = self.pg1.remote_ip4n

        test_cases = [
            {
                'name': 'basic ip4 over ip4',
                'locator-sets': [VppLispLocatorSet(self, 'ls-4o4')],
                'locators': [
                    VppLispLocator(self, self.pg1.sw_if_index, 'ls-4o4')
                ],
                'local-mappings': [
                    VppLocalMapping(self, self.seid_ip4, 'ls-4o4')
                ],
                'remote-mappings': [
                    VppRemoteMapping(self, self.deid_ip4_net,
                                     [{
                                         "is_ip4": 1,
                                         "priority": 1,
                                         "weight": 1,
                                         "addr": self.rloc_ip4
                                     }])
                ],
                'adjacencies': [
                    VppLispAdjacency(self, self.seid_ip4, self.deid_ip4_net)
                ]
            }
        ]
        self.test_driver = SimpleDriver(self, test_cases)
        self.test_driver.run(self.deid_ip4)


if __name__ == '__main__':
    unittest.main(testRunner=VppTestRunner)
an class="n">adl_input_node.index); return 0; } /* *INDENT-OFF* */ VLIB_INIT_FUNCTION (adl_init) = { .runs_after = VLIB_INITS ("ip4_allowlist_init", "ip6_allowlist_init"), }; /* *INDENT-ON* */ /* *INDENT-OFF* */ VNET_FEATURE_INIT (adl, static) = { .arc_name = "device-input", .node_name = "adl-input", .runs_before = VNET_FEATURES ("ethernet-input"), }; /* *INDENT-ON */ int adl_interface_enable_disable (u32 sw_if_index, int enable_disable) { /* * Redirect pkts from the driver to the adl node. */ vnet_feature_enable_disable ("device-input", "adl-input", sw_if_index, enable_disable, 0, 0); return 0; } static clib_error_t * adl_enable_disable_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { adl_main_t * cm = &adl_main; u32 sw_if_index = ~0; int enable_disable = 1; int rv; while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) { if (unformat (input, "disable")) enable_disable = 0; else if (unformat (input, "%U", unformat_vnet_sw_interface, cm->vnet_main, &sw_if_index)) ; else break; } if (sw_if_index == ~0) return clib_error_return (0, "Please specify an interface..."); rv = adl_interface_enable_disable (sw_if_index, enable_disable); switch(rv) { case 0: break; case VNET_API_ERROR_INVALID_SW_IF_INDEX: return clib_error_return (0, "Invalid interface, only works on physical ports"); break; case VNET_API_ERROR_UNIMPLEMENTED: return clib_error_return (0, "Device driver doesn't support redirection"); break; default: return clib_error_return (0, "adl_interface_enable_disable returned %d", rv); } return 0; } VLIB_CLI_COMMAND (adl_interface_command, static) = { .path = "adl interface", .short_help = "adl interface <interface-name> [disable]", .function = adl_enable_disable_command_fn, }; int adl_allowlist_enable_disable (adl_allowlist_enable_disable_args_t *a) { adl_main_t * cm = &adl_main; vlib_main_t * vm = cm->vlib_main; ip4_main_t * im4 = &ip4_main; ip6_main_t * im6 = &ip6_main; int address_family; int is_add; adl_config_main_t * acm; u32 next_to_add_del = 0; uword * p; u32 fib_index = 0; u32 ci; adl_config_data_t _data, *data=&_data; /* * Enable / disable allowlist processing on the specified interface */ for (address_family = VNET_ADL_IP4; address_family < VNET_N_ADLS; address_family++) { acm = &cm->adl_config_mains[address_family]; switch(address_family) { case VNET_ADL_IP4: is_add = (a->ip4 != 0); next_to_add_del = IP4_RX_ADL_ALLOWLIST; /* configured opaque data must match, or no supper */ p = hash_get (im4->fib_index_by_table_id, a->fib_id); if (p) fib_index = p[0]; else { if (is_add) return VNET_API_ERROR_NO_SUCH_FIB; else continue; } break; case VNET_ADL_IP6: is_add = (a->ip6 != 0); next_to_add_del = IP6_RX_ADL_ALLOWLIST; p = hash_get (im6->fib_index_by_table_id, a->fib_id); if (p) fib_index = p[0]; else { if (is_add) return VNET_API_ERROR_NO_SUCH_FIB; else continue; } break; case VNET_ADL_DEFAULT: is_add = (a->default_adl != 0); next_to_add_del = DEFAULT_RX_ADL_ALLOWLIST; break; default: clib_warning ("BUG"); } ci = acm->config_index_by_sw_if_index[a->sw_if_index]; data->fib_index = fib_index; if (is_add) ci = vnet_config_add_feature (vm, &acm->config_main, ci, next_to_add_del, data, sizeof (*data)); else { /* If the feature was actually configured... */ if (ci != ~0) { /* delete it */ ci = vnet_config_del_feature (vm, &acm->config_main, ci, next_to_add_del, data, sizeof (*data)); } } acm->config_index_by_sw_if_index[a->sw_if_index] = ci; } return 0; } static clib_error_t * adl_allowlist_enable_disable_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { adl_main_t * cm = &adl_main; u32 sw_if_index = ~0; u8 ip4 = 0; u8 ip6 = 0; u8 default_adl = 0; u32 fib_id = 0; int rv; adl_allowlist_enable_disable_args_t _a, * a = &_a; while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) { if (unformat (input, "ip4")) ip4 = 1; else if (unformat (input, "ip6")) ip6 = 1; else if (unformat (input, "default")) default_adl = 1; else if (unformat (input, "%U", unformat_vnet_sw_interface, cm->vnet_main, &sw_if_index)) ; else if (unformat (input, "fib-id %d", &fib_id)) ; else break; } if (sw_if_index == ~0) return clib_error_return (0, "Please specify an interface..."); a->sw_if_index = sw_if_index; a->ip4 = ip4; a->ip6 = ip6; a->default_adl = default_adl; a->fib_id = fib_id; rv = adl_allowlist_enable_disable (a); switch(rv) { case 0: break; case VNET_API_ERROR_INVALID_SW_IF_INDEX: return clib_error_return (0, "Invalid interface, only works on physical ports"); break; case VNET_API_ERROR_NO_SUCH_FIB: return clib_error_return (0, "Invalid fib"); break; case VNET_API_ERROR_UNIMPLEMENTED: return clib_error_return (0, "Device driver doesn't support redirection"); break; default: return clib_error_return (0, "adl_allowlist_enable_disable returned %d", rv); } return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (adl_allowlist_command, static) = { .path = "adl allowlist", .short_help = "adl allowlist <interface-name> [ip4][ip6][default][fib-id <NN>][disable]", .function = adl_allowlist_enable_disable_command_fn, }; /* *INDENT-ON* */ /* *INDENT-OFF* */ VLIB_PLUGIN_REGISTER () = { .version = VPP_BUILD_VER, .description = "Allow/deny list plugin", }; /* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */