summaryrefslogtreecommitdiffstats
path: root/src/flow_stat_parser.h
blob: 51816e1a88149d41eb74df0c8a600e4152db78b1 (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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/*
  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 __FLOW_STAT_PARSER_H__
#define __FLOW_STAT_PARSER_H__

#include <arpa/inet.h>
#include "common/Network/Packet/IPHeader.h"
#include "common/Network/Packet/IPv6Header.h"
#include "common/Network/Packet/TcpHeader.h"
#include "mbuf.h"

// Basic flow stat parser. Relevant for xl710/x710/x350 cards
class CFlowStatParser {
    friend class CFlowStatParserTest;
 public:
    virtual ~CFlowStatParser() {}
    virtual void reset();
    virtual int parse(uint8_t *pkt, uint16_t len);
    virtual bool is_stat_supported() {return m_stat_supported == true;}
    virtual int get_ip_id(uint32_t &ip_id);
    virtual int set_ip_id(uint32_t ip_id);
    virtual int get_l3_proto(uint16_t &proto);
    virtual int get_l4_proto(uint8_t &proto);
    virtual int get_payload_len(uint8_t *p, uint16_t len, uint16_t &payload_len);
    virtual uint16_t get_pkt_size();
    virtual uint8_t get_ttl();
    uint8_t *get_l3() {
        if (m_ipv4)
            return (uint8_t *)m_ipv4;
        else
            return (uint8_t *)m_ipv6;
    }
    uint8_t * get_l4() {return m_l4;}

    inline bool IsNatInfoPkt(bool &first) {
        if (! m_ipv4 ) {
            return false;
        }

        if (m_l4_proto == IPPROTO_TCP) {
            if ((m_l4 + TCP_HEADER_LEN) > (uint8_t *)m_ipv4 + get_pkt_size()) {
                return false;
            }
            // If we are here, relevant fields from tcp header are inside the packet boundaries
            // We want to handle SYN and SYN+ACK packets
            TCPHeader *tcp = (TCPHeader *)m_l4;
            if (! tcp->getSynFlag())
                return false;

            if (! tcp->getAckFlag()) {
                first = true;
            } else {
                first = false;
            }
            return true;
        } else {
            if ((m_ipv4->getId() & 0x8000) != 0) {
                first = true;
                return true;
            } else {
                return false;
            }
        }
    }

 private:
    char *create_test_pkt(int ip_ver, uint16_t l4_proto, uint8_t ttl
                          , uint32_t ip_id, uint16_t flags, int &pkt_size);

 protected:
    uint8_t *m_start;
    uint16_t m_len;
    IPHeader *m_ipv4;
    IPv6Header *m_ipv6;
    uint8_t *m_l4;
    bool m_stat_supported;
    uint8_t m_l4_proto;
    uint8_t m_vlan_offset;
};

// relevant for 82599 card
class C82599Parser : public CFlowStatParser {
 public:
    C82599Parser(bool vlan_supported) {m_vlan_supported = vlan_supported;}
    ~C82599Parser() {}
    int parse(uint8_t *pkt, uint16_t len);

 private:
    bool m_vlan_supported;
};

class CPassAllParser : public CFlowStatParser {
 public:
    virtual int parse(uint8_t *pkt, uint16_t len);
    virtual bool is_stat_supported() {return true;}
    virtual int get_ip_id(uint32_t &ip_id) { ip_id = 0; return 0;}
    virtual int set_ip_id(uint32_t ip_id){return 0;}
    virtual int get_l3_proto(uint16_t &proto){proto = 0; return 0;}
    virtual int get_l4_proto(uint8_t &proto) {proto = 0; return 0;}
    virtual int get_payload_len(uint8_t *p, uint16_t len, uint16_t &payload_len) {payload_len = m_len; return 0;}
};

// Used for latency statefull packets. Need to be merged with above parser
class CSimplePacketParser {
 public:
    CSimplePacketParser(rte_mbuf_t * m){
        m_m = m;
        m_l4 = NULL;
    }
    bool Parse();

    // Check if this packet contains NAT info in TCP ack
    // first - set to true if this is the first packet of the flow. false otherwise.
    //         relevant only if return value is true
    inline bool IsNatInfoPkt(bool &first) {
        if (! m_ipv4 ) {
            return false;
        }

        if (m_ipv4->getProtocol() == IPPROTO_TCP) {
            if (! m_l4 || (m_l4 - rte_pktmbuf_mtod(m_m, uint8_t*) + TCP_HEADER_LEN) > m_m->data_len) {
                return false;
            }
            // If we are here, relevant fields from tcp header are inside the packet boundaries
            // We want to handle SYN and SYN+ACK packets
            TCPHeader *tcp = (TCPHeader *)m_l4;
            if (! tcp->getSynFlag())
                return false;

            if (! tcp->getAckFlag()) {
                first = true;
            } else {
                first = false;
            }
            return true;
        } else {
            if ((m_ipv4->getId() & 0x8000) != 0) {
                first = true;
                return true;
            } else {
                return false;
            }
        }
    }

 public:
    IPHeader *      m_ipv4;
    IPv6Header *    m_ipv6;
    uint8_t         m_protocol;
    uint16_t        m_vlan_offset;
    uint8_t *       m_l4;
 private:
    rte_mbuf_t *    m_m;
};

class CFlowStatParserTest {
    enum {
        P_OK = 0x1,
        P_BAD = 0x2,
        P82599_OK = 0x4,
        P82599_BAD = 0x8,
        P82599_VLAN_OK = 0x10,
        P82599_VLAN_BAD = 0x20,
    };

 public:
    int test();

 private:
    int test_one_pkt(const char *name, uint16_t ether_type, uint8_t l4_proto, bool is_vlan, uint16_t verify_flags);
    int verify_pkt(uint8_t *p, uint16_t pkt_size, uint16_t payload_len, uint32_t ip_id, uint8_t l4_proto, uint16_t flags);
    int verify_pkt_one_parser(uint8_t * p, uint16_t pkt_size, uint16_t payload_len, uint32_t ip_id, uint8_t l4_proto
                              , CFlowStatParser &parser, bool sup_pkt);
};

#endif