summaryrefslogtreecommitdiffstats
path: root/test/vpp_pg_interface.py
blob: fc4080d2ef601da4f045746ea34f8668bd6b0891 (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
import os
from logging import error
from scapy.utils import wrpcap, rdpcap
from vpp_interface import VppInterface


class VppPGInterface(VppInterface):
    """
    VPP packet-generator interface
    """

    @property
    def pg_index(self):
        """packet-generator interface index assigned by VPP"""
        return self._pg_index

    @property
    def out_path(self):
        """pcap file path - captured packets"""
        return self._out_path

    @property
    def in_path(self):
        """ pcap file path - injected packets"""
        return self._in_path

    @property
    def capture_cli(self):
        """CLI string to start capture on this interface"""
        return self._capture_cli

    @property
    def cap_name(self):
        """capture name for this interface"""
        return self._cap_name

    @property
    def input_cli(self):
        """CLI string to load the injected packets"""
        return self._input_cli

    def post_init_setup(self):
        """ Perform post-init setup for super class and add our own setup """
        super(VppPGInterface, self).post_init_setup()
        self._out_path = self.test.tempdir + "/pg%u_out.pcap" % self.sw_if_index
        self._in_path = self.test.tempdir + "/pg%u_in.pcap" % self.sw_if_index
        self._capture_cli = "packet-generator capture pg%u pcap %s" % (
            self.pg_index, self.out_path)
        self._cap_name = "pcap%u" % self.sw_if_index
        self._input_cli = "packet-generator new pcap %s source pg%u name %s" % (
            self.in_path, self.pg_index, self.cap_name)

    def __init__(self, test, pg_index):
        """ Create VPP packet-generator interface """
        self._pg_index = pg_index
        self._test = test
        r = self.test.vapi.pg_create_interface(self.pg_index)
        self._sw_if_index = r.sw_if_index
        self.post_init_setup()

    def enable_capture(self):
        """ Enable capture on this packet-generator interface"""
        try:
            os.unlink(self.out_path)
        except:
            pass
        # FIXME this should be an API, but no such exists atm
        self.test.vapi.cli(self.capture_cli)

    def add_stream(self, pkts):
        """
        Add a stream of packets to this packet-generator

        :param pkts: iterable packets

        """
        try:
            os.remove(self.in_path)
        except:
            pass
        wrpcap(self.in_path, pkts)
        # FIXME this should be an API, but no such exists atm
        self.test.vapi.cli(self.input_cli)
        self.test.pg_streams.append(self.cap_name)
        self.test.vapi.cli("trace add pg-input %d" % len(pkts))

    def get_capture(self):
        """
        Get captured packets

        :returns: iterable packets
        """
        try:
            output = rdpcap(self.out_path)
        except IOError:  # TODO
            error("File %s does not exist, probably because no"
                  " packets arrived" % self.out_path)
            return []
        return output
s="cp">#define foreach_ipsec_integ_alg \ _(0, NONE, "none") \ _(1, MD5_96, "md5-96") /* RFC2403 */ \ _(2, SHA1_96, "sha1-96") /* RFC2404 */ \ _(3, SHA_256_96, "sha-256-96") /* draft-ietf-ipsec-ciph-sha-256-00 */ \ _(4, SHA_256_128, "sha-256-128") /* RFC4868 */ \ _(5, SHA_384_192, "sha-384-192") /* RFC4868 */ \ _(6, SHA_512_256, "sha-512-256") /* RFC4868 */ \ _(7, AES_GCM_128, "aes-gcm-128") /* RFC4106 */ typedef enum { #define _(v,f,s) IPSEC_INTEG_ALG_##f = v, foreach_ipsec_integ_alg #undef _ IPSEC_INTEG_N_ALG, } ipsec_integ_alg_t; typedef enum { IPSEC_PROTOCOL_AH = 0, IPSEC_PROTOCOL_ESP = 1 } ipsec_protocol_t; typedef struct { u32 id; u32 spi; ipsec_protocol_t protocol; ipsec_crypto_alg_t crypto_alg; u8 crypto_key_len; u8 crypto_key[128]; ipsec_integ_alg_t integ_alg; u8 integ_key_len; u8 integ_key[128]; u8 use_esn; u8 use_anti_replay; u8 is_tunnel; u8 is_tunnel_ip6; ip46_address_t tunnel_src_addr; ip46_address_t tunnel_dst_addr; u32 salt; /* runtime */ u32 seq; u32 seq_hi; u32 last_seq; u32 last_seq_hi; u64 replay_window; /*lifetime data */ u64 total_data_size; } ipsec_sa_t; typedef struct { ip46_address_t start, stop; } ip46_address_range_t; typedef struct { u16 start, stop; } port_range_t; typedef struct { u8 is_add; u8 esn; u8 anti_replay; ip4_address_t local_ip, remote_ip; u32 local_spi; u32 remote_spi; ipsec_crypto_alg_t crypto_alg; u8 local_crypto_key_len; u8 local_crypto_key[128]; u8 remote_crypto_key_len; u8 remote_crypto_key[128]; ipsec_integ_alg_t integ_alg; u8 local_integ_key_len; u8 local_integ_key[128]; u8 remote_integ_key_len; u8 remote_integ_key[128]; } ipsec_add_del_tunnel_args_t; typedef struct { u8 is_add; u32 local_sa_id; u32 remote_sa_id; ip4_address_t local_ip; ip4_address_t remote_ip; } ipsec_add_del_ipsec_gre_tunnel_args_t; typedef enum { IPSEC_IF_SET_KEY_TYPE_NONE, IPSEC_IF_SET_KEY_TYPE_LOCAL_CRYPTO, IPSEC_IF_SET_KEY_TYPE_REMOTE_CRYPTO, IPSEC_IF_SET_KEY_TYPE_LOCAL_INTEG, IPSEC_IF_SET_KEY_TYPE_REMOTE_INTEG, } ipsec_if_set_key_type_t; typedef struct { u32 id; i32 priority; u8 is_outbound; // Selector u8 is_ipv6; ip46_address_range_t laddr; ip46_address_range_t raddr; u8 protocol; port_range_t lport; port_range_t rport; // Policy u8 policy; u32 sa_id; u32 sa_index; // Counter vlib_counter_t counter; } ipsec_policy_t; typedef struct { u32 id; /* pool of policies */ ipsec_policy_t *policies; /* vectors of policy indices */ u32 *ipv4_outbound_policies; u32 *ipv6_outbound_policies; u32 *ipv4_inbound_protect_policy_indices; u32 *ipv4_inbound_policy_discard_and_bypass_indices; u32 *ipv6_inbound_protect_policy_indices; u32 *ipv6_inbound_policy_discard_and_bypass_indices; } ipsec_spd_t; typedef struct { u32 spd_index; } ip4_ipsec_config_t; typedef struct { u32 spd_index; } ip6_ipsec_config_t; typedef struct { u32 input_sa_index; u32 output_sa_index; u32 hw_if_index; } ipsec_tunnel_if_t; typedef struct { i32 (*add_del_sa_sess_cb) (u32 sa_index, u8 is_add); clib_error_t *(*check_support_cb) (ipsec_sa_t * sa); } ipsec_main_callbacks_t; typedef struct { /* pool of tunnel instances */ ipsec_spd_t *spds; ipsec_sa_t *sad; /* pool of tunnel interfaces */ ipsec_tunnel_if_t *tunnel_interfaces; u32 *free_tunnel_if_indices; u32 **empty_buffers; uword *tunnel_index_by_key; /* convenience */ vlib_main_t *vlib_main; vnet_main_t *vnet_main; /* next node indices */ u32 feature_next_node_index[32]; /* hashes */ uword *spd_index_by_spd_id; uword *spd_index_by_sw_if_index; uword *sa_index_by_sa_id; uword *ipsec_if_pool_index_by_key; /* node indeces */ u32 error_drop_node_index; u32 esp_encrypt_node_index; u32 esp_decrypt_node_index; /* next node indeces */ u32 esp_encrypt_next_index; u32 esp_decrypt_next_index; /* callbacks */ ipsec_main_callbacks_t cb; } ipsec_main_t; ipsec_main_t ipsec_main; extern vlib_node_registration_t esp_encrypt_node; extern vlib_node_registration_t esp_decrypt_node; extern vlib_node_registration_t ipsec_if_output_node; extern vlib_node_registration_t ipsec_if_input_node; /* * functions */ int ipsec_set_interface_spd (vlib_main_t * vm, u32 sw_if_index, u32 spd_id, int is_add); int ipsec_add_del_spd (vlib_main_t * vm, u32 spd_id, int is_add); int ipsec_add_del_policy (vlib_main_t * vm, ipsec_policy_t * policy, int is_add); int ipsec_add_del_sa (vlib_main_t * vm, ipsec_sa_t * new_sa, int is_add); int ipsec_set_sa_key (vlib_main_t * vm, ipsec_sa_t * sa_update); u32 ipsec_get_sa_index_by_sa_id (u32 sa_id); u8 *format_ipsec_if_output_trace (u8 * s, va_list * args); u8 *format_ipsec_policy_action (u8 * s, va_list * args); u8 *format_ipsec_crypto_alg (u8 * s, va_list * args); u8 *format_ipsec_integ_alg (u8 * s, va_list * args); u8 *format_ipsec_replay_window (u8 * s, va_list * args); uword unformat_ipsec_policy_action (unformat_input_t * input, va_list * args); uword unformat_ipsec_crypto_alg (unformat_input_t * input, va_list * args); uword unformat_ipsec_integ_alg (unformat_input_t * input, va_list * args); int ipsec_add_del_tunnel_if_internal (vnet_main_t * vnm, ipsec_add_del_tunnel_args_t * args, u32 * sw_if_index); int ipsec_add_del_tunnel_if (ipsec_add_del_tunnel_args_t * args); int ipsec_add_del_ipsec_gre_tunnel (vnet_main_t * vnm, ipsec_add_del_ipsec_gre_tunnel_args_t * args); int ipsec_set_interface_key (vnet_main_t * vnm, u32 hw_if_index, ipsec_if_set_key_type_t type, u8 alg, u8 * key); /* * inline functions */ always_inline void ipsec_alloc_empty_buffers (vlib_main_t * vm, ipsec_main_t * im) { u32 thread_index = vlib_get_thread_index (); uword l = vec_len (im->empty_buffers[thread_index]); uword n_alloc = 0; if (PREDICT_FALSE (l < VLIB_FRAME_SIZE)) { if (!im->empty_buffers[thread_index]) { vec_alloc (im->empty_buffers[thread_index], 2 * VLIB_FRAME_SIZE); } n_alloc = vlib_buffer_alloc (vm, im->empty_buffers[thread_index] + l, 2 * VLIB_FRAME_SIZE - l); _vec_len (im->empty_buffers[thread_index]) = l + n_alloc; } } static_always_inline u32 get_next_output_feature_node_index (vlib_buffer_t * b, vlib_node_runtime_t * nr) { u32 next; u32 sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_TX]; vlib_main_t *vm = vlib_get_main (); vlib_node_t *node = vlib_get_node (vm, nr->node_index); vnet_feature_next (sw_if_index, &next, b); return node->next_nodes[next]; } #endif /* __IPSEC_H__ */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */