blob: 4d2f0704ca33cd6433167fd19aea135d1927489f [file] [log] [blame]
Dave Barachb5e8a772016-12-06 12:04:42 -05001/*
2 *------------------------------------------------------------------
3 * ip_api.c - vnet ip api
4 *
5 * Copyright (c) 2016 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
19
20#include <vnet/vnet.h>
21#include <vlibmemory/api.h>
22
23#include <vnet/interface.h>
24#include <vnet/api_errno.h>
25#include <vnet/ethernet/ethernet.h>
Neale Ranns37029302018-08-10 05:30:06 -070026#include <vnet/ethernet/ethernet_types_api.h>
Dave Barachb5e8a772016-12-06 12:04:42 -050027#include <vnet/ip/ip.h>
John Lo7f358b32018-04-28 01:19:24 -040028#include <vnet/ip/ip_neighbor.h>
Neale Ranns37029302018-08-10 05:30:06 -070029#include <vnet/ip/ip_types_api.h>
Dave Barachb5e8a772016-12-06 12:04:42 -050030#include <vnet/ip/ip6_neighbor.h>
Pavel Kotucek609e1212018-11-27 09:59:44 +010031#include <vnet/ip/ip_punt_drop.h>
Neale Ranns097fa662018-05-01 05:17:55 -070032#include <vnet/ip/ip_types_api.h>
Dave Barachb5e8a772016-12-06 12:04:42 -050033#include <vnet/fib/fib_table.h>
34#include <vnet/fib/fib_api.h>
Dave Barachb5e8a772016-12-06 12:04:42 -050035#include <vnet/ethernet/arp_packet.h>
Neale Ranns5a8123b2017-01-26 01:18:23 -080036#include <vnet/mfib/ip6_mfib.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000037#include <vnet/mfib/ip4_mfib.h>
38#include <vnet/mfib/mfib_signal.h>
Neale Ranns5a8123b2017-01-26 01:18:23 -080039#include <vnet/mfib/mfib_entry.h>
Neale Ranns097fa662018-05-01 05:17:55 -070040#include <vnet/mfib/mfib_api.h>
Neale Rannsb8d44812017-11-10 06:53:54 -080041#include <vnet/ip/ip_source_and_port_range_check.h>
42#include <vnet/fib/ip4_fib.h>
43#include <vnet/fib/ip6_fib.h>
Neale Ranns92207752019-06-03 13:21:40 +000044#include <vnet/fib/fib_path_list.h>
Neale Rannsb8d44812017-11-10 06:53:54 -080045#include <vnet/ip/ip6_hop_by_hop.h>
Klement Sekera75e7d132017-09-20 08:26:30 +020046#include <vnet/ip/ip4_reassembly.h>
47#include <vnet/ip/ip6_reassembly.h>
Neale Ranns0053de62018-05-22 08:40:52 -070048#include <vnet/ethernet/arp.h>
Matus Fabian75b9f452018-10-02 23:27:21 -070049#include <vnet/ip/ip_types_api.h>
Dave Barachb5e8a772016-12-06 12:04:42 -050050
51#include <vnet/vnet_msg_enum.h>
52
53#define vl_typedefs /* define message structures */
54#include <vnet/vnet_all_api_h.h>
55#undef vl_typedefs
56
57#define vl_endianfun /* define message structures */
58#include <vnet/vnet_all_api_h.h>
59#undef vl_endianfun
60
61/* instantiate all the print functions we know about */
62#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
63#define vl_printfun
64#include <vnet/vnet_all_api_h.h>
65#undef vl_printfun
66
67#include <vlibapi/api_helper_macros.h>
68
Neale Ranns5a8123b2017-01-26 01:18:23 -080069
Dave Barachb5e8a772016-12-06 12:04:42 -050070#define foreach_ip_api_msg \
Neale Ranns097fa662018-05-01 05:17:55 -070071_(IP_TABLE_DUMP, ip_table_dump) \
72_(IP_ROUTE_DUMP, ip_route_dump) \
73_(IP_MTABLE_DUMP, ip_mtable_dump) \
74_(IP_MROUTE_DUMP, ip_mroute_dump) \
Dave Barachb5e8a772016-12-06 12:04:42 -050075_(IP_NEIGHBOR_DUMP, ip_neighbor_dump) \
Neale Ranns32e1c012016-11-22 17:07:28 +000076_(IP_MROUTE_ADD_DEL, ip_mroute_add_del) \
Neale Ranns5a8123b2017-01-26 01:18:23 -080077_(MFIB_SIGNAL_DUMP, mfib_signal_dump) \
Dave Barachb5e8a772016-12-06 12:04:42 -050078_(IP_ADDRESS_DUMP, ip_address_dump) \
Neale Ranns9e2f9152018-05-18 02:27:10 -070079_(IP_UNNUMBERED_DUMP, ip_unnumbered_dump) \
Dave Barachb5e8a772016-12-06 12:04:42 -050080_(IP_DUMP, ip_dump) \
81_(IP_NEIGHBOR_ADD_DEL, ip_neighbor_add_del) \
Neale Rannsb8d44812017-11-10 06:53:54 -080082_(SET_ARP_NEIGHBOR_LIMIT, set_arp_neighbor_limit) \
John Loc7b43042018-04-13 16:46:22 -040083_(IP_PROBE_NEIGHBOR, ip_probe_neighbor) \
John Lo7f358b32018-04-28 01:19:24 -040084_(IP_SCAN_NEIGHBOR_ENABLE_DISABLE, ip_scan_neighbor_enable_disable) \
Neale Rannsb8d44812017-11-10 06:53:54 -080085_(WANT_IP4_ARP_EVENTS, want_ip4_arp_events) \
86_(WANT_IP6_ND_EVENTS, want_ip6_nd_events) \
Juraj Sloboda4b9669d2018-01-15 10:39:21 +010087_(WANT_IP6_RA_EVENTS, want_ip6_ra_events) \
Neale Rannsb8d44812017-11-10 06:53:54 -080088_(PROXY_ARP_ADD_DEL, proxy_arp_add_del) \
Neale Ranns0053de62018-05-22 08:40:52 -070089_(PROXY_ARP_DUMP, proxy_arp_dump) \
Neale Rannsb8d44812017-11-10 06:53:54 -080090_(PROXY_ARP_INTFC_ENABLE_DISABLE, proxy_arp_intfc_enable_disable) \
Neale Ranns0053de62018-05-22 08:40:52 -070091 _(PROXY_ARP_INTFC_DUMP, proxy_arp_intfc_dump) \
Neale Rannsb8d44812017-11-10 06:53:54 -080092_(RESET_FIB, reset_fib) \
Neale Ranns097fa662018-05-01 05:17:55 -070093_(IP_ROUTE_ADD_DEL, ip_route_add_del) \
Neale Ranns28ab9cc2017-08-14 07:18:42 -070094_(IP_TABLE_ADD_DEL, ip_table_add_del) \
Neale Rannsd91c1db2017-07-31 02:30:50 -070095_(IP_PUNT_POLICE, ip_punt_police) \
96_(IP_PUNT_REDIRECT, ip_punt_redirect) \
Dave Barachb5e8a772016-12-06 12:04:42 -050097_(SET_IP_FLOW_HASH,set_ip_flow_hash) \
98_(SW_INTERFACE_IP6ND_RA_CONFIG, sw_interface_ip6nd_ra_config) \
99_(SW_INTERFACE_IP6ND_RA_PREFIX, sw_interface_ip6nd_ra_prefix) \
Neale Ranns3f844d02017-02-18 00:03:54 -0800100_(IP6ND_PROXY_ADD_DEL, ip6nd_proxy_add_del) \
101_(IP6ND_PROXY_DUMP, ip6nd_proxy_dump) \
Juraj Sloboda4b9669d2018-01-15 10:39:21 +0100102_(IP6ND_SEND_ROUTER_SOLICITATION, ip6nd_send_router_solicitation) \
Dave Barachb5e8a772016-12-06 12:04:42 -0500103_(SW_INTERFACE_IP6_ENABLE_DISABLE, sw_interface_ip6_enable_disable ) \
Neale Rannsb8d44812017-11-10 06:53:54 -0800104_(IP_CONTAINER_PROXY_ADD_DEL, ip_container_proxy_add_del) \
Matus Fabian75b9f452018-10-02 23:27:21 -0700105_(IP_CONTAINER_PROXY_DUMP, ip_container_proxy_dump) \
Neale Rannsb8d44812017-11-10 06:53:54 -0800106_(IOAM_ENABLE, ioam_enable) \
107_(IOAM_DISABLE, ioam_disable) \
108_(IP_SOURCE_AND_PORT_RANGE_CHECK_ADD_DEL, \
109 ip_source_and_port_range_check_add_del) \
110_(IP_SOURCE_AND_PORT_RANGE_CHECK_INTERFACE_ADD_DEL, \
Klement Sekera75e7d132017-09-20 08:26:30 +0200111 ip_source_and_port_range_check_interface_add_del) \
Chore3460b012018-11-28 10:53:11 +0330112_(IP_SOURCE_CHECK_INTERFACE_ADD_DEL, \
113 ip_source_check_interface_add_del) \
Klement Sekera75e7d132017-09-20 08:26:30 +0200114_(IP_REASSEMBLY_SET, ip_reassembly_set) \
Klement Sekera4c533132018-02-22 11:41:12 +0100115_(IP_REASSEMBLY_GET, ip_reassembly_get) \
Pavel Kotucek609e1212018-11-27 09:59:44 +0100116_(IP_REASSEMBLY_ENABLE_DISABLE, ip_reassembly_enable_disable) \
117_(IP_PUNT_REDIRECT_DUMP, ip_punt_redirect_dump)
118
Dave Barachb5e8a772016-12-06 12:04:42 -0500119
Neale Ranns37029302018-08-10 05:30:06 -0700120static vl_api_ip_neighbor_flags_t
121ip_neighbor_flags_encode (ip_neighbor_flags_t f)
122{
123 vl_api_ip_neighbor_flags_t v = IP_API_NEIGHBOR_FLAG_NONE;
124
125 if (f & IP_NEIGHBOR_FLAG_STATIC)
126 v |= IP_API_NEIGHBOR_FLAG_STATIC;
127 if (f & IP_NEIGHBOR_FLAG_NO_FIB_ENTRY)
128 v |= IP_API_NEIGHBOR_FLAG_NO_FIB_ENTRY;
129
130 return (clib_host_to_net_u32 (v));
131}
132
Dave Barachb5e8a772016-12-06 12:04:42 -0500133static void
Jon Loeligeraf8dfbf2017-11-08 13:07:39 -0600134send_ip_neighbor_details (u32 sw_if_index,
Neale Ranns37029302018-08-10 05:30:06 -0700135 const ip46_address_t * ip_address,
136 const mac_address_t * mac,
137 ip_neighbor_flags_t flags,
138 vl_api_registration_t * reg, u32 context)
Dave Barachb5e8a772016-12-06 12:04:42 -0500139{
140 vl_api_ip_neighbor_details_t *mp;
141
142 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400143 clib_memset (mp, 0, sizeof (*mp));
Dave Barachb5e8a772016-12-06 12:04:42 -0500144 mp->_vl_msg_id = ntohs (VL_API_IP_NEIGHBOR_DETAILS);
145 mp->context = context;
Neale Ranns37029302018-08-10 05:30:06 -0700146 mp->neighbor.sw_if_index = htonl (sw_if_index);
147 mp->neighbor.flags = ip_neighbor_flags_encode (flags);
148
149 ip_address_encode (ip_address, IP46_TYPE_ANY, &mp->neighbor.ip_address);
150 mac_address_encode (mac, mp->neighbor.mac_address);
Dave Barachb5e8a772016-12-06 12:04:42 -0500151
Florin Coras6c4dae22018-01-09 06:39:23 -0800152 vl_api_send_msg (reg, (u8 *) mp);
Dave Barachb5e8a772016-12-06 12:04:42 -0500153}
154
155static void
Dave Barachb5e8a772016-12-06 12:04:42 -0500156vl_api_ip_neighbor_dump_t_handler (vl_api_ip_neighbor_dump_t * mp)
157{
Florin Coras6c4dae22018-01-09 06:39:23 -0800158 vl_api_registration_t *reg;
Dave Barachb5e8a772016-12-06 12:04:42 -0500159
Florin Coras6c4dae22018-01-09 06:39:23 -0800160 reg = vl_api_client_index_to_registration (mp->client_index);
161 if (!reg)
Dave Barachb5e8a772016-12-06 12:04:42 -0500162 return;
163
164 u32 sw_if_index = ntohl (mp->sw_if_index);
165
166 if (mp->is_ipv6)
167 {
168 ip6_neighbor_t *n, *ns;
169
170 ns = ip6_neighbors_entries (sw_if_index);
171 /* *INDENT-OFF* */
172 vec_foreach (n, ns)
173 {
Neale Ranns37029302018-08-10 05:30:06 -0700174 ip46_address_t nh = {
175 .ip6 = {
176 .as_u64[0] = n->key.ip6_address.as_u64[0],
177 .as_u64[1] = n->key.ip6_address.as_u64[1],
178 },
179 };
180 send_ip_neighbor_details (n->key.sw_if_index, &nh,
181 &n->mac, n->flags,
182 reg, mp->context);
Dave Barachb5e8a772016-12-06 12:04:42 -0500183 }
184 /* *INDENT-ON* */
185 vec_free (ns);
186 }
187 else
188 {
189 ethernet_arp_ip4_entry_t *n, *ns;
190
191 ns = ip4_neighbor_entries (sw_if_index);
192 /* *INDENT-OFF* */
193 vec_foreach (n, ns)
194 {
Neale Ranns37029302018-08-10 05:30:06 -0700195 ip46_address_t nh = {
196 .ip4 = {
197 .as_u32 = n->ip4_address.as_u32,
198 },
199 };
200
201 send_ip_neighbor_details (n->sw_if_index, &nh,
202 &n->mac, n->flags,
203 reg, mp->context);
Dave Barachb5e8a772016-12-06 12:04:42 -0500204 }
205 /* *INDENT-ON* */
206 vec_free (ns);
207 }
208}
209
Dave Barachb5e8a772016-12-06 12:04:42 -0500210static void
Neale Ranns097fa662018-05-01 05:17:55 -0700211send_ip_table_details (vpe_api_main_t * am,
212 vl_api_registration_t * reg,
213 u32 context, const fib_table_t * table)
Dave Barachb5e8a772016-12-06 12:04:42 -0500214{
Neale Ranns097fa662018-05-01 05:17:55 -0700215 vl_api_ip_table_details_t *mp;
Dave Barachb5e8a772016-12-06 12:04:42 -0500216
Neale Ranns097fa662018-05-01 05:17:55 -0700217 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb5e8a772016-12-06 12:04:42 -0500218 if (!mp)
219 return;
Dave Barachb7b92992018-10-17 10:38:51 -0400220 clib_memset (mp, 0, sizeof (*mp));
Neale Ranns097fa662018-05-01 05:17:55 -0700221 mp->_vl_msg_id = ntohs (VL_API_IP_TABLE_DETAILS);
Dave Barachb5e8a772016-12-06 12:04:42 -0500222 mp->context = context;
223
Neale Ranns097fa662018-05-01 05:17:55 -0700224 mp->table.is_ip6 = (table->ft_proto == FIB_PROTOCOL_IP6);
225 mp->table.table_id = htonl (table->ft_table_id);
226 memcpy (mp->table.name, table->ft_desc,
227 clib_min (vec_len (table->ft_desc), sizeof (mp->table.name)));
Dave Barachb5e8a772016-12-06 12:04:42 -0500228
Florin Coras6c4dae22018-01-09 06:39:23 -0800229 vl_api_send_msg (reg, (u8 *) mp);
Dave Barachb5e8a772016-12-06 12:04:42 -0500230}
231
Neale Ranns097fa662018-05-01 05:17:55 -0700232static void
233vl_api_ip_table_dump_t_handler (vl_api_ip_table_dump_t * mp)
234{
235 vpe_api_main_t *am = &vpe_api_main;
236 vl_api_registration_t *reg;
237 fib_table_t *fib_table;
238
239 reg = vl_api_client_index_to_registration (mp->client_index);
240 if (!reg)
241 return;
242
243 /* *INDENT-OFF* */
244 pool_foreach (fib_table, ip4_main.fibs,
245 ({
246 send_ip_table_details(am, reg, mp->context, fib_table);
247 }));
248 pool_foreach (fib_table, ip6_main.fibs,
249 ({
250 /* don't send link locals */
251 if (fib_table->ft_flags & FIB_TABLE_FLAG_IP6_LL)
252 continue;
253 send_ip_table_details(am, reg, mp->context, fib_table);
254 }));
255 /* *INDENT-ON* */
256}
257
Neale Rannsa3af3372017-03-28 03:49:52 -0700258typedef struct vl_api_ip_fib_dump_walk_ctx_t_
259{
260 fib_node_index_t *feis;
261} vl_api_ip_fib_dump_walk_ctx_t;
262
Neale Ranns89541992017-04-06 04:41:02 -0700263static fib_table_walk_rc_t
Neale Rannsa3af3372017-03-28 03:49:52 -0700264vl_api_ip_fib_dump_walk (fib_node_index_t fei, void *arg)
265{
266 vl_api_ip_fib_dump_walk_ctx_t *ctx = arg;
267
268 vec_add1 (ctx->feis, fei);
269
Neale Ranns89541992017-04-06 04:41:02 -0700270 return (FIB_TABLE_WALK_CONTINUE);
Neale Rannsa3af3372017-03-28 03:49:52 -0700271}
272
Dave Barachb5e8a772016-12-06 12:04:42 -0500273static void
Neale Ranns097fa662018-05-01 05:17:55 -0700274send_ip_route_details (vpe_api_main_t * am,
275 vl_api_registration_t * reg,
276 u32 context, fib_node_index_t fib_entry_index)
Dave Barachb5e8a772016-12-06 12:04:42 -0500277{
Neale Ranns097fa662018-05-01 05:17:55 -0700278 fib_route_path_t *rpaths, *rpath;
279 vl_api_ip_route_details_t *mp;
Neale Rannsc5d43172018-07-30 08:04:40 -0700280 const fib_prefix_t *pfx;
Dave Barachb5e8a772016-12-06 12:04:42 -0500281 vl_api_fib_path_t *fp;
282 int path_count;
283
Neale Ranns097fa662018-05-01 05:17:55 -0700284 rpaths = NULL;
285 pfx = fib_entry_get_prefix (fib_entry_index);
286 rpaths = fib_entry_encode (fib_entry_index);
287
288 path_count = vec_len (rpaths);
Dave Barachb5e8a772016-12-06 12:04:42 -0500289 mp = vl_msg_api_alloc (sizeof (*mp) + path_count * sizeof (*fp));
290 if (!mp)
291 return;
Dave Barachb7b92992018-10-17 10:38:51 -0400292 clib_memset (mp, 0, sizeof (*mp));
Neale Ranns097fa662018-05-01 05:17:55 -0700293 mp->_vl_msg_id = ntohs (VL_API_IP_ROUTE_DETAILS);
Dave Barachb5e8a772016-12-06 12:04:42 -0500294 mp->context = context;
295
Neale Ranns097fa662018-05-01 05:17:55 -0700296 ip_prefix_encode (pfx, &mp->route.prefix);
297 mp->route.table_id =
298 htonl (fib_table_get_table_id
299 (fib_entry_get_fib_index (fib_entry_index), pfx->fp_proto));
300 mp->route.n_paths = path_count;
301 mp->route.stats_index =
302 htonl (fib_table_entry_get_stats_index
303 (fib_entry_get_fib_index (fib_entry_index), pfx));
Dave Barachb5e8a772016-12-06 12:04:42 -0500304
Neale Ranns097fa662018-05-01 05:17:55 -0700305 fp = mp->route.paths;
306 vec_foreach (rpath, rpaths)
Dave Barachb5e8a772016-12-06 12:04:42 -0500307 {
Neale Ranns097fa662018-05-01 05:17:55 -0700308 fib_api_path_encode (rpath, fp);
Dave Barachb5e8a772016-12-06 12:04:42 -0500309 fp++;
310 }
311
Florin Coras6c4dae22018-01-09 06:39:23 -0800312 vl_api_send_msg (reg, (u8 *) mp);
Dave Barachb5e8a772016-12-06 12:04:42 -0500313}
314
Dave Barachd7cb1b52016-12-09 09:52:16 -0500315typedef struct apt_ip6_fib_show_ctx_t_
316{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500317 fib_node_index_t *entries;
Dave Barachb5e8a772016-12-06 12:04:42 -0500318} api_ip6_fib_show_ctx_t;
319
Dave Barachb5e8a772016-12-06 12:04:42 -0500320static void
Neale Ranns097fa662018-05-01 05:17:55 -0700321vl_api_ip_route_dump_t_handler (vl_api_ip_route_dump_t * mp)
Dave Barachb5e8a772016-12-06 12:04:42 -0500322{
323 vpe_api_main_t *am = &vpe_api_main;
Dave Barachb5e8a772016-12-06 12:04:42 -0500324 fib_node_index_t *fib_entry_index;
Florin Coras6c4dae22018-01-09 06:39:23 -0800325 vl_api_registration_t *reg;
Neale Ranns097fa662018-05-01 05:17:55 -0700326 fib_protocol_t fproto;
327 u32 fib_index;
Dave Barachb5e8a772016-12-06 12:04:42 -0500328
Florin Coras6c4dae22018-01-09 06:39:23 -0800329 reg = vl_api_client_index_to_registration (mp->client_index);
330 if (!reg)
Dave Barachb5e8a772016-12-06 12:04:42 -0500331 return;
332
Neale Ranns097fa662018-05-01 05:17:55 -0700333 vl_api_ip_fib_dump_walk_ctx_t ctx = {
334 .feis = NULL,
335 };
Neale Ranns81458422018-03-12 06:59:36 -0700336
Neale Ranns097fa662018-05-01 05:17:55 -0700337 fproto = (mp->table.is_ip6 ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
338 fib_index = fib_table_find (fproto, ntohl (mp->table.table_id));
339
340 if (INDEX_INVALID == fib_index)
341 return;
342
343 fib_table_walk (fib_index, fproto, vl_api_ip_fib_dump_walk, &ctx);
344
345 vec_foreach (fib_entry_index, ctx.feis)
346 {
347 send_ip_route_details (am, reg, mp->context, *fib_entry_index);
348 }
349
350 vec_free (ctx.feis);
Dave Barachb5e8a772016-12-06 12:04:42 -0500351}
352
353static void
Neale Ranns097fa662018-05-01 05:17:55 -0700354send_ip_mtable_details (vl_api_registration_t * reg,
355 u32 context, const mfib_table_t * mfib_table)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800356{
Neale Ranns097fa662018-05-01 05:17:55 -0700357 vl_api_ip_mtable_details_t *mp;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800358
Neale Ranns097fa662018-05-01 05:17:55 -0700359 mp = vl_msg_api_alloc (sizeof (*mp));
Neale Ranns5a8123b2017-01-26 01:18:23 -0800360 if (!mp)
361 return;
Neale Ranns097fa662018-05-01 05:17:55 -0700362 memset (mp, 0, sizeof (*mp));
363 mp->_vl_msg_id = ntohs (VL_API_IP_MTABLE_DETAILS);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800364 mp->context = context;
365
Neale Ranns097fa662018-05-01 05:17:55 -0700366 mp->table.table_id = htonl (mfib_table->mft_table_id);
367 mp->table.is_ip6 = (FIB_PROTOCOL_IP6 == mfib_table->mft_proto);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800368
Florin Coras6c4dae22018-01-09 06:39:23 -0800369 vl_api_send_msg (reg, (u8 *) mp);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800370}
371
Neale Ranns5a8123b2017-01-26 01:18:23 -0800372static void
Neale Ranns097fa662018-05-01 05:17:55 -0700373vl_api_ip_mtable_dump_t_handler (vl_api_ip_mtable_dump_t * mp)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800374{
Florin Coras6c4dae22018-01-09 06:39:23 -0800375 vl_api_registration_t *reg;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800376 mfib_table_t *mfib_table;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800377
Florin Coras6c4dae22018-01-09 06:39:23 -0800378 reg = vl_api_client_index_to_registration (mp->client_index);
379 if (!reg)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800380 return;
381
Neale Ranns5a8123b2017-01-26 01:18:23 -0800382 /* *INDENT-OFF* */
Neale Ranns097fa662018-05-01 05:17:55 -0700383 pool_foreach (mfib_table, ip4_main.mfibs,
Neale Ranns5a8123b2017-01-26 01:18:23 -0800384 ({
Neale Ranns097fa662018-05-01 05:17:55 -0700385 send_ip_mtable_details (reg, mp->context, mfib_table);
386 }));
387 pool_foreach (mfib_table, ip6_main.mfibs,
388 ({
389 send_ip_mtable_details (reg, mp->context, mfib_table);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800390 }));
391 /* *INDENT-ON* */
Neale Ranns5a8123b2017-01-26 01:18:23 -0800392}
393
Neale Ranns097fa662018-05-01 05:17:55 -0700394typedef struct vl_api_ip_mfib_dump_ctx_t_
Neale Ranns5a8123b2017-01-26 01:18:23 -0800395{
396 fib_node_index_t *entries;
Neale Ranns097fa662018-05-01 05:17:55 -0700397} vl_api_ip_mfib_dump_ctx_t;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800398
399static int
Neale Ranns097fa662018-05-01 05:17:55 -0700400mfib_route_dump_walk (fib_node_index_t fei, void *arg)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800401{
Neale Ranns097fa662018-05-01 05:17:55 -0700402 vl_api_ip_mfib_dump_ctx_t *ctx = arg;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800403
404 vec_add1 (ctx->entries, fei);
405
406 return (0);
407}
408
409static void
Neale Ranns097fa662018-05-01 05:17:55 -0700410send_ip_mroute_details (vpe_api_main_t * am,
411 vl_api_registration_t * reg,
412 u32 context, fib_node_index_t mfib_entry_index)
413{
414 fib_route_path_t *rpaths, *rpath;
415 vl_api_ip_mroute_details_t *mp;
416 const mfib_prefix_t *pfx;
417 vl_api_mfib_path_t *fp;
418 int path_count;
419
420 rpaths = NULL;
421 pfx = mfib_entry_get_prefix (mfib_entry_index);
422 rpaths = mfib_entry_encode (mfib_entry_index);
423
424 path_count = vec_len (rpaths);
425 mp = vl_msg_api_alloc (sizeof (*mp) + path_count * sizeof (*fp));
426 if (!mp)
427 return;
428 clib_memset (mp, 0, sizeof (*mp));
429 mp->_vl_msg_id = ntohs (VL_API_IP_MROUTE_DETAILS);
430 mp->context = context;
431
432 ip_mprefix_encode (pfx, &mp->route.prefix);
433 mp->route.table_id =
434 htonl (mfib_table_get_table_id
435 (mfib_entry_get_fib_index (mfib_entry_index), pfx->fp_proto));
436 mp->route.n_paths = htonl (path_count);
437 fp = mp->route.paths;
438 vec_foreach (rpath, rpaths)
439 {
440 mfib_api_path_encode (rpath, fp);
441 fp++;
442 }
443
444 vl_api_send_msg (reg, (u8 *) mp);
445 vec_free (rpaths);
446}
447
448static void
449vl_api_ip_mroute_dump_t_handler (vl_api_ip_mroute_dump_t * mp)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800450{
451 vpe_api_main_t *am = &vpe_api_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800452 vl_api_registration_t *reg;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800453 fib_node_index_t *mfeip;
Neale Ranns097fa662018-05-01 05:17:55 -0700454 fib_protocol_t fproto;
455 u32 fib_index;
456
457 vl_api_ip_mfib_dump_ctx_t ctx = {
Neale Ranns5a8123b2017-01-26 01:18:23 -0800458 .entries = NULL,
459 };
460
Florin Coras6c4dae22018-01-09 06:39:23 -0800461 reg = vl_api_client_index_to_registration (mp->client_index);
462 if (!reg)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800463 return;
464
Neale Ranns097fa662018-05-01 05:17:55 -0700465 fproto = fib_ip_proto (mp->table.is_ip6);
466 fib_index = mfib_table_find (fproto, ntohl (mp->table.table_id));
Neale Ranns5a8123b2017-01-26 01:18:23 -0800467
Neale Ranns097fa662018-05-01 05:17:55 -0700468 if (INDEX_INVALID == fib_index)
469 return;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800470
Neale Ranns097fa662018-05-01 05:17:55 -0700471 mfib_table_walk (fib_index, fproto, mfib_route_dump_walk, &ctx);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800472
Neale Ranns097fa662018-05-01 05:17:55 -0700473 vec_sort_with_function (ctx.entries, mfib_entry_cmp_for_sort);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800474
Neale Ranns097fa662018-05-01 05:17:55 -0700475 vec_foreach (mfeip, ctx.entries)
476 {
477 send_ip_mroute_details (am, reg, mp->context, *mfeip);
478 }
Neale Ranns5a8123b2017-01-26 01:18:23 -0800479
480 vec_free (ctx.entries);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800481}
482
483static void
Neale Rannsd91c1db2017-07-31 02:30:50 -0700484vl_api_ip_punt_police_t_handler (vl_api_ip_punt_police_t * mp,
485 vlib_main_t * vm)
486{
487 vl_api_ip_punt_police_reply_t *rmp;
488 int rv = 0;
489
490 if (mp->is_ip6)
491 ip6_punt_policer_add_del (mp->is_add, ntohl (mp->policer_index));
492 else
493 ip4_punt_policer_add_del (mp->is_add, ntohl (mp->policer_index));
494
495 REPLY_MACRO (VL_API_IP_PUNT_POLICE_REPLY);
496}
497
498static void
499vl_api_ip_punt_redirect_t_handler (vl_api_ip_punt_redirect_t * mp,
500 vlib_main_t * vm)
501{
502 vl_api_ip_punt_redirect_reply_t *rmp;
503 int rv = 0;
Pavel Kotucek609e1212018-11-27 09:59:44 +0100504 ip46_type_t ipv;
505 ip46_address_t nh;
Neale Rannsd91c1db2017-07-31 02:30:50 -0700506
Pavel Kotucek609e1212018-11-27 09:59:44 +0100507 if (!vnet_sw_if_index_is_api_valid (ntohl (mp->punt.tx_sw_if_index)))
508 goto bad_sw_if_index;
509
510 ipv = ip_address_decode (&mp->punt.nh, &nh);
Neale Rannsd91c1db2017-07-31 02:30:50 -0700511 if (mp->is_add)
512 {
Pavel Kotucek609e1212018-11-27 09:59:44 +0100513 if (ipv == IP46_TYPE_IP6)
Neale Rannsd91c1db2017-07-31 02:30:50 -0700514 {
Pavel Kotucek609e1212018-11-27 09:59:44 +0100515 ip6_punt_redirect_add (ntohl (mp->punt.rx_sw_if_index),
516 ntohl (mp->punt.tx_sw_if_index), &nh);
Neale Rannsd91c1db2017-07-31 02:30:50 -0700517 }
Pavel Kotucek609e1212018-11-27 09:59:44 +0100518 else if (ipv == IP46_TYPE_IP4)
Neale Rannsd91c1db2017-07-31 02:30:50 -0700519 {
Pavel Kotucek609e1212018-11-27 09:59:44 +0100520 ip4_punt_redirect_add (ntohl (mp->punt.rx_sw_if_index),
521 ntohl (mp->punt.tx_sw_if_index), &nh);
Neale Rannsd91c1db2017-07-31 02:30:50 -0700522 }
523 }
524 else
525 {
Pavel Kotucek609e1212018-11-27 09:59:44 +0100526 if (ipv == IP46_TYPE_IP6)
Neale Rannsd91c1db2017-07-31 02:30:50 -0700527 {
Pavel Kotucek609e1212018-11-27 09:59:44 +0100528 ip6_punt_redirect_del (ntohl (mp->punt.rx_sw_if_index));
Neale Rannsd91c1db2017-07-31 02:30:50 -0700529 }
Pavel Kotucek609e1212018-11-27 09:59:44 +0100530 else if (ipv == IP46_TYPE_IP4)
Neale Rannsd91c1db2017-07-31 02:30:50 -0700531 {
Pavel Kotucek609e1212018-11-27 09:59:44 +0100532 ip4_punt_redirect_del (ntohl (mp->punt.rx_sw_if_index));
Neale Rannsd91c1db2017-07-31 02:30:50 -0700533 }
534 }
535
Pavel Kotucek609e1212018-11-27 09:59:44 +0100536 BAD_SW_IF_INDEX_LABEL;
537
Neale Rannsd91c1db2017-07-31 02:30:50 -0700538 REPLY_MACRO (VL_API_IP_PUNT_REDIRECT_REPLY);
539}
540
Neale Ranns37029302018-08-10 05:30:06 -0700541static ip_neighbor_flags_t
542ip_neighbor_flags_decode (vl_api_ip_neighbor_flags_t v)
543{
544 ip_neighbor_flags_t f = IP_NEIGHBOR_FLAG_NONE;
545
546 v = clib_net_to_host_u32 (v);
547
548 if (v & IP_API_NEIGHBOR_FLAG_STATIC)
549 f |= IP_NEIGHBOR_FLAG_STATIC;
550 if (v & IP_API_NEIGHBOR_FLAG_NO_FIB_ENTRY)
551 f |= IP_NEIGHBOR_FLAG_NO_FIB_ENTRY;
552
553 return (f);
554}
555
Neale Rannsd91c1db2017-07-31 02:30:50 -0700556static void
Dave Barachb5e8a772016-12-06 12:04:42 -0500557vl_api_ip_neighbor_add_del_t_handler (vl_api_ip_neighbor_add_del_t * mp,
558 vlib_main_t * vm)
559{
560 vl_api_ip_neighbor_add_del_reply_t *rmp;
Neale Ranns0bdd3192018-09-07 11:04:52 -0700561 ip_neighbor_flags_t flags;
Neale Ranns14260392018-09-28 05:00:57 -0700562 u32 stats_index = ~0;
Neale Ranns37029302018-08-10 05:30:06 -0700563 ip46_address_t ip;
564 mac_address_t mac;
565 ip46_type_t type;
Neale Ranns097fa662018-05-01 05:17:55 -0700566 int rv;
Dave Barachb5e8a772016-12-06 12:04:42 -0500567
Neale Ranns37029302018-08-10 05:30:06 -0700568 VALIDATE_SW_IF_INDEX ((&mp->neighbor));
Dave Barachb5e8a772016-12-06 12:04:42 -0500569
Neale Ranns37029302018-08-10 05:30:06 -0700570 flags = ip_neighbor_flags_decode (mp->neighbor.flags);
571 type = ip_address_decode (&mp->neighbor.ip_address, &ip);
572 mac_address_decode (mp->neighbor.mac_address, &mac);
Neale Ranns0bdd3192018-09-07 11:04:52 -0700573
Neale Ranns37029302018-08-10 05:30:06 -0700574 /*
575 * there's no validation here of the ND/ARP entry being added.
576 * The expectation is that the FIB will ensure that nothing bad
577 * will come of adding bogus entries.
578 */
Neale Ranns0bdd3192018-09-07 11:04:52 -0700579 if (mp->is_add)
Neale Ranns37029302018-08-10 05:30:06 -0700580 rv = ip_neighbor_add (&ip, type, &mac,
581 ntohl (mp->neighbor.sw_if_index),
582 flags, &stats_index);
Neale Ranns0bdd3192018-09-07 11:04:52 -0700583 else
Neale Ranns37029302018-08-10 05:30:06 -0700584 rv = ip_neighbor_del (&ip, type, ntohl (mp->neighbor.sw_if_index));
Dave Barachb5e8a772016-12-06 12:04:42 -0500585
Neale Ranns8edad032017-10-09 05:26:13 -0700586 BAD_SW_IF_INDEX_LABEL;
Neale Ranns14260392018-09-28 05:00:57 -0700587
588 /* *INDENT-OFF* */
589 REPLY_MACRO2 (VL_API_IP_NEIGHBOR_ADD_DEL_REPLY,
590 ({
591 rmp->stats_index = htonl (stats_index);
592 }));
593 /* *INDENT-ON* */
Dave Barachb5e8a772016-12-06 12:04:42 -0500594}
595
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700596void
Neale Ranns15002542017-09-10 04:39:11 -0700597ip_table_delete (fib_protocol_t fproto, u32 table_id, u8 is_api)
598{
599 u32 fib_index, mfib_index;
600
601 /*
602 * ignore action on the default table - this is always present
603 * and cannot be added nor deleted from the API
604 */
605 if (0 != table_id)
606 {
607 /*
608 * The API holds only one lock on the table.
609 * i.e. it can be added many times via the API but needs to be
610 * deleted only once.
611 * The FIB index for unicast and multicast is not necessarily the
612 * same, since internal VPP systesm (like LISP and SR) create
613 * their own unicast tables.
614 */
615 fib_index = fib_table_find (fproto, table_id);
616 mfib_index = mfib_table_find (fproto, table_id);
617
618 if (~0 != fib_index)
619 {
620 fib_table_unlock (fib_index, fproto,
621 (is_api ? FIB_SOURCE_API : FIB_SOURCE_CLI));
622 }
623 if (~0 != mfib_index)
624 {
625 mfib_table_unlock (mfib_index, fproto,
626 (is_api ? MFIB_SOURCE_API : MFIB_SOURCE_CLI));
627 }
628 }
629}
630
631void
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700632vl_api_ip_table_add_del_t_handler (vl_api_ip_table_add_del_t * mp)
633{
634 vl_api_ip_table_add_del_reply_t *rmp;
Neale Ranns097fa662018-05-01 05:17:55 -0700635 fib_protocol_t fproto = (mp->table.is_ip6 ?
636 FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
637 u32 table_id = ntohl (mp->table.table_id);
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700638 int rv = 0;
639
Neale Ranns15002542017-09-10 04:39:11 -0700640 if (mp->is_add)
641 {
Neale Ranns097fa662018-05-01 05:17:55 -0700642 ip_table_create (fproto, table_id, 1, mp->table.name);
Neale Ranns15002542017-09-10 04:39:11 -0700643 }
644 else
645 {
646 ip_table_delete (fproto, table_id, 1);
647 }
648
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700649 REPLY_MACRO (VL_API_IP_TABLE_ADD_DEL_REPLY);
650}
651
Dave Barachb5e8a772016-12-06 12:04:42 -0500652static int
Neale Ranns097fa662018-05-01 05:17:55 -0700653ip_route_add_del_t_handler (vl_api_ip_route_add_del_t * mp, u32 * stats_index)
Dave Barachb5e8a772016-12-06 12:04:42 -0500654{
Neale Ranns097fa662018-05-01 05:17:55 -0700655 fib_route_path_t *rpaths = NULL, *rpath;
656 fib_entry_flag_t entry_flags;
657 vl_api_fib_path_t *apath;
658 fib_prefix_t pfx;
659 u32 fib_index;
660 int rv, ii;
Dave Barachb5e8a772016-12-06 12:04:42 -0500661
Neale Ranns097fa662018-05-01 05:17:55 -0700662 entry_flags = FIB_ENTRY_FLAG_NONE;
663 ip_prefix_decode (&mp->route.prefix, &pfx);
Dave Barachb5e8a772016-12-06 12:04:42 -0500664
Neale Ranns097fa662018-05-01 05:17:55 -0700665 rv = fib_api_table_id_decode (pfx.fp_proto,
666 ntohl (mp->route.table_id), &fib_index);
Dave Barachb5e8a772016-12-06 12:04:42 -0500667 if (0 != rv)
Neale Ranns097fa662018-05-01 05:17:55 -0700668 goto out;
Dave Barachb5e8a772016-12-06 12:04:42 -0500669
Neale Ranns097fa662018-05-01 05:17:55 -0700670 if (0 == mp->route.n_paths)
Dave Barachb5e8a772016-12-06 12:04:42 -0500671 {
Neale Ranns097fa662018-05-01 05:17:55 -0700672 rv = VNET_API_ERROR_NO_PATHS_IN_ROUTE;
673 goto out;
Dave Barachb5e8a772016-12-06 12:04:42 -0500674 }
675
Neale Ranns097fa662018-05-01 05:17:55 -0700676 vec_validate (rpaths, mp->route.n_paths - 1);
677
678 for (ii = 0; ii < mp->route.n_paths; ii++)
679 {
680 apath = &mp->route.paths[ii];
681 rpath = &rpaths[ii];
682
683 rv = fib_api_path_decode (apath, rpath);
684
685 if ((rpath->frp_flags & FIB_ROUTE_PATH_LOCAL) &&
686 (~0 == rpath->frp_sw_if_index))
687 entry_flags |= (FIB_ENTRY_FLAG_CONNECTED | FIB_ENTRY_FLAG_LOCAL);
688
689 if (0 != rv)
690 goto out;
691 }
692
693 fib_api_route_add_del (mp->is_add,
694 mp->is_multipath,
695 fib_index, &pfx, entry_flags, rpaths);
Neale Ranns008dbe12018-09-07 09:32:36 -0700696
697 if (mp->is_add && 0 == rv)
698 *stats_index = fib_table_entry_get_stats_index (fib_index, &pfx);
699
Neale Ranns097fa662018-05-01 05:17:55 -0700700out:
701 vec_free (rpaths);
Neale Ranns008dbe12018-09-07 09:32:36 -0700702
703 return (rv);
Dave Barachb5e8a772016-12-06 12:04:42 -0500704}
705
706void
Neale Ranns097fa662018-05-01 05:17:55 -0700707vl_api_ip_route_add_del_t_handler (vl_api_ip_route_add_del_t * mp)
Dave Barachb5e8a772016-12-06 12:04:42 -0500708{
Neale Ranns097fa662018-05-01 05:17:55 -0700709 vl_api_ip_route_add_del_reply_t *rmp;
710 u32 stats_index = ~0;
Dave Barachb5e8a772016-12-06 12:04:42 -0500711 int rv;
Dave Barachb5e8a772016-12-06 12:04:42 -0500712
Neale Ranns097fa662018-05-01 05:17:55 -0700713 rv = ip_route_add_del_t_handler (mp, &stats_index);
Dave Barachb5e8a772016-12-06 12:04:42 -0500714
Neale Ranns008dbe12018-09-07 09:32:36 -0700715 /* *INDENT-OFF* */
Neale Ranns097fa662018-05-01 05:17:55 -0700716 REPLY_MACRO2 (VL_API_IP_ROUTE_ADD_DEL_REPLY,
Neale Ranns008dbe12018-09-07 09:32:36 -0700717 ({
718 rmp->stats_index = htonl (stats_index);
719 }))
720 /* *INDENT-ON* */
Dave Barachb5e8a772016-12-06 12:04:42 -0500721}
722
Neale Ranns15002542017-09-10 04:39:11 -0700723void
Neale Ranns2297af02017-09-12 09:45:04 -0700724ip_table_create (fib_protocol_t fproto,
725 u32 table_id, u8 is_api, const u8 * name)
Neale Ranns15002542017-09-10 04:39:11 -0700726{
727 u32 fib_index, mfib_index;
728
729 /*
730 * ignore action on the default table - this is always present
731 * and cannot be added nor deleted from the API
732 */
733 if (0 != table_id)
734 {
735 /*
736 * The API holds only one lock on the table.
737 * i.e. it can be added many times via the API but needs to be
738 * deleted only once.
739 * The FIB index for unicast and multicast is not necessarily the
740 * same, since internal VPP systesm (like LISP and SR) create
741 * their own unicast tables.
742 */
743 fib_index = fib_table_find (fproto, table_id);
744 mfib_index = mfib_table_find (fproto, table_id);
745
746 if (~0 == fib_index)
747 {
Neale Ranns2297af02017-09-12 09:45:04 -0700748 fib_table_find_or_create_and_lock_w_name (fproto, table_id,
749 (is_api ?
750 FIB_SOURCE_API :
751 FIB_SOURCE_CLI), name);
Neale Ranns15002542017-09-10 04:39:11 -0700752 }
753 if (~0 == mfib_index)
754 {
Neale Ranns2297af02017-09-12 09:45:04 -0700755 mfib_table_find_or_create_and_lock_w_name (fproto, table_id,
756 (is_api ?
757 MFIB_SOURCE_API :
758 MFIB_SOURCE_CLI), name);
Neale Ranns15002542017-09-10 04:39:11 -0700759 }
760 }
761}
762
Neale Ranns097fa662018-05-01 05:17:55 -0700763static u32
Neale Ranns32e1c012016-11-22 17:07:28 +0000764mroute_add_del_handler (u8 is_add,
Neale Ranns097fa662018-05-01 05:17:55 -0700765 u8 is_multipath,
Neale Ranns32e1c012016-11-22 17:07:28 +0000766 u32 fib_index,
767 const mfib_prefix_t * prefix,
768 u32 entry_flags,
Neale Ranns097fa662018-05-01 05:17:55 -0700769 u32 rpf_id, fib_route_path_t * rpaths)
Neale Ranns32e1c012016-11-22 17:07:28 +0000770{
Neale Ranns097fa662018-05-01 05:17:55 -0700771 u32 mfib_entry_index = ~0;
Neale Ranns28c142e2018-09-07 09:37:07 -0700772
Neale Ranns097fa662018-05-01 05:17:55 -0700773 if (0 == vec_len (rpaths))
Neale Ranns32e1c012016-11-22 17:07:28 +0000774 {
Neale Ranns28c142e2018-09-07 09:37:07 -0700775 mfib_entry_index = mfib_table_entry_update (fib_index, prefix,
776 MFIB_SOURCE_API,
777 rpf_id, entry_flags);
Neale Ranns32e1c012016-11-22 17:07:28 +0000778 }
779 else
780 {
Neale Ranns097fa662018-05-01 05:17:55 -0700781 if (is_add)
782 {
783 mfib_entry_index =
784 mfib_table_entry_paths_update (fib_index, prefix,
785 MFIB_SOURCE_API, rpaths);
786 }
787 else
788 {
789 mfib_table_entry_paths_remove (fib_index, prefix,
790 MFIB_SOURCE_API, rpaths);
791 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000792 }
793
Neale Ranns28c142e2018-09-07 09:37:07 -0700794 return (mfib_entry_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000795}
796
797static int
Neale Ranns28c142e2018-09-07 09:37:07 -0700798api_mroute_add_del_t_handler (vl_api_ip_mroute_add_del_t * mp,
799 u32 * stats_index)
Neale Ranns32e1c012016-11-22 17:07:28 +0000800{
Neale Ranns097fa662018-05-01 05:17:55 -0700801 fib_route_path_t *rpath, *rpaths = NULL;
Neale Ranns28c142e2018-09-07 09:37:07 -0700802 fib_node_index_t mfib_entry_index;
Neale Ranns097fa662018-05-01 05:17:55 -0700803 mfib_prefix_t pfx;
Neale Ranns32e1c012016-11-22 17:07:28 +0000804 u32 fib_index;
805 int rv;
Neale Ranns097fa662018-05-01 05:17:55 -0700806 u16 ii;
Neale Ranns32e1c012016-11-22 17:07:28 +0000807
Neale Ranns097fa662018-05-01 05:17:55 -0700808 ip_mprefix_decode (&mp->route.prefix, &pfx);
Neale Ranns32e1c012016-11-22 17:07:28 +0000809
Neale Ranns097fa662018-05-01 05:17:55 -0700810 rv = mfib_api_table_id_decode (pfx.fp_proto,
811 ntohl (mp->route.table_id), &fib_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000812 if (0 != rv)
Neale Ranns097fa662018-05-01 05:17:55 -0700813 goto out;
Neale Ranns32e1c012016-11-22 17:07:28 +0000814
Neale Ranns097fa662018-05-01 05:17:55 -0700815 vec_validate (rpaths, mp->route.n_paths - 1);
Neale Ranns32e1c012016-11-22 17:07:28 +0000816
Neale Ranns097fa662018-05-01 05:17:55 -0700817 for (ii = 0; ii < mp->route.n_paths; ii++)
Neale Ranns32e1c012016-11-22 17:07:28 +0000818 {
Neale Ranns097fa662018-05-01 05:17:55 -0700819 rpath = &rpaths[ii];
820
821 rv = mfib_api_path_decode (&mp->route.paths[ii], rpath);
822
823 if (0 != rv)
824 goto out;
Neale Ranns32e1c012016-11-22 17:07:28 +0000825 }
826
Neale Ranns28c142e2018-09-07 09:37:07 -0700827 mfib_entry_index = mroute_add_del_handler (mp->is_add,
Neale Ranns097fa662018-05-01 05:17:55 -0700828 mp->is_add,
Neale Ranns28c142e2018-09-07 09:37:07 -0700829 fib_index, &pfx,
Neale Ranns097fa662018-05-01 05:17:55 -0700830 ntohl (mp->route.entry_flags),
831 ntohl (mp->route.rpf_id),
832 rpaths);
Neale Ranns28c142e2018-09-07 09:37:07 -0700833
834 if (~0 != mfib_entry_index)
835 *stats_index = mfib_entry_get_stats_index (mfib_entry_index);
836
Neale Ranns097fa662018-05-01 05:17:55 -0700837out:
Neale Ranns28c142e2018-09-07 09:37:07 -0700838 return (rv);
Neale Ranns32e1c012016-11-22 17:07:28 +0000839}
840
841void
842vl_api_ip_mroute_add_del_t_handler (vl_api_ip_mroute_add_del_t * mp)
843{
844 vl_api_ip_mroute_add_del_reply_t *rmp;
Neale Ranns097fa662018-05-01 05:17:55 -0700845 u32 stats_index = ~0;
Neale Ranns32e1c012016-11-22 17:07:28 +0000846 int rv;
Neale Ranns32e1c012016-11-22 17:07:28 +0000847
Neale Ranns28c142e2018-09-07 09:37:07 -0700848 rv = api_mroute_add_del_t_handler (mp, &stats_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000849
Neale Ranns28c142e2018-09-07 09:37:07 -0700850 /* *INDENT-OFF* */
851 REPLY_MACRO2 (VL_API_IP_MROUTE_ADD_DEL_REPLY,
852 ({
853 rmp->stats_index = htonl (stats_index);
854 }));
855 /* *INDENT-ON* */
Neale Ranns32e1c012016-11-22 17:07:28 +0000856}
857
Dave Barachb5e8a772016-12-06 12:04:42 -0500858static void
859send_ip_details (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800860 vl_api_registration_t * reg, u32 sw_if_index, u8 is_ipv6,
861 u32 context)
Dave Barachb5e8a772016-12-06 12:04:42 -0500862{
863 vl_api_ip_details_t *mp;
864
865 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400866 clib_memset (mp, 0, sizeof (*mp));
Dave Barachb5e8a772016-12-06 12:04:42 -0500867 mp->_vl_msg_id = ntohs (VL_API_IP_DETAILS);
868
869 mp->sw_if_index = ntohl (sw_if_index);
Jon Loeliger466f0d42017-02-09 12:17:50 -0600870 mp->is_ipv6 = is_ipv6;
Dave Barachb5e8a772016-12-06 12:04:42 -0500871 mp->context = context;
872
Florin Coras6c4dae22018-01-09 06:39:23 -0800873 vl_api_send_msg (reg, (u8 *) mp);
Dave Barachb5e8a772016-12-06 12:04:42 -0500874}
875
876static void
877send_ip_address_details (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800878 vl_api_registration_t * reg,
Neale Ranns097fa662018-05-01 05:17:55 -0700879 const fib_prefix_t * pfx,
880 u32 sw_if_index, u32 context)
Dave Barachb5e8a772016-12-06 12:04:42 -0500881{
882 vl_api_ip_address_details_t *mp;
883
884 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400885 clib_memset (mp, 0, sizeof (*mp));
Dave Barachb5e8a772016-12-06 12:04:42 -0500886 mp->_vl_msg_id = ntohs (VL_API_IP_ADDRESS_DETAILS);
887
Neale Ranns097fa662018-05-01 05:17:55 -0700888 ip_prefix_encode (pfx, &mp->prefix);
Dave Barachb5e8a772016-12-06 12:04:42 -0500889 mp->context = context;
Jon Loeliger466f0d42017-02-09 12:17:50 -0600890 mp->sw_if_index = htonl (sw_if_index);
Dave Barachb5e8a772016-12-06 12:04:42 -0500891
Florin Coras6c4dae22018-01-09 06:39:23 -0800892 vl_api_send_msg (reg, (u8 *) mp);
Dave Barachb5e8a772016-12-06 12:04:42 -0500893}
894
895static void
896vl_api_ip_address_dump_t_handler (vl_api_ip_address_dump_t * mp)
897{
898 vpe_api_main_t *am = &vpe_api_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800899 vl_api_registration_t *reg;
Dave Barachb5e8a772016-12-06 12:04:42 -0500900 ip6_main_t *im6 = &ip6_main;
901 ip4_main_t *im4 = &ip4_main;
902 ip_lookup_main_t *lm6 = &im6->lookup_main;
903 ip_lookup_main_t *lm4 = &im4->lookup_main;
904 ip_interface_address_t *ia = 0;
905 u32 sw_if_index = ~0;
906 int rv __attribute__ ((unused)) = 0;
907
908 VALIDATE_SW_IF_INDEX (mp);
909
910 sw_if_index = ntohl (mp->sw_if_index);
911
Florin Coras6c4dae22018-01-09 06:39:23 -0800912 reg = vl_api_client_index_to_registration (mp->client_index);
913 if (!reg)
Dave Barachb5e8a772016-12-06 12:04:42 -0500914 return;
915
Dave Barachb5e8a772016-12-06 12:04:42 -0500916 if (mp->is_ipv6)
917 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500918 /* *INDENT-OFF* */
Neale Ranns4f2db7d2018-05-17 09:38:13 -0700919 /* Do not send subnet details of the IP-interface for
920 * unnumbered interfaces. otherwise listening clients
921 * will be confused that the subnet is applied on more
922 * than one interface */
923 foreach_ip_interface_address (lm6, ia, sw_if_index, 0,
Dave Barachb5e8a772016-12-06 12:04:42 -0500924 ({
Neale Ranns097fa662018-05-01 05:17:55 -0700925 fib_prefix_t pfx = {
926 .fp_addr.ip6 = *(ip6_address_t *)ip_interface_address_get_address (lm6, ia),
927 .fp_len = ia->address_length,
928 .fp_proto = FIB_PROTOCOL_IP6,
929 };
930 send_ip_address_details(am, reg, &pfx, sw_if_index, mp->context);
Dave Barachb5e8a772016-12-06 12:04:42 -0500931 }));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500932 /* *INDENT-ON* */
Dave Barachb5e8a772016-12-06 12:04:42 -0500933 }
Dave Barachb5e8a772016-12-06 12:04:42 -0500934 else
935 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500936 /* *INDENT-OFF* */
Neale Ranns4f2db7d2018-05-17 09:38:13 -0700937 foreach_ip_interface_address (lm4, ia, sw_if_index, 0,
Dave Barachb5e8a772016-12-06 12:04:42 -0500938 ({
Neale Ranns097fa662018-05-01 05:17:55 -0700939 fib_prefix_t pfx = {
940 .fp_addr.ip4 = *(ip4_address_t *)ip_interface_address_get_address (lm4, ia),
941 .fp_len = ia->address_length,
942 .fp_proto = FIB_PROTOCOL_IP4,
943 };
944
945 send_ip_address_details(am, reg, &pfx, sw_if_index, mp->context);
Dave Barachb5e8a772016-12-06 12:04:42 -0500946 }));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500947 /* *INDENT-ON* */
Dave Barachb5e8a772016-12-06 12:04:42 -0500948 }
Neale Ranns008dbe12018-09-07 09:32:36 -0700949
Dave Barachb5e8a772016-12-06 12:04:42 -0500950 BAD_SW_IF_INDEX_LABEL;
951}
952
953static void
Neale Ranns9e2f9152018-05-18 02:27:10 -0700954send_ip_unnumbered_details (vpe_api_main_t * am,
955 vl_api_registration_t * reg,
956 u32 sw_if_index, u32 ip_sw_if_index, u32 context)
957{
958 vl_api_ip_unnumbered_details_t *mp;
959
960 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400961 clib_memset (mp, 0, sizeof (*mp));
Neale Ranns9e2f9152018-05-18 02:27:10 -0700962 mp->_vl_msg_id = ntohs (VL_API_IP_UNNUMBERED_DETAILS);
963
964 mp->context = context;
965 mp->sw_if_index = htonl (sw_if_index);
966 mp->ip_sw_if_index = htonl (ip_sw_if_index);
967
968 vl_api_send_msg (reg, (u8 *) mp);
969}
970
971static void
972vl_api_ip_unnumbered_dump_t_handler (vl_api_ip_unnumbered_dump_t * mp)
973{
974 vnet_main_t *vnm = vnet_get_main ();
975 vnet_interface_main_t *im = &vnm->interface_main;
976 int rv __attribute__ ((unused)) = 0;
977 vpe_api_main_t *am = &vpe_api_main;
978 vl_api_registration_t *reg;
979 vnet_sw_interface_t *si;
980 u32 sw_if_index;
981
982 sw_if_index = ntohl (mp->sw_if_index);
983
984 reg = vl_api_client_index_to_registration (mp->client_index);
985 if (!reg)
986 return;
987
988 if (~0 != sw_if_index)
989 {
990 VALIDATE_SW_IF_INDEX (mp);
991
992 si = vnet_get_sw_interface (vnm, ntohl (mp->sw_if_index));
993
994 if (!(si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
995 {
996 send_ip_unnumbered_details (am, reg,
997 sw_if_index,
998 si->unnumbered_sw_if_index,
999 mp->context);
1000 }
1001 }
1002 else
1003 {
1004 /* *INDENT-OFF* */
1005 pool_foreach (si, im->sw_interfaces,
1006 ({
1007 if ((si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
1008 {
1009 send_ip_unnumbered_details(am, reg,
1010 si->sw_if_index,
1011 si->unnumbered_sw_if_index,
1012 mp->context);
1013 }
1014 }));
1015 /* *INDENT-ON* */
1016 }
1017
1018 BAD_SW_IF_INDEX_LABEL;
1019}
1020
1021static void
Dave Barachb5e8a772016-12-06 12:04:42 -05001022vl_api_ip_dump_t_handler (vl_api_ip_dump_t * mp)
1023{
1024 vpe_api_main_t *am = &vpe_api_main;
1025 vnet_main_t *vnm = vnet_get_main ();
1026 vlib_main_t *vm = vlib_get_main ();
1027 vnet_interface_main_t *im = &vnm->interface_main;
Florin Coras6c4dae22018-01-09 06:39:23 -08001028 vl_api_registration_t *reg;
Dave Barachb5e8a772016-12-06 12:04:42 -05001029 vnet_sw_interface_t *si, *sorted_sis;
1030 u32 sw_if_index = ~0;
1031
Florin Coras6c4dae22018-01-09 06:39:23 -08001032 reg = vl_api_client_index_to_registration (mp->client_index);
1033 if (!reg)
1034 return;
Dave Barachb5e8a772016-12-06 12:04:42 -05001035
1036 /* Gather interfaces. */
1037 sorted_sis = vec_new (vnet_sw_interface_t, pool_elts (im->sw_interfaces));
1038 _vec_len (sorted_sis) = 0;
1039 /* *INDENT-OFF* */
1040 pool_foreach (si, im->sw_interfaces,
1041 ({
1042 vec_add1 (sorted_sis, si[0]);
1043 }));
1044 /* *INDENT-ON* */
1045
1046 vec_foreach (si, sorted_sis)
1047 {
1048 if (!(si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
1049 {
1050 if (mp->is_ipv6 && !ip6_interface_enabled (vm, si->sw_if_index))
1051 {
1052 continue;
1053 }
1054 sw_if_index = si->sw_if_index;
Florin Coras6c4dae22018-01-09 06:39:23 -08001055 send_ip_details (am, reg, sw_if_index, mp->is_ipv6, mp->context);
Dave Barachb5e8a772016-12-06 12:04:42 -05001056 }
1057 }
1058}
1059
1060static void
1061set_ip6_flow_hash (vl_api_set_ip_flow_hash_t * mp)
1062{
1063 vl_api_set_ip_flow_hash_reply_t *rmp;
Neale Ranns227038a2017-04-21 01:07:59 -07001064 int rv;
1065 u32 table_id;
1066 flow_hash_config_t flow_hash_config = 0;
Dave Barachb5e8a772016-12-06 12:04:42 -05001067
Neale Ranns227038a2017-04-21 01:07:59 -07001068 table_id = ntohl (mp->vrf_id);
1069
1070#define _(a,b) if (mp->a) flow_hash_config |= b;
1071 foreach_flow_hash_bit;
1072#undef _
1073
1074 rv = vnet_set_ip6_flow_hash (table_id, flow_hash_config);
Dave Barachb5e8a772016-12-06 12:04:42 -05001075
1076 REPLY_MACRO (VL_API_SET_IP_FLOW_HASH_REPLY);
1077}
1078
1079static void
1080set_ip4_flow_hash (vl_api_set_ip_flow_hash_t * mp)
1081{
1082 vl_api_set_ip_flow_hash_reply_t *rmp;
1083 int rv;
1084 u32 table_id;
1085 flow_hash_config_t flow_hash_config = 0;
1086
1087 table_id = ntohl (mp->vrf_id);
1088
1089#define _(a,b) if (mp->a) flow_hash_config |= b;
1090 foreach_flow_hash_bit;
1091#undef _
1092
1093 rv = vnet_set_ip4_flow_hash (table_id, flow_hash_config);
1094
1095 REPLY_MACRO (VL_API_SET_IP_FLOW_HASH_REPLY);
1096}
1097
1098
1099static void
1100vl_api_set_ip_flow_hash_t_handler (vl_api_set_ip_flow_hash_t * mp)
1101{
1102 if (mp->is_ipv6 == 0)
1103 set_ip4_flow_hash (mp);
1104 else
1105 set_ip6_flow_hash (mp);
1106}
1107
1108static void
1109 vl_api_sw_interface_ip6nd_ra_config_t_handler
1110 (vl_api_sw_interface_ip6nd_ra_config_t * mp)
1111{
1112 vl_api_sw_interface_ip6nd_ra_config_reply_t *rmp;
1113 vlib_main_t *vm = vlib_get_main ();
1114 int rv = 0;
1115 u8 is_no, suppress, managed, other, ll_option, send_unicast, cease,
1116 default_router;
1117
1118 is_no = mp->is_no == 1;
1119 suppress = mp->suppress == 1;
1120 managed = mp->managed == 1;
1121 other = mp->other == 1;
1122 ll_option = mp->ll_option == 1;
1123 send_unicast = mp->send_unicast == 1;
1124 cease = mp->cease == 1;
1125 default_router = mp->default_router == 1;
1126
1127 VALIDATE_SW_IF_INDEX (mp);
1128
1129 rv = ip6_neighbor_ra_config (vm, ntohl (mp->sw_if_index),
1130 suppress, managed, other,
1131 ll_option, send_unicast, cease,
1132 default_router, ntohl (mp->lifetime),
1133 ntohl (mp->initial_count),
1134 ntohl (mp->initial_interval),
1135 ntohl (mp->max_interval),
1136 ntohl (mp->min_interval), is_no);
1137
1138 BAD_SW_IF_INDEX_LABEL;
1139
1140 REPLY_MACRO (VL_API_SW_INTERFACE_IP6ND_RA_CONFIG_REPLY);
1141}
1142
1143static void
1144 vl_api_sw_interface_ip6nd_ra_prefix_t_handler
1145 (vl_api_sw_interface_ip6nd_ra_prefix_t * mp)
1146{
1147 vlib_main_t *vm = vlib_get_main ();
1148 vl_api_sw_interface_ip6nd_ra_prefix_reply_t *rmp;
Neale Ranns37029302018-08-10 05:30:06 -07001149 fib_prefix_t pfx;
Dave Barachb5e8a772016-12-06 12:04:42 -05001150 int rv = 0;
1151 u8 is_no, use_default, no_advertise, off_link, no_autoconfig, no_onlink;
1152
1153 VALIDATE_SW_IF_INDEX (mp);
1154
Neale Ranns37029302018-08-10 05:30:06 -07001155 ip_prefix_decode (&mp->prefix, &pfx);
Dave Barachb5e8a772016-12-06 12:04:42 -05001156 is_no = mp->is_no == 1;
1157 use_default = mp->use_default == 1;
1158 no_advertise = mp->no_advertise == 1;
1159 off_link = mp->off_link == 1;
1160 no_autoconfig = mp->no_autoconfig == 1;
1161 no_onlink = mp->no_onlink == 1;
1162
1163 rv = ip6_neighbor_ra_prefix (vm, ntohl (mp->sw_if_index),
Neale Ranns37029302018-08-10 05:30:06 -07001164 &pfx.fp_addr.ip6,
1165 pfx.fp_len, use_default,
Dave Barachb5e8a772016-12-06 12:04:42 -05001166 ntohl (mp->val_lifetime),
1167 ntohl (mp->pref_lifetime), no_advertise,
1168 off_link, no_autoconfig, no_onlink, is_no);
1169
1170 BAD_SW_IF_INDEX_LABEL;
1171 REPLY_MACRO (VL_API_SW_INTERFACE_IP6ND_RA_PREFIX_REPLY);
1172}
1173
1174static void
Florin Coras6c4dae22018-01-09 06:39:23 -08001175send_ip6nd_proxy_details (vl_api_registration_t * reg,
Neale Ranns3f844d02017-02-18 00:03:54 -08001176 u32 context,
1177 const ip46_address_t * addr, u32 sw_if_index)
1178{
1179 vl_api_ip6nd_proxy_details_t *mp;
1180
1181 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -04001182 clib_memset (mp, 0, sizeof (*mp));
Neale Ranns3f844d02017-02-18 00:03:54 -08001183 mp->_vl_msg_id = ntohs (VL_API_IP6ND_PROXY_DETAILS);
1184 mp->context = context;
1185 mp->sw_if_index = htonl (sw_if_index);
Neale Ranns37029302018-08-10 05:30:06 -07001186
1187 ip6_address_encode (&addr->ip6, mp->ip);
Neale Ranns3f844d02017-02-18 00:03:54 -08001188
Florin Coras6c4dae22018-01-09 06:39:23 -08001189 vl_api_send_msg (reg, (u8 *) mp);
Neale Ranns3f844d02017-02-18 00:03:54 -08001190}
1191
Neale Ranns3f844d02017-02-18 00:03:54 -08001192typedef struct api_ip6nd_proxy_fib_table_walk_ctx_t_
1193{
1194 u32 *indices;
1195} api_ip6nd_proxy_fib_table_walk_ctx_t;
1196
Neale Ranns89541992017-04-06 04:41:02 -07001197static fib_table_walk_rc_t
Neale Ranns3f844d02017-02-18 00:03:54 -08001198api_ip6nd_proxy_fib_table_walk (fib_node_index_t fei, void *arg)
1199{
1200 api_ip6nd_proxy_fib_table_walk_ctx_t *ctx = arg;
1201
1202 if (fib_entry_is_sourced (fei, FIB_SOURCE_IP6_ND_PROXY))
1203 {
1204 vec_add1 (ctx->indices, fei);
1205 }
1206
Neale Ranns89541992017-04-06 04:41:02 -07001207 return (FIB_TABLE_WALK_CONTINUE);
Neale Ranns3f844d02017-02-18 00:03:54 -08001208}
1209
1210static void
1211vl_api_ip6nd_proxy_dump_t_handler (vl_api_ip6nd_proxy_dump_t * mp)
1212{
1213 ip6_main_t *im6 = &ip6_main;
1214 fib_table_t *fib_table;
1215 api_ip6nd_proxy_fib_table_walk_ctx_t ctx = {
1216 .indices = NULL,
1217 };
1218 fib_node_index_t *feip;
Neale Rannsc5d43172018-07-30 08:04:40 -07001219 const fib_prefix_t *pfx;
Florin Coras6c4dae22018-01-09 06:39:23 -08001220 vl_api_registration_t *reg;
Neale Ranns3f844d02017-02-18 00:03:54 -08001221
Florin Coras6c4dae22018-01-09 06:39:23 -08001222 reg = vl_api_client_index_to_registration (mp->client_index);
1223 if (!reg)
1224 return;
Neale Ranns3f844d02017-02-18 00:03:54 -08001225
1226 /* *INDENT-OFF* */
1227 pool_foreach (fib_table, im6->fibs,
1228 ({
1229 fib_table_walk(fib_table->ft_index,
1230 FIB_PROTOCOL_IP6,
1231 api_ip6nd_proxy_fib_table_walk,
1232 &ctx);
1233 }));
1234 /* *INDENT-ON* */
1235
1236 vec_sort_with_function (ctx.indices, fib_entry_cmp_for_sort);
1237
1238 vec_foreach (feip, ctx.indices)
1239 {
Neale Rannsc5d43172018-07-30 08:04:40 -07001240 pfx = fib_entry_get_prefix (*feip);
Neale Ranns3f844d02017-02-18 00:03:54 -08001241
Florin Coras6c4dae22018-01-09 06:39:23 -08001242 send_ip6nd_proxy_details (reg,
Neale Ranns3f844d02017-02-18 00:03:54 -08001243 mp->context,
Neale Rannsc5d43172018-07-30 08:04:40 -07001244 &pfx->fp_addr,
Neale Ranns3f844d02017-02-18 00:03:54 -08001245 fib_entry_get_resolving_interface (*feip));
1246 }
1247
1248 vec_free (ctx.indices);
1249}
1250
1251static void
1252vl_api_ip6nd_proxy_add_del_t_handler (vl_api_ip6nd_proxy_add_del_t * mp)
1253{
1254 vl_api_ip6nd_proxy_add_del_reply_t *rmp;
Neale Ranns37029302018-08-10 05:30:06 -07001255 ip6_address_t ip6;
Neale Ranns3f844d02017-02-18 00:03:54 -08001256 int rv = 0;
1257
1258 VALIDATE_SW_IF_INDEX (mp);
1259
Neale Ranns37029302018-08-10 05:30:06 -07001260 ip6_address_decode (mp->ip, &ip6);
1261 rv = ip6_neighbor_proxy_add_del (ntohl (mp->sw_if_index), &ip6, mp->is_del);
Neale Ranns3f844d02017-02-18 00:03:54 -08001262
1263 BAD_SW_IF_INDEX_LABEL;
1264 REPLY_MACRO (VL_API_IP6ND_PROXY_ADD_DEL_REPLY);
1265}
1266
1267static void
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001268 vl_api_ip6nd_send_router_solicitation_t_handler
1269 (vl_api_ip6nd_send_router_solicitation_t * mp)
1270{
1271 vl_api_ip6nd_send_router_solicitation_reply_t *rmp;
1272 icmp6_send_router_solicitation_params_t params;
1273 vlib_main_t *vm = vlib_get_main ();
1274 int rv = 0;
1275
1276 VALIDATE_SW_IF_INDEX (mp);
1277
1278 BAD_SW_IF_INDEX_LABEL;
1279 REPLY_MACRO (VL_API_IP6ND_SEND_ROUTER_SOLICITATION_REPLY);
1280
1281 if (rv != 0)
1282 return;
1283
1284 params.irt = ntohl (mp->irt);
1285 params.mrt = ntohl (mp->mrt);
1286 params.mrc = ntohl (mp->mrc);
1287 params.mrd = ntohl (mp->mrd);
1288
1289 icmp6_send_router_solicitation (vm, ntohl (mp->sw_if_index), mp->stop,
1290 &params);
1291}
1292
1293static void
Dave Barachb5e8a772016-12-06 12:04:42 -05001294 vl_api_sw_interface_ip6_enable_disable_t_handler
1295 (vl_api_sw_interface_ip6_enable_disable_t * mp)
1296{
1297 vlib_main_t *vm = vlib_get_main ();
1298 vl_api_sw_interface_ip6_enable_disable_reply_t *rmp;
1299 vnet_main_t *vnm = vnet_get_main ();
1300 int rv = 0;
1301 clib_error_t *error;
1302
1303 vnm->api_errno = 0;
1304
1305 VALIDATE_SW_IF_INDEX (mp);
1306
1307 error =
1308 (mp->enable == 1) ? enable_ip6_interface (vm,
1309 ntohl (mp->sw_if_index)) :
1310 disable_ip6_interface (vm, ntohl (mp->sw_if_index));
1311
1312 if (error)
1313 {
1314 clib_error_report (error);
1315 rv = VNET_API_ERROR_UNSPECIFIED;
1316 }
1317 else
1318 {
1319 rv = vnm->api_errno;
1320 }
1321
1322 BAD_SW_IF_INDEX_LABEL;
1323
1324 REPLY_MACRO (VL_API_SW_INTERFACE_IP6_ENABLE_DISABLE_REPLY);
1325}
1326
Neale Ranns32e1c012016-11-22 17:07:28 +00001327void
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001328vl_mfib_signal_send_one (vl_api_registration_t * reg,
Neale Ranns32e1c012016-11-22 17:07:28 +00001329 u32 context, const mfib_signal_t * mfs)
1330{
1331 vl_api_mfib_signal_details_t *mp;
Neale Ranns9e829a82018-12-17 05:50:32 -08001332 const mfib_prefix_t *prefix;
Neale Ranns32e1c012016-11-22 17:07:28 +00001333 mfib_table_t *mfib;
1334 mfib_itf_t *mfi;
1335
1336 mp = vl_msg_api_alloc (sizeof (*mp));
1337
Dave Barachb7b92992018-10-17 10:38:51 -04001338 clib_memset (mp, 0, sizeof (*mp));
Neale Ranns32e1c012016-11-22 17:07:28 +00001339 mp->_vl_msg_id = ntohs (VL_API_MFIB_SIGNAL_DETAILS);
1340 mp->context = context;
1341
1342 mfi = mfib_itf_get (mfs->mfs_itf);
Neale Ranns9e829a82018-12-17 05:50:32 -08001343 prefix = mfib_entry_get_prefix (mfs->mfs_entry);
Neale Ranns32e1c012016-11-22 17:07:28 +00001344 mfib = mfib_table_get (mfib_entry_get_fib_index (mfs->mfs_entry),
Neale Ranns9e829a82018-12-17 05:50:32 -08001345 prefix->fp_proto);
Neale Ranns32e1c012016-11-22 17:07:28 +00001346 mp->table_id = ntohl (mfib->mft_table_id);
1347 mp->sw_if_index = ntohl (mfi->mfi_sw_if_index);
1348
Neale Ranns097fa662018-05-01 05:17:55 -07001349 ip_mprefix_encode (prefix, &mp->prefix);
Neale Ranns32e1c012016-11-22 17:07:28 +00001350
1351 if (0 != mfs->mfs_buffer_len)
1352 {
1353 mp->ip_packet_len = ntohs (mfs->mfs_buffer_len);
1354
1355 memcpy (mp->ip_packet_data, mfs->mfs_buffer, mfs->mfs_buffer_len);
1356 }
1357 else
1358 {
1359 mp->ip_packet_len = 0;
1360 }
1361
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001362 vl_api_send_msg (reg, (u8 *) mp);
Neale Ranns32e1c012016-11-22 17:07:28 +00001363}
1364
1365static void
1366vl_api_mfib_signal_dump_t_handler (vl_api_mfib_signal_dump_t * mp)
1367{
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001368 vl_api_registration_t *reg;
Neale Ranns32e1c012016-11-22 17:07:28 +00001369
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001370 reg = vl_api_client_index_to_registration (mp->client_index);
1371 if (!reg)
1372 return;
Neale Ranns32e1c012016-11-22 17:07:28 +00001373
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001374 while (vl_api_can_send_msg (reg) && mfib_signal_send_one (reg, mp->context))
Neale Ranns32e1c012016-11-22 17:07:28 +00001375 ;
1376}
Dave Barachb5e8a772016-12-06 12:04:42 -05001377
Florin Coras595992c2017-11-06 17:17:08 -08001378static void
1379 vl_api_ip_container_proxy_add_del_t_handler
1380 (vl_api_ip_container_proxy_add_del_t * mp)
1381{
1382 vl_api_ip_container_proxy_add_del_reply_t *rmp;
1383 vnet_ip_container_proxy_args_t args;
1384 int rv = 0;
1385 clib_error_t *error;
1386
Dave Barachb7b92992018-10-17 10:38:51 -04001387 clib_memset (&args, 0, sizeof (args));
Neale Ranns37029302018-08-10 05:30:06 -07001388
1389 ip_prefix_decode (&mp->pfx, &args.prefix);
1390
Florin Coras595992c2017-11-06 17:17:08 -08001391 args.sw_if_index = clib_net_to_host_u32 (mp->sw_if_index);
1392 args.is_add = mp->is_add;
1393 if ((error = vnet_ip_container_proxy_add_del (&args)))
1394 {
1395 rv = clib_error_get_code (error);
1396 clib_error_report (error);
1397 }
1398
1399 REPLY_MACRO (VL_API_IP_CONTAINER_PROXY_ADD_DEL_REPLY);
1400}
1401
Matus Fabian75b9f452018-10-02 23:27:21 -07001402typedef struct ip_container_proxy_walk_ctx_t_
1403{
1404 vl_api_registration_t *reg;
1405 u32 context;
1406} ip_container_proxy_walk_ctx_t;
1407
1408static int
1409ip_container_proxy_send_details (const fib_prefix_t * pfx, u32 sw_if_index,
1410 void *args)
1411{
1412 vl_api_ip_container_proxy_details_t *mp;
1413 ip_container_proxy_walk_ctx_t *ctx = args;
1414
1415 mp = vl_msg_api_alloc (sizeof (*mp));
1416 if (!mp)
1417 return 1;
1418
Dave Barachb7b92992018-10-17 10:38:51 -04001419 clib_memset (mp, 0, sizeof (*mp));
Matus Fabian75b9f452018-10-02 23:27:21 -07001420 mp->_vl_msg_id = ntohs (VL_API_IP_CONTAINER_PROXY_DETAILS);
1421 mp->context = ctx->context;
1422
1423 mp->sw_if_index = ntohl (sw_if_index);
1424 ip_prefix_encode (pfx, &mp->prefix);
1425
1426 vl_api_send_msg (ctx->reg, (u8 *) mp);
1427
1428 return 1;
1429}
1430
1431static void
1432vl_api_ip_container_proxy_dump_t_handler (vl_api_ip_container_proxy_dump_t *
1433 mp)
1434{
1435 vl_api_registration_t *reg;
1436
1437 reg = vl_api_client_index_to_registration (mp->client_index);
1438 if (!reg)
1439 return;
1440
1441 ip_container_proxy_walk_ctx_t ctx = {
1442 .context = mp->context,
1443 .reg = reg,
1444 };
1445
1446 ip_container_proxy_walk (ip_container_proxy_send_details, &ctx);
1447}
1448
Neale Rannsb8d44812017-11-10 06:53:54 -08001449static void
1450vl_api_ioam_enable_t_handler (vl_api_ioam_enable_t * mp)
1451{
1452 int rv = 0;
1453 vl_api_ioam_enable_reply_t *rmp;
1454 clib_error_t *error;
1455
1456 /* Ignoring the profile id as currently a single profile
1457 * is supported */
1458 error = ip6_ioam_enable (mp->trace_enable, mp->pot_enable,
1459 mp->seqno, mp->analyse);
1460 if (error)
1461 {
1462 clib_error_report (error);
1463 rv = clib_error_get_code (error);
1464 }
1465
1466 REPLY_MACRO (VL_API_IOAM_ENABLE_REPLY);
1467}
1468
1469static void
1470vl_api_ioam_disable_t_handler (vl_api_ioam_disable_t * mp)
1471{
1472 int rv = 0;
1473 vl_api_ioam_disable_reply_t *rmp;
1474 clib_error_t *error;
1475
1476 error = clear_ioam_rewrite_fn ();
1477 if (error)
1478 {
1479 clib_error_report (error);
1480 rv = clib_error_get_code (error);
1481 }
1482
1483 REPLY_MACRO (VL_API_IOAM_DISABLE_REPLY);
1484}
1485
1486static void
1487 vl_api_ip_source_and_port_range_check_add_del_t_handler
1488 (vl_api_ip_source_and_port_range_check_add_del_t * mp)
1489{
1490 vl_api_ip_source_and_port_range_check_add_del_reply_t *rmp;
1491 int rv = 0;
1492
Neale Rannsb8d44812017-11-10 06:53:54 -08001493 u8 is_add = mp->is_add;
Neale Ranns37029302018-08-10 05:30:06 -07001494 fib_prefix_t pfx;
Neale Rannsb8d44812017-11-10 06:53:54 -08001495 u16 *low_ports = 0;
1496 u16 *high_ports = 0;
1497 u32 vrf_id;
1498 u16 tmp_low, tmp_high;
1499 u8 num_ranges;
1500 int i;
1501
Neale Ranns37029302018-08-10 05:30:06 -07001502 ip_prefix_decode (&mp->prefix, &pfx);
1503
Neale Rannsb8d44812017-11-10 06:53:54 -08001504 // Validate port range
1505 num_ranges = mp->number_of_ranges;
1506 if (num_ranges > 32)
1507 { // This is size of array in VPE.API
1508 rv = VNET_API_ERROR_EXCEEDED_NUMBER_OF_RANGES_CAPACITY;
1509 goto reply;
1510 }
1511
1512 vec_reset_length (low_ports);
1513 vec_reset_length (high_ports);
1514
1515 for (i = 0; i < num_ranges; i++)
1516 {
1517 tmp_low = mp->low_ports[i];
1518 tmp_high = mp->high_ports[i];
1519 // If tmp_low <= tmp_high then only need to check tmp_low = 0
1520 // If tmp_low <= tmp_high then only need to check tmp_high > 65535
1521 if (tmp_low > tmp_high || tmp_low == 0 || tmp_high > 65535)
1522 {
1523 rv = VNET_API_ERROR_INVALID_VALUE;
1524 goto reply;
1525 }
1526 vec_add1 (low_ports, tmp_low);
1527 vec_add1 (high_ports, tmp_high + 1);
1528 }
1529
Neale Rannsb8d44812017-11-10 06:53:54 -08001530 vrf_id = ntohl (mp->vrf_id);
1531
1532 if (vrf_id < 1)
1533 {
1534 rv = VNET_API_ERROR_INVALID_VALUE;
1535 goto reply;
1536 }
1537
1538
Neale Ranns37029302018-08-10 05:30:06 -07001539 if (FIB_PROTOCOL_IP6 == pfx.fp_proto)
Neale Rannsb8d44812017-11-10 06:53:54 -08001540 {
Neale Ranns37029302018-08-10 05:30:06 -07001541 rv = ip6_source_and_port_range_check_add_del (&pfx.fp_addr.ip6,
1542 pfx.fp_len,
Neale Rannsb8d44812017-11-10 06:53:54 -08001543 vrf_id,
1544 low_ports,
1545 high_ports, is_add);
1546 }
1547 else
1548 {
Neale Ranns37029302018-08-10 05:30:06 -07001549 rv = ip4_source_and_port_range_check_add_del (&pfx.fp_addr.ip4,
1550 pfx.fp_len,
Neale Rannsb8d44812017-11-10 06:53:54 -08001551 vrf_id,
1552 low_ports,
1553 high_ports, is_add);
1554 }
1555
1556reply:
1557 vec_free (low_ports);
1558 vec_free (high_ports);
1559 REPLY_MACRO (VL_API_IP_SOURCE_AND_PORT_RANGE_CHECK_ADD_DEL_REPLY);
1560}
1561
1562static void
1563 vl_api_ip_source_and_port_range_check_interface_add_del_t_handler
1564 (vl_api_ip_source_and_port_range_check_interface_add_del_t * mp)
1565{
1566 vlib_main_t *vm = vlib_get_main ();
1567 vl_api_ip_source_and_port_range_check_interface_add_del_reply_t *rmp;
1568 ip4_main_t *im = &ip4_main;
1569 int rv;
1570 u32 sw_if_index;
1571 u32 fib_index[IP_SOURCE_AND_PORT_RANGE_CHECK_N_PROTOCOLS];
1572 u32 vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_N_PROTOCOLS];
1573 uword *p = 0;
1574 int i;
1575
1576 vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_TCP_OUT] =
1577 ntohl (mp->tcp_out_vrf_id);
1578 vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_UDP_OUT] =
1579 ntohl (mp->udp_out_vrf_id);
1580 vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_TCP_IN] =
1581 ntohl (mp->tcp_in_vrf_id);
1582 vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_UDP_IN] =
1583 ntohl (mp->udp_in_vrf_id);
1584
1585
1586 for (i = 0; i < IP_SOURCE_AND_PORT_RANGE_CHECK_N_PROTOCOLS; i++)
1587 {
1588 if (vrf_id[i] != 0 && vrf_id[i] != ~0)
1589 {
1590 p = hash_get (im->fib_index_by_table_id, vrf_id[i]);
1591
1592 if (p == 0)
1593 {
1594 rv = VNET_API_ERROR_INVALID_VALUE;
1595 goto reply;
1596 }
1597
1598 fib_index[i] = p[0];
1599 }
1600 else
1601 fib_index[i] = ~0;
1602 }
1603 sw_if_index = ntohl (mp->sw_if_index);
1604
1605 VALIDATE_SW_IF_INDEX (mp);
1606
1607 rv =
1608 set_ip_source_and_port_range_check (vm, fib_index, sw_if_index,
1609 mp->is_add);
1610
1611 BAD_SW_IF_INDEX_LABEL;
1612reply:
1613
1614 REPLY_MACRO (VL_API_IP_SOURCE_AND_PORT_RANGE_CHECK_INTERFACE_ADD_DEL_REPLY);
1615}
1616
Chore3460b012018-11-28 10:53:11 +03301617typedef union
1618{
1619 u32 fib_index;
1620} ip4_source_check_config_t;
1621
1622static void
1623 vl_api_ip_source_check_interface_add_del_t_handler
1624 (vl_api_ip_source_check_interface_add_del_t * mp)
1625{
1626 vl_api_ip_source_check_interface_add_del_reply_t *rmp;
1627 int rv;
1628 u32 sw_if_index = ntohl (mp->sw_if_index);
1629 u8 is_add = mp->is_add;
1630 char *feature_name =
1631 mp->loose ? "ip4-source-check-via-any" : "ip4-source-check-via-rx";
1632
1633 ip4_source_check_config_t config;
1634
1635 VALIDATE_SW_IF_INDEX (mp);
1636
1637 config.fib_index =
1638 fib_table_get_index_for_sw_if_index (FIB_PROTOCOL_IP4, sw_if_index);
1639 rv =
1640 vnet_feature_enable_disable ("ip4-unicast", feature_name, sw_if_index,
1641 is_add, &config, sizeof (config));
1642 BAD_SW_IF_INDEX_LABEL;
1643
1644 REPLY_MACRO (VL_API_IP_SOURCE_CHECK_INTERFACE_ADD_DEL_REPLY);
1645}
1646
Neale Rannsb8d44812017-11-10 06:53:54 -08001647#define IP4_ARP_EVENT 3
1648#define IP6_ND_EVENT 4
1649
Neale Rannsb8d44812017-11-10 06:53:54 -08001650static vlib_node_registration_t ip_resolver_process_node;
1651
Neale Ranns37029302018-08-10 05:30:06 -07001652static int
1653arp_change_delete_callback (u32 pool_index,
1654 const mac_address_t * mac,
1655 u32 sw_if_index, const ip4_address_t * address)
1656{
1657 vpe_api_main_t *am = &vpe_api_main;
1658
1659 if (pool_is_free_index (am->arp_events, pool_index))
1660 return 1;
1661
1662 pool_put_index (am->arp_events, pool_index);
1663 return 0;
1664}
1665
Neale Rannsb8d44812017-11-10 06:53:54 -08001666static void
1667handle_ip4_arp_event (u32 pool_index)
1668{
1669 vpe_api_main_t *vam = &vpe_api_main;
1670 vnet_main_t *vnm = vam->vnet_main;
1671 vlib_main_t *vm = vam->vlib_main;
1672 vl_api_ip4_arp_event_t *event;
1673 vl_api_ip4_arp_event_t *mp;
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001674 vl_api_registration_t *reg;
Neale Rannsb8d44812017-11-10 06:53:54 -08001675
1676 /* Client can cancel, die, etc. */
1677 if (pool_is_free_index (vam->arp_events, pool_index))
1678 return;
1679
1680 event = pool_elt_at_index (vam->arp_events, pool_index);
1681
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001682 reg = vl_api_client_index_to_registration (event->client_index);
1683 if (!reg)
Neale Rannsb8d44812017-11-10 06:53:54 -08001684 {
1685 (void) vnet_add_del_ip4_arp_change_event
1686 (vnm, arp_change_delete_callback,
Neale Ranns37029302018-08-10 05:30:06 -07001687 event->pid, event->ip,
Neale Rannsb8d44812017-11-10 06:53:54 -08001688 ip_resolver_process_node.index, IP4_ARP_EVENT,
1689 ~0 /* pool index, notused */ , 0 /* is_add */ );
1690 return;
1691 }
1692
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001693 if (vl_api_can_send_msg (reg))
Neale Rannsb8d44812017-11-10 06:53:54 -08001694 {
1695 mp = vl_msg_api_alloc (sizeof (*mp));
1696 clib_memcpy (mp, event, sizeof (*mp));
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001697 vl_api_send_msg (reg, (u8 *) mp);
Neale Rannsb8d44812017-11-10 06:53:54 -08001698 }
1699 else
1700 {
1701 static f64 last_time;
1702 /*
1703 * Throttle syslog msgs.
1704 * It's pretty tempting to just revoke the registration...
1705 */
1706 if (vlib_time_now (vm) > last_time + 10.0)
1707 {
1708 clib_warning ("arp event for %U to pid %d: queue stuffed!",
Neale Ranns37029302018-08-10 05:30:06 -07001709 format_ip4_address, event->ip, event->pid);
Neale Rannsb8d44812017-11-10 06:53:54 -08001710 last_time = vlib_time_now (vm);
1711 }
1712 }
1713}
1714
Neale Ranns37029302018-08-10 05:30:06 -07001715static int
1716nd_change_delete_callback (u32 pool_index,
1717 const mac_address_t * mac,
1718 u32 sw_if_index, const ip6_address_t * addr)
1719{
1720 vpe_api_main_t *am = &vpe_api_main;
1721
1722 if (pool_is_free_index (am->nd_events, pool_index))
1723 return 1;
1724
1725 pool_put_index (am->nd_events, pool_index);
1726 return 0;
1727}
1728
Neale Rannsf12dad62018-06-04 18:41:24 -07001729static void
Neale Rannsb8d44812017-11-10 06:53:54 -08001730handle_ip6_nd_event (u32 pool_index)
1731{
1732 vpe_api_main_t *vam = &vpe_api_main;
1733 vnet_main_t *vnm = vam->vnet_main;
1734 vlib_main_t *vm = vam->vlib_main;
1735 vl_api_ip6_nd_event_t *event;
1736 vl_api_ip6_nd_event_t *mp;
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001737 vl_api_registration_t *reg;
Neale Rannsb8d44812017-11-10 06:53:54 -08001738
1739 /* Client can cancel, die, etc. */
1740 if (pool_is_free_index (vam->nd_events, pool_index))
1741 return;
1742
1743 event = pool_elt_at_index (vam->nd_events, pool_index);
1744
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001745 reg = vl_api_client_index_to_registration (event->client_index);
1746 if (!reg)
Neale Rannsb8d44812017-11-10 06:53:54 -08001747 {
1748 (void) vnet_add_del_ip6_nd_change_event
1749 (vnm, nd_change_delete_callback,
Neale Ranns37029302018-08-10 05:30:06 -07001750 event->pid, event->ip,
Neale Rannsb8d44812017-11-10 06:53:54 -08001751 ip_resolver_process_node.index, IP6_ND_EVENT,
1752 ~0 /* pool index, notused */ , 0 /* is_add */ );
1753 return;
1754 }
1755
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001756 if (vl_api_can_send_msg (reg))
Neale Rannsb8d44812017-11-10 06:53:54 -08001757 {
1758 mp = vl_msg_api_alloc (sizeof (*mp));
1759 clib_memcpy (mp, event, sizeof (*mp));
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001760 vl_api_send_msg (reg, (u8 *) mp);
Neale Rannsb8d44812017-11-10 06:53:54 -08001761 }
1762 else
1763 {
1764 static f64 last_time;
1765 /*
1766 * Throttle syslog msgs.
1767 * It's pretty tempting to just revoke the registration...
1768 */
1769 if (vlib_time_now (vm) > last_time + 10.0)
1770 {
1771 clib_warning ("ip6 nd event for %U to pid %d: queue stuffed!",
Neale Ranns37029302018-08-10 05:30:06 -07001772 format_ip6_address, event->ip, event->pid);
Neale Rannsb8d44812017-11-10 06:53:54 -08001773 last_time = vlib_time_now (vm);
1774 }
1775 }
1776}
1777
1778static uword
1779resolver_process (vlib_main_t * vm,
1780 vlib_node_runtime_t * rt, vlib_frame_t * f)
1781{
1782 volatile f64 timeout = 100.0;
1783 volatile uword *event_data = 0;
1784
1785 while (1)
1786 {
1787 vlib_process_wait_for_event_or_clock (vm, timeout);
1788
1789 uword event_type =
1790 vlib_process_get_events (vm, (uword **) & event_data);
1791
1792 int i;
1793 switch (event_type)
1794 {
1795 case IP4_ARP_EVENT:
1796 for (i = 0; i < vec_len (event_data); i++)
1797 handle_ip4_arp_event (event_data[i]);
1798 break;
1799
1800 case IP6_ND_EVENT:
1801 for (i = 0; i < vec_len (event_data); i++)
1802 handle_ip6_nd_event (event_data[i]);
1803 break;
1804
1805 case ~0: /* timeout */
1806 break;
1807 }
1808
1809 vec_reset_length (event_data);
1810 }
1811 return 0; /* or not */
1812}
1813
1814/* *INDENT-OFF* */
1815VLIB_REGISTER_NODE (ip_resolver_process_node,static) = {
1816 .function = resolver_process,
1817 .type = VLIB_NODE_TYPE_PROCESS,
1818 .name = "ip-route-resolver-process",
1819};
1820/* *INDENT-ON* */
1821
1822static int
Neale Ranns37029302018-08-10 05:30:06 -07001823nd_change_data_callback (u32 pool_index, const mac_address_t * new_mac,
1824 u32 sw_if_index, const ip6_address_t * address)
Neale Rannsb8d44812017-11-10 06:53:54 -08001825{
1826 vpe_api_main_t *am = &vpe_api_main;
1827 vl_api_ip6_nd_event_t *event;
1828
1829 if (pool_is_free_index (am->nd_events, pool_index))
1830 return 1;
1831
1832 event = pool_elt_at_index (am->nd_events, pool_index);
Neale Ranns37029302018-08-10 05:30:06 -07001833 if (ethernet_mac_address_equal (event->mac, new_mac->bytes) &&
Neale Rannsb8d44812017-11-10 06:53:54 -08001834 sw_if_index == ntohl (event->sw_if_index))
1835 {
1836 return 1;
1837 }
1838
Neale Ranns37029302018-08-10 05:30:06 -07001839 mac_address_encode (new_mac, event->mac);
Neale Rannsb8d44812017-11-10 06:53:54 -08001840 event->sw_if_index = htonl (sw_if_index);
1841 return 0;
1842}
1843
Neale Rannsb8d44812017-11-10 06:53:54 -08001844static vlib_node_registration_t wc_arp_process_node;
1845
1846enum
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001847{ WC_ARP_REPORT, WC_ND_REPORT, RA_REPORT, REPORT_MAX };
Neale Rannsb8d44812017-11-10 06:53:54 -08001848
1849static uword
1850wc_arp_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f)
1851{
Jim Thompsonf324dec2019-04-08 03:22:21 -05001852 /* These cross the longjmp boundary (vlib_process_wait_for_event)
Neale Rannsb8d44812017-11-10 06:53:54 -08001853 * and need to be volatile - to prevent them from being optimized into
1854 * a register - which could change during suspension */
1855
1856 volatile wc_arp_report_t arp_prev = { 0 };
1857 volatile wc_nd_report_t nd_prev = { 0 };
1858 volatile f64 last_arp = vlib_time_now (vm);
1859 volatile f64 last_nd = vlib_time_now (vm);
1860
1861 while (1)
1862 {
1863 vlib_process_wait_for_event (vm);
1864 uword event_type = WC_ARP_REPORT;
1865 void *event_data = vlib_process_get_event_data (vm, &event_type);
1866
1867 f64 now = vlib_time_now (vm);
1868 int i;
1869 if (event_type == WC_ARP_REPORT)
1870 {
1871 wc_arp_report_t *arp_events = event_data;
1872 for (i = 0; i < vec_len (arp_events); i++)
1873 {
Neale Ranns37029302018-08-10 05:30:06 -07001874 /* discard dup event - cast away volatile */
1875 if (arp_prev.ip.as_u32 == arp_events[i].ip.as_u32 &&
1876 mac_address_equal ((const mac_address_t *) &arp_prev.mac,
1877 &arp_events[i].mac) &&
Neale Rannsb8d44812017-11-10 06:53:54 -08001878 arp_prev.sw_if_index == arp_events[i].sw_if_index &&
1879 (now - last_arp) < 10.0)
1880 {
1881 continue;
1882 }
1883 arp_prev = arp_events[i];
1884 last_arp = now;
1885 vpe_client_registration_t *reg;
1886 /* *INDENT-OFF* */
1887 pool_foreach(reg, vpe_api_main.wc_ip4_arp_events_registrations,
1888 ({
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001889 vl_api_registration_t *vl_reg;
1890 vl_reg = vl_api_client_index_to_registration (reg->client_index);
Chris Luke30684ac2018-03-29 12:56:58 -07001891 ASSERT (vl_reg != NULL);
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001892 if (reg && vl_api_can_send_msg (vl_reg))
Neale Rannsb8d44812017-11-10 06:53:54 -08001893 {
1894 vl_api_ip4_arp_event_t * event = vl_msg_api_alloc (sizeof *event);
Dave Barachb7b92992018-10-17 10:38:51 -04001895 clib_memset (event, 0, sizeof *event);
Neale Rannsb8d44812017-11-10 06:53:54 -08001896 event->_vl_msg_id = htons (VL_API_IP4_ARP_EVENT);
1897 event->client_index = reg->client_index;
1898 event->pid = reg->client_pid;
1899 event->mac_ip = 1;
Neale Ranns37029302018-08-10 05:30:06 -07001900 ip4_address_encode(&arp_events[i].ip, event->ip);
Neale Rannsb8d44812017-11-10 06:53:54 -08001901 event->sw_if_index = htonl(arp_events[i].sw_if_index);
Neale Ranns37029302018-08-10 05:30:06 -07001902 mac_address_encode(&arp_events[i].mac, event->mac);
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001903 vl_api_send_msg (vl_reg, (u8 *) event);
Neale Rannsb8d44812017-11-10 06:53:54 -08001904 }
1905 }));
1906 /* *INDENT-ON* */
1907 }
1908 }
1909 else if (event_type == WC_ND_REPORT)
1910 {
1911 wc_nd_report_t *nd_events = event_data;
1912 for (i = 0; i < vec_len (nd_events); i++)
1913 {
Neale Ranns37029302018-08-10 05:30:06 -07001914 /* discard dup event - cast away volatile */
1915 if (ip6_address_is_equal ((const ip6_address_t *) &nd_prev.ip6,
1916 &nd_events[i].ip6)
1917 && mac_address_equal ((const mac_address_t *) &nd_prev.mac,
1918 &nd_events[i].mac)
Neale Rannsb8d44812017-11-10 06:53:54 -08001919 && nd_prev.sw_if_index == nd_events[i].sw_if_index
1920 && (now - last_nd) < 10.0)
1921 {
1922 continue;
1923 }
1924 nd_prev = nd_events[i];
1925 last_nd = now;
1926 vpe_client_registration_t *reg;
1927 /* *INDENT-OFF* */
1928 pool_foreach(reg, vpe_api_main.wc_ip6_nd_events_registrations,
1929 ({
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001930 vl_api_registration_t *vl_reg;
1931 vl_reg = vl_api_client_index_to_registration (reg->client_index);
1932 if (vl_reg && vl_api_can_send_msg (vl_reg))
Neale Rannsb8d44812017-11-10 06:53:54 -08001933 {
1934 vl_api_ip6_nd_event_t * event = vl_msg_api_alloc (sizeof *event);
Dave Barachb7b92992018-10-17 10:38:51 -04001935 clib_memset (event, 0, sizeof *event);
Neale Rannsb8d44812017-11-10 06:53:54 -08001936 event->_vl_msg_id = htons (VL_API_IP6_ND_EVENT);
1937 event->client_index = reg->client_index;
1938 event->pid = reg->client_pid;
1939 event->mac_ip = 1;
Neale Ranns37029302018-08-10 05:30:06 -07001940 ip6_address_encode(&nd_events[i].ip6, event->ip);
Neale Rannsb8d44812017-11-10 06:53:54 -08001941 event->sw_if_index = htonl(nd_events[i].sw_if_index);
Neale Ranns37029302018-08-10 05:30:06 -07001942 mac_address_encode(&nd_events[i].mac, event->mac);
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001943 vl_api_send_msg (vl_reg, (u8 *) event);
Neale Rannsb8d44812017-11-10 06:53:54 -08001944 }
1945 }));
1946 /* *INDENT-ON* */
1947 }
1948 }
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001949 else if (event_type == RA_REPORT)
1950 {
1951 ra_report_t *ra_events = event_data;
1952 for (i = 0; i < vec_len (ra_events); i++)
1953 {
Juraj Sloboda52574522018-05-03 10:03:50 +02001954 ip6_neighbor_public_main_t *npm = &ip6_neighbor_public_main;
1955 call_ip6_neighbor_callbacks (&ra_events[i],
1956 npm->ra_report_functions);
1957
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001958 vpe_client_registration_t *reg;
1959 /* *INDENT-OFF* */
1960 pool_foreach(reg, vpe_api_main.ip6_ra_events_registrations,
1961 ({
1962 vl_api_registration_t *vl_reg;
1963 vl_reg =
1964 vl_api_client_index_to_registration (reg->client_index);
1965 if (vl_reg && vl_api_can_send_msg (vl_reg))
1966 {
1967 u32 event_size =
1968 sizeof (vl_api_ip6_ra_event_t) +
1969 vec_len (ra_events[i].prefixes) *
1970 sizeof (vl_api_ip6_ra_prefix_info_t);
1971 vl_api_ip6_ra_event_t *event =
1972 vl_msg_api_alloc (event_size);
Dave Barachb7b92992018-10-17 10:38:51 -04001973 clib_memset (event, 0, event_size);
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001974 event->_vl_msg_id = htons (VL_API_IP6_RA_EVENT);
1975 event->client_index = reg->client_index;
1976 event->pid = reg->client_pid;
1977
1978 event->sw_if_index = clib_host_to_net_u32 (ra_events[i].sw_if_index);
1979
Neale Ranns37029302018-08-10 05:30:06 -07001980 ip6_address_encode (&ra_events[i].router_address,
1981 event->router_addr);
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01001982
1983 event->current_hop_limit = ra_events[i].current_hop_limit;
1984 event->flags = ra_events[i].flags;
1985 event->router_lifetime_in_sec =
1986 clib_host_to_net_u16 (ra_events
1987 [i].router_lifetime_in_sec);
1988 event->neighbor_reachable_time_in_msec =
1989 clib_host_to_net_u32 (ra_events
1990 [i].neighbor_reachable_time_in_msec);
1991 event->time_in_msec_between_retransmitted_neighbor_solicitations
1992 =
1993 clib_host_to_net_u32 (ra_events
1994 [i].time_in_msec_between_retransmitted_neighbor_solicitations);
1995
1996 event->n_prefixes =
1997 clib_host_to_net_u32 (vec_len (ra_events[i].prefixes));
1998 vl_api_ip6_ra_prefix_info_t *prefix =
1999 (typeof (prefix)) event->prefixes;
2000 u32 j;
2001 for (j = 0; j < vec_len (ra_events[i].prefixes); j++)
2002 {
2003 ra_report_prefix_info_t *info =
2004 &ra_events[i].prefixes[j];
Neale Ranns37029302018-08-10 05:30:06 -07002005 ip_prefix_encode(&info->prefix, &prefix->prefix);
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002006 prefix->flags = info->flags;
2007 prefix->valid_time =
2008 clib_host_to_net_u32 (info->valid_time);
2009 prefix->preferred_time =
2010 clib_host_to_net_u32 (info->preferred_time);
2011 prefix++;
2012 }
2013
2014 vl_api_send_msg (vl_reg, (u8 *) event);
2015 }
2016 }));
Juraj Slobodad7f58cc2018-07-27 11:23:14 +02002017 /* *INDENT-ON* */
2018 vec_free (ra_events[i].prefixes);
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002019 }
2020 }
Neale Rannsb8d44812017-11-10 06:53:54 -08002021 vlib_process_put_event_data (vm, event_data);
2022 }
2023
2024 return 0;
2025}
2026
2027/* *INDENT-OFF* */
2028VLIB_REGISTER_NODE (wc_arp_process_node,static) = {
2029 .function = wc_arp_process,
2030 .type = VLIB_NODE_TYPE_PROCESS,
2031 .name = "wildcard-ip4-arp-publisher-process",
2032};
2033/* *INDENT-ON* */
2034
2035static int
Neale Ranns37029302018-08-10 05:30:06 -07002036arp_change_data_callback (u32 pool_index,
2037 const mac_address_t * mac,
2038 u32 sw_if_index, const ip4_address_t * address)
Neale Rannsb8d44812017-11-10 06:53:54 -08002039{
2040 vpe_api_main_t *am = &vpe_api_main;
2041 vl_api_ip4_arp_event_t *event;
2042
2043 if (pool_is_free_index (am->arp_events, pool_index))
2044 return 1;
2045
2046 event = pool_elt_at_index (am->arp_events, pool_index);
Neale Ranns37029302018-08-10 05:30:06 -07002047 if (ethernet_mac_address_equal (event->mac, mac->bytes) &&
Neale Rannsb8d44812017-11-10 06:53:54 -08002048 sw_if_index == ntohl (event->sw_if_index))
2049 {
2050 return 1;
2051 }
2052
Neale Ranns37029302018-08-10 05:30:06 -07002053 mac_address_encode (mac, event->mac);
Neale Rannsb8d44812017-11-10 06:53:54 -08002054 event->sw_if_index = htonl (sw_if_index);
2055 return 0;
2056}
2057
2058static void
2059vl_api_want_ip4_arp_events_t_handler (vl_api_want_ip4_arp_events_t * mp)
2060{
2061 vpe_api_main_t *am = &vpe_api_main;
2062 vnet_main_t *vnm = vnet_get_main ();
2063 vl_api_want_ip4_arp_events_reply_t *rmp;
Neale Ranns37029302018-08-10 05:30:06 -07002064 ip4_address_t ip;
Neale Rannsb8d44812017-11-10 06:53:54 -08002065 int rv = 0;
2066
Neale Ranns37029302018-08-10 05:30:06 -07002067 ip4_address_decode (mp->ip, &ip);
2068
2069 if (ip.as_u32 == 0)
Neale Rannsb8d44812017-11-10 06:53:54 -08002070 {
2071 uword *p =
2072 hash_get (am->wc_ip4_arp_events_registration_hash, mp->client_index);
2073 vpe_client_registration_t *rp;
2074 if (p)
2075 {
2076 if (mp->enable_disable)
2077 {
2078 clib_warning ("pid %d: already enabled...", mp->pid);
2079 rv = VNET_API_ERROR_INVALID_REGISTRATION;
2080 goto reply;
2081 }
2082 else
2083 {
2084 rp =
2085 pool_elt_at_index (am->wc_ip4_arp_events_registrations, p[0]);
2086 pool_put (am->wc_ip4_arp_events_registrations, rp);
2087 hash_unset (am->wc_ip4_arp_events_registration_hash,
2088 mp->client_index);
2089 if (pool_elts (am->wc_ip4_arp_events_registrations) == 0)
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002090 wc_arp_set_publisher_node (~0, REPORT_MAX);
Neale Rannsb8d44812017-11-10 06:53:54 -08002091 goto reply;
2092 }
2093 }
2094 if (mp->enable_disable == 0)
2095 {
2096 clib_warning ("pid %d: already disabled...", mp->pid);
2097 rv = VNET_API_ERROR_INVALID_REGISTRATION;
2098 goto reply;
2099 }
2100 pool_get (am->wc_ip4_arp_events_registrations, rp);
2101 rp->client_index = mp->client_index;
2102 rp->client_pid = mp->pid;
2103 hash_set (am->wc_ip4_arp_events_registration_hash, rp->client_index,
2104 rp - am->wc_ip4_arp_events_registrations);
2105 wc_arp_set_publisher_node (wc_arp_process_node.index, WC_ARP_REPORT);
2106 goto reply;
2107 }
2108
2109 if (mp->enable_disable)
2110 {
2111 vl_api_ip4_arp_event_t *event;
2112 pool_get (am->arp_events, event);
2113 rv = vnet_add_del_ip4_arp_change_event
2114 (vnm, arp_change_data_callback,
Neale Ranns37029302018-08-10 05:30:06 -07002115 mp->pid, mp->ip /* addr, in net byte order */ ,
Neale Rannsb8d44812017-11-10 06:53:54 -08002116 ip_resolver_process_node.index,
2117 IP4_ARP_EVENT, event - am->arp_events, 1 /* is_add */ );
2118
2119 if (rv)
2120 {
2121 pool_put (am->arp_events, event);
2122 goto reply;
2123 }
Dave Barachb7b92992018-10-17 10:38:51 -04002124 clib_memset (event, 0, sizeof (*event));
Neale Rannsb8d44812017-11-10 06:53:54 -08002125
2126 /* Python API expects events to have no context */
2127 event->_vl_msg_id = htons (VL_API_IP4_ARP_EVENT);
2128 event->client_index = mp->client_index;
Neale Ranns37029302018-08-10 05:30:06 -07002129 memcpy (event->ip, mp->ip, 4);
Neale Rannsb8d44812017-11-10 06:53:54 -08002130 event->pid = mp->pid;
Neale Ranns37029302018-08-10 05:30:06 -07002131 if (ip.as_u32 == 0)
Neale Rannsb8d44812017-11-10 06:53:54 -08002132 event->mac_ip = 1;
2133 }
2134 else
2135 {
2136 rv = vnet_add_del_ip4_arp_change_event
2137 (vnm, arp_change_delete_callback,
Neale Ranns37029302018-08-10 05:30:06 -07002138 mp->pid, mp->ip /* addr, in net byte order */ ,
Neale Rannsb8d44812017-11-10 06:53:54 -08002139 ip_resolver_process_node.index,
2140 IP4_ARP_EVENT, ~0 /* pool index */ , 0 /* is_add */ );
2141 }
2142reply:
2143 REPLY_MACRO (VL_API_WANT_IP4_ARP_EVENTS_REPLY);
2144}
2145
Neale Rannsf12dad62018-06-04 18:41:24 -07002146static clib_error_t *
2147want_ip4_arp_events_reaper (u32 client_index)
2148{
2149 vpe_client_registration_t *rp;
2150 vl_api_ip4_arp_event_t *event;
2151 u32 *to_delete, *event_id;
2152 vpe_api_main_t *am;
2153 vnet_main_t *vnm;
2154 uword *p;
2155
2156 am = &vpe_api_main;
2157 vnm = vnet_get_main ();
2158 to_delete = NULL;
2159
2160 /* clear out all of its pending resolutions */
2161 /* *INDENT-OFF* */
2162 pool_foreach(event, am->arp_events,
2163 ({
2164 if (event->client_index == client_index)
2165 {
2166 vec_add1(to_delete, event - am->arp_events);
2167 }
2168 }));
2169 /* *INDENT-ON* */
2170
2171 vec_foreach (event_id, to_delete)
2172 {
2173 event = pool_elt_at_index (am->arp_events, *event_id);
2174 vnet_add_del_ip4_arp_change_event
2175 (vnm, arp_change_delete_callback,
Neale Ranns37029302018-08-10 05:30:06 -07002176 event->pid, event->ip,
Neale Rannsf12dad62018-06-04 18:41:24 -07002177 ip_resolver_process_node.index, IP4_ARP_EVENT,
2178 ~0 /* pool index, notused */ , 0 /* is_add */ );
2179 }
2180 vec_free (to_delete);
2181
2182 /* remove from the registration hash */
2183 p = hash_get (am->wc_ip4_arp_events_registration_hash, client_index);
2184
2185 if (p)
2186 {
2187 rp = pool_elt_at_index (am->wc_ip4_arp_events_registrations, p[0]);
2188 pool_put (am->wc_ip4_arp_events_registrations, rp);
2189 hash_unset (am->wc_ip4_arp_events_registration_hash, client_index);
2190 if (pool_elts (am->wc_ip4_arp_events_registrations) == 0)
2191 wc_arp_set_publisher_node (~0, REPORT_MAX);
2192 }
2193 return (NULL);
2194}
2195
2196VL_MSG_API_REAPER_FUNCTION (want_ip4_arp_events_reaper);
2197
Neale Rannsb8d44812017-11-10 06:53:54 -08002198static void
2199vl_api_want_ip6_nd_events_t_handler (vl_api_want_ip6_nd_events_t * mp)
2200{
2201 vpe_api_main_t *am = &vpe_api_main;
2202 vnet_main_t *vnm = vnet_get_main ();
2203 vl_api_want_ip6_nd_events_reply_t *rmp;
Neale Ranns37029302018-08-10 05:30:06 -07002204 ip6_address_t ip6;
Neale Rannsb8d44812017-11-10 06:53:54 -08002205 int rv = 0;
2206
Neale Ranns37029302018-08-10 05:30:06 -07002207 ip6_address_decode (mp->ip, &ip6);
2208
2209 if (ip6_address_is_zero (&ip6))
Neale Rannsb8d44812017-11-10 06:53:54 -08002210 {
2211 uword *p =
2212 hash_get (am->wc_ip6_nd_events_registration_hash, mp->client_index);
2213 vpe_client_registration_t *rp;
2214 if (p)
2215 {
2216 if (mp->enable_disable)
2217 {
2218 clib_warning ("pid %d: already enabled...", mp->pid);
2219 rv = VNET_API_ERROR_INVALID_REGISTRATION;
2220 goto reply;
2221 }
2222 else
2223 {
2224 rp =
2225 pool_elt_at_index (am->wc_ip6_nd_events_registrations, p[0]);
2226 pool_put (am->wc_ip6_nd_events_registrations, rp);
2227 hash_unset (am->wc_ip6_nd_events_registration_hash,
2228 mp->client_index);
2229 if (pool_elts (am->wc_ip6_nd_events_registrations) == 0)
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002230 wc_nd_set_publisher_node (~0, REPORT_MAX);
Neale Rannsb8d44812017-11-10 06:53:54 -08002231 goto reply;
2232 }
2233 }
2234 if (mp->enable_disable == 0)
2235 {
2236 clib_warning ("pid %d: already disabled...", mp->pid);
2237 rv = VNET_API_ERROR_INVALID_REGISTRATION;
2238 goto reply;
2239 }
2240 pool_get (am->wc_ip6_nd_events_registrations, rp);
2241 rp->client_index = mp->client_index;
2242 rp->client_pid = mp->pid;
2243 hash_set (am->wc_ip6_nd_events_registration_hash, rp->client_index,
2244 rp - am->wc_ip6_nd_events_registrations);
2245 wc_nd_set_publisher_node (wc_arp_process_node.index, WC_ND_REPORT);
2246 goto reply;
2247 }
2248
2249 if (mp->enable_disable)
2250 {
2251 vl_api_ip6_nd_event_t *event;
2252 pool_get (am->nd_events, event);
2253
2254 rv = vnet_add_del_ip6_nd_change_event
2255 (vnm, nd_change_data_callback,
Neale Ranns37029302018-08-10 05:30:06 -07002256 mp->pid, &ip6,
Neale Rannsb8d44812017-11-10 06:53:54 -08002257 ip_resolver_process_node.index,
2258 IP6_ND_EVENT, event - am->nd_events, 1 /* is_add */ );
2259
2260 if (rv)
2261 {
2262 pool_put (am->nd_events, event);
2263 goto reply;
2264 }
Dave Barachb7b92992018-10-17 10:38:51 -04002265 clib_memset (event, 0, sizeof (*event));
Neale Rannsb8d44812017-11-10 06:53:54 -08002266
2267 event->_vl_msg_id = ntohs (VL_API_IP6_ND_EVENT);
2268 event->client_index = mp->client_index;
Neale Ranns37029302018-08-10 05:30:06 -07002269 ip6_address_encode (&ip6, event->ip);
Neale Rannsb8d44812017-11-10 06:53:54 -08002270 event->pid = mp->pid;
2271 }
2272 else
2273 {
2274 rv = vnet_add_del_ip6_nd_change_event
2275 (vnm, nd_change_delete_callback,
Neale Ranns37029302018-08-10 05:30:06 -07002276 mp->pid, &ip6 /* addr, in net byte order */ ,
Neale Rannsb8d44812017-11-10 06:53:54 -08002277 ip_resolver_process_node.index,
2278 IP6_ND_EVENT, ~0 /* pool index */ , 0 /* is_add */ );
2279 }
2280reply:
2281 REPLY_MACRO (VL_API_WANT_IP6_ND_EVENTS_REPLY);
2282}
2283
Neale Rannsf12dad62018-06-04 18:41:24 -07002284static clib_error_t *
2285want_ip6_nd_events_reaper (u32 client_index)
2286{
2287
2288 vpe_client_registration_t *rp;
2289 vl_api_ip6_nd_event_t *event;
2290 u32 *to_delete, *event_id;
2291 vpe_api_main_t *am;
2292 vnet_main_t *vnm;
2293 uword *p;
2294
2295 am = &vpe_api_main;
2296 vnm = vnet_get_main ();
2297 to_delete = NULL;
2298
2299 /* clear out all of its pending resolutions */
2300 /* *INDENT-OFF* */
2301 pool_foreach(event, am->nd_events,
2302 ({
2303 if (event->client_index == client_index)
2304 {
2305 vec_add1(to_delete, event - am->nd_events);
2306 }
2307 }));
2308 /* *INDENT-ON* */
2309
2310 vec_foreach (event_id, to_delete)
2311 {
2312 event = pool_elt_at_index (am->nd_events, *event_id);
2313 vnet_add_del_ip6_nd_change_event
2314 (vnm, nd_change_delete_callback,
Neale Ranns37029302018-08-10 05:30:06 -07002315 event->pid, event->ip,
Neale Rannsf12dad62018-06-04 18:41:24 -07002316 ip_resolver_process_node.index, IP6_ND_EVENT,
2317 ~0 /* pool index, notused */ , 0 /* is_add */ );
2318 }
2319 vec_free (to_delete);
2320
2321 /* remove from the registration hash */
2322 p = hash_get (am->wc_ip6_nd_events_registration_hash, client_index);
2323
2324 if (p)
2325 {
2326 rp = pool_elt_at_index (am->wc_ip6_nd_events_registrations, p[0]);
2327 pool_put (am->wc_ip6_nd_events_registrations, rp);
2328 hash_unset (am->wc_ip6_nd_events_registration_hash, client_index);
2329 if (pool_elts (am->wc_ip6_nd_events_registrations) == 0)
2330 wc_nd_set_publisher_node (~0, REPORT_MAX);
2331 }
2332 return (NULL);
2333}
2334
2335VL_MSG_API_REAPER_FUNCTION (want_ip6_nd_events_reaper);
2336
Neale Rannsb8d44812017-11-10 06:53:54 -08002337static void
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002338vl_api_want_ip6_ra_events_t_handler (vl_api_want_ip6_ra_events_t * mp)
2339{
2340 vpe_api_main_t *am = &vpe_api_main;
2341 vl_api_want_ip6_ra_events_reply_t *rmp;
2342 int rv = 0;
2343
2344 uword *p = hash_get (am->ip6_ra_events_registration_hash, mp->client_index);
2345 vpe_client_registration_t *rp;
2346 if (p)
2347 {
2348 if (mp->enable_disable)
2349 {
2350 clib_warning ("pid %d: already enabled...", ntohl (mp->pid));
2351 rv = VNET_API_ERROR_INVALID_REGISTRATION;
2352 goto reply;
2353 }
2354 else
2355 {
2356 rp = pool_elt_at_index (am->ip6_ra_events_registrations, p[0]);
2357 pool_put (am->ip6_ra_events_registrations, rp);
2358 hash_unset (am->ip6_ra_events_registration_hash, mp->client_index);
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002359 goto reply;
2360 }
2361 }
2362 if (mp->enable_disable == 0)
2363 {
2364 clib_warning ("pid %d: already disabled...", ntohl (mp->pid));
2365 rv = VNET_API_ERROR_INVALID_REGISTRATION;
2366 goto reply;
2367 }
2368 pool_get (am->ip6_ra_events_registrations, rp);
2369 rp->client_index = mp->client_index;
2370 rp->client_pid = ntohl (mp->pid);
2371 hash_set (am->ip6_ra_events_registration_hash, rp->client_index,
2372 rp - am->ip6_ra_events_registrations);
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002373
2374reply:
2375 REPLY_MACRO (VL_API_WANT_IP6_RA_EVENTS_REPLY);
2376}
2377
Neale Rannsf12dad62018-06-04 18:41:24 -07002378static clib_error_t *
2379want_ip6_ra_events_reaper (u32 client_index)
2380{
2381 vpe_api_main_t *am = &vpe_api_main;
2382 vpe_client_registration_t *rp;
2383 uword *p;
2384
2385 p = hash_get (am->ip6_ra_events_registration_hash, client_index);
2386
2387 if (p)
2388 {
2389 rp = pool_elt_at_index (am->ip6_ra_events_registrations, p[0]);
2390 pool_put (am->ip6_ra_events_registrations, rp);
2391 hash_unset (am->ip6_ra_events_registration_hash, client_index);
2392 }
2393 return (NULL);
2394}
2395
2396VL_MSG_API_REAPER_FUNCTION (want_ip6_ra_events_reaper);
2397
Juraj Sloboda4b9669d2018-01-15 10:39:21 +01002398static void
Neale Rannsb8d44812017-11-10 06:53:54 -08002399vl_api_proxy_arp_add_del_t_handler (vl_api_proxy_arp_add_del_t * mp)
2400{
2401 vl_api_proxy_arp_add_del_reply_t *rmp;
Neale Ranns37029302018-08-10 05:30:06 -07002402 ip4_address_t lo, hi;
Neale Rannsb8d44812017-11-10 06:53:54 -08002403 u32 fib_index;
2404 int rv;
Neale Rannsb8d44812017-11-10 06:53:54 -08002405
Neale Ranns37029302018-08-10 05:30:06 -07002406 fib_index = fib_table_find (FIB_PROTOCOL_IP4, ntohl (mp->proxy.table_id));
Neale Rannsb8d44812017-11-10 06:53:54 -08002407
Neale Ranns37029302018-08-10 05:30:06 -07002408 if (~0 == fib_index)
Neale Rannsb8d44812017-11-10 06:53:54 -08002409 {
2410 rv = VNET_API_ERROR_NO_SUCH_FIB;
2411 goto out;
2412 }
2413
Neale Ranns37029302018-08-10 05:30:06 -07002414 ip4_address_decode (mp->proxy.low, &lo);
2415 ip4_address_decode (mp->proxy.hi, &hi);
Neale Rannsb8d44812017-11-10 06:53:54 -08002416
Neale Ranns37029302018-08-10 05:30:06 -07002417 rv = vnet_proxy_arp_add_del (&lo, &hi, fib_index, mp->is_add == 0);
Neale Rannsb8d44812017-11-10 06:53:54 -08002418
2419out:
Neale Rannsb8d44812017-11-10 06:53:54 -08002420 REPLY_MACRO (VL_API_PROXY_ARP_ADD_DEL_REPLY);
2421}
2422
Neale Ranns0053de62018-05-22 08:40:52 -07002423typedef struct proxy_arp_walk_ctx_t_
2424{
2425 vl_api_registration_t *reg;
2426 u32 context;
2427} proxy_arp_walk_ctx_t;
2428
2429static walk_rc_t
2430send_proxy_arp_details (const ip4_address_t * lo_addr,
2431 const ip4_address_t * hi_addr,
2432 u32 fib_index, void *data)
2433{
2434 vl_api_proxy_arp_details_t *mp;
2435 proxy_arp_walk_ctx_t *ctx;
2436
2437 ctx = data;
2438
2439 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -04002440 clib_memset (mp, 0, sizeof (*mp));
Neale Ranns0053de62018-05-22 08:40:52 -07002441 mp->_vl_msg_id = ntohs (VL_API_PROXY_ARP_DETAILS);
2442 mp->context = ctx->context;
Neale Ranns37029302018-08-10 05:30:06 -07002443 mp->proxy.table_id = htonl (fib_index);
2444
2445 ip4_address_encode (lo_addr, mp->proxy.low);
2446 ip4_address_encode (hi_addr, mp->proxy.hi);
Neale Ranns0053de62018-05-22 08:40:52 -07002447
2448 vl_api_send_msg (ctx->reg, (u8 *) mp);
2449
2450 return (WALK_CONTINUE);
2451}
2452
2453static void
2454vl_api_proxy_arp_dump_t_handler (vl_api_proxy_arp_dump_t * mp)
2455{
2456 vl_api_registration_t *reg;
2457
2458 reg = vl_api_client_index_to_registration (mp->client_index);
2459 if (!reg)
2460 return;
2461
2462 proxy_arp_walk_ctx_t wctx = {
2463 .reg = reg,
2464 .context = mp->context,
2465 };
2466
2467 proxy_arp_walk (send_proxy_arp_details, &wctx);
2468}
2469
2470static walk_rc_t
Neale Ranns57e53bb2019-05-29 13:58:43 +00002471send_proxy_arp_intfc_details (u32 sw_if_index, void *data)
Neale Ranns0053de62018-05-22 08:40:52 -07002472{
2473 vl_api_proxy_arp_intfc_details_t *mp;
2474 proxy_arp_walk_ctx_t *ctx;
2475
Neale Ranns0053de62018-05-22 08:40:52 -07002476 ctx = data;
2477
2478 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -04002479 clib_memset (mp, 0, sizeof (*mp));
Neale Ranns0053de62018-05-22 08:40:52 -07002480 mp->_vl_msg_id = ntohs (VL_API_PROXY_ARP_INTFC_DETAILS);
2481 mp->context = ctx->context;
Neale Ranns57e53bb2019-05-29 13:58:43 +00002482 mp->sw_if_index = htonl (sw_if_index);
Neale Ranns0053de62018-05-22 08:40:52 -07002483
2484 vl_api_send_msg (ctx->reg, (u8 *) mp);
2485
2486 return (WALK_CONTINUE);
2487}
2488
2489static void
2490vl_api_proxy_arp_intfc_dump_t_handler (vl_api_proxy_arp_intfc_dump_t * mp)
2491{
2492 vl_api_registration_t *reg;
2493
2494 reg = vl_api_client_index_to_registration (mp->client_index);
2495 if (!reg)
2496 return;
2497
2498 proxy_arp_walk_ctx_t wctx = {
2499 .reg = reg,
2500 .context = mp->context,
2501 };
2502
Neale Ranns57e53bb2019-05-29 13:58:43 +00002503 proxy_arp_intfc_walk (send_proxy_arp_intfc_details, &wctx);
Neale Ranns0053de62018-05-22 08:40:52 -07002504}
2505
Neale Rannsb8d44812017-11-10 06:53:54 -08002506static void
2507 vl_api_proxy_arp_intfc_enable_disable_t_handler
2508 (vl_api_proxy_arp_intfc_enable_disable_t * mp)
2509{
2510 int rv = 0;
2511 vnet_main_t *vnm = vnet_get_main ();
2512 vl_api_proxy_arp_intfc_enable_disable_reply_t *rmp;
2513
2514 VALIDATE_SW_IF_INDEX (mp);
2515
Neale Ranns57e53bb2019-05-29 13:58:43 +00002516 rv = vnet_proxy_arp_enable_disable (vnm,
2517 ntohl (mp->sw_if_index),
2518 mp->enable_disable);
Neale Rannsb8d44812017-11-10 06:53:54 -08002519
2520 BAD_SW_IF_INDEX_LABEL;
2521
2522 REPLY_MACRO (VL_API_PROXY_ARP_INTFC_ENABLE_DISABLE_REPLY);
2523}
2524
John Loc7b43042018-04-13 16:46:22 -04002525static void
2526vl_api_ip_probe_neighbor_t_handler (vl_api_ip_probe_neighbor_t * mp)
2527{
2528 int rv = 0;
2529 vlib_main_t *vm = vlib_get_main ();
2530 vl_api_ip_probe_neighbor_reply_t *rmp;
2531 clib_error_t *error;
Neale Ranns37029302018-08-10 05:30:06 -07002532 ip46_address_t dst;
2533 ip46_type_t itype;
John Loc7b43042018-04-13 16:46:22 -04002534
2535 VALIDATE_SW_IF_INDEX (mp);
2536
2537 u32 sw_if_index = ntohl (mp->sw_if_index);
Neale Ranns37029302018-08-10 05:30:06 -07002538 itype = ip_address_decode (&mp->dst, &dst);
John Loc7b43042018-04-13 16:46:22 -04002539
Neale Ranns37029302018-08-10 05:30:06 -07002540 if (IP46_TYPE_IP6 == itype)
2541 error = ip6_probe_neighbor (vm, &dst.ip6, sw_if_index, 0);
John Loc7b43042018-04-13 16:46:22 -04002542 else
Neale Ranns37029302018-08-10 05:30:06 -07002543 error = ip4_probe_neighbor (vm, &dst.ip4, sw_if_index, 0);
John Loc7b43042018-04-13 16:46:22 -04002544
2545 if (error)
2546 {
2547 clib_error_report (error);
2548 rv = clib_error_get_code (error);
2549 }
2550
2551 BAD_SW_IF_INDEX_LABEL;
2552
2553 REPLY_MACRO (VL_API_PROXY_ARP_INTFC_ENABLE_DISABLE_REPLY);
2554}
2555
John Lo7f358b32018-04-28 01:19:24 -04002556static void
2557 vl_api_ip_scan_neighbor_enable_disable_t_handler
2558 (vl_api_ip_scan_neighbor_enable_disable_t * mp)
2559{
2560 int rv = 0;
2561 vl_api_ip_scan_neighbor_enable_disable_reply_t *rmp;
2562 ip_neighbor_scan_arg_t arg;
2563
2564 arg.mode = mp->mode;
2565 arg.scan_interval = mp->scan_interval;
2566 arg.max_proc_time = mp->max_proc_time;
2567 arg.max_update = mp->max_update;
2568 arg.scan_int_delay = mp->scan_int_delay;
2569 arg.stale_threshold = mp->stale_threshold;
2570 ip_neighbor_scan_enable_disable (&arg);
2571
2572 REPLY_MACRO (VL_API_IP_SCAN_NEIGHBOR_ENABLE_DISABLE_REPLY);
2573}
2574
Neale Rannsb8d44812017-11-10 06:53:54 -08002575static int
2576ip4_reset_fib_t_handler (vl_api_reset_fib_t * mp)
2577{
2578 vnet_main_t *vnm = vnet_get_main ();
2579 vnet_interface_main_t *im = &vnm->interface_main;
2580 ip4_main_t *im4 = &ip4_main;
2581 static u32 *sw_if_indices_to_shut;
Neale Rannsb8d44812017-11-10 06:53:54 -08002582 fib_table_t *fib_table;
2583 ip4_fib_t *fib;
2584 u32 sw_if_index;
2585 int i;
2586 int rv = VNET_API_ERROR_NO_SUCH_FIB;
2587 u32 target_fib_id = ntohl (mp->vrf_id);
2588
Neale Rannsb8d44812017-11-10 06:53:54 -08002589 /* *INDENT-OFF* */
2590 pool_foreach (fib_table, im4->fibs,
2591 ({
2592 vnet_sw_interface_t * si;
2593
2594 fib = pool_elt_at_index (im4->v4_fibs, fib_table->ft_index);
2595
2596 if (fib->table_id != target_fib_id)
2597 continue;
2598
2599 /* remove any mpls encap/decap labels */
2600 mpls_fib_reset_labels (fib->table_id);
2601
2602 /* remove any proxy arps in this fib */
2603 vnet_proxy_arp_fib_reset (fib->table_id);
2604
2605 /* Set the flow hash for this fib to the default */
2606 vnet_set_ip4_flow_hash (fib->table_id, IP_FLOW_HASH_DEFAULT);
2607
2608 vec_reset_length (sw_if_indices_to_shut);
2609
2610 /* Shut down interfaces in this FIB / clean out intfc routes */
2611 pool_foreach (si, im->sw_interfaces,
2612 ({
2613 u32 sw_if_index = si->sw_if_index;
2614
2615 if (sw_if_index < vec_len (im4->fib_index_by_sw_if_index)
2616 && (im4->fib_index_by_sw_if_index[si->sw_if_index] ==
2617 fib->index))
2618 vec_add1 (sw_if_indices_to_shut, si->sw_if_index);
2619 }));
2620
2621 for (i = 0; i < vec_len (sw_if_indices_to_shut); i++) {
2622 sw_if_index = sw_if_indices_to_shut[i];
2623
2624 u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index);
2625 flags &= ~(VNET_SW_INTERFACE_FLAG_ADMIN_UP);
2626 vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
2627 }
2628
2629 fib_table_flush(fib->index, FIB_PROTOCOL_IP4, FIB_SOURCE_API);
2630
2631 rv = 0;
2632 break;
2633 })); /* pool_foreach (fib) */
2634 /* *INDENT-ON* */
2635
Neale Rannsb8d44812017-11-10 06:53:54 -08002636 return rv;
2637}
2638
2639static int
2640ip6_reset_fib_t_handler (vl_api_reset_fib_t * mp)
2641{
2642 vnet_main_t *vnm = vnet_get_main ();
2643 vnet_interface_main_t *im = &vnm->interface_main;
2644 ip6_main_t *im6 = &ip6_main;
Neale Rannsb8d44812017-11-10 06:53:54 -08002645 static u32 *sw_if_indices_to_shut;
2646 fib_table_t *fib_table;
2647 ip6_fib_t *fib;
2648 u32 sw_if_index;
2649 int i;
2650 int rv = VNET_API_ERROR_NO_SUCH_FIB;
2651 u32 target_fib_id = ntohl (mp->vrf_id);
2652
Neale Rannsb8d44812017-11-10 06:53:54 -08002653 /* *INDENT-OFF* */
2654 pool_foreach (fib_table, im6->fibs,
2655 ({
2656 vnet_sw_interface_t * si;
2657
2658 fib = pool_elt_at_index (im6->v6_fibs, fib_table->ft_index);
2659
2660 if (fib->table_id != target_fib_id)
2661 continue;
2662
2663 vec_reset_length (sw_if_indices_to_shut);
2664
2665 /* Set the flow hash for this fib to the default */
2666 vnet_set_ip6_flow_hash (fib->table_id, IP_FLOW_HASH_DEFAULT);
2667
2668 /* Shut down interfaces in this FIB / clean out intfc routes */
2669 pool_foreach (si, im->sw_interfaces,
2670 ({
2671 if (im6->fib_index_by_sw_if_index[si->sw_if_index] ==
2672 fib->index)
2673 vec_add1 (sw_if_indices_to_shut, si->sw_if_index);
2674 }));
2675
2676 for (i = 0; i < vec_len (sw_if_indices_to_shut); i++) {
2677 sw_if_index = sw_if_indices_to_shut[i];
2678
2679 u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index);
2680 flags &= ~(VNET_SW_INTERFACE_FLAG_ADMIN_UP);
2681 vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
2682 }
2683
2684 fib_table_flush(fib->index, FIB_PROTOCOL_IP6, FIB_SOURCE_API);
2685
2686 rv = 0;
2687 break;
2688 })); /* pool_foreach (fib) */
2689 /* *INDENT-ON* */
2690
Neale Rannsb8d44812017-11-10 06:53:54 -08002691 return rv;
2692}
2693
2694static void
2695vl_api_reset_fib_t_handler (vl_api_reset_fib_t * mp)
2696{
2697 int rv;
2698 vl_api_reset_fib_reply_t *rmp;
2699
2700 if (mp->is_ipv6)
2701 rv = ip6_reset_fib_t_handler (mp);
2702 else
2703 rv = ip4_reset_fib_t_handler (mp);
2704
2705 REPLY_MACRO (VL_API_RESET_FIB_REPLY);
2706}
2707
2708static void
2709vl_api_set_arp_neighbor_limit_t_handler (vl_api_set_arp_neighbor_limit_t * mp)
2710{
2711 int rv;
2712 vl_api_set_arp_neighbor_limit_reply_t *rmp;
2713 vnet_main_t *vnm = vnet_get_main ();
2714 clib_error_t *error;
2715
2716 vnm->api_errno = 0;
2717
2718 if (mp->is_ipv6)
2719 error = ip6_set_neighbor_limit (ntohl (mp->arp_neighbor_limit));
2720 else
2721 error = ip4_set_arp_limit (ntohl (mp->arp_neighbor_limit));
2722
2723 if (error)
2724 {
2725 clib_error_report (error);
2726 rv = VNET_API_ERROR_UNSPECIFIED;
2727 }
2728 else
2729 {
2730 rv = vnm->api_errno;
2731 }
2732
2733 REPLY_MACRO (VL_API_SET_ARP_NEIGHBOR_LIMIT_REPLY);
2734}
2735
Klement Sekera75e7d132017-09-20 08:26:30 +02002736void
2737vl_api_ip_reassembly_set_t_handler (vl_api_ip_reassembly_set_t * mp)
2738{
2739 vl_api_ip_reassembly_set_reply_t *rmp;
2740 int rv = 0;
2741 if (mp->is_ip6)
2742 {
2743 rv = ip6_reass_set (clib_net_to_host_u32 (mp->timeout_ms),
2744 clib_net_to_host_u32 (mp->max_reassemblies),
Klement Sekera3a343d42019-05-16 14:35:46 +02002745 clib_net_to_host_u32 (mp->max_reassembly_length),
Klement Sekera75e7d132017-09-20 08:26:30 +02002746 clib_net_to_host_u32 (mp->expire_walk_interval_ms));
2747 }
2748 else
2749 {
2750 rv = ip4_reass_set (clib_net_to_host_u32 (mp->timeout_ms),
2751 clib_net_to_host_u32 (mp->max_reassemblies),
Klement Sekera3a343d42019-05-16 14:35:46 +02002752 clib_net_to_host_u32 (mp->max_reassembly_length),
Klement Sekera75e7d132017-09-20 08:26:30 +02002753 clib_net_to_host_u32 (mp->expire_walk_interval_ms));
2754 }
2755
2756 REPLY_MACRO (VL_API_IP_REASSEMBLY_SET_REPLY);
2757}
2758
2759void
2760vl_api_ip_reassembly_get_t_handler (vl_api_ip_reassembly_get_t * mp)
2761{
Ole Troan2e1c8962019-04-10 09:44:23 +02002762 vl_api_registration_t *rp;
Klement Sekera75e7d132017-09-20 08:26:30 +02002763
Ole Troan2e1c8962019-04-10 09:44:23 +02002764 rp = vl_api_client_index_to_registration (mp->client_index);
2765 if (rp == 0)
Klement Sekera75e7d132017-09-20 08:26:30 +02002766 return;
2767
2768 vl_api_ip_reassembly_get_reply_t *rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04002769 clib_memset (rmp, 0, sizeof (*rmp));
Klement Sekera75e7d132017-09-20 08:26:30 +02002770 rmp->_vl_msg_id = ntohs (VL_API_IP_REASSEMBLY_GET_REPLY);
2771 rmp->context = mp->context;
2772 rmp->retval = 0;
2773 if (mp->is_ip6)
2774 {
2775 rmp->is_ip6 = 1;
2776 ip6_reass_get (&rmp->timeout_ms, &rmp->max_reassemblies,
2777 &rmp->expire_walk_interval_ms);
2778 }
2779 else
2780 {
2781 rmp->is_ip6 = 0;
2782 ip4_reass_get (&rmp->timeout_ms, &rmp->max_reassemblies,
Klement Sekera3a343d42019-05-16 14:35:46 +02002783 &rmp->max_reassembly_length,
Klement Sekera75e7d132017-09-20 08:26:30 +02002784 &rmp->expire_walk_interval_ms);
2785 }
2786 rmp->timeout_ms = clib_host_to_net_u32 (rmp->timeout_ms);
2787 rmp->max_reassemblies = clib_host_to_net_u32 (rmp->max_reassemblies);
2788 rmp->expire_walk_interval_ms =
2789 clib_host_to_net_u32 (rmp->expire_walk_interval_ms);
Ole Troan2e1c8962019-04-10 09:44:23 +02002790 vl_api_send_msg (rp, (u8 *) rmp);
Klement Sekera75e7d132017-09-20 08:26:30 +02002791}
2792
Klement Sekera4c533132018-02-22 11:41:12 +01002793void
2794 vl_api_ip_reassembly_enable_disable_t_handler
2795 (vl_api_ip_reassembly_enable_disable_t * mp)
2796{
2797 vl_api_ip_reassembly_enable_disable_reply_t *rmp;
2798 int rv = 0;
2799 rv = ip4_reass_enable_disable (clib_net_to_host_u32 (mp->sw_if_index),
2800 mp->enable_ip4);
2801 if (0 == rv)
2802 {
2803 rv = ip6_reass_enable_disable (clib_net_to_host_u32 (mp->sw_if_index),
2804 mp->enable_ip6);
2805 }
2806
Choree7f61d12018-11-28 10:27:58 +03302807 REPLY_MACRO (VL_API_IP_REASSEMBLY_ENABLE_DISABLE_REPLY);
Klement Sekera4c533132018-02-22 11:41:12 +01002808}
2809
Neale Ranns92207752019-06-03 13:21:40 +00002810typedef struct ip_punt_redirect_walk_ctx_t_
Pavel Kotucek609e1212018-11-27 09:59:44 +01002811{
Neale Ranns92207752019-06-03 13:21:40 +00002812 vl_api_registration_t *reg;
2813 u32 context;
2814} ip_punt_redirect_walk_ctx_t;
2815
2816static walk_rc_t
2817send_ip_punt_redirect_details (u32 rx_sw_if_index,
2818 const ip_punt_redirect_rx_t * ipr, void *arg)
2819{
Neale Ranns92207752019-06-03 13:21:40 +00002820 ip_punt_redirect_walk_ctx_t *ctx = arg;
Pavel Kotucek609e1212018-11-27 09:59:44 +01002821 vl_api_ip_punt_redirect_details_t *mp;
Neale Ranns097fa662018-05-01 05:17:55 -07002822 fib_path_encode_ctx_t path_ctx = {
2823 .rpaths = NULL,
2824 };
Pavel Kotucek609e1212018-11-27 09:59:44 +01002825
2826 mp = vl_msg_api_alloc (sizeof (*mp));
2827 if (!mp)
Neale Ranns92207752019-06-03 13:21:40 +00002828 return (WALK_STOP);;
Pavel Kotucek609e1212018-11-27 09:59:44 +01002829
2830 clib_memset (mp, 0, sizeof (*mp));
2831 mp->_vl_msg_id = ntohs (VL_API_IP_PUNT_REDIRECT_DETAILS);
Neale Ranns92207752019-06-03 13:21:40 +00002832 mp->context = ctx->context;
Pavel Kotucek609e1212018-11-27 09:59:44 +01002833
Neale Ranns097fa662018-05-01 05:17:55 -07002834 fib_path_list_walk_w_ext (ipr->pl, NULL, fib_path_encode, &path_ctx);
Neale Ranns92207752019-06-03 13:21:40 +00002835
2836 mp->punt.rx_sw_if_index = htonl (rx_sw_if_index);
Neale Ranns097fa662018-05-01 05:17:55 -07002837 mp->punt.tx_sw_if_index = htonl (path_ctx.rpaths[0].frp_sw_if_index);
Neale Ranns92207752019-06-03 13:21:40 +00002838
Neale Ranns097fa662018-05-01 05:17:55 -07002839 ip_address_encode (&path_ctx.rpaths[0].frp_addr,
Neale Ranns92207752019-06-03 13:21:40 +00002840 fib_proto_to_ip46 (ipr->fproto), &mp->punt.nh);
2841
2842 vl_api_send_msg (ctx->reg, (u8 *) mp);
2843
Neale Ranns097fa662018-05-01 05:17:55 -07002844 vec_free (path_ctx.rpaths);
Neale Ranns92207752019-06-03 13:21:40 +00002845
2846 return (WALK_CONTINUE);
Pavel Kotucek609e1212018-11-27 09:59:44 +01002847}
2848
2849static void
2850vl_api_ip_punt_redirect_dump_t_handler (vl_api_ip_punt_redirect_dump_t * mp)
2851{
2852 vl_api_registration_t *reg;
Neale Ranns92207752019-06-03 13:21:40 +00002853 fib_protocol_t fproto;
Pavel Kotucek609e1212018-11-27 09:59:44 +01002854
Pavel Kotucek609e1212018-11-27 09:59:44 +01002855 reg = vl_api_client_index_to_registration (mp->client_index);
2856 if (!reg)
2857 return;
2858
Neale Ranns92207752019-06-03 13:21:40 +00002859 fproto = mp->is_ipv6 ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4;
Pavel Kotucek609e1212018-11-27 09:59:44 +01002860
Neale Ranns92207752019-06-03 13:21:40 +00002861 ip_punt_redirect_walk_ctx_t ctx = {
2862 .reg = reg,
2863 .context = mp->context,
2864 };
2865
2866 if (~0 != mp->sw_if_index)
Pavel Kotucek609e1212018-11-27 09:59:44 +01002867 {
Neale Ranns92207752019-06-03 13:21:40 +00002868 u32 rx_sw_if_index;
2869 index_t pri;
2870
2871 rx_sw_if_index = ntohl (mp->sw_if_index);
2872 pri = ip_punt_redirect_find (fproto, rx_sw_if_index);
2873
2874 if (INDEX_INVALID == pri)
2875 return;
2876
2877 send_ip_punt_redirect_details (rx_sw_if_index,
2878 ip_punt_redirect_get (pri), &ctx);
Pavel Kotucek609e1212018-11-27 09:59:44 +01002879 }
2880 else
Neale Ranns92207752019-06-03 13:21:40 +00002881 ip_punt_redirect_walk (fproto, send_ip_punt_redirect_details, &ctx);
Pavel Kotucek609e1212018-11-27 09:59:44 +01002882}
2883
Dave Barachb5e8a772016-12-06 12:04:42 -05002884#define vl_msg_name_crc_list
2885#include <vnet/ip/ip.api.h>
2886#undef vl_msg_name_crc_list
2887
2888static void
2889setup_message_id_table (api_main_t * am)
2890{
2891#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
2892 foreach_vl_msg_name_crc_ip;
2893#undef _
2894}
2895
2896static clib_error_t *
2897ip_api_hookup (vlib_main_t * vm)
2898{
2899 api_main_t *am = &api_main;
2900
2901#define _(N,n) \
2902 vl_msg_api_set_handlers(VL_API_##N, #n, \
2903 vl_api_##n##_t_handler, \
2904 vl_noop_handler, \
2905 vl_api_##n##_t_endian, \
2906 vl_api_##n##_t_print, \
2907 sizeof(vl_api_##n##_t), 1);
2908 foreach_ip_api_msg;
2909#undef _
2910
2911 /*
Neale Ranns6a231a12018-10-17 06:38:00 +00002912 * Mark the route add/del API as MP safe
2913 */
Neale Ranns097fa662018-05-01 05:17:55 -07002914 am->is_mp_safe[VL_API_IP_ROUTE_ADD_DEL] = 1;
2915 am->is_mp_safe[VL_API_IP_ROUTE_ADD_DEL_REPLY] = 1;
Neale Ranns6a231a12018-10-17 06:38:00 +00002916
2917 /*
Dave Barachb5e8a772016-12-06 12:04:42 -05002918 * Set up the (msg_name, crc, message-id) table
2919 */
2920 setup_message_id_table (am);
2921
Juraj Sloboda52574522018-05-03 10:03:50 +02002922 ra_set_publisher_node (wc_arp_process_node.index, RA_REPORT);
2923
Dave Barachb5e8a772016-12-06 12:04:42 -05002924 return 0;
2925}
2926
2927VLIB_API_INIT_FUNCTION (ip_api_hookup);
2928
2929/*
2930 * fd.io coding-style-patch-verification: ON
2931 *
2932 * Local Variables:
2933 * eval: (c-set-style "gnu")
2934 * End:
2935 */