summaryrefslogtreecommitdiffstats
path: root/src/pre_test.h
blob: 14b444cf21647acbf093f0258df512a74a92f8d8 (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
/*
  Ido Barnea
  Cisco Systems, Inc.
*/

/*
  Copyright (c) 2016-2016 Cisco Systems, Inc.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/

#ifndef __PRE_TEST_H__
#define __PRE_TEST_H__

#include <iostream>
#include <common/Network/Packet/Arp.h>
#include <common/Network/Packet/MacAddress.h>
#include "bp_sim.h"
#include "trex_defs.h"

class CPreTestStats {
 public:
    uint32_t m_rx_arp; // how many ARP packets we received
    uint32_t m_tx_arp; // how many ARP packets we sent

 public:
    void clear() {
        m_rx_arp = 0;
        m_tx_arp = 0;
    }
};

class CPretestOnePortInfo {
    friend class CPretest;
    enum CPretestOnePortInfoStates {
        RESOLVE_NEEDED,
        RESOLVE_NOT_NEEDED,
    };

 public:
    CPretestOnePortInfo();
    ~CPretestOnePortInfo();
    void add_src(uint32_t ip, uint16_t vlan, MacAddress mac);
    void add_dst(uint32_t ip, uint16_t vlan);
    void add_src(uint16_t ip[8], uint16_t vlan, MacAddress mac);
    void add_dst(uint16_t ip[8], uint16_t vlan);
    bool get_mac(uint32_t ip, uint16_t vlan, uint8_t *mac);
    bool get_mac(uint16_t ip[8], uint16_t vlan, uint8_t *mac);
    bool get_mac(COneIPInfo *ip, uint8_t *mac);
    COneIPInfo *get_src(uint16_t vlan, uint8_t ip_ver);
    void set_port_id(uint16_t port_id)  {m_port_id = port_id;}
    void dump(FILE *fd, char *offset);
    bool is_loopback() {return m_is_loopback;}
    CPreTestStats get_stats() {return m_stats;}
    bool resolve_needed();
    void send_grat_arp_all();
    void send_arp_req_all();

 private:
    COneIPv4Info *find_ip(uint32_t ip, uint16_t vlan);
    COneIPv4Info *find_next_hop(uint32_t ip, uint16_t vlan);
    COneIPv6Info *find_ipv6(uint16_t *ip, uint16_t vlan);
    bool get_mac(COneIPInfo *ip, uint16_t vlan, uint8_t *mac, uint8_t ip_ver);

 private:
    bool m_is_loopback;
    CPretestOnePortInfoStates m_state;
    CPreTestStats m_stats;
    uint16_t m_port_id;
    std::vector<COneIPInfo *> m_src_info;
    std::vector<COneIPInfo *> m_dst_info;
};

class CPretest {
 public:
    CPretest(uint16_t max_ports) {
        m_max_ports = max_ports;
        for (int i =0; i < max_ports; i++) {
            m_port_info[i].set_port_id(i);
        }
    }
    void add_ip(uint16_t port, uint32_t ip, uint16_t vlan, MacAddress src_mac);
    void add_ip(uint16_t port, uint32_t ip, MacAddress src_mac);
    void add_next_hop(uint16_t port, uint32_t ip, uint16_t vlan);
    void add_next_hop(uint16_t port, uint32_t ip);
    void add_ip(uint16_t port, uint16_t ip[8], uint16_t vlan, MacAddress src_mac);
    void add_ip(uint16_t port, uint16_t ip[8], MacAddress src_mac);
    void add_next_hop(uint16_t port, uint16_t ip[8], uint16_t vlan);
    void add_next_hop(uint16_t port, uint16_t ip[8]);
    bool get_mac(uint16_t port, uint32_t ip, uint16_t vlan, uint8_t *mac);
    bool get_mac(uint16_t port, uint16_t ip[8], uint16_t vlan, uint8_t *mac);
    CPreTestStats get_stats(uint16_t port_id);
    bool is_loopback(uint16_t port);
    bool resolve_all();
    void send_arp_req_all();
    void send_grat_arp_all();
    bool is_arp(const uint8_t *p, uint16_t pkt_size, ArpHdr *&arp, uint16_t &vlan_tag);
    void get_results(CManyIPInfo &resolved_ips);
    void dump(FILE *fd);
    void test();

 private:
    int handle_rx(int port, int queue_id);

 private:
    CPretestOnePortInfo m_port_info[TREX_MAX_PORTS];
    uint16_t m_max_ports;
};

#endif