blob: b5f3e93b33e469b4f30605f13bd5112eb4e3e2a0 [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>
Neale Ranns37029302018-08-10 05:30:06 -070028#include <vnet/ip/ip_types_api.h>
Pavel Kotucek609e1212018-11-27 09:59:44 +010029#include <vnet/ip/ip_punt_drop.h>
Neale Ranns097fa662018-05-01 05:17:55 -070030#include <vnet/ip/ip_types_api.h>
Neale Ranns8f5fef22020-12-21 08:29:34 +000031#include <vnet/ip/ip_path_mtu.h>
Dave Barachb5e8a772016-12-06 12:04:42 -050032#include <vnet/fib/fib_table.h>
33#include <vnet/fib/fib_api.h>
Dave Barachb5e8a772016-12-06 12:04:42 -050034#include <vnet/ethernet/arp_packet.h>
Neale Ranns5a8123b2017-01-26 01:18:23 -080035#include <vnet/mfib/ip6_mfib.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000036#include <vnet/mfib/ip4_mfib.h>
37#include <vnet/mfib/mfib_signal.h>
Neale Ranns5a8123b2017-01-26 01:18:23 -080038#include <vnet/mfib/mfib_entry.h>
Neale Ranns097fa662018-05-01 05:17:55 -070039#include <vnet/mfib/mfib_api.h>
Neale Rannsb8d44812017-11-10 06:53:54 -080040#include <vnet/ip/ip_source_and_port_range_check.h>
Neale Ranns92207752019-06-03 13:21:40 +000041#include <vnet/fib/fib_path_list.h>
Neale Rannsb8d44812017-11-10 06:53:54 -080042#include <vnet/ip/ip6_hop_by_hop.h>
Neale Rannscbe25aa2019-09-30 10:53:31 +000043#include <vnet/ip/ip6_link.h>
Klement Sekerade34c352019-06-25 11:19:22 +000044#include <vnet/ip/reass/ip4_sv_reass.h>
Klement Sekera896c8962019-06-24 11:52:49 +000045#include <vnet/ip/reass/ip4_full_reass.h>
Klement Sekerade34c352019-06-25 11:19:22 +000046#include <vnet/ip/reass/ip6_sv_reass.h>
Klement Sekera896c8962019-06-24 11:52:49 +000047#include <vnet/ip/reass/ip6_full_reass.h>
Steven Luongc3ed1c92020-07-27 10:06:58 -070048#include <vnet/ip/ip_table.h>
Neale Rannse4031132020-10-26 13:00:06 +000049#include <vnet/ip/ip_container_proxy.h>
Dave Barachb5e8a772016-12-06 12:04:42 -050050
Ole Troan33a58172019-09-04 09:12:29 +020051#include <vnet/format_fns.h>
Filip Tehlar5ff59a12021-06-23 14:38:38 +000052#include <vnet/ip/ip.api_enum.h>
53#include <vnet/ip/ip.api_types.h>
Neale Ranns5a8123b2017-01-26 01:18:23 -080054
Filip Tehlar5ff59a12021-06-23 14:38:38 +000055#define REPLY_MSG_ID_BASE ip4_main.msg_id_base
56#include <vlibapi/api_helper_macros.h>
Pavel Kotucek609e1212018-11-27 09:59:44 +010057
Dave Barachb5e8a772016-12-06 12:04:42 -050058static void
Neale Rannscbe25aa2019-09-30 10:53:31 +000059 vl_api_sw_interface_ip6_enable_disable_t_handler
60 (vl_api_sw_interface_ip6_enable_disable_t * mp)
Dave Barachb5e8a772016-12-06 12:04:42 -050061{
Neale Rannscbe25aa2019-09-30 10:53:31 +000062 vl_api_sw_interface_ip6_enable_disable_reply_t *rmp;
63 int rv = 0;
Dave Barachb5e8a772016-12-06 12:04:42 -050064
Neale Rannscbe25aa2019-09-30 10:53:31 +000065 VALIDATE_SW_IF_INDEX (mp);
Neale Ranns37029302018-08-10 05:30:06 -070066
Neale Rannscbe25aa2019-09-30 10:53:31 +000067 rv = ((mp->enable == 1) ?
Neale Rannsec40a7d2020-04-23 07:36:12 +000068 ip6_link_enable (ntohl (mp->sw_if_index), NULL) :
Neale Rannscbe25aa2019-09-30 10:53:31 +000069 ip6_link_disable (ntohl (mp->sw_if_index)));
Dave Barachb5e8a772016-12-06 12:04:42 -050070
Neale Rannscbe25aa2019-09-30 10:53:31 +000071 BAD_SW_IF_INDEX_LABEL;
Dave Barachb5e8a772016-12-06 12:04:42 -050072
Neale Rannscbe25aa2019-09-30 10:53:31 +000073 REPLY_MACRO (VL_API_SW_INTERFACE_IP6_ENABLE_DISABLE_REPLY);
Dave Barachb5e8a772016-12-06 12:04:42 -050074}
75
Dave Barachb5e8a772016-12-06 12:04:42 -050076static void
Neale Ranns097fa662018-05-01 05:17:55 -070077send_ip_table_details (vpe_api_main_t * am,
78 vl_api_registration_t * reg,
79 u32 context, const fib_table_t * table)
Dave Barachb5e8a772016-12-06 12:04:42 -050080{
Neale Ranns097fa662018-05-01 05:17:55 -070081 vl_api_ip_table_details_t *mp;
Dave Barachb5e8a772016-12-06 12:04:42 -050082
Neale Ranns097fa662018-05-01 05:17:55 -070083 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb5e8a772016-12-06 12:04:42 -050084 if (!mp)
85 return;
Dave Barachb7b92992018-10-17 10:38:51 -040086 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlar5ff59a12021-06-23 14:38:38 +000087 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_IP_TABLE_DETAILS);
Dave Barachb5e8a772016-12-06 12:04:42 -050088 mp->context = context;
89
Neale Ranns097fa662018-05-01 05:17:55 -070090 mp->table.is_ip6 = (table->ft_proto == FIB_PROTOCOL_IP6);
91 mp->table.table_id = htonl (table->ft_table_id);
92 memcpy (mp->table.name, table->ft_desc,
93 clib_min (vec_len (table->ft_desc), sizeof (mp->table.name)));
Dave Barachb5e8a772016-12-06 12:04:42 -050094
Florin Coras6c4dae22018-01-09 06:39:23 -080095 vl_api_send_msg (reg, (u8 *) mp);
Dave Barachb5e8a772016-12-06 12:04:42 -050096}
97
Neale Ranns097fa662018-05-01 05:17:55 -070098static void
99vl_api_ip_table_dump_t_handler (vl_api_ip_table_dump_t * mp)
100{
101 vpe_api_main_t *am = &vpe_api_main;
102 vl_api_registration_t *reg;
103 fib_table_t *fib_table;
104
105 reg = vl_api_client_index_to_registration (mp->client_index);
106 if (!reg)
107 return;
108
109 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100110 pool_foreach (fib_table, ip4_main.fibs)
111 {
Neale Ranns097fa662018-05-01 05:17:55 -0700112 send_ip_table_details(am, reg, mp->context, fib_table);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100113 }
114 pool_foreach (fib_table, ip6_main.fibs)
115 {
Neale Ranns097fa662018-05-01 05:17:55 -0700116 /* don't send link locals */
117 if (fib_table->ft_flags & FIB_TABLE_FLAG_IP6_LL)
118 continue;
119 send_ip_table_details(am, reg, mp->context, fib_table);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100120 }
Neale Ranns097fa662018-05-01 05:17:55 -0700121 /* *INDENT-ON* */
122}
123
Neale Rannsa3af3372017-03-28 03:49:52 -0700124typedef struct vl_api_ip_fib_dump_walk_ctx_t_
125{
126 fib_node_index_t *feis;
127} vl_api_ip_fib_dump_walk_ctx_t;
128
Neale Ranns89541992017-04-06 04:41:02 -0700129static fib_table_walk_rc_t
Neale Rannsa3af3372017-03-28 03:49:52 -0700130vl_api_ip_fib_dump_walk (fib_node_index_t fei, void *arg)
131{
132 vl_api_ip_fib_dump_walk_ctx_t *ctx = arg;
133
134 vec_add1 (ctx->feis, fei);
135
Neale Ranns89541992017-04-06 04:41:02 -0700136 return (FIB_TABLE_WALK_CONTINUE);
Neale Rannsa3af3372017-03-28 03:49:52 -0700137}
138
Dave Barachb5e8a772016-12-06 12:04:42 -0500139static void
Neale Ranns097fa662018-05-01 05:17:55 -0700140send_ip_route_details (vpe_api_main_t * am,
141 vl_api_registration_t * reg,
142 u32 context, fib_node_index_t fib_entry_index)
Dave Barachb5e8a772016-12-06 12:04:42 -0500143{
Neale Ranns097fa662018-05-01 05:17:55 -0700144 fib_route_path_t *rpaths, *rpath;
145 vl_api_ip_route_details_t *mp;
Neale Rannsc5d43172018-07-30 08:04:40 -0700146 const fib_prefix_t *pfx;
Dave Barachb5e8a772016-12-06 12:04:42 -0500147 vl_api_fib_path_t *fp;
148 int path_count;
149
Neale Ranns097fa662018-05-01 05:17:55 -0700150 rpaths = NULL;
151 pfx = fib_entry_get_prefix (fib_entry_index);
152 rpaths = fib_entry_encode (fib_entry_index);
153
154 path_count = vec_len (rpaths);
Dave Barachb5e8a772016-12-06 12:04:42 -0500155 mp = vl_msg_api_alloc (sizeof (*mp) + path_count * sizeof (*fp));
156 if (!mp)
157 return;
Dave Barachb7b92992018-10-17 10:38:51 -0400158 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlar5ff59a12021-06-23 14:38:38 +0000159 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_IP_ROUTE_DETAILS);
Dave Barachb5e8a772016-12-06 12:04:42 -0500160 mp->context = context;
161
Neale Ranns097fa662018-05-01 05:17:55 -0700162 ip_prefix_encode (pfx, &mp->route.prefix);
163 mp->route.table_id =
164 htonl (fib_table_get_table_id
165 (fib_entry_get_fib_index (fib_entry_index), pfx->fp_proto));
166 mp->route.n_paths = path_count;
167 mp->route.stats_index =
168 htonl (fib_table_entry_get_stats_index
169 (fib_entry_get_fib_index (fib_entry_index), pfx));
Dave Barachb5e8a772016-12-06 12:04:42 -0500170
Neale Ranns097fa662018-05-01 05:17:55 -0700171 fp = mp->route.paths;
172 vec_foreach (rpath, rpaths)
Dave Barachb5e8a772016-12-06 12:04:42 -0500173 {
Neale Ranns097fa662018-05-01 05:17:55 -0700174 fib_api_path_encode (rpath, fp);
Dave Barachb5e8a772016-12-06 12:04:42 -0500175 fp++;
176 }
177
Florin Coras6c4dae22018-01-09 06:39:23 -0800178 vl_api_send_msg (reg, (u8 *) mp);
Neale Ranns9db6ada2019-11-08 12:42:31 +0000179 vec_free (rpaths);
Dave Barachb5e8a772016-12-06 12:04:42 -0500180}
181
Neale Ranns976b2592019-12-04 06:11:00 +0000182static void
183send_ip_route_v2_details (vpe_api_main_t *am, vl_api_registration_t *reg,
184 u32 context, fib_node_index_t fib_entry_index)
185{
186 fib_route_path_t *rpaths, *rpath;
187 vl_api_ip_route_v2_details_t *mp;
188 const fib_prefix_t *pfx;
189 vl_api_fib_path_t *fp;
190 int path_count;
191
192 rpaths = NULL;
193 pfx = fib_entry_get_prefix (fib_entry_index);
194 rpaths = fib_entry_encode (fib_entry_index);
195
196 path_count = vec_len (rpaths);
197 mp = vl_msg_api_alloc (sizeof (*mp) + path_count * sizeof (*fp));
198 if (!mp)
199 return;
200 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlar5ff59a12021-06-23 14:38:38 +0000201 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_IP_ROUTE_V2_DETAILS);
Neale Ranns976b2592019-12-04 06:11:00 +0000202 mp->context = context;
203
204 ip_prefix_encode (pfx, &mp->route.prefix);
205 mp->route.table_id = htonl (fib_table_get_table_id (
206 fib_entry_get_fib_index (fib_entry_index), pfx->fp_proto));
207 mp->route.n_paths = path_count;
208 mp->route.src = fib_entry_get_best_source (fib_entry_index);
209 mp->route.stats_index = htonl (fib_table_entry_get_stats_index (
210 fib_entry_get_fib_index (fib_entry_index), pfx));
211
212 fp = mp->route.paths;
213 vec_foreach (rpath, rpaths)
214 {
215 fib_api_path_encode (rpath, fp);
216 fp++;
217 }
218
219 vl_api_send_msg (reg, (u8 *) mp);
220 vec_free (rpaths);
221}
222
Dave Barachd7cb1b52016-12-09 09:52:16 -0500223typedef struct apt_ip6_fib_show_ctx_t_
224{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500225 fib_node_index_t *entries;
Dave Barachb5e8a772016-12-06 12:04:42 -0500226} api_ip6_fib_show_ctx_t;
227
Dave Barachb5e8a772016-12-06 12:04:42 -0500228static void
Neale Ranns097fa662018-05-01 05:17:55 -0700229vl_api_ip_route_dump_t_handler (vl_api_ip_route_dump_t * mp)
Dave Barachb5e8a772016-12-06 12:04:42 -0500230{
231 vpe_api_main_t *am = &vpe_api_main;
Dave Barachb5e8a772016-12-06 12:04:42 -0500232 fib_node_index_t *fib_entry_index;
Florin Coras6c4dae22018-01-09 06:39:23 -0800233 vl_api_registration_t *reg;
Neale Ranns097fa662018-05-01 05:17:55 -0700234 fib_protocol_t fproto;
235 u32 fib_index;
Dave Barachb5e8a772016-12-06 12:04:42 -0500236
Florin Coras6c4dae22018-01-09 06:39:23 -0800237 reg = vl_api_client_index_to_registration (mp->client_index);
238 if (!reg)
Dave Barachb5e8a772016-12-06 12:04:42 -0500239 return;
240
Neale Ranns097fa662018-05-01 05:17:55 -0700241 vl_api_ip_fib_dump_walk_ctx_t ctx = {
242 .feis = NULL,
243 };
Neale Ranns81458422018-03-12 06:59:36 -0700244
Neale Ranns097fa662018-05-01 05:17:55 -0700245 fproto = (mp->table.is_ip6 ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
246 fib_index = fib_table_find (fproto, ntohl (mp->table.table_id));
247
248 if (INDEX_INVALID == fib_index)
249 return;
250
251 fib_table_walk (fib_index, fproto, vl_api_ip_fib_dump_walk, &ctx);
252
253 vec_foreach (fib_entry_index, ctx.feis)
254 {
255 send_ip_route_details (am, reg, mp->context, *fib_entry_index);
256 }
257
258 vec_free (ctx.feis);
Dave Barachb5e8a772016-12-06 12:04:42 -0500259}
260
261static void
Neale Ranns976b2592019-12-04 06:11:00 +0000262vl_api_ip_route_v2_dump_t_handler (vl_api_ip_route_v2_dump_t *mp)
263{
264 vpe_api_main_t *am = &vpe_api_main;
265 fib_node_index_t *fib_entry_index;
266 vl_api_registration_t *reg;
267 fib_protocol_t fproto;
268 fib_source_t src;
269 u32 fib_index;
270
271 reg = vl_api_client_index_to_registration (mp->client_index);
272 if (!reg)
273 return;
274
275 vl_api_ip_fib_dump_walk_ctx_t ctx = {
276 .feis = NULL,
277 };
278
279 fproto = (mp->table.is_ip6 ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
280 fib_index = fib_table_find (fproto, ntohl (mp->table.table_id));
281 src = mp->src;
282
283 if (INDEX_INVALID == fib_index)
284 return;
285
286 if (src)
287 fib_table_walk_w_src (fib_index, fproto, src, vl_api_ip_fib_dump_walk,
288 &ctx);
289 else
290 fib_table_walk (fib_index, fproto, vl_api_ip_fib_dump_walk, &ctx);
291
292 vec_foreach (fib_entry_index, ctx.feis)
293 {
294 send_ip_route_v2_details (am, reg, mp->context, *fib_entry_index);
295 }
296
297 vec_free (ctx.feis);
298}
299
300static void
Neale Ranns097fa662018-05-01 05:17:55 -0700301send_ip_mtable_details (vl_api_registration_t * reg,
302 u32 context, const mfib_table_t * mfib_table)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800303{
Neale Ranns097fa662018-05-01 05:17:55 -0700304 vl_api_ip_mtable_details_t *mp;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800305
Neale Ranns097fa662018-05-01 05:17:55 -0700306 mp = vl_msg_api_alloc (sizeof (*mp));
Neale Ranns5a8123b2017-01-26 01:18:23 -0800307 if (!mp)
308 return;
Neale Ranns097fa662018-05-01 05:17:55 -0700309 memset (mp, 0, sizeof (*mp));
Filip Tehlar5ff59a12021-06-23 14:38:38 +0000310 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_IP_MTABLE_DETAILS);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800311 mp->context = context;
312
Neale Ranns097fa662018-05-01 05:17:55 -0700313 mp->table.table_id = htonl (mfib_table->mft_table_id);
314 mp->table.is_ip6 = (FIB_PROTOCOL_IP6 == mfib_table->mft_proto);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800315
Florin Coras6c4dae22018-01-09 06:39:23 -0800316 vl_api_send_msg (reg, (u8 *) mp);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800317}
318
Neale Ranns5a8123b2017-01-26 01:18:23 -0800319static void
Neale Ranns097fa662018-05-01 05:17:55 -0700320vl_api_ip_mtable_dump_t_handler (vl_api_ip_mtable_dump_t * mp)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800321{
Florin Coras6c4dae22018-01-09 06:39:23 -0800322 vl_api_registration_t *reg;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800323 mfib_table_t *mfib_table;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800324
Florin Coras6c4dae22018-01-09 06:39:23 -0800325 reg = vl_api_client_index_to_registration (mp->client_index);
326 if (!reg)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800327 return;
328
Neale Ranns5a8123b2017-01-26 01:18:23 -0800329 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100330 pool_foreach (mfib_table, ip4_main.mfibs)
331 {
Neale Ranns097fa662018-05-01 05:17:55 -0700332 send_ip_mtable_details (reg, mp->context, mfib_table);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100333 }
334 pool_foreach (mfib_table, ip6_main.mfibs)
335 {
Neale Ranns097fa662018-05-01 05:17:55 -0700336 send_ip_mtable_details (reg, mp->context, mfib_table);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100337 }
Neale Ranns5a8123b2017-01-26 01:18:23 -0800338 /* *INDENT-ON* */
Neale Ranns5a8123b2017-01-26 01:18:23 -0800339}
340
Neale Ranns097fa662018-05-01 05:17:55 -0700341typedef struct vl_api_ip_mfib_dump_ctx_t_
Neale Ranns5a8123b2017-01-26 01:18:23 -0800342{
343 fib_node_index_t *entries;
Neale Ranns097fa662018-05-01 05:17:55 -0700344} vl_api_ip_mfib_dump_ctx_t;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800345
Neale Ranns9db6ada2019-11-08 12:42:31 +0000346static walk_rc_t
Neale Ranns097fa662018-05-01 05:17:55 -0700347mfib_route_dump_walk (fib_node_index_t fei, void *arg)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800348{
Neale Ranns097fa662018-05-01 05:17:55 -0700349 vl_api_ip_mfib_dump_ctx_t *ctx = arg;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800350
351 vec_add1 (ctx->entries, fei);
352
Neale Ranns9db6ada2019-11-08 12:42:31 +0000353 return (WALK_CONTINUE);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800354}
355
356static void
Neale Ranns097fa662018-05-01 05:17:55 -0700357send_ip_mroute_details (vpe_api_main_t * am,
358 vl_api_registration_t * reg,
359 u32 context, fib_node_index_t mfib_entry_index)
360{
361 fib_route_path_t *rpaths, *rpath;
362 vl_api_ip_mroute_details_t *mp;
363 const mfib_prefix_t *pfx;
364 vl_api_mfib_path_t *fp;
Matthew Smitha2bbeb82020-09-17 16:33:10 -0500365 u8 path_count;
Neale Ranns097fa662018-05-01 05:17:55 -0700366
367 rpaths = NULL;
368 pfx = mfib_entry_get_prefix (mfib_entry_index);
369 rpaths = mfib_entry_encode (mfib_entry_index);
370
371 path_count = vec_len (rpaths);
372 mp = vl_msg_api_alloc (sizeof (*mp) + path_count * sizeof (*fp));
373 if (!mp)
374 return;
375 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlar5ff59a12021-06-23 14:38:38 +0000376 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_IP_MROUTE_DETAILS);
Neale Ranns097fa662018-05-01 05:17:55 -0700377 mp->context = context;
378
379 ip_mprefix_encode (pfx, &mp->route.prefix);
380 mp->route.table_id =
381 htonl (mfib_table_get_table_id
382 (mfib_entry_get_fib_index (mfib_entry_index), pfx->fp_proto));
Matthew Smitha2bbeb82020-09-17 16:33:10 -0500383 mp->route.n_paths = path_count;
Neale Ranns097fa662018-05-01 05:17:55 -0700384 fp = mp->route.paths;
385 vec_foreach (rpath, rpaths)
386 {
387 mfib_api_path_encode (rpath, fp);
388 fp++;
389 }
390
391 vl_api_send_msg (reg, (u8 *) mp);
392 vec_free (rpaths);
393}
394
395static void
396vl_api_ip_mroute_dump_t_handler (vl_api_ip_mroute_dump_t * mp)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800397{
398 vpe_api_main_t *am = &vpe_api_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800399 vl_api_registration_t *reg;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800400 fib_node_index_t *mfeip;
Neale Ranns097fa662018-05-01 05:17:55 -0700401 fib_protocol_t fproto;
402 u32 fib_index;
403
404 vl_api_ip_mfib_dump_ctx_t ctx = {
Neale Ranns5a8123b2017-01-26 01:18:23 -0800405 .entries = NULL,
406 };
407
Florin Coras6c4dae22018-01-09 06:39:23 -0800408 reg = vl_api_client_index_to_registration (mp->client_index);
409 if (!reg)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800410 return;
411
Neale Ranns097fa662018-05-01 05:17:55 -0700412 fproto = fib_ip_proto (mp->table.is_ip6);
413 fib_index = mfib_table_find (fproto, ntohl (mp->table.table_id));
Neale Ranns5a8123b2017-01-26 01:18:23 -0800414
Neale Ranns097fa662018-05-01 05:17:55 -0700415 if (INDEX_INVALID == fib_index)
416 return;
Neale Ranns5a8123b2017-01-26 01:18:23 -0800417
Neale Ranns097fa662018-05-01 05:17:55 -0700418 mfib_table_walk (fib_index, fproto, mfib_route_dump_walk, &ctx);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800419
Neale Ranns097fa662018-05-01 05:17:55 -0700420 vec_sort_with_function (ctx.entries, mfib_entry_cmp_for_sort);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800421
Neale Ranns097fa662018-05-01 05:17:55 -0700422 vec_foreach (mfeip, ctx.entries)
423 {
424 send_ip_mroute_details (am, reg, mp->context, *mfeip);
425 }
Neale Ranns5a8123b2017-01-26 01:18:23 -0800426
427 vec_free (ctx.entries);
Neale Ranns5a8123b2017-01-26 01:18:23 -0800428}
429
430static void
Neale Rannsd91c1db2017-07-31 02:30:50 -0700431vl_api_ip_punt_police_t_handler (vl_api_ip_punt_police_t * mp,
432 vlib_main_t * vm)
433{
434 vl_api_ip_punt_police_reply_t *rmp;
435 int rv = 0;
436
437 if (mp->is_ip6)
438 ip6_punt_policer_add_del (mp->is_add, ntohl (mp->policer_index));
439 else
440 ip4_punt_policer_add_del (mp->is_add, ntohl (mp->policer_index));
441
442 REPLY_MACRO (VL_API_IP_PUNT_POLICE_REPLY);
443}
444
445static void
Nathan Skrzypczak2a1783f2021-08-10 15:05:29 +0200446ip_punt_redirect_t_handler_common (u8 is_add, u32 rx_sw_if_index,
447 ip_address_family_t af,
448 const fib_route_path_t *rpaths)
449{
450 if (is_add)
451 {
452 if (af == AF_IP6)
453 ip6_punt_redirect_add_paths (rx_sw_if_index, rpaths);
454 else if (af == AF_IP4)
455 ip4_punt_redirect_add_paths (rx_sw_if_index, rpaths);
456 }
457 else
458 {
459 if (af == AF_IP6)
460 ip6_punt_redirect_del (rx_sw_if_index);
461 else if (af == AF_IP4)
462 ip4_punt_redirect_del (rx_sw_if_index);
463 }
464}
465
466static void
467vl_api_ip_punt_redirect_t_handler (vl_api_ip_punt_redirect_t *mp,
468 vlib_main_t *vm)
Neale Rannsd91c1db2017-07-31 02:30:50 -0700469{
470 vl_api_ip_punt_redirect_reply_t *rmp;
Nathan Skrzypczak2a1783f2021-08-10 15:05:29 +0200471 fib_route_path_t *rpaths = NULL, rpath = {
472 .frp_weight = 1,
473 .frp_fib_index = ~0,
474 };
475 ip_address_family_t af;
Pavel Kotucek609e1212018-11-27 09:59:44 +0100476 ip46_type_t ipv;
Nathan Skrzypczak2a1783f2021-08-10 15:05:29 +0200477 u32 rx_sw_if_index;
478 int rv = 0;
Neale Rannsd91c1db2017-07-31 02:30:50 -0700479
Pavel Kotucek609e1212018-11-27 09:59:44 +0100480 if (!vnet_sw_if_index_is_api_valid (ntohl (mp->punt.tx_sw_if_index)))
481 goto bad_sw_if_index;
482
Nathan Skrzypczak2a1783f2021-08-10 15:05:29 +0200483 ipv = ip_address_decode (&mp->punt.nh, &rpath.frp_addr);
484 af = (ipv == IP46_TYPE_IP6) ? AF_IP6 : AF_IP4;
485 rpath.frp_proto = (ipv == IP46_TYPE_IP6) ? DPO_PROTO_IP6 : DPO_PROTO_IP4;
486 rpath.frp_sw_if_index = ntohl (mp->punt.tx_sw_if_index);
487 rx_sw_if_index = ntohl (mp->punt.rx_sw_if_index);
488
489 vec_add1 (rpaths, rpath);
490 ip_punt_redirect_t_handler_common (mp->is_add, rx_sw_if_index, af, rpaths);
491 vec_free (rpaths);
Neale Rannsd91c1db2017-07-31 02:30:50 -0700492
Pavel Kotucek609e1212018-11-27 09:59:44 +0100493 BAD_SW_IF_INDEX_LABEL;
494
Neale Rannsd91c1db2017-07-31 02:30:50 -0700495 REPLY_MACRO (VL_API_IP_PUNT_REDIRECT_REPLY);
496}
497
Nathan Skrzypczak2a1783f2021-08-10 15:05:29 +0200498static void
499vl_api_add_del_ip_punt_redirect_v2_t_handler (
500 vl_api_add_del_ip_punt_redirect_v2_t *mp, vlib_main_t *vm)
501{
502 vl_api_add_del_ip_punt_redirect_v2_reply_t *rmp;
503 fib_route_path_t *rpaths = NULL, *rpath;
504 vl_api_fib_path_t *apath;
505 ip_address_family_t af;
506 u32 rx_sw_if_index, n_paths;
507 int rv = 0, ii;
508
509 rx_sw_if_index = ntohl (mp->punt.rx_sw_if_index);
510 n_paths = ntohl (mp->punt.n_paths);
511
512 rv = ip_address_family_decode (mp->punt.af, &af);
513 if (rv != 0)
514 goto out;
515
516 if (0 != n_paths)
517 vec_validate (rpaths, n_paths - 1);
518
519 for (ii = 0; ii < n_paths; ii++)
520 {
521 apath = &mp->punt.paths[ii];
522 rpath = &rpaths[ii];
523
524 rv = fib_api_path_decode (apath, rpath);
525
526 if (rv != 0)
527 goto out;
528 }
529
530 ip_punt_redirect_t_handler_common (mp->is_add, rx_sw_if_index, af, rpaths);
531
532out:
533 vec_free (rpaths);
534
535 REPLY_MACRO (VL_API_ADD_DEL_IP_PUNT_REDIRECT_V2_REPLY);
536}
537
Steven Luongc3ed1c92020-07-27 10:06:58 -0700538static clib_error_t *
539call_elf_section_ip_table_callbacks (vnet_main_t * vnm, u32 table_id,
540 u32 flags,
541 _vnet_ip_table_function_list_elt_t **
542 elts)
543{
544 _vnet_ip_table_function_list_elt_t *elt;
545 vnet_ip_table_function_priority_t prio;
546 clib_error_t *error = 0;
547
548 for (prio = VNET_IP_TABLE_FUNC_PRIORITY_LOW;
549 prio <= VNET_IP_TABLE_FUNC_PRIORITY_HIGH; prio++)
550 {
551 elt = elts[prio];
552
553 while (elt)
554 {
555 error = elt->fp (vnm, table_id, flags);
556 if (error)
557 return error;
558 elt = elt->next_ip_table_function;
559 }
560 }
561 return error;
562}
563
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700564void
Neale Ranns15002542017-09-10 04:39:11 -0700565ip_table_delete (fib_protocol_t fproto, u32 table_id, u8 is_api)
566{
567 u32 fib_index, mfib_index;
Steven Luongc3ed1c92020-07-27 10:06:58 -0700568 vnet_main_t *vnm = vnet_get_main ();
Neale Ranns15002542017-09-10 04:39:11 -0700569
570 /*
571 * ignore action on the default table - this is always present
572 * and cannot be added nor deleted from the API
573 */
574 if (0 != table_id)
575 {
576 /*
577 * The API holds only one lock on the table.
578 * i.e. it can be added many times via the API but needs to be
579 * deleted only once.
580 * The FIB index for unicast and multicast is not necessarily the
581 * same, since internal VPP systesm (like LISP and SR) create
582 * their own unicast tables.
583 */
584 fib_index = fib_table_find (fproto, table_id);
585 mfib_index = mfib_table_find (fproto, table_id);
586
Steven Luongc3ed1c92020-07-27 10:06:58 -0700587 if ((~0 != fib_index) || (~0 != mfib_index))
588 call_elf_section_ip_table_callbacks (vnm, table_id, 0 /* is_add */ ,
589 vnm->ip_table_add_del_functions);
590
Neale Ranns15002542017-09-10 04:39:11 -0700591 if (~0 != fib_index)
592 {
593 fib_table_unlock (fib_index, fproto,
594 (is_api ? FIB_SOURCE_API : FIB_SOURCE_CLI));
595 }
596 if (~0 != mfib_index)
597 {
598 mfib_table_unlock (mfib_index, fproto,
599 (is_api ? MFIB_SOURCE_API : MFIB_SOURCE_CLI));
600 }
601 }
602}
603
Aloys Augustin6e4cfb52021-09-16 20:53:14 +0200604/*
605 * Returns an unused table id, and ~0 if it can't find one.
606 */
607u32
608ip_table_get_unused_id (fib_protocol_t fproto)
609{
610 int i, j;
Aloys Augustin400f23f2021-09-26 18:26:15 +0200611 static u32 seed = 0;
Aloys Augustin6e4cfb52021-09-16 20:53:14 +0200612 /* limit to 1M tries */
613 for (j = 0; j < 1 << 10; j++)
614 {
615 seed = random_u32 (&seed);
616 for (i = 0; i < 1 << 10; i++)
617 {
618 /* look around randomly generated id */
619 seed += (2 * (i % 2) - 1) * i;
620 if (seed == ~0)
621 continue;
622 if (fib_table_find (fproto, seed) == ~0)
623 return seed;
624 }
625 }
626
627 return ~0;
628}
629
Neale Ranns15002542017-09-10 04:39:11 -0700630void
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700631vl_api_ip_table_add_del_t_handler (vl_api_ip_table_add_del_t * mp)
632{
633 vl_api_ip_table_add_del_reply_t *rmp;
Neale Ranns097fa662018-05-01 05:17:55 -0700634 fib_protocol_t fproto = (mp->table.is_ip6 ?
635 FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
636 u32 table_id = ntohl (mp->table.table_id);
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700637 int rv = 0;
638
Neale Ranns15002542017-09-10 04:39:11 -0700639 if (mp->is_add)
640 {
Neale Ranns097fa662018-05-01 05:17:55 -0700641 ip_table_create (fproto, table_id, 1, mp->table.name);
Neale Ranns15002542017-09-10 04:39:11 -0700642 }
643 else
644 {
645 ip_table_delete (fproto, table_id, 1);
646 }
647
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700648 REPLY_MACRO (VL_API_IP_TABLE_ADD_DEL_REPLY);
649}
650
Aloys Augustin6e4cfb52021-09-16 20:53:14 +0200651void
652vl_api_ip_table_allocate_t_handler (vl_api_ip_table_allocate_t *mp)
653{
654 vl_api_ip_table_allocate_reply_t *rmp;
655 fib_protocol_t fproto =
656 (mp->table.is_ip6 ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
657 u32 table_id = ntohl (mp->table.table_id);
658 int rv = 0;
659
660 if (~0 == table_id)
661 table_id = ip_table_get_unused_id (fproto);
662
663 if (~0 == table_id)
664 rv = VNET_API_ERROR_EAGAIN;
665 else
666 ip_table_create (fproto, table_id, 1, mp->table.name);
667
668 REPLY_MACRO2 (VL_API_IP_TABLE_ALLOCATE_REPLY, {
669 clib_memcpy_fast (&rmp->table, &mp->table, sizeof (mp->table));
670 rmp->table.table_id = htonl (table_id);
671 })
672}
673
Dave Barachb5e8a772016-12-06 12:04:42 -0500674static int
Neale Ranns097fa662018-05-01 05:17:55 -0700675ip_route_add_del_t_handler (vl_api_ip_route_add_del_t * mp, u32 * stats_index)
Dave Barachb5e8a772016-12-06 12:04:42 -0500676{
Neale Ranns097fa662018-05-01 05:17:55 -0700677 fib_route_path_t *rpaths = NULL, *rpath;
678 fib_entry_flag_t entry_flags;
679 vl_api_fib_path_t *apath;
680 fib_prefix_t pfx;
681 u32 fib_index;
682 int rv, ii;
Dave Barachb5e8a772016-12-06 12:04:42 -0500683
Neale Ranns097fa662018-05-01 05:17:55 -0700684 entry_flags = FIB_ENTRY_FLAG_NONE;
685 ip_prefix_decode (&mp->route.prefix, &pfx);
Dave Barachb5e8a772016-12-06 12:04:42 -0500686
Neale Ranns097fa662018-05-01 05:17:55 -0700687 rv = fib_api_table_id_decode (pfx.fp_proto,
688 ntohl (mp->route.table_id), &fib_index);
Dave Barachb5e8a772016-12-06 12:04:42 -0500689 if (0 != rv)
Neale Ranns097fa662018-05-01 05:17:55 -0700690 goto out;
Dave Barachb5e8a772016-12-06 12:04:42 -0500691
Neale Rannsc2ac2352019-07-02 14:33:29 +0000692 if (0 != mp->route.n_paths)
693 vec_validate (rpaths, mp->route.n_paths - 1);
Neale Ranns097fa662018-05-01 05:17:55 -0700694
695 for (ii = 0; ii < mp->route.n_paths; ii++)
696 {
697 apath = &mp->route.paths[ii];
698 rpath = &rpaths[ii];
699
700 rv = fib_api_path_decode (apath, rpath);
701
702 if ((rpath->frp_flags & FIB_ROUTE_PATH_LOCAL) &&
703 (~0 == rpath->frp_sw_if_index))
704 entry_flags |= (FIB_ENTRY_FLAG_CONNECTED | FIB_ENTRY_FLAG_LOCAL);
705
706 if (0 != rv)
707 goto out;
708 }
709
Neale Ranns976b2592019-12-04 06:11:00 +0000710 rv = fib_api_route_add_del (mp->is_add, mp->is_multipath, fib_index, &pfx,
711 FIB_SOURCE_API, entry_flags, rpaths);
712
713 if (mp->is_add && 0 == rv)
714 *stats_index = fib_table_entry_get_stats_index (fib_index, &pfx);
715
716out:
717 vec_free (rpaths);
718
719 return (rv);
720}
721
722static int
723ip_route_add_del_v2_t_handler (vl_api_ip_route_add_del_v2_t *mp,
724 u32 *stats_index)
725{
726 fib_route_path_t *rpaths = NULL, *rpath;
727 fib_entry_flag_t entry_flags;
728 vl_api_fib_path_t *apath;
729 fib_source_t src;
730 fib_prefix_t pfx;
731 u32 fib_index;
732 int rv, ii;
733
734 entry_flags = FIB_ENTRY_FLAG_NONE;
735 ip_prefix_decode (&mp->route.prefix, &pfx);
736
737 rv = fib_api_table_id_decode (pfx.fp_proto, ntohl (mp->route.table_id),
738 &fib_index);
739 if (0 != rv)
740 goto out;
741
742 if (0 != mp->route.n_paths)
743 vec_validate (rpaths, mp->route.n_paths - 1);
744
745 for (ii = 0; ii < mp->route.n_paths; ii++)
746 {
747 apath = &mp->route.paths[ii];
748 rpath = &rpaths[ii];
749
750 rv = fib_api_path_decode (apath, rpath);
751
752 if ((rpath->frp_flags & FIB_ROUTE_PATH_LOCAL) &&
753 (~0 == rpath->frp_sw_if_index))
754 entry_flags |= (FIB_ENTRY_FLAG_CONNECTED | FIB_ENTRY_FLAG_LOCAL);
755
756 if (0 != rv)
757 goto out;
758 }
759
760 src = (0 == mp->route.src ? FIB_SOURCE_API : mp->route.src);
761
762 rv = fib_api_route_add_del (mp->is_add, mp->is_multipath, fib_index, &pfx,
763 src, entry_flags, rpaths);
Neale Ranns008dbe12018-09-07 09:32:36 -0700764
765 if (mp->is_add && 0 == rv)
766 *stats_index = fib_table_entry_get_stats_index (fib_index, &pfx);
767
Neale Ranns097fa662018-05-01 05:17:55 -0700768out:
769 vec_free (rpaths);
Neale Ranns008dbe12018-09-07 09:32:36 -0700770
771 return (rv);
Dave Barachb5e8a772016-12-06 12:04:42 -0500772}
773
774void
Neale Ranns097fa662018-05-01 05:17:55 -0700775vl_api_ip_route_add_del_t_handler (vl_api_ip_route_add_del_t * mp)
Dave Barachb5e8a772016-12-06 12:04:42 -0500776{
Neale Ranns097fa662018-05-01 05:17:55 -0700777 vl_api_ip_route_add_del_reply_t *rmp;
778 u32 stats_index = ~0;
Dave Barachb5e8a772016-12-06 12:04:42 -0500779 int rv;
Dave Barachb5e8a772016-12-06 12:04:42 -0500780
Neale Ranns097fa662018-05-01 05:17:55 -0700781 rv = ip_route_add_del_t_handler (mp, &stats_index);
Dave Barachb5e8a772016-12-06 12:04:42 -0500782
Neale Ranns008dbe12018-09-07 09:32:36 -0700783 /* *INDENT-OFF* */
Neale Ranns097fa662018-05-01 05:17:55 -0700784 REPLY_MACRO2 (VL_API_IP_ROUTE_ADD_DEL_REPLY,
Neale Ranns008dbe12018-09-07 09:32:36 -0700785 ({
786 rmp->stats_index = htonl (stats_index);
787 }))
788 /* *INDENT-ON* */
Dave Barachb5e8a772016-12-06 12:04:42 -0500789}
790
Neale Ranns15002542017-09-10 04:39:11 -0700791void
Neale Ranns976b2592019-12-04 06:11:00 +0000792vl_api_ip_route_add_del_v2_t_handler (vl_api_ip_route_add_del_v2_t *mp)
793{
794 vl_api_ip_route_add_del_v2_reply_t *rmp;
795 u32 stats_index = ~0;
796 int rv;
797
798 rv = ip_route_add_del_v2_t_handler (mp, &stats_index);
799
800 /* clang-format off */
801 REPLY_MACRO2 (VL_API_IP_ROUTE_ADD_DEL_V2_REPLY,
802 ({
803 rmp->stats_index = htonl (stats_index);
804 }))
805 /* clang-format on */
806}
807
808void
Christian Hoppsf5d38e02020-05-04 10:28:03 -0400809vl_api_ip_route_lookup_t_handler (vl_api_ip_route_lookup_t * mp)
810{
811 vl_api_ip_route_lookup_reply_t *rmp = NULL;
812 fib_route_path_t *rpaths = NULL, *rpath;
813 const fib_prefix_t *pfx = NULL;
814 fib_prefix_t lookup;
815 vl_api_fib_path_t *fp;
816 fib_node_index_t fib_entry_index;
817 u32 fib_index;
818 int npaths = 0;
819 int rv;
820
821 ip_prefix_decode (&mp->prefix, &lookup);
822 rv = fib_api_table_id_decode (lookup.fp_proto, ntohl (mp->table_id),
823 &fib_index);
824 if (PREDICT_TRUE (!rv))
825 {
826 if (mp->exact)
827 fib_entry_index = fib_table_lookup_exact_match (fib_index, &lookup);
828 else
829 fib_entry_index = fib_table_lookup (fib_index, &lookup);
830 if (fib_entry_index == FIB_NODE_INDEX_INVALID)
831 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
832 else
833 {
834 pfx = fib_entry_get_prefix (fib_entry_index);
835 rpaths = fib_entry_encode (fib_entry_index);
836 npaths = vec_len (rpaths);
837 }
838 }
839
840 /* *INDENT-OFF* */
841 REPLY_MACRO3_ZERO(VL_API_IP_ROUTE_LOOKUP_REPLY,
842 npaths * sizeof (*fp),
843 ({
844 if (!rv)
845 {
846 ip_prefix_encode (pfx, &rmp->route.prefix);
847 rmp->route.table_id = mp->table_id;
848 rmp->route.n_paths = npaths;
849 rmp->route.stats_index = fib_table_entry_get_stats_index (fib_index, pfx);
850 rmp->route.stats_index = htonl (rmp->route.stats_index);
851
852 fp = rmp->route.paths;
853 vec_foreach (rpath, rpaths)
854 {
855 fib_api_path_encode (rpath, fp);
856 fp++;
857 }
858 }
859 }));
860 /* *INDENT-ON* */
861 vec_free (rpaths);
862}
863
864void
Neale Ranns976b2592019-12-04 06:11:00 +0000865vl_api_ip_route_lookup_v2_t_handler (vl_api_ip_route_lookup_v2_t *mp)
866{
867 vl_api_ip_route_lookup_v2_reply_t *rmp = NULL;
868 fib_route_path_t *rpaths = NULL, *rpath;
869 const fib_prefix_t *pfx = NULL;
870 fib_prefix_t lookup;
871 vl_api_fib_path_t *fp;
872 fib_node_index_t fib_entry_index;
873 u32 fib_index;
874 int npaths = 0;
875 fib_source_t src = 0;
876 int rv;
877
878 ip_prefix_decode (&mp->prefix, &lookup);
879 rv = fib_api_table_id_decode (lookup.fp_proto, ntohl (mp->table_id),
880 &fib_index);
881 if (PREDICT_TRUE (!rv))
882 {
883 if (mp->exact)
884 fib_entry_index = fib_table_lookup_exact_match (fib_index, &lookup);
885 else
886 fib_entry_index = fib_table_lookup (fib_index, &lookup);
887 if (fib_entry_index == FIB_NODE_INDEX_INVALID)
888 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
889 else
890 {
891 pfx = fib_entry_get_prefix (fib_entry_index);
892 rpaths = fib_entry_encode (fib_entry_index);
893 npaths = vec_len (rpaths);
894 src = fib_entry_get_best_source (fib_entry_index);
895 }
896 }
897
898 /* clang-format off */
899 REPLY_MACRO3_ZERO(VL_API_IP_ROUTE_LOOKUP_V2_REPLY,
900 npaths * sizeof (*fp),
901 ({
902 if (!rv)
903 {
904 ip_prefix_encode (pfx, &rmp->route.prefix);
905 rmp->route.table_id = mp->table_id;
906 rmp->route.n_paths = npaths;
907 rmp->route.src = src;
908 rmp->route.stats_index = fib_table_entry_get_stats_index (fib_index, pfx);
909 rmp->route.stats_index = htonl (rmp->route.stats_index);
910
911 fp = rmp->route.paths;
912 vec_foreach (rpath, rpaths)
913 {
914 fib_api_path_encode (rpath, fp);
915 fp++;
916 }
917 }
918 }));
919 /* clang-format on */
920 vec_free (rpaths);
921}
922
923void
Neale Ranns2297af02017-09-12 09:45:04 -0700924ip_table_create (fib_protocol_t fproto,
925 u32 table_id, u8 is_api, const u8 * name)
Neale Ranns15002542017-09-10 04:39:11 -0700926{
927 u32 fib_index, mfib_index;
Steven Luongc3ed1c92020-07-27 10:06:58 -0700928 vnet_main_t *vnm = vnet_get_main ();
Neale Ranns15002542017-09-10 04:39:11 -0700929
930 /*
931 * ignore action on the default table - this is always present
932 * and cannot be added nor deleted from the API
933 */
934 if (0 != table_id)
935 {
936 /*
937 * The API holds only one lock on the table.
938 * i.e. it can be added many times via the API but needs to be
939 * deleted only once.
940 * The FIB index for unicast and multicast is not necessarily the
941 * same, since internal VPP systesm (like LISP and SR) create
942 * their own unicast tables.
943 */
944 fib_index = fib_table_find (fproto, table_id);
945 mfib_index = mfib_table_find (fproto, table_id);
946
947 if (~0 == fib_index)
948 {
Neale Ranns2297af02017-09-12 09:45:04 -0700949 fib_table_find_or_create_and_lock_w_name (fproto, table_id,
950 (is_api ?
951 FIB_SOURCE_API :
952 FIB_SOURCE_CLI), name);
Neale Ranns15002542017-09-10 04:39:11 -0700953 }
954 if (~0 == mfib_index)
955 {
Neale Ranns2297af02017-09-12 09:45:04 -0700956 mfib_table_find_or_create_and_lock_w_name (fproto, table_id,
957 (is_api ?
958 MFIB_SOURCE_API :
959 MFIB_SOURCE_CLI), name);
Neale Ranns15002542017-09-10 04:39:11 -0700960 }
Steven Luongc3ed1c92020-07-27 10:06:58 -0700961
962 if ((~0 == fib_index) || (~0 == mfib_index))
963 call_elf_section_ip_table_callbacks (vnm, table_id, 1 /* is_add */ ,
964 vnm->ip_table_add_del_functions);
Neale Ranns15002542017-09-10 04:39:11 -0700965 }
966}
967
Neale Ranns097fa662018-05-01 05:17:55 -0700968static u32
Neale Ranns32e1c012016-11-22 17:07:28 +0000969mroute_add_del_handler (u8 is_add,
Neale Ranns097fa662018-05-01 05:17:55 -0700970 u8 is_multipath,
Neale Ranns32e1c012016-11-22 17:07:28 +0000971 u32 fib_index,
972 const mfib_prefix_t * prefix,
973 u32 entry_flags,
Neale Ranns097fa662018-05-01 05:17:55 -0700974 u32 rpf_id, fib_route_path_t * rpaths)
Neale Ranns32e1c012016-11-22 17:07:28 +0000975{
Neale Ranns097fa662018-05-01 05:17:55 -0700976 u32 mfib_entry_index = ~0;
Neale Ranns28c142e2018-09-07 09:37:07 -0700977
Neale Ranns097fa662018-05-01 05:17:55 -0700978 if (0 == vec_len (rpaths))
Neale Ranns32e1c012016-11-22 17:07:28 +0000979 {
Neale Ranns28c142e2018-09-07 09:37:07 -0700980 mfib_entry_index = mfib_table_entry_update (fib_index, prefix,
981 MFIB_SOURCE_API,
982 rpf_id, entry_flags);
Neale Ranns32e1c012016-11-22 17:07:28 +0000983 }
984 else
985 {
Neale Ranns097fa662018-05-01 05:17:55 -0700986 if (is_add)
987 {
988 mfib_entry_index =
989 mfib_table_entry_paths_update (fib_index, prefix,
990 MFIB_SOURCE_API, rpaths);
991 }
992 else
993 {
994 mfib_table_entry_paths_remove (fib_index, prefix,
995 MFIB_SOURCE_API, rpaths);
996 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000997 }
998
Neale Ranns28c142e2018-09-07 09:37:07 -0700999 return (mfib_entry_index);
Neale Ranns32e1c012016-11-22 17:07:28 +00001000}
1001
1002static int
Neale Ranns28c142e2018-09-07 09:37:07 -07001003api_mroute_add_del_t_handler (vl_api_ip_mroute_add_del_t * mp,
1004 u32 * stats_index)
Neale Ranns32e1c012016-11-22 17:07:28 +00001005{
Neale Ranns097fa662018-05-01 05:17:55 -07001006 fib_route_path_t *rpath, *rpaths = NULL;
Neale Ranns28c142e2018-09-07 09:37:07 -07001007 fib_node_index_t mfib_entry_index;
Neale Ranns990f6942020-10-20 07:20:17 +00001008 mfib_entry_flags_t eflags;
Neale Ranns097fa662018-05-01 05:17:55 -07001009 mfib_prefix_t pfx;
Neale Ranns32e1c012016-11-22 17:07:28 +00001010 u32 fib_index;
1011 int rv;
Neale Ranns097fa662018-05-01 05:17:55 -07001012 u16 ii;
Neale Ranns32e1c012016-11-22 17:07:28 +00001013
Neale Ranns097fa662018-05-01 05:17:55 -07001014 ip_mprefix_decode (&mp->route.prefix, &pfx);
Neale Ranns32e1c012016-11-22 17:07:28 +00001015
Neale Ranns097fa662018-05-01 05:17:55 -07001016 rv = mfib_api_table_id_decode (pfx.fp_proto,
1017 ntohl (mp->route.table_id), &fib_index);
Neale Ranns32e1c012016-11-22 17:07:28 +00001018 if (0 != rv)
Neale Ranns097fa662018-05-01 05:17:55 -07001019 goto out;
Neale Ranns32e1c012016-11-22 17:07:28 +00001020
Neale Ranns097fa662018-05-01 05:17:55 -07001021 vec_validate (rpaths, mp->route.n_paths - 1);
Neale Ranns32e1c012016-11-22 17:07:28 +00001022
Neale Ranns097fa662018-05-01 05:17:55 -07001023 for (ii = 0; ii < mp->route.n_paths; ii++)
Neale Ranns32e1c012016-11-22 17:07:28 +00001024 {
Neale Ranns097fa662018-05-01 05:17:55 -07001025 rpath = &rpaths[ii];
1026
1027 rv = mfib_api_path_decode (&mp->route.paths[ii], rpath);
1028
1029 if (0 != rv)
1030 goto out;
Neale Ranns32e1c012016-11-22 17:07:28 +00001031 }
1032
Neale Ranns990f6942020-10-20 07:20:17 +00001033 eflags = mfib_api_path_entry_flags_decode (mp->route.entry_flags);
Neale Ranns28c142e2018-09-07 09:37:07 -07001034 mfib_entry_index = mroute_add_del_handler (mp->is_add,
Neale Ranns097fa662018-05-01 05:17:55 -07001035 mp->is_add,
Neale Ranns28c142e2018-09-07 09:37:07 -07001036 fib_index, &pfx,
Neale Ranns990f6942020-10-20 07:20:17 +00001037 eflags,
Neale Ranns097fa662018-05-01 05:17:55 -07001038 ntohl (mp->route.rpf_id),
1039 rpaths);
Neale Ranns28c142e2018-09-07 09:37:07 -07001040
1041 if (~0 != mfib_entry_index)
1042 *stats_index = mfib_entry_get_stats_index (mfib_entry_index);
1043
Neale Ranns097fa662018-05-01 05:17:55 -07001044out:
Neale Ranns28c142e2018-09-07 09:37:07 -07001045 return (rv);
Neale Ranns32e1c012016-11-22 17:07:28 +00001046}
1047
1048void
1049vl_api_ip_mroute_add_del_t_handler (vl_api_ip_mroute_add_del_t * mp)
1050{
1051 vl_api_ip_mroute_add_del_reply_t *rmp;
Neale Ranns097fa662018-05-01 05:17:55 -07001052 u32 stats_index = ~0;
Neale Ranns32e1c012016-11-22 17:07:28 +00001053 int rv;
Neale Ranns32e1c012016-11-22 17:07:28 +00001054
Neale Ranns28c142e2018-09-07 09:37:07 -07001055 rv = api_mroute_add_del_t_handler (mp, &stats_index);
Neale Ranns32e1c012016-11-22 17:07:28 +00001056
Neale Ranns28c142e2018-09-07 09:37:07 -07001057 /* *INDENT-OFF* */
1058 REPLY_MACRO2 (VL_API_IP_MROUTE_ADD_DEL_REPLY,
1059 ({
1060 rmp->stats_index = htonl (stats_index);
1061 }));
1062 /* *INDENT-ON* */
Neale Ranns32e1c012016-11-22 17:07:28 +00001063}
1064
Dave Barachb5e8a772016-12-06 12:04:42 -05001065static void
1066send_ip_details (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -08001067 vl_api_registration_t * reg, u32 sw_if_index, u8 is_ipv6,
1068 u32 context)
Dave Barachb5e8a772016-12-06 12:04:42 -05001069{
1070 vl_api_ip_details_t *mp;
1071
1072 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -04001073 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlar5ff59a12021-06-23 14:38:38 +00001074 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_IP_DETAILS);
Dave Barachb5e8a772016-12-06 12:04:42 -05001075
1076 mp->sw_if_index = ntohl (sw_if_index);
Jon Loeliger466f0d42017-02-09 12:17:50 -06001077 mp->is_ipv6 = is_ipv6;
Dave Barachb5e8a772016-12-06 12:04:42 -05001078 mp->context = context;
1079
Florin Coras6c4dae22018-01-09 06:39:23 -08001080 vl_api_send_msg (reg, (u8 *) mp);
Dave Barachb5e8a772016-12-06 12:04:42 -05001081}
1082
1083static void
1084send_ip_address_details (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -08001085 vl_api_registration_t * reg,
Neale Ranns097fa662018-05-01 05:17:55 -07001086 const fib_prefix_t * pfx,
1087 u32 sw_if_index, u32 context)
Dave Barachb5e8a772016-12-06 12:04:42 -05001088{
1089 vl_api_ip_address_details_t *mp;
1090
1091 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -04001092 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlar5ff59a12021-06-23 14:38:38 +00001093 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_IP_ADDRESS_DETAILS);
Dave Barachb5e8a772016-12-06 12:04:42 -05001094
Neale Ranns097fa662018-05-01 05:17:55 -07001095 ip_prefix_encode (pfx, &mp->prefix);
Dave Barachb5e8a772016-12-06 12:04:42 -05001096 mp->context = context;
Jon Loeliger466f0d42017-02-09 12:17:50 -06001097 mp->sw_if_index = htonl (sw_if_index);
Dave Barachb5e8a772016-12-06 12:04:42 -05001098
Florin Coras6c4dae22018-01-09 06:39:23 -08001099 vl_api_send_msg (reg, (u8 *) mp);
Dave Barachb5e8a772016-12-06 12:04:42 -05001100}
1101
1102static void
1103vl_api_ip_address_dump_t_handler (vl_api_ip_address_dump_t * mp)
1104{
1105 vpe_api_main_t *am = &vpe_api_main;
Florin Coras6c4dae22018-01-09 06:39:23 -08001106 vl_api_registration_t *reg;
Dave Barachb5e8a772016-12-06 12:04:42 -05001107 ip6_main_t *im6 = &ip6_main;
1108 ip4_main_t *im4 = &ip4_main;
1109 ip_lookup_main_t *lm6 = &im6->lookup_main;
1110 ip_lookup_main_t *lm4 = &im4->lookup_main;
1111 ip_interface_address_t *ia = 0;
1112 u32 sw_if_index = ~0;
1113 int rv __attribute__ ((unused)) = 0;
1114
1115 VALIDATE_SW_IF_INDEX (mp);
1116
1117 sw_if_index = ntohl (mp->sw_if_index);
1118
Florin Coras6c4dae22018-01-09 06:39:23 -08001119 reg = vl_api_client_index_to_registration (mp->client_index);
1120 if (!reg)
Dave Barachb5e8a772016-12-06 12:04:42 -05001121 return;
1122
Dave Barachb5e8a772016-12-06 12:04:42 -05001123 if (mp->is_ipv6)
1124 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001125 /* *INDENT-OFF* */
Neale Ranns4f2db7d2018-05-17 09:38:13 -07001126 /* Do not send subnet details of the IP-interface for
1127 * unnumbered interfaces. otherwise listening clients
1128 * will be confused that the subnet is applied on more
1129 * than one interface */
1130 foreach_ip_interface_address (lm6, ia, sw_if_index, 0,
Dave Barachb5e8a772016-12-06 12:04:42 -05001131 ({
Neale Ranns097fa662018-05-01 05:17:55 -07001132 fib_prefix_t pfx = {
1133 .fp_addr.ip6 = *(ip6_address_t *)ip_interface_address_get_address (lm6, ia),
1134 .fp_len = ia->address_length,
1135 .fp_proto = FIB_PROTOCOL_IP6,
1136 };
1137 send_ip_address_details(am, reg, &pfx, sw_if_index, mp->context);
Dave Barachb5e8a772016-12-06 12:04:42 -05001138 }));
Dave Barachd7cb1b52016-12-09 09:52:16 -05001139 /* *INDENT-ON* */
Dave Barachb5e8a772016-12-06 12:04:42 -05001140 }
Dave Barachb5e8a772016-12-06 12:04:42 -05001141 else
1142 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001143 /* *INDENT-OFF* */
Neale Ranns4f2db7d2018-05-17 09:38:13 -07001144 foreach_ip_interface_address (lm4, ia, sw_if_index, 0,
Dave Barachb5e8a772016-12-06 12:04:42 -05001145 ({
Neale Ranns097fa662018-05-01 05:17:55 -07001146 fib_prefix_t pfx = {
1147 .fp_addr.ip4 = *(ip4_address_t *)ip_interface_address_get_address (lm4, ia),
1148 .fp_len = ia->address_length,
1149 .fp_proto = FIB_PROTOCOL_IP4,
1150 };
1151
1152 send_ip_address_details(am, reg, &pfx, sw_if_index, mp->context);
Dave Barachb5e8a772016-12-06 12:04:42 -05001153 }));
Dave Barachd7cb1b52016-12-09 09:52:16 -05001154 /* *INDENT-ON* */
Dave Barachb5e8a772016-12-06 12:04:42 -05001155 }
Neale Ranns008dbe12018-09-07 09:32:36 -07001156
Dave Barachb5e8a772016-12-06 12:04:42 -05001157 BAD_SW_IF_INDEX_LABEL;
1158}
1159
1160static void
Neale Ranns9e2f9152018-05-18 02:27:10 -07001161send_ip_unnumbered_details (vpe_api_main_t * am,
1162 vl_api_registration_t * reg,
1163 u32 sw_if_index, u32 ip_sw_if_index, u32 context)
1164{
1165 vl_api_ip_unnumbered_details_t *mp;
1166
1167 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -04001168 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlar5ff59a12021-06-23 14:38:38 +00001169 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_IP_UNNUMBERED_DETAILS);
Neale Ranns9e2f9152018-05-18 02:27:10 -07001170
1171 mp->context = context;
1172 mp->sw_if_index = htonl (sw_if_index);
1173 mp->ip_sw_if_index = htonl (ip_sw_if_index);
1174
1175 vl_api_send_msg (reg, (u8 *) mp);
1176}
1177
1178static void
1179vl_api_ip_unnumbered_dump_t_handler (vl_api_ip_unnumbered_dump_t * mp)
1180{
1181 vnet_main_t *vnm = vnet_get_main ();
1182 vnet_interface_main_t *im = &vnm->interface_main;
1183 int rv __attribute__ ((unused)) = 0;
1184 vpe_api_main_t *am = &vpe_api_main;
1185 vl_api_registration_t *reg;
1186 vnet_sw_interface_t *si;
1187 u32 sw_if_index;
1188
1189 sw_if_index = ntohl (mp->sw_if_index);
1190
1191 reg = vl_api_client_index_to_registration (mp->client_index);
1192 if (!reg)
1193 return;
1194
1195 if (~0 != sw_if_index)
1196 {
1197 VALIDATE_SW_IF_INDEX (mp);
1198
1199 si = vnet_get_sw_interface (vnm, ntohl (mp->sw_if_index));
1200
Neale Rannsac3e72c2019-10-06 01:04:26 -07001201 if (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)
Neale Ranns9e2f9152018-05-18 02:27:10 -07001202 {
1203 send_ip_unnumbered_details (am, reg,
1204 sw_if_index,
1205 si->unnumbered_sw_if_index,
1206 mp->context);
1207 }
1208 }
1209 else
1210 {
1211 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001212 pool_foreach (si, im->sw_interfaces)
1213 {
Neale Ranns9e2f9152018-05-18 02:27:10 -07001214 if ((si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
1215 {
1216 send_ip_unnumbered_details(am, reg,
1217 si->sw_if_index,
1218 si->unnumbered_sw_if_index,
1219 mp->context);
1220 }
Damjan Marionb2c31b62020-12-13 21:47:40 +01001221 }
Neale Ranns9e2f9152018-05-18 02:27:10 -07001222 /* *INDENT-ON* */
1223 }
1224
1225 BAD_SW_IF_INDEX_LABEL;
1226}
1227
1228static void
Dave Barachb5e8a772016-12-06 12:04:42 -05001229vl_api_ip_dump_t_handler (vl_api_ip_dump_t * mp)
1230{
1231 vpe_api_main_t *am = &vpe_api_main;
1232 vnet_main_t *vnm = vnet_get_main ();
Neale Rannscbe25aa2019-09-30 10:53:31 +00001233 //vlib_main_t *vm = vlib_get_main ();
Dave Barachb5e8a772016-12-06 12:04:42 -05001234 vnet_interface_main_t *im = &vnm->interface_main;
Florin Coras6c4dae22018-01-09 06:39:23 -08001235 vl_api_registration_t *reg;
Dave Barachb5e8a772016-12-06 12:04:42 -05001236 vnet_sw_interface_t *si, *sorted_sis;
1237 u32 sw_if_index = ~0;
1238
Florin Coras6c4dae22018-01-09 06:39:23 -08001239 reg = vl_api_client_index_to_registration (mp->client_index);
1240 if (!reg)
1241 return;
Dave Barachb5e8a772016-12-06 12:04:42 -05001242
1243 /* Gather interfaces. */
1244 sorted_sis = vec_new (vnet_sw_interface_t, pool_elts (im->sw_interfaces));
1245 _vec_len (sorted_sis) = 0;
1246 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001247 pool_foreach (si, im->sw_interfaces)
1248 {
Dave Barachb5e8a772016-12-06 12:04:42 -05001249 vec_add1 (sorted_sis, si[0]);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001250 }
Dave Barachb5e8a772016-12-06 12:04:42 -05001251 /* *INDENT-ON* */
1252
1253 vec_foreach (si, sorted_sis)
1254 {
1255 if (!(si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
1256 {
Neale Rannscbe25aa2019-09-30 10:53:31 +00001257 /* if (mp->is_ipv6 && !ip6_interface_enabled (vm, si->sw_if_index)) */
1258 /* { */
1259 /* continue; */
1260 /* } */
Dave Barachb5e8a772016-12-06 12:04:42 -05001261 sw_if_index = si->sw_if_index;
Florin Coras6c4dae22018-01-09 06:39:23 -08001262 send_ip_details (am, reg, sw_if_index, mp->is_ipv6, mp->context);
Dave Barachb5e8a772016-12-06 12:04:42 -05001263 }
1264 }
Matthew Smith6d5f6592019-09-18 13:51:46 -05001265
1266 vec_free (sorted_sis);
Dave Barachb5e8a772016-12-06 12:04:42 -05001267}
1268
1269static void
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00001270vl_api_set_ip_flow_hash_t_handler (vl_api_set_ip_flow_hash_t *mp)
Dave Barachb5e8a772016-12-06 12:04:42 -05001271{
1272 vl_api_set_ip_flow_hash_reply_t *rmp;
Neale Ranns227038a2017-04-21 01:07:59 -07001273 int rv;
1274 u32 table_id;
1275 flow_hash_config_t flow_hash_config = 0;
Dave Barachb5e8a772016-12-06 12:04:42 -05001276
Neale Ranns227038a2017-04-21 01:07:59 -07001277 table_id = ntohl (mp->vrf_id);
1278
1279#define _(a,b) if (mp->a) flow_hash_config |= b;
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00001280 foreach_flow_hash_bit_v1;
Neale Ranns227038a2017-04-21 01:07:59 -07001281#undef _
1282
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00001283 rv = ip_flow_hash_set ((mp->is_ipv6 ? AF_IP6 : AF_IP4), table_id,
1284 flow_hash_config);
Dave Barachb5e8a772016-12-06 12:04:42 -05001285
1286 REPLY_MACRO (VL_API_SET_IP_FLOW_HASH_REPLY);
1287}
1288
1289static void
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00001290vl_api_set_ip_flow_hash_v2_t_handler (vl_api_set_ip_flow_hash_v2_t *mp)
Dave Barachb5e8a772016-12-06 12:04:42 -05001291{
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00001292 vl_api_set_ip_flow_hash_v2_reply_t *rmp;
1293 ip_address_family_t af;
Dave Barachb5e8a772016-12-06 12:04:42 -05001294 int rv;
Dave Barachb5e8a772016-12-06 12:04:42 -05001295
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00001296 rv = ip_address_family_decode (mp->af, &af);
Dave Barachb5e8a772016-12-06 12:04:42 -05001297
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00001298 if (!rv)
1299 rv = ip_flow_hash_set (af, htonl (mp->table_id),
1300 htonl (mp->flow_hash_config));
Dave Barachb5e8a772016-12-06 12:04:42 -05001301
Ahmed Abdelsalamf2984bb2020-11-20 18:56:09 +00001302 REPLY_MACRO (VL_API_SET_IP_FLOW_HASH_V2_REPLY);
Dave Barachb5e8a772016-12-06 12:04:42 -05001303}
1304
Neale Ranns3d5f08a2021-01-22 16:12:38 +00001305static void
1306vl_api_set_ip_flow_hash_router_id_t_handler (
1307 vl_api_set_ip_flow_hash_router_id_t *mp)
1308{
1309 vl_api_set_ip_flow_hash_router_id_reply_t *rmp;
1310 int rv = 0;
1311
1312 ip_flow_hash_router_id_set (ntohl (mp->router_id));
1313
1314 REPLY_MACRO (VL_API_SET_IP_FLOW_HASH_ROUTER_ID_REPLY);
1315}
1316
Neale Ranns32e1c012016-11-22 17:07:28 +00001317void
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001318vl_mfib_signal_send_one (vl_api_registration_t * reg,
Neale Ranns32e1c012016-11-22 17:07:28 +00001319 u32 context, const mfib_signal_t * mfs)
1320{
1321 vl_api_mfib_signal_details_t *mp;
Neale Ranns9e829a82018-12-17 05:50:32 -08001322 const mfib_prefix_t *prefix;
Neale Ranns32e1c012016-11-22 17:07:28 +00001323 mfib_table_t *mfib;
1324 mfib_itf_t *mfi;
1325
1326 mp = vl_msg_api_alloc (sizeof (*mp));
1327
Dave Barachb7b92992018-10-17 10:38:51 -04001328 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlar5ff59a12021-06-23 14:38:38 +00001329 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_MFIB_SIGNAL_DETAILS);
Neale Ranns32e1c012016-11-22 17:07:28 +00001330 mp->context = context;
1331
1332 mfi = mfib_itf_get (mfs->mfs_itf);
Neale Ranns9e829a82018-12-17 05:50:32 -08001333 prefix = mfib_entry_get_prefix (mfs->mfs_entry);
Neale Ranns32e1c012016-11-22 17:07:28 +00001334 mfib = mfib_table_get (mfib_entry_get_fib_index (mfs->mfs_entry),
Neale Ranns9e829a82018-12-17 05:50:32 -08001335 prefix->fp_proto);
Neale Ranns32e1c012016-11-22 17:07:28 +00001336 mp->table_id = ntohl (mfib->mft_table_id);
1337 mp->sw_if_index = ntohl (mfi->mfi_sw_if_index);
1338
Neale Ranns097fa662018-05-01 05:17:55 -07001339 ip_mprefix_encode (prefix, &mp->prefix);
Neale Ranns32e1c012016-11-22 17:07:28 +00001340
1341 if (0 != mfs->mfs_buffer_len)
1342 {
1343 mp->ip_packet_len = ntohs (mfs->mfs_buffer_len);
1344
1345 memcpy (mp->ip_packet_data, mfs->mfs_buffer, mfs->mfs_buffer_len);
1346 }
1347 else
1348 {
1349 mp->ip_packet_len = 0;
1350 }
1351
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001352 vl_api_send_msg (reg, (u8 *) mp);
Neale Ranns32e1c012016-11-22 17:07:28 +00001353}
1354
1355static void
1356vl_api_mfib_signal_dump_t_handler (vl_api_mfib_signal_dump_t * mp)
1357{
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001358 vl_api_registration_t *reg;
Neale Ranns32e1c012016-11-22 17:07:28 +00001359
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001360 reg = vl_api_client_index_to_registration (mp->client_index);
1361 if (!reg)
1362 return;
Neale Ranns32e1c012016-11-22 17:07:28 +00001363
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001364 while (vl_api_can_send_msg (reg) && mfib_signal_send_one (reg, mp->context))
Neale Ranns32e1c012016-11-22 17:07:28 +00001365 ;
1366}
Dave Barachb5e8a772016-12-06 12:04:42 -05001367
Florin Coras595992c2017-11-06 17:17:08 -08001368static void
1369 vl_api_ip_container_proxy_add_del_t_handler
1370 (vl_api_ip_container_proxy_add_del_t * mp)
1371{
1372 vl_api_ip_container_proxy_add_del_reply_t *rmp;
1373 vnet_ip_container_proxy_args_t args;
1374 int rv = 0;
1375 clib_error_t *error;
1376
Dave Barachb7b92992018-10-17 10:38:51 -04001377 clib_memset (&args, 0, sizeof (args));
Neale Ranns37029302018-08-10 05:30:06 -07001378
1379 ip_prefix_decode (&mp->pfx, &args.prefix);
1380
Florin Coras595992c2017-11-06 17:17:08 -08001381 args.sw_if_index = clib_net_to_host_u32 (mp->sw_if_index);
1382 args.is_add = mp->is_add;
1383 if ((error = vnet_ip_container_proxy_add_del (&args)))
1384 {
1385 rv = clib_error_get_code (error);
1386 clib_error_report (error);
1387 }
1388
1389 REPLY_MACRO (VL_API_IP_CONTAINER_PROXY_ADD_DEL_REPLY);
1390}
1391
Neale Ranns8f5fef22020-12-21 08:29:34 +00001392typedef struct ip_walk_ctx_t_
Matus Fabian75b9f452018-10-02 23:27:21 -07001393{
1394 vl_api_registration_t *reg;
1395 u32 context;
Neale Ranns8f5fef22020-12-21 08:29:34 +00001396} ip_walk_ctx_t;
Matus Fabian75b9f452018-10-02 23:27:21 -07001397
1398static int
1399ip_container_proxy_send_details (const fib_prefix_t * pfx, u32 sw_if_index,
1400 void *args)
1401{
1402 vl_api_ip_container_proxy_details_t *mp;
Neale Ranns8f5fef22020-12-21 08:29:34 +00001403 ip_walk_ctx_t *ctx = args;
Matus Fabian75b9f452018-10-02 23:27:21 -07001404
1405 mp = vl_msg_api_alloc (sizeof (*mp));
1406 if (!mp)
1407 return 1;
1408
Dave Barachb7b92992018-10-17 10:38:51 -04001409 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlar5ff59a12021-06-23 14:38:38 +00001410 mp->_vl_msg_id =
1411 ntohs (REPLY_MSG_ID_BASE + VL_API_IP_CONTAINER_PROXY_DETAILS);
Matus Fabian75b9f452018-10-02 23:27:21 -07001412 mp->context = ctx->context;
1413
1414 mp->sw_if_index = ntohl (sw_if_index);
1415 ip_prefix_encode (pfx, &mp->prefix);
1416
1417 vl_api_send_msg (ctx->reg, (u8 *) mp);
1418
1419 return 1;
1420}
1421
1422static void
1423vl_api_ip_container_proxy_dump_t_handler (vl_api_ip_container_proxy_dump_t *
1424 mp)
1425{
1426 vl_api_registration_t *reg;
1427
1428 reg = vl_api_client_index_to_registration (mp->client_index);
1429 if (!reg)
1430 return;
1431
Neale Ranns8f5fef22020-12-21 08:29:34 +00001432 ip_walk_ctx_t ctx = {
Matus Fabian75b9f452018-10-02 23:27:21 -07001433 .context = mp->context,
1434 .reg = reg,
1435 };
1436
1437 ip_container_proxy_walk (ip_container_proxy_send_details, &ctx);
1438}
1439
Neale Rannsb8d44812017-11-10 06:53:54 -08001440static void
1441vl_api_ioam_enable_t_handler (vl_api_ioam_enable_t * mp)
1442{
1443 int rv = 0;
1444 vl_api_ioam_enable_reply_t *rmp;
1445 clib_error_t *error;
1446
1447 /* Ignoring the profile id as currently a single profile
1448 * is supported */
1449 error = ip6_ioam_enable (mp->trace_enable, mp->pot_enable,
1450 mp->seqno, mp->analyse);
1451 if (error)
1452 {
1453 clib_error_report (error);
1454 rv = clib_error_get_code (error);
1455 }
1456
1457 REPLY_MACRO (VL_API_IOAM_ENABLE_REPLY);
1458}
1459
1460static void
1461vl_api_ioam_disable_t_handler (vl_api_ioam_disable_t * mp)
1462{
1463 int rv = 0;
1464 vl_api_ioam_disable_reply_t *rmp;
1465 clib_error_t *error;
1466
1467 error = clear_ioam_rewrite_fn ();
1468 if (error)
1469 {
1470 clib_error_report (error);
1471 rv = clib_error_get_code (error);
1472 }
1473
1474 REPLY_MACRO (VL_API_IOAM_DISABLE_REPLY);
1475}
1476
1477static void
1478 vl_api_ip_source_and_port_range_check_add_del_t_handler
1479 (vl_api_ip_source_and_port_range_check_add_del_t * mp)
1480{
1481 vl_api_ip_source_and_port_range_check_add_del_reply_t *rmp;
1482 int rv = 0;
1483
Neale Rannsb8d44812017-11-10 06:53:54 -08001484 u8 is_add = mp->is_add;
Neale Ranns37029302018-08-10 05:30:06 -07001485 fib_prefix_t pfx;
Neale Rannsb8d44812017-11-10 06:53:54 -08001486 u16 *low_ports = 0;
1487 u16 *high_ports = 0;
1488 u32 vrf_id;
1489 u16 tmp_low, tmp_high;
1490 u8 num_ranges;
1491 int i;
1492
Neale Ranns37029302018-08-10 05:30:06 -07001493 ip_prefix_decode (&mp->prefix, &pfx);
1494
Neale Rannsb8d44812017-11-10 06:53:54 -08001495 // Validate port range
1496 num_ranges = mp->number_of_ranges;
1497 if (num_ranges > 32)
1498 { // This is size of array in VPE.API
1499 rv = VNET_API_ERROR_EXCEEDED_NUMBER_OF_RANGES_CAPACITY;
1500 goto reply;
1501 }
1502
1503 vec_reset_length (low_ports);
1504 vec_reset_length (high_ports);
1505
1506 for (i = 0; i < num_ranges; i++)
1507 {
1508 tmp_low = mp->low_ports[i];
1509 tmp_high = mp->high_ports[i];
1510 // If tmp_low <= tmp_high then only need to check tmp_low = 0
1511 // If tmp_low <= tmp_high then only need to check tmp_high > 65535
1512 if (tmp_low > tmp_high || tmp_low == 0 || tmp_high > 65535)
1513 {
1514 rv = VNET_API_ERROR_INVALID_VALUE;
1515 goto reply;
1516 }
1517 vec_add1 (low_ports, tmp_low);
1518 vec_add1 (high_ports, tmp_high + 1);
1519 }
1520
Neale Rannsb8d44812017-11-10 06:53:54 -08001521 vrf_id = ntohl (mp->vrf_id);
1522
1523 if (vrf_id < 1)
1524 {
1525 rv = VNET_API_ERROR_INVALID_VALUE;
1526 goto reply;
1527 }
1528
1529
Neale Ranns37029302018-08-10 05:30:06 -07001530 if (FIB_PROTOCOL_IP6 == pfx.fp_proto)
Neale Rannsb8d44812017-11-10 06:53:54 -08001531 {
Neale Ranns37029302018-08-10 05:30:06 -07001532 rv = ip6_source_and_port_range_check_add_del (&pfx.fp_addr.ip6,
1533 pfx.fp_len,
Neale Rannsb8d44812017-11-10 06:53:54 -08001534 vrf_id,
1535 low_ports,
1536 high_ports, is_add);
1537 }
1538 else
1539 {
Neale Ranns37029302018-08-10 05:30:06 -07001540 rv = ip4_source_and_port_range_check_add_del (&pfx.fp_addr.ip4,
1541 pfx.fp_len,
Neale Rannsb8d44812017-11-10 06:53:54 -08001542 vrf_id,
1543 low_ports,
1544 high_ports, is_add);
1545 }
1546
1547reply:
1548 vec_free (low_ports);
1549 vec_free (high_ports);
1550 REPLY_MACRO (VL_API_IP_SOURCE_AND_PORT_RANGE_CHECK_ADD_DEL_REPLY);
1551}
1552
1553static void
1554 vl_api_ip_source_and_port_range_check_interface_add_del_t_handler
1555 (vl_api_ip_source_and_port_range_check_interface_add_del_t * mp)
1556{
1557 vlib_main_t *vm = vlib_get_main ();
1558 vl_api_ip_source_and_port_range_check_interface_add_del_reply_t *rmp;
1559 ip4_main_t *im = &ip4_main;
1560 int rv;
1561 u32 sw_if_index;
1562 u32 fib_index[IP_SOURCE_AND_PORT_RANGE_CHECK_N_PROTOCOLS];
1563 u32 vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_N_PROTOCOLS];
1564 uword *p = 0;
1565 int i;
1566
1567 vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_TCP_OUT] =
1568 ntohl (mp->tcp_out_vrf_id);
1569 vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_UDP_OUT] =
1570 ntohl (mp->udp_out_vrf_id);
1571 vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_TCP_IN] =
1572 ntohl (mp->tcp_in_vrf_id);
1573 vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_UDP_IN] =
1574 ntohl (mp->udp_in_vrf_id);
1575
1576
1577 for (i = 0; i < IP_SOURCE_AND_PORT_RANGE_CHECK_N_PROTOCOLS; i++)
1578 {
1579 if (vrf_id[i] != 0 && vrf_id[i] != ~0)
1580 {
1581 p = hash_get (im->fib_index_by_table_id, vrf_id[i]);
1582
1583 if (p == 0)
1584 {
1585 rv = VNET_API_ERROR_INVALID_VALUE;
1586 goto reply;
1587 }
1588
1589 fib_index[i] = p[0];
1590 }
1591 else
1592 fib_index[i] = ~0;
1593 }
1594 sw_if_index = ntohl (mp->sw_if_index);
1595
1596 VALIDATE_SW_IF_INDEX (mp);
1597
1598 rv =
1599 set_ip_source_and_port_range_check (vm, fib_index, sw_if_index,
1600 mp->is_add);
1601
1602 BAD_SW_IF_INDEX_LABEL;
1603reply:
1604
1605 REPLY_MACRO (VL_API_IP_SOURCE_AND_PORT_RANGE_CHECK_INTERFACE_ADD_DEL_REPLY);
1606}
1607
Neale Rannscbe25aa2019-09-30 10:53:31 +00001608static void
1609 vl_api_sw_interface_ip6_set_link_local_address_t_handler
1610 (vl_api_sw_interface_ip6_set_link_local_address_t * mp)
1611{
1612 vl_api_sw_interface_ip6_set_link_local_address_reply_t *rmp;
1613 ip6_address_t ip;
1614 int rv;
1615
1616 VALIDATE_SW_IF_INDEX (mp);
1617
1618 ip6_address_decode (mp->ip, &ip);
1619
Neale Rannsec40a7d2020-04-23 07:36:12 +00001620 rv = ip6_link_set_local_address (ntohl (mp->sw_if_index), &ip);
Neale Rannscbe25aa2019-09-30 10:53:31 +00001621
1622 BAD_SW_IF_INDEX_LABEL;
1623 REPLY_MACRO (VL_API_SW_INTERFACE_IP6_SET_LINK_LOCAL_ADDRESS_REPLY);
1624}
1625
Neale Ranns9db6ada2019-11-08 12:42:31 +00001626static void
Benoît Ganne58a19152021-01-18 19:24:34 +01001627vl_api_sw_interface_ip6_get_link_local_address_t_handler (
1628 vl_api_sw_interface_ip6_get_link_local_address_t *mp)
1629{
1630 vl_api_sw_interface_ip6_get_link_local_address_reply_t *rmp;
1631 const ip6_address_t *ip = NULL;
1632 int rv = 0;
1633
1634 VALIDATE_SW_IF_INDEX (mp);
1635
1636 ip = ip6_get_link_local_address (ntohl (mp->sw_if_index));
1637 if (NULL == ip)
1638 rv = VNET_API_ERROR_IP6_NOT_ENABLED;
1639
1640 BAD_SW_IF_INDEX_LABEL;
1641 /* clang-format off */
1642 REPLY_MACRO2 (VL_API_SW_INTERFACE_IP6_GET_LINK_LOCAL_ADDRESS_REPLY,
1643 ({
1644 if (!rv)
1645 ip6_address_encode (ip, rmp->ip);
1646 }))
1647 /* clang-format on */
1648}
1649
1650static void
Neale Ranns9db6ada2019-11-08 12:42:31 +00001651vl_api_ip_table_replace_begin_t_handler (vl_api_ip_table_replace_begin_t * mp)
Neale Rannsb8d44812017-11-10 06:53:54 -08001652{
Neale Ranns9db6ada2019-11-08 12:42:31 +00001653 vl_api_ip_table_replace_begin_reply_t *rmp;
1654 fib_protocol_t fproto;
1655 u32 fib_index;
1656 int rv = 0;
Neale Rannsb8d44812017-11-10 06:53:54 -08001657
Neale Ranns9db6ada2019-11-08 12:42:31 +00001658 fproto = (mp->table.is_ip6 ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
1659 fib_index = fib_table_find (fproto, ntohl (mp->table.table_id));
Neale Rannsb8d44812017-11-10 06:53:54 -08001660
Neale Ranns9db6ada2019-11-08 12:42:31 +00001661 if (INDEX_INVALID == fib_index)
1662 rv = VNET_API_ERROR_NO_SUCH_FIB;
1663 else
1664 {
1665 fib_table_mark (fib_index, fproto, FIB_SOURCE_API);
1666 mfib_table_mark (mfib_table_find (fproto, ntohl (mp->table.table_id)),
1667 fproto, MFIB_SOURCE_API);
Neale Rannsb8d44812017-11-10 06:53:54 -08001668 }
Neale Ranns9db6ada2019-11-08 12:42:31 +00001669 REPLY_MACRO (VL_API_IP_TABLE_REPLACE_BEGIN_REPLY);
Neale Rannsb8d44812017-11-10 06:53:54 -08001670}
1671
1672static void
Neale Ranns9db6ada2019-11-08 12:42:31 +00001673vl_api_ip_table_replace_end_t_handler (vl_api_ip_table_replace_end_t * mp)
Neale Rannsb8d44812017-11-10 06:53:54 -08001674{
Neale Ranns9db6ada2019-11-08 12:42:31 +00001675 vl_api_ip_table_replace_end_reply_t *rmp;
1676 fib_protocol_t fproto;
1677 u32 fib_index;
1678 int rv = 0;
Neale Rannsb8d44812017-11-10 06:53:54 -08001679
Neale Ranns9db6ada2019-11-08 12:42:31 +00001680 fproto = (mp->table.is_ip6 ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
1681 fib_index = fib_table_find (fproto, ntohl (mp->table.table_id));
1682
1683 if (INDEX_INVALID == fib_index)
1684 rv = VNET_API_ERROR_NO_SUCH_FIB;
Neale Rannsb8d44812017-11-10 06:53:54 -08001685 else
Neale Ranns9db6ada2019-11-08 12:42:31 +00001686 {
1687 fib_table_sweep (fib_index, fproto, FIB_SOURCE_API);
1688 mfib_table_sweep (mfib_table_find
1689 (fproto, ntohl (mp->table.table_id)), fproto,
1690 MFIB_SOURCE_API);
1691 }
1692 REPLY_MACRO (VL_API_IP_TABLE_REPLACE_END_REPLY);
1693}
Neale Rannsb8d44812017-11-10 06:53:54 -08001694
Neale Ranns9db6ada2019-11-08 12:42:31 +00001695static void
1696vl_api_ip_table_flush_t_handler (vl_api_ip_table_flush_t * mp)
1697{
1698 vl_api_ip_table_flush_reply_t *rmp;
1699 fib_protocol_t fproto;
1700 u32 fib_index;
1701 int rv = 0;
1702
1703 fproto = (mp->table.is_ip6 ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
1704 fib_index = fib_table_find (fproto, ntohl (mp->table.table_id));
1705
1706 if (INDEX_INVALID == fib_index)
1707 rv = VNET_API_ERROR_NO_SUCH_FIB;
1708 else
1709 {
1710 vnet_main_t *vnm = vnet_get_main ();
1711 vnet_interface_main_t *im = &vnm->interface_main;
1712 vnet_sw_interface_t *si;
1713
1714 /* Shut down interfaces in this FIB / clean out intfc routes */
1715 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001716 pool_foreach (si, im->sw_interfaces)
1717 {
Neale Ranns9db6ada2019-11-08 12:42:31 +00001718 if (fib_index == fib_table_get_index_for_sw_if_index (fproto,
1719 si->sw_if_index))
1720 {
1721 u32 flags = si->flags;
1722 flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
1723 vnet_sw_interface_set_flags (vnm, si->sw_if_index, flags);
1724 }
Damjan Marionb2c31b62020-12-13 21:47:40 +01001725 }
Neale Ranns9db6ada2019-11-08 12:42:31 +00001726 /* *INDENT-ON* */
1727
1728 fib_table_flush (fib_index, fproto, FIB_SOURCE_API);
1729 mfib_table_flush (mfib_table_find (fproto, ntohl (mp->table.table_id)),
1730 fproto, MFIB_SOURCE_API);
1731 }
1732
1733 REPLY_MACRO (VL_API_IP_TABLE_FLUSH_REPLY);
Neale Rannsb8d44812017-11-10 06:53:54 -08001734}
1735
Klement Sekera75e7d132017-09-20 08:26:30 +02001736void
1737vl_api_ip_reassembly_set_t_handler (vl_api_ip_reassembly_set_t * mp)
1738{
1739 vl_api_ip_reassembly_set_reply_t *rmp;
1740 int rv = 0;
Klement Sekerade34c352019-06-25 11:19:22 +00001741 switch ((vl_api_ip_reass_type_t) clib_net_to_host_u32 (mp->type))
Klement Sekera75e7d132017-09-20 08:26:30 +02001742 {
Klement Sekerade34c352019-06-25 11:19:22 +00001743 case IP_REASS_TYPE_FULL:
1744 if (mp->is_ip6)
1745 {
1746 rv = ip6_full_reass_set (clib_net_to_host_u32 (mp->timeout_ms),
1747 clib_net_to_host_u32
1748 (mp->max_reassemblies),
1749 clib_net_to_host_u32
1750 (mp->max_reassembly_length),
1751 clib_net_to_host_u32
1752 (mp->expire_walk_interval_ms));
1753 }
1754 else
1755 {
1756 rv = ip4_full_reass_set (clib_net_to_host_u32 (mp->timeout_ms),
1757 clib_net_to_host_u32
1758 (mp->max_reassemblies),
1759 clib_net_to_host_u32
1760 (mp->max_reassembly_length),
1761 clib_net_to_host_u32
1762 (mp->expire_walk_interval_ms));
1763 }
1764 break;
1765 case IP_REASS_TYPE_SHALLOW_VIRTUAL:
1766 if (mp->is_ip6)
1767 {
1768 rv =
1769 ip6_sv_reass_set (clib_net_to_host_u32 (mp->timeout_ms),
1770 clib_net_to_host_u32 (mp->max_reassemblies),
1771 clib_net_to_host_u32
1772 (mp->max_reassembly_length),
1773 clib_net_to_host_u32
1774 (mp->expire_walk_interval_ms));
1775 }
1776 else
1777 {
1778 rv = ip4_sv_reass_set (clib_net_to_host_u32 (mp->timeout_ms),
1779 clib_net_to_host_u32 (mp->max_reassemblies),
1780 clib_net_to_host_u32
1781 (mp->max_reassembly_length),
1782 clib_net_to_host_u32
1783 (mp->expire_walk_interval_ms));
1784 }
1785 break;
Klement Sekera75e7d132017-09-20 08:26:30 +02001786 }
1787
1788 REPLY_MACRO (VL_API_IP_REASSEMBLY_SET_REPLY);
1789}
1790
1791void
1792vl_api_ip_reassembly_get_t_handler (vl_api_ip_reassembly_get_t * mp)
1793{
Ole Troan2e1c8962019-04-10 09:44:23 +02001794 vl_api_registration_t *rp;
Klement Sekera75e7d132017-09-20 08:26:30 +02001795
Ole Troan2e1c8962019-04-10 09:44:23 +02001796 rp = vl_api_client_index_to_registration (mp->client_index);
1797 if (rp == 0)
Klement Sekera75e7d132017-09-20 08:26:30 +02001798 return;
1799
1800 vl_api_ip_reassembly_get_reply_t *rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001801 clib_memset (rmp, 0, sizeof (*rmp));
Filip Tehlar5ff59a12021-06-23 14:38:38 +00001802 rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_IP_REASSEMBLY_GET_REPLY);
Klement Sekera75e7d132017-09-20 08:26:30 +02001803 rmp->context = mp->context;
1804 rmp->retval = 0;
Klement Sekerade34c352019-06-25 11:19:22 +00001805 u32 timeout_ms;
1806 u32 max_reassemblies;
1807 u32 max_reassembly_length;
1808 u32 expire_walk_interval_ms;
1809 switch ((vl_api_ip_reass_type_t) clib_net_to_host_u32 (mp->type))
Klement Sekera75e7d132017-09-20 08:26:30 +02001810 {
Klement Sekerade34c352019-06-25 11:19:22 +00001811 case IP_REASS_TYPE_FULL:
1812 if (mp->is_ip6)
1813 {
1814 rmp->is_ip6 = 1;
1815 ip6_full_reass_get (&timeout_ms, &max_reassemblies,
1816 &max_reassembly_length,
1817 &expire_walk_interval_ms);
1818 }
1819 else
1820 {
1821 rmp->is_ip6 = 0;
1822 ip4_full_reass_get (&timeout_ms, &max_reassemblies,
1823 &max_reassembly_length,
1824 &expire_walk_interval_ms);
1825 }
1826 break;
1827 case IP_REASS_TYPE_SHALLOW_VIRTUAL:
1828 if (mp->is_ip6)
1829 {
1830 rmp->is_ip6 = 1;
1831 ip6_sv_reass_get (&timeout_ms, &max_reassemblies,
1832 &max_reassembly_length, &expire_walk_interval_ms);
1833 }
1834 else
1835 {
1836 rmp->is_ip6 = 0;
1837 ip4_sv_reass_get (&timeout_ms, &max_reassemblies,
1838 &max_reassembly_length, &expire_walk_interval_ms);
1839 }
1840 break;
Klement Sekera75e7d132017-09-20 08:26:30 +02001841 }
Matthew Smithb3174df2019-12-03 12:41:53 -06001842 rmp->timeout_ms = clib_host_to_net_u32 (timeout_ms);
1843 rmp->max_reassemblies = clib_host_to_net_u32 (max_reassemblies);
1844 rmp->max_reassembly_length = clib_host_to_net_u32 (max_reassembly_length);
Klement Sekera75e7d132017-09-20 08:26:30 +02001845 rmp->expire_walk_interval_ms =
Matthew Smithb3174df2019-12-03 12:41:53 -06001846 clib_host_to_net_u32 (expire_walk_interval_ms);
Ole Troan2e1c8962019-04-10 09:44:23 +02001847 vl_api_send_msg (rp, (u8 *) rmp);
Klement Sekera75e7d132017-09-20 08:26:30 +02001848}
1849
Klement Sekera4c533132018-02-22 11:41:12 +01001850void
1851 vl_api_ip_reassembly_enable_disable_t_handler
1852 (vl_api_ip_reassembly_enable_disable_t * mp)
1853{
1854 vl_api_ip_reassembly_enable_disable_reply_t *rmp;
1855 int rv = 0;
Klement Sekerade34c352019-06-25 11:19:22 +00001856 switch ((vl_api_ip_reass_type_t) clib_net_to_host_u32 (mp->type))
Klement Sekera4c533132018-02-22 11:41:12 +01001857 {
Klement Sekerade34c352019-06-25 11:19:22 +00001858 case IP_REASS_TYPE_FULL:
Klement Sekera896c8962019-06-24 11:52:49 +00001859 rv =
Klement Sekerade34c352019-06-25 11:19:22 +00001860 ip4_full_reass_enable_disable (clib_net_to_host_u32 (mp->sw_if_index),
1861 mp->enable_ip4);
1862 if (0 == rv)
1863 rv =
1864 ip6_full_reass_enable_disable (clib_net_to_host_u32
1865 (mp->sw_if_index), mp->enable_ip6);
1866 break;
1867 case IP_REASS_TYPE_SHALLOW_VIRTUAL:
1868 rv =
1869 ip4_sv_reass_enable_disable (clib_net_to_host_u32 (mp->sw_if_index),
1870 mp->enable_ip4);
1871 if (0 == rv)
1872 {
1873 rv =
1874 ip6_sv_reass_enable_disable (clib_net_to_host_u32
1875 (mp->sw_if_index), mp->enable_ip6);
1876 }
1877 break;
Klement Sekera4c533132018-02-22 11:41:12 +01001878 }
1879
Choree7f61d12018-11-28 10:27:58 +03301880 REPLY_MACRO (VL_API_IP_REASSEMBLY_ENABLE_DISABLE_REPLY);
Klement Sekera4c533132018-02-22 11:41:12 +01001881}
1882
Neale Ranns92207752019-06-03 13:21:40 +00001883static walk_rc_t
1884send_ip_punt_redirect_details (u32 rx_sw_if_index,
1885 const ip_punt_redirect_rx_t * ipr, void *arg)
1886{
Pavel Kotucek609e1212018-11-27 09:59:44 +01001887 vl_api_ip_punt_redirect_details_t *mp;
Neale Ranns097fa662018-05-01 05:17:55 -07001888 fib_path_encode_ctx_t path_ctx = {
1889 .rpaths = NULL,
1890 };
Neale Ranns8f5fef22020-12-21 08:29:34 +00001891 ip_walk_ctx_t *ctx = arg;
Pavel Kotucek609e1212018-11-27 09:59:44 +01001892
1893 mp = vl_msg_api_alloc (sizeof (*mp));
1894 if (!mp)
Neale Ranns92207752019-06-03 13:21:40 +00001895 return (WALK_STOP);;
Pavel Kotucek609e1212018-11-27 09:59:44 +01001896
1897 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlar5ff59a12021-06-23 14:38:38 +00001898 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_IP_PUNT_REDIRECT_DETAILS);
Neale Ranns92207752019-06-03 13:21:40 +00001899 mp->context = ctx->context;
Pavel Kotucek609e1212018-11-27 09:59:44 +01001900
Neale Ranns097fa662018-05-01 05:17:55 -07001901 fib_path_list_walk_w_ext (ipr->pl, NULL, fib_path_encode, &path_ctx);
Neale Ranns92207752019-06-03 13:21:40 +00001902
1903 mp->punt.rx_sw_if_index = htonl (rx_sw_if_index);
Neale Ranns097fa662018-05-01 05:17:55 -07001904 mp->punt.tx_sw_if_index = htonl (path_ctx.rpaths[0].frp_sw_if_index);
Neale Ranns92207752019-06-03 13:21:40 +00001905
Neale Ranns097fa662018-05-01 05:17:55 -07001906 ip_address_encode (&path_ctx.rpaths[0].frp_addr,
Neale Ranns92207752019-06-03 13:21:40 +00001907 fib_proto_to_ip46 (ipr->fproto), &mp->punt.nh);
1908
1909 vl_api_send_msg (ctx->reg, (u8 *) mp);
1910
Neale Ranns097fa662018-05-01 05:17:55 -07001911 vec_free (path_ctx.rpaths);
Neale Ranns92207752019-06-03 13:21:40 +00001912
1913 return (WALK_CONTINUE);
Pavel Kotucek609e1212018-11-27 09:59:44 +01001914}
1915
Nathan Skrzypczak2a1783f2021-08-10 15:05:29 +02001916static walk_rc_t
1917send_ip_punt_redirect_v2_details (u32 rx_sw_if_index,
1918 const ip_punt_redirect_rx_t *ipr, void *arg)
1919{
1920 vl_api_ip_punt_redirect_v2_details_t *mp;
1921 fib_path_encode_ctx_t path_ctx = {
1922 .rpaths = NULL,
1923 };
1924 fib_route_path_t *rpath;
1925 ip_walk_ctx_t *ctx = arg;
1926 vl_api_fib_path_t *fp;
1927 int n_paths;
1928
1929 fib_path_list_walk_w_ext (ipr->pl, NULL, fib_path_encode, &path_ctx);
1930
1931 n_paths = vec_len (path_ctx.rpaths);
1932 mp = vl_msg_api_alloc (sizeof (*mp) + n_paths * sizeof (*fp));
1933 if (!mp)
1934 return (WALK_STOP);
1935
1936 clib_memset (mp, 0, sizeof (*mp));
1937 mp->_vl_msg_id =
1938 ntohs (REPLY_MSG_ID_BASE + VL_API_IP_PUNT_REDIRECT_V2_DETAILS);
1939 mp->context = ctx->context;
1940 mp->punt.rx_sw_if_index = htonl (rx_sw_if_index);
1941 mp->punt.n_paths = htonl (n_paths);
1942 fp = mp->punt.paths;
1943 vec_foreach (rpath, path_ctx.rpaths)
1944 {
1945 fib_api_path_encode (rpath, fp);
1946 fp++;
1947 }
1948 mp->punt.af = (ipr->fproto == FIB_PROTOCOL_IP6) ? ADDRESS_IP6 : ADDRESS_IP4;
1949
1950 vl_api_send_msg (ctx->reg, (u8 *) mp);
1951
1952 vec_free (path_ctx.rpaths);
1953
1954 return (WALK_CONTINUE);
1955}
1956
1957static void
1958vl_api_ip_punt_redirect_dump_common (ip_walk_ctx_t *ctx, fib_protocol_t fproto,
1959 u32 rx_sw_if_index,
1960 ip_punt_redirect_walk_cb_t cb)
1961{
1962
1963 if ((u32) ~0 != rx_sw_if_index)
1964 {
1965 index_t pri;
1966 pri = ip_punt_redirect_find (fproto, rx_sw_if_index);
1967
1968 if (INDEX_INVALID == pri)
1969 return;
1970
1971 cb (rx_sw_if_index, ip_punt_redirect_get (pri), ctx);
1972 }
1973 else
1974 ip_punt_redirect_walk (fproto, cb, ctx);
1975}
1976
Pavel Kotucek609e1212018-11-27 09:59:44 +01001977static void
1978vl_api_ip_punt_redirect_dump_t_handler (vl_api_ip_punt_redirect_dump_t * mp)
1979{
1980 vl_api_registration_t *reg;
Nathan Skrzypczak2a1783f2021-08-10 15:05:29 +02001981 fib_protocol_t fproto;
Pavel Kotucek609e1212018-11-27 09:59:44 +01001982
Pavel Kotucek609e1212018-11-27 09:59:44 +01001983 reg = vl_api_client_index_to_registration (mp->client_index);
1984 if (!reg)
1985 return;
1986
Nathan Skrzypczak2a1783f2021-08-10 15:05:29 +02001987 fproto = (mp->is_ipv6 == 1) ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4;
Pavel Kotucek609e1212018-11-27 09:59:44 +01001988
Neale Ranns8f5fef22020-12-21 08:29:34 +00001989 ip_walk_ctx_t ctx = {
Neale Ranns92207752019-06-03 13:21:40 +00001990 .reg = reg,
1991 .context = mp->context,
1992 };
1993
Nathan Skrzypczak2a1783f2021-08-10 15:05:29 +02001994 vl_api_ip_punt_redirect_dump_common (&ctx, fproto, ntohl (mp->sw_if_index),
1995 send_ip_punt_redirect_details);
1996}
Neale Ranns92207752019-06-03 13:21:40 +00001997
Nathan Skrzypczak2a1783f2021-08-10 15:05:29 +02001998static void
1999vl_api_ip_punt_redirect_v2_dump_t_handler (
2000 vl_api_ip_punt_redirect_v2_dump_t *mp)
2001{
2002 vl_api_registration_t *reg;
2003 ip_address_family_t af;
2004 fib_protocol_t fproto;
2005 int rv = 0;
Neale Ranns92207752019-06-03 13:21:40 +00002006
Nathan Skrzypczak2a1783f2021-08-10 15:05:29 +02002007 reg = vl_api_client_index_to_registration (mp->client_index);
2008 if (!reg)
2009 return;
Neale Ranns92207752019-06-03 13:21:40 +00002010
Nathan Skrzypczak2a1783f2021-08-10 15:05:29 +02002011 rv = ip_address_family_decode (mp->af, &af);
2012 if (rv != 0)
2013 return;
2014
2015 fproto = (af == AF_IP6) ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4;
2016
2017 ip_walk_ctx_t ctx = {
2018 .reg = reg,
2019 .context = mp->context,
2020 };
2021
2022 vl_api_ip_punt_redirect_dump_common (&ctx, fproto, ntohl (mp->sw_if_index),
2023 send_ip_punt_redirect_v2_details);
Pavel Kotucek609e1212018-11-27 09:59:44 +01002024}
2025
Neale Ranns8f5fef22020-12-21 08:29:34 +00002026void
2027vl_api_ip_path_mtu_update_t_handler (vl_api_ip_path_mtu_update_t *mp)
2028{
2029 vl_api_ip_path_mtu_update_reply_t *rmp;
2030 ip_address_t nh;
2031 int rv = 0;
2032
2033 ip_address_decode2 (&mp->pmtu.nh, &nh);
2034
2035 rv = ip_path_mtu_update (&nh, ntohl (mp->pmtu.table_id),
2036 ntohs (mp->pmtu.path_mtu));
2037
2038 REPLY_MACRO (VL_API_IP_PATH_MTU_UPDATE_REPLY);
2039}
2040
2041void
2042vl_api_ip_path_mtu_replace_begin_t_handler (
2043 vl_api_ip_path_mtu_replace_begin_t *mp)
2044{
2045 vl_api_ip_path_mtu_replace_begin_reply_t *rmp;
2046 int rv;
2047
2048 rv = ip_path_mtu_replace_begin ();
2049
2050 REPLY_MACRO (VL_API_IP_PATH_MTU_REPLACE_BEGIN_REPLY);
2051}
2052
2053void
2054vl_api_ip_path_mtu_replace_end_t_handler (vl_api_ip_path_mtu_replace_end_t *mp)
2055{
2056 vl_api_ip_path_mtu_replace_end_reply_t *rmp;
2057 int rv;
2058
2059 rv = ip_path_mtu_replace_end ();
2060
2061 REPLY_MACRO (VL_API_IP_PATH_MTU_REPLACE_END_REPLY);
2062}
2063
2064static void
2065send_ip_path_mtu_details (index_t ipti, vl_api_registration_t *rp, u32 context)
2066{
2067 vl_api_ip_path_mtu_details_t *rmp;
2068 ip_address_t ip;
2069 ip_pmtu_t *ipt;
2070
2071 ipt = ip_path_mtu_get (ipti);
2072
2073 REPLY_MACRO_DETAILS4 (VL_API_IP_PATH_MTU_DETAILS, rp, context, ({
2074 ip_pmtu_get_ip (ipt, &ip);
2075 ip_address_encode2 (&ip, &rmp->pmtu.nh);
2076 rmp->pmtu.table_id =
2077 htonl (ip_pmtu_get_table_id (ipt));
2078 rmp->pmtu.path_mtu = htons (ipt->ipt_cfg_pmtu);
2079 }));
2080}
2081
2082static void
2083vl_api_ip_path_mtu_get_t_handler (vl_api_ip_path_mtu_get_t *mp)
2084{
2085 vl_api_ip_path_mtu_get_reply_t *rmp;
2086 i32 rv = 0;
2087
2088 REPLY_AND_DETAILS_MACRO (
2089 VL_API_IP_PATH_MTU_GET_REPLY, ip_pmtu_pool,
2090 ({ send_ip_path_mtu_details (cursor, rp, mp->context); }));
2091}
2092
Filip Tehlar5ff59a12021-06-23 14:38:38 +00002093#include <vnet/ip/ip.api.c>
Dave Barachb5e8a772016-12-06 12:04:42 -05002094
2095static clib_error_t *
2096ip_api_hookup (vlib_main_t * vm)
2097{
Dave Barach39d69112019-11-27 11:42:13 -05002098 api_main_t *am = vlibapi_get_main ();
Dave Barachb5e8a772016-12-06 12:04:42 -05002099
Dave Barachb5e8a772016-12-06 12:04:42 -05002100 /*
Neale Ranns6a231a12018-10-17 06:38:00 +00002101 * Mark the route add/del API as MP safe
2102 */
Neale Ranns097fa662018-05-01 05:17:55 -07002103 am->is_mp_safe[VL_API_IP_ROUTE_ADD_DEL] = 1;
2104 am->is_mp_safe[VL_API_IP_ROUTE_ADD_DEL_REPLY] = 1;
Neale Ranns976b2592019-12-04 06:11:00 +00002105 am->is_mp_safe[VL_API_IP_ROUTE_ADD_DEL_V2] = 1;
2106 am->is_mp_safe[VL_API_IP_ROUTE_ADD_DEL_V2_REPLY] = 1;
Neale Ranns6a231a12018-10-17 06:38:00 +00002107
2108 /*
Dave Barachb5e8a772016-12-06 12:04:42 -05002109 * Set up the (msg_name, crc, message-id) table
2110 */
Filip Tehlar5ff59a12021-06-23 14:38:38 +00002111 REPLY_MSG_ID_BASE = setup_message_id_table ();
Dave Barachb5e8a772016-12-06 12:04:42 -05002112
Dave Barachb5e8a772016-12-06 12:04:42 -05002113 return 0;
2114}
2115
2116VLIB_API_INIT_FUNCTION (ip_api_hookup);
2117
2118/*
2119 * fd.io coding-style-patch-verification: ON
2120 *
2121 * Local Variables:
2122 * eval: (c-set-style "gnu")
2123 * End:
2124 */