FD.io VPP  v20.09-64-g4f7b92f0a
Vector Packet Processing
ip_neighbor.h
Go to the documentation of this file.
1 /*
2  * ip_neighboor.h: ip neighbor generic services
3  *
4  * Copyright (c) 2018 Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #ifndef __INCLUDE_IP_NEIGHBOR_H__
19 #define __INCLUDE_IP_NEIGHBOR_H__
20 
22 
23 #include <vnet/adj/adj.h>
24 
25 
26 /*****
27  * APIs external modules can invoke on the neighbor subsystem
28  */
29 
31 extern int ip_neighbor_add (const ip46_address_t * ip,
33  const mac_address_t * mac,
36 extern int ip_neighbor_del (const ip46_address_t * ip,
38 
39 extern int ip_neighbor_config (ip46_type_t type, u32 limit, u32 age,
40  bool recycle);
41 
43 
44 typedef walk_rc_t (*ip_neighbor_walk_cb_t) (index_t ipni, void *ctx);
45 extern void ip_neighbor_walk (ip46_type_t type,
47  ip_neighbor_walk_cb_t fn, void *ctx);
48 
49 extern const ip46_address_t *ip_neighbor_get_ip (const ip_neighbor_t * ipn);
50 extern const mac_address_t *ip_neighbor_get_mac (const ip_neighbor_t * ipn);
51 extern const u32 ip_neighbor_get_sw_if_index (const ip_neighbor_t * ipn);
52 
53 extern void ip_neighbor_learn (const ip_neighbor_learn_t * l);
54 
55 extern void ip_neighbor_update (vnet_main_t * vnm, adj_index_t ai);
56 
57 extern void ip_neighbor_advertise (vlib_main_t * vm,
58  ip46_type_t tyoe,
59  const ip46_address_t * addr,
61 extern void ip_neighbor_probe (const ip_adjacency_t * adj);
62 extern void ip_neighbor_probe_dst (const ip_adjacency_t * adj,
63  const ip46_address_t * ip);
64 
65 extern void ip_neighbor_mark (ip46_type_t type);
66 extern void ip_neighbor_sweep (ip46_type_t type);
67 
68 /**
69  * From the watcher to the API to publish a new neighbor
70  */
72 
73 /**
74  * The set of function that vnet requires from the IP neighbour module.
75  * Note that an implementation of these functions will not exist
76  * if the ip-neighbour plugin is not loaded. so check the error codes!
77  */
78 extern int ip4_neighbor_proxy_add (u32 fib_index,
79  const ip4_address_t * start,
80  const ip4_address_t * end);
81 extern int ip4_neighbor_proxy_delete (u32 fib_index,
82  const ip4_address_t * start,
83  const ip4_address_t * end);
87  const ip6_address_t * addr);
89  const ip6_address_t * addr);
90 
91 /**
92  * neighbor protocol implementation registration functions
93  * this are provided by ARP and IP-ND
94  */
95 typedef int (*ip4_neighbor_proxy_addr_t) (u32 fib_index,
96  const ip4_address_t * start,
97  const ip4_address_t * end);
100  const ip6_address_t * addr);
101 
102 /**
103  * Virtual function Table for neighbor protocol implementations to register
104  */
105 typedef struct ip_neighbor_vft_t_
106 {
114 
116  const ip_neighbor_vft_t * vft);
117 
118 
119 #endif /* __INCLUDE_IP_NEIGHBOR_H__ */
120 
121 /*
122  * fd.io coding-style-patch-verification: ON
123  *
124  * Local Variables:
125  * eval: (c-set-style "gnu")
126  * End:
127  */
void ip_neighbor_probe(const ip_adjacency_t *adj)
Definition: ip_neighbor.c:1021
vl_api_mac_address_t mac
Definition: l2.api:502
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:103
ip_neighbor_t * ip_neighbor_get(index_t ipni)
Definition: ip_neighbor.c:88
void ip_neighbor_learn(const ip_neighbor_learn_t *l)
Definition: ip_neighbor.c:694
IP unicast adjacency.
Definition: adj.h:227
int(* ip4_neighbor_proxy_cfg_t)(u32 sw_if_index)
Definition: ip_neighbor.h:98
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:41
vlib_main_t * vm
Definition: in2out_ed.c:1582
void ip_neighbor_mark(ip46_type_t type)
Definition: ip_neighbor.c:1243
void ip_neighbor_handle_event(ip_neighbor_event_t *ipne)
From the watcher to the API to publish a new neighbor.
void ip_neighbor_register(ip46_type_t type, const ip_neighbor_vft_t *vft)
Definition: ip_neighbor.c:994
vhost_vring_addr_t addr
Definition: vhost_user.h:111
ip4_neighbor_proxy_addr_t inv_proxy4_del
Definition: ip_neighbor.h:110
const mac_address_t * ip_neighbor_get_mac(const ip_neighbor_t *ipn)
Definition: ip_neighbor.c:121
enum walk_rc_t_ walk_rc_t
Walk return code.
int(* ip6_neighbor_proxy_cfg_t)(u32 sw_if_index, const ip6_address_t *addr)
Definition: ip_neighbor.h:99
int ip6_neighbor_proxy_add(u32 sw_if_index, const ip6_address_t *addr)
Definition: ip_neighbor.c:1127
int ip4_neighbor_proxy_disable(u32 sw_if_index)
Definition: ip_neighbor.c:1117
A representation of an IP neighbour/peer.
ip6_neighbor_proxy_cfg_t inv_proxy6_del
Definition: ip_neighbor.h:112
int ip4_neighbor_proxy_enable(u32 sw_if_index)
Definition: ip_neighbor.c:1107
unsigned int u32
Definition: types.h:88
ip6_neighbor_proxy_cfg_t inv_proxy6_add
Definition: ip_neighbor.h:111
walk_rc_t(* ip_neighbor_walk_cb_t)(index_t ipni, void *ctx)
Definition: ip_neighbor.h:44
vl_api_fib_path_type_t type
Definition: fib_types.api:123
long ctx[MAX_CONNS]
Definition: main.c:144
int ip_neighbor_del(const ip46_address_t *ip, ip46_type_t type, u32 sw_if_index)
Definition: ip_neighbor.c:557
void ip_neighbor_advertise(vlib_main_t *vm, ip46_type_t tyoe, const ip46_address_t *addr, u32 sw_if_index)
Definition: ip_neighbor.c:1027
struct ip_neighbor_vft_t_ ip_neighbor_vft_t
Virtual function Table for neighbor protocol implementations to register.
void ip_neighbor_sweep(ip46_type_t type)
Definition: ip_neighbor.c:1270
void ip_neighbor_walk(ip46_type_t type, u32 sw_if_index, ip_neighbor_walk_cb_t fn, void *ctx)
Definition: ip_neighbor.c:1040
ip4_neighbor_proxy_cfg_t inv_proxy4_disable
Definition: ip_neighbor.h:108
Virtual function Table for neighbor protocol implementations to register.
Definition: ip_neighbor.h:105
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
u32 stats_index
Definition: ip.api:143
int ip6_neighbor_proxy_del(u32 sw_if_index, const ip6_address_t *addr)
Definition: ip_neighbor.c:1137
int ip4_neighbor_proxy_add(u32 fib_index, const ip4_address_t *start, const ip4_address_t *end)
The set of function that vnet requires from the IP neighbour module.
Definition: ip_neighbor.c:1080
int ip4_neighbor_proxy_delete(u32 fib_index, const ip4_address_t *start, const ip4_address_t *end)
Definition: ip_neighbor.c:1094
enum ip_neighbor_flags_t_ ip_neighbor_flags_t
void ip_neighbor_update(vnet_main_t *vnm, adj_index_t ai)
Definition: ip_neighbor.c:620
const u32 ip_neighbor_get_sw_if_index(const ip_neighbor_t *ipn)
Definition: ip_neighbor.c:127
vl_api_address_t ip
Definition: l2.api:501
int(* ip4_neighbor_proxy_addr_t)(u32 fib_index, const ip4_address_t *start, const ip4_address_t *end)
neighbor protocol implementation registration functions this are provided by ARP and IP-ND ...
Definition: ip_neighbor.h:95
void ip_neighbor_probe_dst(const ip_adjacency_t *adj, const ip46_address_t *ip)
Definition: ip_neighbor.c:1000
void ip_neighbor_del_all(ip46_type_t type, u32 sw_if_index)
Definition: ip_neighbor.c:600
const ip46_address_t * ip_neighbor_get_ip(const ip_neighbor_t *ipn)
Definition: ip_neighbor.c:115
f64 end
end of the time range
Definition: mactime.api:44
int ip_neighbor_add(const ip46_address_t *ip, ip46_type_t type, const mac_address_t *mac, u32 sw_if_index, ip_neighbor_flags_t flags, u32 *stats_index)
Definition: ip_neighbor.c:458
ip4_neighbor_proxy_cfg_t inv_proxy4_enable
Definition: ip_neighbor.h:107
int ip_neighbor_config(ip46_type_t type, u32 limit, u32 age, bool recycle)
Definition: ip_neighbor.c:1681
ip4_neighbor_proxy_addr_t inv_proxy4_add
Definition: ip_neighbor.h:109
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:33
ip46_type_t
Definition: ip46_address.h:22