summaryrefslogtreecommitdiffstats
path: root/src/utl_ip.h
blob: bab92c0fe079da12583d4e30feb82e717d2694e6 (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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#ifndef UTL_IP_H
#define UTL_IP_H
/*
 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.
*/
#include <map>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "common/basic_utils.h"
#include "common/Network/Packet/CPktCmn.h"
#include "common/Network/Packet/MacAddress.h"

/* IP address, last 32-bits of IPv6 remaps IPv4 */
typedef struct {
    uint16_t v6[6];  /* First 96-bits of IPv6 */
    uint32_t v4;  /* Last 32-bits IPv6 overloads v4 */
} ipaddr_t;

// Routine to create IPv4 address string
inline int ip_to_str(uint32_t ip,char * str) {
    uint32_t ipv4 = PKT_HTONL(ip);
    inet_ntop(AF_INET, (const char *)&ipv4, str, INET_ADDRSTRLEN);
    return(strlen(str));
}

inline std::string ip_to_str(uint32_t ip) {
    char tmp[INET_ADDRSTRLEN];
    ip_to_str(ip, tmp);
    return tmp;
}

// Routine to create IPv6 address string
inline int ipv6_to_str(ipaddr_t *ip, char * str) {
    int idx=0;
    uint16_t ipv6[8];
    for (uint8_t i=0; i<6; i++) {
        ipv6[i] = PKT_HTONS(ip->v6[i]);
    }
    uint32_t ipv4 = PKT_HTONL(ip->v4);
    ipv6[6] = ipv4 & 0xffff;
    ipv6[7] = ipv4 >> 16;

    str[idx++] = '[';
    inet_ntop(AF_INET6, (const char *)&ipv6, &str[1], INET6_ADDRSTRLEN);
    idx = strlen(str);
    str[idx++] = ']';
    str[idx] = 0;
    return(idx);
}

inline std::string ip_to_str(uint8_t *ip) {
    char tmp[INET6_ADDRSTRLEN];
    ipv6_to_str((ipaddr_t *)ip, tmp);
    return tmp;
}

class CIpVlan {
    // to be able to use this in map
    friend bool operator<(const CIpVlan& l, const CIpVlan& r) {
        if (l.get_ip() == r.get_ip()) {
            return l.get_vlan() < r.get_vlan();
        } else {
            return l.get_ip() < r.get_ip();
        }
    }

 public:
    CIpVlan(uint32_t ip, uint16_t vlan) {
        m_ip = ip;
        m_vlan = vlan;
    }
    uint16_t get_vlan() const {return m_vlan;}
    void set_vlan(uint16_t vlan) {m_vlan = vlan;}
    uint16_t get_ip() const {return m_ip;}
    void set_ip(uint32_t ip) {m_ip = ip;}

 private:
    uint32_t m_ip;
    uint16_t m_vlan;
};


class COneIPInfo {
 public:
    enum {
        IP4_VER=4,
        IP6_VER=6,
    } COneIPInfo_ip_types;

 public:
    virtual ~COneIPInfo() {}
    virtual void get_mac(uint8_t *mac) const {
        m_mac.copyToArray(mac);
    }
    virtual void set_mac(uint8_t *mac) {
        m_mac.set(mac);
    }
    uint16_t get_vlan() const {return m_vlan;}
    uint16_t get_port() const {return m_port;}
    void set_port(uint8_t port) {m_port = port;}
    virtual void dump(FILE *fd) const {
        dump(fd, "");
    }
    virtual void dump(FILE *fd, const char *offset) const;
    virtual uint8_t ip_ver() const {return 0;}
    virtual uint32_t get_arp_req_len() const=0;
    virtual uint32_t get_grat_arp_len() const=0;
    virtual void fill_arp_req_buf(uint8_t *p, uint16_t port_id, COneIPInfo *sip)=0;
    virtual void fill_grat_arp_buf(uint8_t *p)=0;
    virtual bool resolve_needed() const;

 protected:
    COneIPInfo(uint16_t vlan, MacAddress mac, uint8_t port) : m_mac(mac) {
        m_vlan = vlan;
        m_port = port;
    }
    COneIPInfo(uint16_t vlan, MacAddress mac) : COneIPInfo(vlan, mac, UINT8_MAX) {
    }
    virtual const void get_ip_str(char str[100]) const {
        snprintf(str, 4, "Bad");
    }

 protected:
    uint8_t    m_port;
    uint16_t   m_vlan;
    MacAddress m_mac;
};

class COneIPv4Info : public COneIPInfo {
    friend bool operator== (const COneIPv4Info& lhs, const COneIPv4Info& rhs);

 public:
    COneIPv4Info(uint32_t ip, uint16_t vlan, MacAddress mac) : COneIPInfo(vlan, mac) {
        m_ip = ip;
    }
    COneIPv4Info(uint32_t ip, uint16_t vlan) : COneIPv4Info (ip, vlan, MacAddress()) {
    }
    COneIPv4Info(uint32_t ip, uint16_t vlan, MacAddress mac, uint8_t port) : COneIPInfo(vlan, mac, port) {
        m_ip = ip;
    }
    ~COneIPv4Info() {};
    uint32_t get_ip() const {return m_ip;}
    virtual uint8_t ip_ver() const {return IP4_VER;}
    virtual uint32_t get_arp_req_len() const {return 60;}
    virtual uint32_t get_grat_arp_len() const {return 60;}
    virtual void fill_arp_req_buf(uint8_t *p, uint16_t port_id, COneIPInfo *sip);
    virtual void fill_grat_arp_buf(uint8_t *p);

 private:
    virtual const void get_ip_str(char str[100]) const {
        ip_to_str(m_ip, str);
    };
    uint32_t m_ip;
};

inline bool operator== (const COneIPv4Info& lhs, const COneIPv4Info& rhs) {
    if (lhs.m_vlan != rhs.m_vlan)
        return false;

    if (lhs.m_ip != rhs.m_ip)
        return false;

    return true;
}

inline bool operator!= (const COneIPv4Info& lhs, const COneIPv4Info& rhs){ return !(lhs == rhs); }

class COneIPv6Info : public COneIPInfo {
    friend bool operator== (const COneIPv6Info& lhs, const COneIPv6Info& rhs);

 public:
    COneIPv6Info(uint16_t ip[8], uint16_t vlan, MacAddress mac) : COneIPInfo(vlan, mac) {
        memcpy(m_ip, ip, sizeof(m_ip));
    }

    COneIPv6Info(uint16_t ip[8], uint16_t vlan) : COneIPv6Info(ip, vlan, MacAddress()){
    }

    COneIPv6Info(uint16_t ip[8], uint16_t vlan, MacAddress mac, uint8_t port) : COneIPInfo(vlan, mac, port) {
        memcpy(m_ip, ip, sizeof(m_ip));
    }
    ~COneIPv6Info() {}

    const uint8_t *get_ipv6() {return (uint8_t *)m_ip;}
    virtual uint8_t ip_ver() const {return IP6_VER;}
    virtual uint32_t get_arp_req_len() const {return 100; /* ??? put correct number for ipv6*/}
    virtual uint32_t get_grat_arp_len() const {return 100; /* ??? put correct number for ipv6*/}
    virtual void fill_arp_req_buf(uint8_t *p, uint16_t port_id, COneIPInfo *sip);
    virtual void fill_grat_arp_buf(uint8_t *p);

 private:
    virtual const void get_ip_str(char str[100]) {
        ipv6_to_str((ipaddr_t *)m_ip, str);
    }
    uint16_t m_ip[8];
};

inline bool operator== (const COneIPv6Info& lhs, const COneIPv6Info& rhs) {
    if (lhs.m_vlan != rhs.m_vlan)
        return false;

    if (memcmp(&lhs.m_ip, &rhs.m_ip, sizeof(rhs.m_ip)))
        return false;

    return true;
}

inline bool operator!= (const COneIPv6Info& lhs, const COneIPv6Info& rhs){ return !(lhs == rhs); }

typedef std::map<CIpVlan, COneIPv4Info> ip_vlan_to_many_ip_t;
typedef std::map<CIpVlan, COneIPv4Info>::const_iterator ip_vlan_to_many_ip_iter_t;
typedef std::map<std::pair<uint16_t[8], uint16_t>, COneIPv6Info> ipv6_vlan_to_many_ipv6_t;

class CManyIPInfo {
 public:
    CManyIPInfo () {
        m_iter_initiated = false;
    }
    void insert(const COneIPv4Info &ip_info);
    bool lookup(uint32_t ip, uint16_t vlan, MacAddress &ret_mac) const;
    bool exists(uint32_t ip, uint16_t vlan = 0) const;
    void clear();
    
    void dump(FILE *fd);
    uint32_t size() { return m_ipv4_resolve.size() + m_ipv6_resolve.size();}
    const COneIPInfo *get_first();
    const COneIPInfo *get_next();
    const COneIPInfo *get_next_loop() {
        const COneIPInfo *ip_info = get_next();
        return (ip_info ? ip_info : get_next());
    }
    
    CManyIPInfo& operator = (const CManyIPInfo &rhs) {
        m_ipv4_resolve = rhs.m_ipv4_resolve;
        m_ipv6_resolve = rhs.m_ipv6_resolve;
        
        m_iter_initiated = false;
        return (*this);
    }
    
 private:
    ip_vlan_to_many_ip_t      m_ipv4_resolve;
    ipv6_vlan_to_many_ipv6_t  m_ipv6_resolve;
    
    ip_vlan_to_many_ip_iter_t m_ipv4_iter;
    
    bool m_iter_initiated;

};


#endif