summaryrefslogtreecommitdiffstats
path: root/common/VIL/l2l3_stack/lib_arp.h
blob: 9cb0205f960aeb1a58e3fca9223157e530dc90a1 (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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
/*
// Copyright (c) 2017 Intel Corporation
//
// 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 __INCLUDE_LIB_ARP_H__
#define __INCLUDE_LIB_ARP_H__

#include <rte_pipeline.h>
#include "rte_ether.h"
#include "l2_proto.h"
#include "app.h"

#define ND_IPV6_ADDR_SIZE 16	/**< 16 Byte of IPv6 Address. */
#define ND_IPV6_TIMER_EXPIRY 300  /**< in Seconds, Timer for ND IPv6 Expiry */
#define ARP_TIMER_EXPIRY 20	 /**< in Seconds, TIMER for ARP Expiry */
#define TIMER_MILLISECOND 1
#define RTE_LOGTYPE_LIBARP RTE_LOGTYPE_USER1
#define MAX_ND_RT_ENTRY 32
#define MAX_ARP_RT_ENTRY 32
#define NUM_DESC                (get_arp_buf())
#define ARP_BUF_DEFAULT                30000
#define PROBE_TIME             50
#undef L3_STACK_SUPPORT

/**
* A structure for Route table entries of IPv4
*/

struct lib_arp_route_table_entry {
	uint32_t ip;	/**< Ipv4 address*/
	uint32_t mask;	/**< mask */
	uint32_t port;	/**< Physical port */
	uint32_t nh;	/**< next hop */
	uint32_t nh_mask;
};

#define MAX_LOCAL_MAC_ADDRESS	       32
#define MAX_PORTS                      32
struct arp_cache {
        uint32_t nhip[MAX_LOCAL_MAC_ADDRESS];
        struct ether_addr link_hw_laddr[MAX_LOCAL_MAC_ADDRESS];
        uint32_t num_nhip;
};

struct nd_cache {
        uint8_t nhip[MAX_LOCAL_MAC_ADDRESS][16];
        struct ether_addr link_hw_laddr[MAX_LOCAL_MAC_ADDRESS];
        uint32_t num_nhip;
};

/**
* A structure for Route table entires of IPv6
*
*/
struct lib_nd_route_table_entry {
	uint8_t ipv6[16];	/**< Ipv6 address */
	uint8_t depth;		/**< Depth */
	uint32_t port;		/**< Port */
	uint8_t nhipv6[16];	/**< next hop Ipv6 */
};

uint8_t arp_cache_dest_mac_present(uint32_t out_port);
uint8_t nd_cache_dest_mac_present(uint32_t out_port);
extern struct lib_nd_route_table_entry lib_nd_route_table[MAX_ND_RT_ENTRY];
extern struct lib_arp_route_table_entry lib_arp_route_table[MAX_ARP_RT_ENTRY];
extern struct ether_addr *get_local_link_hw_addr(uint8_t out_port, uint32_t nhip);
extern struct ether_addr *get_nd_local_link_hw_addr(uint8_t out_port, uint8_t nhip[]);
extern struct arp_cache arp_local_cache[MAX_PORTS];
extern void prefetch(void);
extern void update_nhip_access(uint8_t);
uint32_t get_arp_buf(void);
uint32_t get_nd_buf(void);

enum {
	ARP_FOUND,
	ARP_NOT_FOUND,
	NH_NOT_FOUND,
};

enum arp_key_type {
	ARP_IPV4,
	ND_IPV6,
};

struct arp_key_ipv4 {
	uint32_t ip;	 /**< IP address */
	uint8_t port_id; /**< Port id */
	uint8_t filler1; /**< filler 1, for better hash key */
	uint8_t filler2; /**< filler 2, for better hash key */
	uint8_t filler3; /**< filler 3, for better hash key */
};

/**
* IPv6
*/
struct nd_key_ipv6 {
	uint8_t ipv6[ND_IPV6_ADDR_SIZE]; /**< 128 Bit of IPv6 Address*/
	uint8_t port_id;		 /**< Port id */
	uint8_t filler1;
	uint8_t filler2;
	uint8_t filler3;
};

/**
* Arp Key
*/
struct arp_key {
	enum arp_key_type type;
	union {
		struct arp_key_ipv4 ipv4;
	} key;	/**< Key of type arp key Ipv4 */
};

/**
* call back function parameter pair remove nd entry
*
*/

struct nd_timer_key {
	uint8_t ipv6[ND_IPV6_ADDR_SIZE];   /**< IPv6 address */
	uint8_t port_id;		 /**< Port id */
} __rte_cache_aligned;

/**
* call back function parameter remove arp entry
*
*/
struct arp_timer_key {
	uint32_t ip;	 /**< Ip address */
	uint8_t port_id; /**< Port id */
} __rte_cache_aligned;

extern uint32_t ARPICMP_DEBUG;

enum {
	INCOMPLETE,
	COMPLETE,
	PROBE,
	STALE
};
#define USED_TIME	5

extern uint32_t NDIPV6_DEBUG;  /**< ND IPv6 */

#define ICMPv6_COMPLETE   1 /**< ICMPv6 entry populated and echo reply recieved. */
#define ICMPv6_INCOMPLETE 0 /**< ICMPv6 entry populated and either awaiting echo reply or stale entry. */
#define STATIC_ARP 1			/**< Static ARP Entry. */
#define DYNAMIC_ARP 0			/**< Dynamic ARP Entry. */
#define STATIC_ND 1			/**< Static ND Entry. */
#define DYNAMIC_ND 0			/**< Dynamic ND Entry. */

/**
* A structure is used to defined the ARP entry data
* This structure is used as a input parameters for entry of ARP data
*/

struct arp_entry_data {
	struct ether_addr eth_addr; /**< ethernet address */
	uint32_t ip;				/**< IP address */
	uint8_t port;				/**< Port */
	uint8_t status;				/**< Status of entry */
	uint8_t mode;				/**< Mode */
	uint8_t retry_count;			/**< retry count for ARP*/
	struct rte_timer *timer;    /**< Timer Associated with ARP*/
	struct arp_timer_key *timer_key;
        rte_rwlock_t queue_lock;    /** queue lock */
	struct rte_mbuf **buf_pkts;
	uint32_t num_pkts;
	uint64_t n_confirmed;
} __attribute__ ((packed));

/**
* A structure is used to defined the table for arp entry data
* This structure is used to maintain the arp entry data
*/

struct table_arp_entry_data {
	uint8_t eth_addr[6];	 /**< Ethernet address */
	uint8_t port;		 /**< port */
	uint8_t status;		 /**< status of entry */
	uint32_t ip;		 /**< Ip address */
} __attribute__ ((packed));

/**
* A structure is used to define the ND entry data for IPV6
* This structure is used as a input parameters  for ND entry data
*/

struct nd_entry_data {
	struct ether_addr eth_addr;		/**< Ethernet address */
	uint8_t port;				/**< port */
	uint8_t status;				/**< statusof the entry */
	uint8_t mode;				/**< Mode */
	uint8_t ipv6[ND_IPV6_ADDR_SIZE];  /**< Ipv6 address */
	uint8_t retry_count;			/**< retry count for ARP*/
	struct rte_timer *timer;		/**< Timer */
	struct nd_timer_key *timer_key;
        rte_rwlock_t queue_lock;    /** queue lock */
	struct rte_mbuf **buf_pkts;
	uint32_t num_pkts;
	uint64_t n_confirmed;
} __attribute__ ((packed));

/**
* A structure is used to define the table for ND entry data
* This structure is used to maintain ND entry data
*
*/

struct table_nd_entry_data {
	uint8_t eth_addr[6];		 /**< Ethernet address */
	uint8_t port;			 /**< Port */
	uint8_t status;			 /**< status of Entry */
	uint8_t ipv6[ND_IPV6_ADDR_SIZE]; /**< IPv6 address */
	struct rte_timer *timer;	 /**< Timer */
} __attribute__ ((packed));

struct arp_data {
	struct lib_arp_route_table_entry
            lib_arp_route_table[MAX_ARP_RT_ENTRY];
	uint8_t lib_arp_route_ent_cnt;
	struct lib_nd_route_table_entry
            lib_nd_route_table[MAX_ARP_RT_ENTRY];
	uint8_t lib_nd_route_ent_cnt;
	struct arp_cache arp_local_cache[MAX_PORTS];
	struct nd_cache nd_local_cache[MAX_PORTS];
	struct ether_addr link_hw_addr[MAX_LOCAL_MAC_ADDRESS];
	uint32_t link_hw_addr_array_idx;
	uint8_t arp_cache_hw_laddr_valid[MAX_LOCAL_MAC_ADDRESS];
	uint8_t nd_cache_hw_laddr_valid[MAX_LOCAL_MAC_ADDRESS];
	uint64_t update_tsc[MAX_LOCAL_MAC_ADDRESS];
} __rte_cache_aligned;

/**
* To get the destination MAC address andnext hop for the ip address  and outgoing port
* @param1 ip addr
* IP address for which MAC address is needed.
* @param2 phy_port
*  Physical Port
* @param3 ether_addr
* pointer to the ether_addr, This gets update with valid MAC addresss
* @Param4 next nhip
* Gets the next hop IP by Ip address and physical port
* @return
* 0 if failure, and 1 if success
*/
struct arp_entry_data *get_dest_mac_addr_port(const uint32_t ipaddr,
				 uint32_t *phy_port, struct ether_addr *hw_addr);

/**
* To get the destination mac address for IPV6 address
* @param ipv6addr
* IPv6 address which need the destination mac adress
* @param Phy_Port
* physical prt
* @param ether_addr
* pointer to the ether_address, This gets update with valid mac address
* @param Nhipv6[]
* Gets the next hop ipv6 address by ipv6 address and physical port
* @return
* 0 if failure, 1 ifsuccess
*/

struct nd_entry_data *get_dest_mac_address_ipv6_port(uint8_t ipv6addr[], uint32_t *phy_port,
					 struct ether_addr *hw_addr,
					 uint8_t nhipv6[]);
int arp_queue_unresolved_packet(struct arp_entry_data * arp_data,
                        struct rte_mbuf * m);
extern void arp_send_buffered_pkts(struct arp_entry_data *ret_arp_data,struct ether_addr *hw_addr, uint8_t port_id);

int nd_queue_unresolved_packet(struct nd_entry_data *nd_data,
                        struct rte_mbuf * m);
extern void nd_send_buffered_pkts(struct nd_entry_data *ret_nd_data,struct ether_addr *hw_addr, uint8_t port_id);

/**
* To get hardware link address
* @param out_port
* out going  port
*/

struct ether_addr *get_link_hw_addr(uint8_t out_port);

/**
* This prints the Arp Table
* @param void
*
*/
void print_arp_table(void);

/**
* This prints the ND table
* @param void
*
*/
void print_nd_table(void);

/**
* This removes arp entry from Table
* @param ipaddr
* Ipv4 address
* @param portid
* Port id
*/
void remove_arp_entry(struct arp_entry_data *ret_arp_data, void *arg);

/**
* Removes ND entry from Nd Table
* @Param ipv6addr[]
* Ipv6 address
* @Param portid
* Port id
*/

void remove_nd_entry_ipv6(struct nd_entry_data *ret_nd_data, void *arg);

/**
* Populate arp entry in arp Table
* @param ether_addr
* Ethernet address
* @param ipaddr
* Ipv4 adress
* @Param portid
* port id
* @Param mode
* Mode
*/
void populate_arp_entry(const struct ether_addr *hw_addr, uint32_t ipaddr,
			uint8_t portid, uint8_t mode);

/**
* Populate ND entry in ND Table
* @param ether_addr
* Ethernet address
* @param ip[]
* Ipv6 adress
* @Param portid
* port id
* @Param mode
* Mode
*/

void populate_nd_entry(const struct ether_addr *hw_addr, uint8_t ip[],
					 uint8_t portid, uint8_t mode);

/**
* To send ARp request
* @Param port_id
* port id
@ Param IP
* Ip address
*/

void request_arp(uint8_t port_id, uint32_t ip);

/**
* TO send echo request
* @param port_id
* Port id
* @Param ip
* Ip address
*/
struct rte_mbuf *request_echo(uint32_t port_id, uint32_t ip);

/**
* To send icmpv6 echo request
* @Param port_id
* Port id
* @Param ipv6
* ipv6 address
*/
struct rte_mbuf *request_icmpv6_echo(uint8_t ipv6[], l2_phy_interface_t *port);

/**
* To request ND
* @Param ipv6
* ipv6 address
* @Param port
* pointer to port
*/
struct rte_mbuf *request_nd(uint8_t ipv6[], l2_phy_interface_t *port);

/**
* To process te ARP and ICMP packets
* @Param Pkt
* Packets to be processed
* @Param pkt_num
* packet number
* @Param portid
* port id
*/
void process_arpicmp_pkt(struct rte_mbuf *pkt, l2_phy_interface_t *port);

/**
* IPv4
* Validate if key-value pair already exists in the hash table for given key - IPv4
* @Param arp_key
* Arp key to validate entry
*/
struct arp_entry_data *retrieve_arp_entry(const struct arp_key_ipv4 arp_key, uint8_t mode);

/**
* ND IPv6
* Validate if key-value pair already exists in the hash table for given key - ND IPv6
* @Param nd_key
* Nd key to validate Nd entry
*/

struct nd_entry_data *retrieve_nd_entry(struct nd_key_ipv6 nd_key, uint8_t mode);

/**
* Setsup Arp Initilization
*/
//void lib_arp_init(void);
void lib_arp_init(struct pipeline_params *params, struct app_params *app);
#if 0
void set_port_to_loadb_map(uint8_t pipeline_num);

/**
* Acts on port_to_loadb_map
*/
uint8_t get_port_to_loadb_map(uint8_t phy_port_id);

void set_phy_inport_map(uint8_t pipeline_num, uint8_t *map);
void set_phy_outport_map(uint8_t pipeline_num, uint8_t *map);

/**
* Acts on lb_outport_id
*/

uint8_t get_loadb_outport_id(uint8_t actual_phy_port);
uint8_t get_vnf_set_num(uint8_t pipeline_num);

void pipelines_port_info(void);
void pipelines_map_info(void);
#endif
/**
* A callback for arp Timer
* @Param rte_timer
* timer pointer
* @Param arg
* arguments to timer
*/
void arp_timer_callback(struct rte_timer *, void *arg);

/**
* A callback for ND timer
* @Param rte_timer
* timer pointer
* @Param arg
* arguments to timer
*/
void nd_timer_callback(struct rte_timer *timer, void *arg);

/**
* To create Arp Table
* @param void
*/
void create_arp_table(void);
/**
* To create ND Table
* @param void
*/
void create_nd_table(void);

/**
* To parse and process the Arp and icmp packets
* @Param pkt
* pkt to process
* @Param pkt_num
* pkt number
* @Param pkt_mask
* packet mask
* @Param port
* pointer to port
*/
void process_arpicmp_pkt_parse(struct rte_mbuf **pkt, uint16_t pkt_num,
						 uint64_t pkt_mask, l2_phy_interface_t *port);

/**
* Sends garp packet
* @Param port
* pointer to port
*/
void send_gratuitous_arp(l2_phy_interface_t *port);
/**
* To set arp debug
* @Param flag
* set 1 unset 0
*/
void set_arpdebug(int flag);
/**
* To set timer for arp entry
* @Param timeout_val
* timer val for arp entry
*/
void set_arptimeout(uint32_t timeout_val);
/**
* To get nexthop for ipv4
* @Param ipv4
* ipv4 address
* @Param
* timeout_val to set
*/
uint32_t get_nh(uint32_t, uint32_t *, struct ether_addr *addr);
/**
* To get nexthop for ipv6
* @Param ipv6
* ipv6 address
* @Param port
* pointer to port
* @Param nhipv6
* next hop ipv6
*/
void get_nh_ipv6(uint8_t ipv6[], uint32_t *port, uint8_t nhipv6[], struct ether_addr *hw_addr);
#endif