blob: b75ec574d1c593333825445d5f1df85937363453 [file] [log] [blame]
Dave Barachaff70772016-10-31 11:59:07 -04001/*
2 *------------------------------------------------------------------
3 * interface_api.c - vnet interface 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>
Mohammed Hawari9fecbe12020-12-11 19:36:37 +010024#include <vnet/interface/rx_queue_funcs.h>
Dave Barachaff70772016-10-31 11:59:07 -040025#include <vnet/api_errno.h>
Matus Fabiand162f3d2016-12-05 01:05:35 -080026#include <vnet/ethernet/ethernet.h>
Dave Barach6d963c22016-12-05 09:50:05 -050027#include <vnet/ip/ip.h>
28#include <vnet/fib/fib_table.h>
Neale Ranns4008ac92017-02-13 23:20:04 -080029#include <vnet/mfib/mfib_table.h>
Dave Barach6d963c22016-12-05 09:50:05 -050030#include <vnet/l2/l2_vtr.h>
Dave Barachaff70772016-10-31 11:59:07 -040031#include <vnet/vnet_msg_enum.h>
Dave Barachb5e8a772016-12-06 12:04:42 -050032#include <vnet/fib/fib_api.h>
Neale Ranns358425b2017-02-20 09:42:36 -080033#include <vnet/mfib/mfib_table.h>
Dave Barachaff70772016-10-31 11:59:07 -040034
Jakub Grajciar053204a2019-03-18 13:17:53 +010035#include <vlibapi/api_types.h>
36
37#include <vnet/ip/ip_types_api.h>
38#include <vnet/ethernet/ethernet_types_api.h>
39
Dave Barachaff70772016-10-31 11:59:07 -040040#define vl_typedefs /* define message structures */
41#include <vnet/vnet_all_api_h.h>
42#undef vl_typedefs
43
44#define vl_endianfun /* define message structures */
45#include <vnet/vnet_all_api_h.h>
46#undef vl_endianfun
47
48/* instantiate all the print functions we know about */
49#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
50#define vl_printfun
51#include <vnet/vnet_all_api_h.h>
52#undef vl_printfun
53
54#include <vlibapi/api_helper_macros.h>
Dave Barachf1586612017-03-30 09:33:01 -040055vpe_api_main_t vpe_api_main;
Dave Barachaff70772016-10-31 11:59:07 -040056
Nathan Skrzypczakfd0b3992021-02-04 16:11:18 +010057#define foreach_vpe_api_msg \
58 _ (SW_INTERFACE_SET_FLAGS, sw_interface_set_flags) \
59 _ (SW_INTERFACE_SET_PROMISC, sw_interface_set_promisc) \
60 _ (HW_INTERFACE_SET_MTU, hw_interface_set_mtu) \
61 _ (SW_INTERFACE_SET_MTU, sw_interface_set_mtu) \
62 _ (WANT_INTERFACE_EVENTS, want_interface_events) \
63 _ (SW_INTERFACE_DUMP, sw_interface_dump) \
64 _ (SW_INTERFACE_ADD_DEL_ADDRESS, sw_interface_add_del_address) \
65 _ (SW_INTERFACE_SET_RX_MODE, sw_interface_set_rx_mode) \
66 _ (SW_INTERFACE_RX_PLACEMENT_DUMP, sw_interface_rx_placement_dump) \
67 _ (SW_INTERFACE_SET_RX_PLACEMENT, sw_interface_set_rx_placement) \
68 _ (SW_INTERFACE_SET_TABLE, sw_interface_set_table) \
69 _ (SW_INTERFACE_GET_TABLE, sw_interface_get_table) \
70 _ (SW_INTERFACE_SET_UNNUMBERED, sw_interface_set_unnumbered) \
71 _ (SW_INTERFACE_CLEAR_STATS, sw_interface_clear_stats) \
72 _ (SW_INTERFACE_TAG_ADD_DEL, sw_interface_tag_add_del) \
73 _ (SW_INTERFACE_ADD_DEL_MAC_ADDRESS, sw_interface_add_del_mac_address) \
74 _ (SW_INTERFACE_SET_MAC_ADDRESS, sw_interface_set_mac_address) \
75 _ (SW_INTERFACE_GET_MAC_ADDRESS, sw_interface_get_mac_address) \
76 _ (CREATE_VLAN_SUBIF, create_vlan_subif) \
77 _ (CREATE_SUBIF, create_subif) \
78 _ (DELETE_SUBIF, delete_subif) \
79 _ (CREATE_LOOPBACK, create_loopback) \
80 _ (CREATE_LOOPBACK_INSTANCE, create_loopback_instance) \
81 _ (DELETE_LOOPBACK, delete_loopback) \
82 _ (INTERFACE_NAME_RENUMBER, interface_name_renumber) \
83 _ (COLLECT_DETAILED_INTERFACE_STATS, collect_detailed_interface_stats) \
84 _ (SW_INTERFACE_SET_IP_DIRECTED_BROADCAST, \
85 sw_interface_set_ip_directed_broadcast) \
86 _ (SW_INTERFACE_ADDRESS_REPLACE_BEGIN, sw_interface_address_replace_begin) \
87 _ (SW_INTERFACE_ADDRESS_REPLACE_END, sw_interface_address_replace_end)
Dave Barachaff70772016-10-31 11:59:07 -040088
89static void
90vl_api_sw_interface_set_flags_t_handler (vl_api_sw_interface_set_flags_t * mp)
91{
92 vl_api_sw_interface_set_flags_reply_t *rmp;
93 vnet_main_t *vnm = vnet_get_main ();
94 int rv = 0;
95 clib_error_t *error;
96 u16 flags;
97
98 VALIDATE_SW_IF_INDEX (mp);
99
Jakub Grajciar053204a2019-03-18 13:17:53 +0100100 flags =
101 ((ntohl (mp->flags)) & IF_STATUS_API_FLAG_ADMIN_UP) ?
102 VNET_SW_INTERFACE_FLAG_ADMIN_UP : 0;
Dave Barachaff70772016-10-31 11:59:07 -0400103
104 error = vnet_sw_interface_set_flags (vnm, ntohl (mp->sw_if_index), flags);
105 if (error)
106 {
107 rv = -1;
108 clib_error_report (error);
109 }
110
111 BAD_SW_IF_INDEX_LABEL;
112 REPLY_MACRO (VL_API_SW_INTERFACE_SET_FLAGS_REPLY);
113}
114
Matus Fabiand162f3d2016-12-05 01:05:35 -0800115static void
Nathan Skrzypczakfd0b3992021-02-04 16:11:18 +0100116vl_api_sw_interface_set_promisc_t_handler (
117 vl_api_sw_interface_set_promisc_t *mp)
118{
119 vl_api_sw_interface_set_promisc_reply_t *rmp;
120 vnet_main_t *vnm = vnet_get_main ();
121 ethernet_main_t *em = &ethernet_main;
122 int rv = 0;
123 ethernet_interface_t *eif;
124 vnet_sw_interface_t *swif;
125 u32 flags, sw_if_index;
126
127 VALIDATE_SW_IF_INDEX (mp);
128
129 sw_if_index = ntohl (mp->sw_if_index);
130 swif = vnet_get_sw_interface (vnm, sw_if_index);
131 eif = ethernet_get_interface (em, swif->hw_if_index);
132 if (!eif)
133 {
134 rv = VNET_API_ERROR_INVALID_VALUE;
135 goto done;
136 }
137
138 flags = mp->promisc_on ? ETHERNET_INTERFACE_FLAG_ACCEPT_ALL : 0;
139 rv = ethernet_set_flags (vnm, swif->hw_if_index, flags);
140
141done:
142 BAD_SW_IF_INDEX_LABEL;
143 REPLY_MACRO (VL_API_SW_INTERFACE_SET_PROMISC_REPLY);
144}
145
146static void
Ole Troand7231612018-06-07 10:17:57 +0200147vl_api_hw_interface_set_mtu_t_handler (vl_api_hw_interface_set_mtu_t * mp)
Matus Fabiand162f3d2016-12-05 01:05:35 -0800148{
Ole Troand7231612018-06-07 10:17:57 +0200149 vl_api_hw_interface_set_mtu_reply_t *rmp;
Matus Fabiand162f3d2016-12-05 01:05:35 -0800150 vnet_main_t *vnm = vnet_get_main ();
Matus Fabiand162f3d2016-12-05 01:05:35 -0800151 u32 sw_if_index = ntohl (mp->sw_if_index);
152 u16 mtu = ntohs (mp->mtu);
Damjan Marionfe7d4a22018-04-13 19:43:39 +0200153 ethernet_main_t *em = &ethernet_main;
Matus Fabiand162f3d2016-12-05 01:05:35 -0800154 int rv = 0;
155
156 VALIDATE_SW_IF_INDEX (mp);
157
Damjan Marionfe7d4a22018-04-13 19:43:39 +0200158 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
159 if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
160 {
161 rv = VNET_API_ERROR_INVALID_VALUE;
162 goto bad_sw_if_index;
163 }
164
165 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, si->hw_if_index);
166 ethernet_interface_t *eif = ethernet_get_interface (em, si->hw_if_index);
167
168 if (!eif)
169 {
170 rv = VNET_API_ERROR_FEATURE_DISABLED;
171 goto bad_sw_if_index;
172 }
173
174 if (mtu < hi->min_supported_packet_bytes)
175 {
176 rv = VNET_API_ERROR_INVALID_VALUE;
177 goto bad_sw_if_index;
178 }
179
180 if (mtu > hi->max_supported_packet_bytes)
181 {
182 rv = VNET_API_ERROR_INVALID_VALUE;
183 goto bad_sw_if_index;
184 }
185
186 vnet_hw_interface_set_mtu (vnm, si->hw_if_index, mtu);
Matus Fabiand162f3d2016-12-05 01:05:35 -0800187
188 BAD_SW_IF_INDEX_LABEL;
Ole Troand7231612018-06-07 10:17:57 +0200189 REPLY_MACRO (VL_API_HW_INTERFACE_SET_MTU_REPLY);
190}
191
192static void
193vl_api_sw_interface_set_mtu_t_handler (vl_api_sw_interface_set_mtu_t * mp)
194{
195 vl_api_sw_interface_set_mtu_reply_t *rmp;
196 vnet_main_t *vnm = vnet_get_main ();
197 u32 sw_if_index = ntohl (mp->sw_if_index);
198 int rv = 0;
199 int i;
200 u32 per_protocol_mtu[VNET_N_MTU];
201
202 VALIDATE_SW_IF_INDEX (mp);
203
204 for (i = 0; i < VNET_N_MTU; i++)
Ole Troan33a58172019-09-04 09:12:29 +0200205 {
206 per_protocol_mtu[i] = ntohl (mp->mtu[i]);
Ole Troan33a58172019-09-04 09:12:29 +0200207 }
Ole Troand7231612018-06-07 10:17:57 +0200208 vnet_sw_interface_set_protocol_mtu (vnm, sw_if_index, per_protocol_mtu);
209
210 BAD_SW_IF_INDEX_LABEL;
Matus Fabiand162f3d2016-12-05 01:05:35 -0800211 REPLY_MACRO (VL_API_SW_INTERFACE_SET_MTU_REPLY);
212}
213
Dave Barach6d963c22016-12-05 09:50:05 -0500214static void
Neale Ranns1855b8e2018-07-11 10:31:26 -0700215 vl_api_sw_interface_set_ip_directed_broadcast_t_handler
216 (vl_api_sw_interface_set_ip_directed_broadcast_t * mp)
217{
218 vl_api_sw_interface_set_ip_directed_broadcast_reply_t *rmp;
219 u32 sw_if_index = ntohl (mp->sw_if_index);
220 int rv = 0;
221
222 VALIDATE_SW_IF_INDEX (mp);
223
224 vnet_sw_interface_ip_directed_broadcast (vnet_get_main (),
225 sw_if_index, mp->enable);
226
227 BAD_SW_IF_INDEX_LABEL;
228 REPLY_MACRO (VL_API_SW_INTERFACE_SET_IP_DIRECTED_BROADCAST_REPLY);
229}
230
231static void
Dave Barach6d963c22016-12-05 09:50:05 -0500232send_sw_interface_details (vpe_api_main_t * am,
Dave Barach59b25652017-09-10 15:04:27 -0400233 vl_api_registration_t * rp,
Dave Barach6d963c22016-12-05 09:50:05 -0500234 vnet_sw_interface_t * swif,
235 u8 * interface_name, u32 context)
236{
Eyal Bari1c82cd42017-03-14 14:39:51 +0200237 vnet_hw_interface_t *hi =
238 vnet_get_sup_hw_interface (am->vnet_main, swif->sw_if_index);
Mohsin Kazmide312c22019-09-27 13:44:28 +0200239 vnet_device_class_t *dev_class =
240 vnet_get_device_class (am->vnet_main, hi->dev_class_index);
Dave Barach6d963c22016-12-05 09:50:05 -0500241
Ole Troane5ff5a32019-08-23 22:55:18 +0200242 vl_api_sw_interface_details_t *mp = vl_msg_api_alloc (sizeof (*mp));
243 clib_memset (mp, 0, sizeof (*mp));
Dave Barach6d963c22016-12-05 09:50:05 -0500244 mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_DETAILS);
245 mp->sw_if_index = ntohl (swif->sw_if_index);
246 mp->sup_sw_if_index = ntohl (swif->sup_sw_if_index);
Jakub Grajciar053204a2019-03-18 13:17:53 +0100247
248 mp->flags |= (swif->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
249 IF_STATUS_API_FLAG_ADMIN_UP : 0;
250 mp->flags |= (hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ?
251 IF_STATUS_API_FLAG_LINK_UP : 0;
252 mp->flags = ntohl (mp->flags);
253
254 switch (swif->type)
255 {
256 case VNET_SW_INTERFACE_TYPE_SUB:
257 mp->type = IF_API_TYPE_SUB;
258 break;
259 case VNET_SW_INTERFACE_TYPE_P2P:
260 mp->type = IF_API_TYPE_P2P;
261 break;
262 case VNET_SW_INTERFACE_TYPE_PIPE:
263 mp->type = IF_API_TYPE_PIPE;
264 break;
265 default:
266 mp->type = IF_API_TYPE_HARDWARE;
267 }
268 mp->type = ntohl (mp->type);
269
Dave Barach6d963c22016-12-05 09:50:05 -0500270 mp->link_duplex = ((hi->flags & VNET_HW_INTERFACE_FLAG_DUPLEX_MASK) >>
271 VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT);
Ole Troan8ee72512018-11-20 11:03:10 +0100272 mp->link_speed = ntohl (hi->link_speed);
Damjan Marionfe7d4a22018-04-13 19:43:39 +0200273 mp->link_mtu = ntohs (hi->max_packet_bytes);
Ole Troand7231612018-06-07 10:17:57 +0200274 mp->mtu[VNET_MTU_L3] = ntohl (swif->mtu[VNET_MTU_L3]);
275 mp->mtu[VNET_MTU_IP4] = ntohl (swif->mtu[VNET_MTU_IP4]);
276 mp->mtu[VNET_MTU_IP6] = ntohl (swif->mtu[VNET_MTU_IP6]);
277 mp->mtu[VNET_MTU_MPLS] = ntohl (swif->mtu[VNET_MTU_MPLS]);
278
Dave Barach6d963c22016-12-05 09:50:05 -0500279 mp->context = context;
280
Ole Troane5ff5a32019-08-23 22:55:18 +0200281 strncpy ((char *) mp->interface_name,
282 (char *) interface_name, ARRAY_LEN (mp->interface_name) - 1);
283
Mohsin Kazmide312c22019-09-27 13:44:28 +0200284 if (dev_class && dev_class->name)
285 strncpy ((char *) mp->interface_dev_type, (char *) dev_class->name,
286 ARRAY_LEN (mp->interface_dev_type) - 1);
287
Dave Barach6d963c22016-12-05 09:50:05 -0500288 /* Send the L2 address for ethernet physical intfcs */
289 if (swif->sup_sw_if_index == swif->sw_if_index
290 && hi->hw_class_index == ethernet_hw_interface_class.index)
291 {
292 ethernet_main_t *em = ethernet_get_main (am->vlib_main);
293 ethernet_interface_t *ei;
294
295 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
Benoît Ganneb44c77d2020-10-20 16:24:17 +0200296 ASSERT (sizeof (mp->l2_address) >= sizeof (ei->address.mac));
297 mac_address_encode (&ei->address.mac, mp->l2_address);
Dave Barach6d963c22016-12-05 09:50:05 -0500298 }
299 else if (swif->sup_sw_if_index != swif->sw_if_index)
300 {
301 vnet_sub_interface_t *sub = &swif->sub;
302 mp->sub_id = ntohl (sub->id);
Dave Barach6d963c22016-12-05 09:50:05 -0500303 mp->sub_number_of_tags =
304 sub->eth.flags.one_tag + sub->eth.flags.two_tags * 2;
305 mp->sub_outer_vlan_id = ntohs (sub->eth.outer_vlan_id);
306 mp->sub_inner_vlan_id = ntohs (sub->eth.inner_vlan_id);
Jakub Grajciar053204a2019-03-18 13:17:53 +0100307 mp->sub_if_flags =
308 ntohl (sub->eth.raw_flags & SUB_IF_API_FLAG_MASK_VNET);
Jon Loeliger9485d992019-11-08 15:05:23 -0600309 }
Dave Barach6d963c22016-12-05 09:50:05 -0500310
Jon Loeliger9485d992019-11-08 15:05:23 -0600311 /* vlan tag rewrite data */
312 u32 vtr_op = L2_VTR_DISABLED;
313 u32 vtr_push_dot1q = 0, vtr_tag1 = 0, vtr_tag2 = 0;
Dave Barach6d963c22016-12-05 09:50:05 -0500314
Jon Loeliger9485d992019-11-08 15:05:23 -0600315 if (l2vtr_get (am->vlib_main, am->vnet_main, swif->sw_if_index,
316 &vtr_op, &vtr_push_dot1q, &vtr_tag1, &vtr_tag2) != 0)
317 {
318 // error - default to disabled
319 mp->vtr_op = ntohl (L2_VTR_DISABLED);
320 clib_warning ("cannot get vlan tag rewrite for sw_if_index %d",
321 swif->sw_if_index);
322 }
323 else
324 {
325 mp->vtr_op = ntohl (vtr_op);
326 mp->vtr_push_dot1q = ntohl (vtr_push_dot1q);
327 mp->vtr_tag1 = ntohl (vtr_tag1);
328 mp->vtr_tag2 = ntohl (vtr_tag2);
Dave Barach6d963c22016-12-05 09:50:05 -0500329 }
330
Pavel Kotucek65e84572017-01-16 17:01:56 +0100331 /* pbb tag rewrite data */
Gabriel Gannef7f2a9f2017-03-06 15:19:40 +0100332 ethernet_header_t eth_hdr;
Alexander Chernavinfdea5c62019-04-26 10:43:09 -0400333 u32 pbb_vtr_op = L2_VTR_DISABLED;
Pavel Kotucek65e84572017-01-16 17:01:56 +0100334 u16 outer_tag = 0;
Pavel Kotucek65e84572017-01-16 17:01:56 +0100335 u16 b_vlanid = 0;
336 u32 i_sid = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400337 clib_memset (&eth_hdr, 0, sizeof (eth_hdr));
Pavel Kotucek65e84572017-01-16 17:01:56 +0100338
339 if (!l2pbb_get (am->vlib_main, am->vnet_main, swif->sw_if_index,
Alexander Chernavinfdea5c62019-04-26 10:43:09 -0400340 &pbb_vtr_op, &outer_tag, &eth_hdr, &b_vlanid, &i_sid))
Pavel Kotucek65e84572017-01-16 17:01:56 +0100341 {
Jakub Grajciar053204a2019-03-18 13:17:53 +0100342 mp->sub_if_flags |= ntohl (SUB_IF_API_FLAG_DOT1AH);
343 mac_address_encode ((mac_address_t *) eth_hdr.dst_address, mp->b_dmac);
344 mac_address_encode ((mac_address_t *) eth_hdr.src_address, mp->b_smac);
Pavel Kotucek65e84572017-01-16 17:01:56 +0100345 mp->b_vlanid = b_vlanid;
346 mp->i_sid = i_sid;
347 }
348
Ole Troane5ff5a32019-08-23 22:55:18 +0200349 u8 *tag = vnet_get_sw_interface_tag (vnet_get_main (), swif->sw_if_index);
350 if (tag)
351 strncpy ((char *) mp->tag, (char *) tag, ARRAY_LEN (mp->tag) - 1);
Dave Barach6d963c22016-12-05 09:50:05 -0500352
Florin Corase86a8ed2018-01-05 03:20:25 -0800353 vl_api_send_msg (rp, (u8 *) mp);
Dave Barach6d963c22016-12-05 09:50:05 -0500354}
355
356static void
357vl_api_sw_interface_dump_t_handler (vl_api_sw_interface_dump_t * mp)
358{
359 vpe_api_main_t *am = &vpe_api_main;
360 vnet_sw_interface_t *swif;
361 vnet_interface_main_t *im = &am->vnet_main->interface_main;
Dave Barach59b25652017-09-10 15:04:27 -0400362 vl_api_registration_t *rp;
Paul Vinciguerra6407ba52019-04-04 13:22:20 -0700363 u32 sw_if_index;
Dave Barach6d963c22016-12-05 09:50:05 -0500364
Dave Barach59b25652017-09-10 15:04:27 -0400365 rp = vl_api_client_index_to_registration (mp->client_index);
366
367 if (rp == 0)
368 {
369 clib_warning ("Client %d AWOL", mp->client_index);
370 return;
371 }
Dave Barach6d963c22016-12-05 09:50:05 -0500372
Eyal Bari1c82cd42017-03-14 14:39:51 +0200373 u8 *filter = 0, *name = 0;
Paul Vinciguerra6407ba52019-04-04 13:22:20 -0700374 sw_if_index = ntohl (mp->sw_if_index);
375
Vratko Polakb8591ac2019-04-23 12:26:44 +0200376 if (!mp->name_filter_valid && sw_if_index != ~0 && sw_if_index != 0)
Paul Vinciguerra6407ba52019-04-04 13:22:20 -0700377 {
Vratko Polakb8591ac2019-04-23 12:26:44 +0200378 /* is it a valid sw_if_index? */
Neale Rannsf5b01762019-06-14 08:26:21 +0000379 if (!vnet_sw_if_index_is_api_valid (sw_if_index))
Paul Vinciguerra6407ba52019-04-04 13:22:20 -0700380 return;
381
382 swif = vec_elt_at_index (im->sw_interfaces, sw_if_index);
383
Paul Vinciguerra6407ba52019-04-04 13:22:20 -0700384 vec_reset_length (name);
385 name =
386 format (name, "%U%c", format_vnet_sw_interface_name, am->vnet_main,
387 swif, 0);
388 send_sw_interface_details (am, rp, swif, name, mp->context);
389 vec_free (name);
390 return;
391 }
392
Dave Barach6d963c22016-12-05 09:50:05 -0500393 if (mp->name_filter_valid)
394 {
Dave Barach77841402020-04-29 17:04:10 -0400395 filter = vl_api_from_api_to_new_vec (mp, &mp->name_filter);
Aleksander Djuricc12eae72019-10-31 14:35:21 +0300396 vec_add1 (filter, 0); /* Ensure it's a C string for strcasecmp() */
Dave Barach6d963c22016-12-05 09:50:05 -0500397 }
398
Eyal Bari1c82cd42017-03-14 14:39:51 +0200399 char *strcasestr (char *, char *); /* lnx hdr file botch */
Dave Barach6d963c22016-12-05 09:50:05 -0500400 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100401 pool_foreach (swif, im->sw_interfaces)
402 {
Eyal Bari1c82cd42017-03-14 14:39:51 +0200403 if (!vnet_swif_is_api_visible (swif))
404 continue;
405 vec_reset_length(name);
406 name = format (name, "%U%c", format_vnet_sw_interface_name, am->vnet_main,
407 swif, 0);
Dave Barach6d963c22016-12-05 09:50:05 -0500408
Eyal Bari1c82cd42017-03-14 14:39:51 +0200409 if (filter && !strcasestr((char *) name, (char *) filter))
410 continue;
Dave Barach6d963c22016-12-05 09:50:05 -0500411
Dave Barach59b25652017-09-10 15:04:27 -0400412 send_sw_interface_details (am, rp, swif, name, mp->context);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100413 }
Dave Barach6d963c22016-12-05 09:50:05 -0500414 /* *INDENT-ON* */
415
Eyal Bari1c82cd42017-03-14 14:39:51 +0200416 vec_free (name);
417 vec_free (filter);
Dave Barach6d963c22016-12-05 09:50:05 -0500418}
419
420static void
421 vl_api_sw_interface_add_del_address_t_handler
422 (vl_api_sw_interface_add_del_address_t * mp)
423{
424 vlib_main_t *vm = vlib_get_main ();
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500425 vnet_main_t *vnm = vnet_get_main ();
Dave Barach6d963c22016-12-05 09:50:05 -0500426 vl_api_sw_interface_add_del_address_reply_t *rmp;
427 int rv = 0;
428 u32 is_del;
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500429 clib_error_t *error = 0;
Jakub Grajciar053204a2019-03-18 13:17:53 +0100430 ip46_address_t address;
Dave Barach6d963c22016-12-05 09:50:05 -0500431
432 VALIDATE_SW_IF_INDEX (mp);
433
434 is_del = mp->is_add == 0;
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500435 vnm->api_errno = 0;
Dave Barach6d963c22016-12-05 09:50:05 -0500436
437 if (mp->del_all)
438 ip_del_all_interface_addresses (vm, ntohl (mp->sw_if_index));
Jakub Grajciar053204a2019-03-18 13:17:53 +0100439 else if (ip_address_decode (&mp->prefix.address, &address) == IP46_TYPE_IP6)
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500440 error = ip6_add_del_interface_address (vm, ntohl (mp->sw_if_index),
Jakub Grajciar053204a2019-03-18 13:17:53 +0100441 (void *) &address.ip6,
442 mp->prefix.len, is_del);
Dave Barach6d963c22016-12-05 09:50:05 -0500443 else
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500444 error = ip4_add_del_interface_address (vm, ntohl (mp->sw_if_index),
Jakub Grajciar053204a2019-03-18 13:17:53 +0100445 (void *) &address.ip4,
446 mp->prefix.len, is_del);
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500447
448 if (error)
449 {
450 rv = vnm->api_errno;
451 clib_error_report (error);
452 goto done;
453 }
Dave Barach6d963c22016-12-05 09:50:05 -0500454
455 BAD_SW_IF_INDEX_LABEL;
456
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500457done:
Dave Barach6d963c22016-12-05 09:50:05 -0500458 REPLY_MACRO (VL_API_SW_INTERFACE_ADD_DEL_ADDRESS_REPLY);
459}
460
Dave Barach6d963c22016-12-05 09:50:05 -0500461static void
462vl_api_sw_interface_set_table_t_handler (vl_api_sw_interface_set_table_t * mp)
463{
Dave Barach6d963c22016-12-05 09:50:05 -0500464 vl_api_sw_interface_set_table_reply_t *rmp;
Neale Ranns15002542017-09-10 04:39:11 -0700465 u32 sw_if_index = ntohl (mp->sw_if_index);
466 u32 table_id = ntohl (mp->vrf_id);
467 int rv = 0;
Dave Barach6d963c22016-12-05 09:50:05 -0500468
469 VALIDATE_SW_IF_INDEX (mp);
470
Dave Barach6d963c22016-12-05 09:50:05 -0500471 if (mp->is_ipv6)
Neale Ranns15002542017-09-10 04:39:11 -0700472 rv = ip_table_bind (FIB_PROTOCOL_IP6, sw_if_index, table_id, 1);
Dave Barach6d963c22016-12-05 09:50:05 -0500473 else
Neale Ranns15002542017-09-10 04:39:11 -0700474 rv = ip_table_bind (FIB_PROTOCOL_IP4, sw_if_index, table_id, 1);
Dave Barach6d963c22016-12-05 09:50:05 -0500475
Dave Barach6d963c22016-12-05 09:50:05 -0500476 BAD_SW_IF_INDEX_LABEL;
477
478 REPLY_MACRO (VL_API_SW_INTERFACE_SET_TABLE_REPLY);
479}
480
Neale Ranns15002542017-09-10 04:39:11 -0700481int
482ip_table_bind (fib_protocol_t fproto,
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700483 u32 sw_if_index, u32 table_id, u8 is_api)
Neale Ranns15002542017-09-10 04:39:11 -0700484{
485 CLIB_UNUSED (ip_interface_address_t * ia);
486 u32 fib_index, mfib_index;
487 fib_source_t src;
488 mfib_source_t msrc;
489
490 if (is_api)
491 {
492 src = FIB_SOURCE_API;
493 msrc = MFIB_SOURCE_API;
494 }
495 else
496 {
497 src = FIB_SOURCE_CLI;
498 msrc = MFIB_SOURCE_CLI;
499 }
500
Florin Corasd0a59722017-10-15 17:41:21 +0000501 /*
Florin Corasd0a59722017-10-15 17:41:21 +0000502 * This if table does not exist = error is what we want in the end.
503 */
Neale Ranns8f6dd322018-05-17 06:34:24 -0700504 fib_index = fib_table_find (fproto, table_id);
505 mfib_index = mfib_table_find (fproto, table_id);
Florin Corasd0a59722017-10-15 17:41:21 +0000506
Neale Ranns8f6dd322018-05-17 06:34:24 -0700507 if (~0 == fib_index || ~0 == mfib_index)
508 {
509 return (VNET_API_ERROR_NO_SUCH_FIB);
510 }
Florin Corasd0a59722017-10-15 17:41:21 +0000511
Neale Ranns15002542017-09-10 04:39:11 -0700512 if (FIB_PROTOCOL_IP6 == fproto)
513 {
514 /*
515 * If the interface already has in IP address, then a change int
516 * VRF is not allowed. The IP address applied must first be removed.
517 * We do not do that automatically here, since VPP has no knowledge
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700518 * of whether those subnets are valid in the destination VRF.
Neale Ranns15002542017-09-10 04:39:11 -0700519 */
520 /* *INDENT-OFF* */
521 foreach_ip_interface_address (&ip6_main.lookup_main,
522 ia, sw_if_index,
523 1 /* honor unnumbered */ ,
524 ({
525 return (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE);
526 }));
527 /* *INDENT-ON* */
528
529 vec_validate (ip6_main.fib_index_by_sw_if_index, sw_if_index);
530 vec_validate (ip6_main.mfib_index_by_sw_if_index, sw_if_index);
531
532 /*
533 * tell those that are interested that the binding is changing.
534 */
535 ip6_table_bind_callback_t *cb;
536 vec_foreach (cb, ip6_main.table_bind_callbacks)
537 cb->function (&ip6_main, cb->function_opaque,
538 sw_if_index,
539 fib_index,
540 ip6_main.fib_index_by_sw_if_index[sw_if_index]);
541
542 if (0 == table_id)
543 {
544 /* reset back to default */
545 if (0 != ip6_main.fib_index_by_sw_if_index[sw_if_index])
546 fib_table_unlock (ip6_main.fib_index_by_sw_if_index[sw_if_index],
547 FIB_PROTOCOL_IP6, src);
548 if (0 != ip6_main.mfib_index_by_sw_if_index[sw_if_index])
549 mfib_table_unlock (ip6_main.mfib_index_by_sw_if_index
550 [sw_if_index], FIB_PROTOCOL_IP6, msrc);
551
552 }
553 else
554 {
555 /* we need to lock the table now it's inuse */
556 fib_table_lock (fib_index, FIB_PROTOCOL_IP6, src);
557 mfib_table_lock (mfib_index, FIB_PROTOCOL_IP6, msrc);
558 }
559
560 ip6_main.fib_index_by_sw_if_index[sw_if_index] = fib_index;
561 ip6_main.mfib_index_by_sw_if_index[sw_if_index] = mfib_index;
562 }
563 else
564 {
565 /*
566 * If the interface already has in IP address, then a change int
567 * VRF is not allowed. The IP address applied must first be removed.
568 * We do not do that automatically here, since VPP has no knowledge
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700569 * of whether those subnets are valid in the destination VRF.
Neale Ranns15002542017-09-10 04:39:11 -0700570 */
571 /* *INDENT-OFF* */
572 foreach_ip_interface_address (&ip4_main.lookup_main,
573 ia, sw_if_index,
574 1 /* honor unnumbered */ ,
575 ({
576 return (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE);
577 }));
578 /* *INDENT-ON* */
579
580 vec_validate (ip4_main.fib_index_by_sw_if_index, sw_if_index);
581 vec_validate (ip4_main.mfib_index_by_sw_if_index, sw_if_index);
582
583 /*
584 * tell those that are interested that the binding is changing.
585 */
586 ip4_table_bind_callback_t *cb;
587 vec_foreach (cb, ip4_main.table_bind_callbacks)
588 cb->function (&ip4_main, cb->function_opaque,
589 sw_if_index,
590 fib_index,
591 ip4_main.fib_index_by_sw_if_index[sw_if_index]);
592
593 if (0 == table_id)
594 {
595 /* reset back to default */
596 if (0 != ip4_main.fib_index_by_sw_if_index[sw_if_index])
597 fib_table_unlock (ip4_main.fib_index_by_sw_if_index[sw_if_index],
598 FIB_PROTOCOL_IP4, src);
599 if (0 != ip4_main.mfib_index_by_sw_if_index[sw_if_index])
600 mfib_table_unlock (ip4_main.mfib_index_by_sw_if_index
601 [sw_if_index], FIB_PROTOCOL_IP4, msrc);
602
603 }
604 else
605 {
606 /* we need to lock the table now it's inuse */
607 fib_index = fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4,
608 table_id, src);
609
610 mfib_index = mfib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4,
611 table_id, msrc);
612 }
613
614 ip4_main.fib_index_by_sw_if_index[sw_if_index] = fib_index;
615 ip4_main.mfib_index_by_sw_if_index[sw_if_index] = mfib_index;
616 }
617
Neale Ranns15002542017-09-10 04:39:11 -0700618 return (0);
619}
620
Juraj Slobodadfc19232016-12-05 13:20:37 +0100621static void
Florin Coras6c4dae22018-01-09 06:39:23 -0800622send_sw_interface_get_table_reply (vl_api_registration_t * reg,
Juraj Slobodadfc19232016-12-05 13:20:37 +0100623 u32 context, int retval, u32 vrf_id)
624{
625 vl_api_sw_interface_get_table_reply_t *mp;
626
627 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400628 clib_memset (mp, 0, sizeof (*mp));
Juraj Slobodadfc19232016-12-05 13:20:37 +0100629 mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_GET_TABLE_REPLY);
630 mp->context = context;
631 mp->retval = htonl (retval);
632 mp->vrf_id = htonl (vrf_id);
633
Florin Coras6c4dae22018-01-09 06:39:23 -0800634 vl_api_send_msg (reg, (u8 *) mp);
Juraj Slobodadfc19232016-12-05 13:20:37 +0100635}
636
637static void
638vl_api_sw_interface_get_table_t_handler (vl_api_sw_interface_get_table_t * mp)
639{
Florin Coras6c4dae22018-01-09 06:39:23 -0800640 vl_api_registration_t *reg;
Juraj Slobodadfc19232016-12-05 13:20:37 +0100641 fib_table_t *fib_table = 0;
642 u32 sw_if_index = ~0;
643 u32 fib_index = ~0;
644 u32 table_id = ~0;
645 fib_protocol_t fib_proto = FIB_PROTOCOL_IP4;
646 int rv = 0;
647
Florin Coras6c4dae22018-01-09 06:39:23 -0800648 reg = vl_api_client_index_to_registration (mp->client_index);
649 if (!reg)
Juraj Slobodadfc19232016-12-05 13:20:37 +0100650 return;
651
652 VALIDATE_SW_IF_INDEX (mp);
653
654 sw_if_index = ntohl (mp->sw_if_index);
655
656 if (mp->is_ipv6)
657 fib_proto = FIB_PROTOCOL_IP6;
658
659 fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index);
660 if (fib_index != ~0)
661 {
662 fib_table = fib_table_get (fib_index, fib_proto);
663 table_id = fib_table->ft_table_id;
664 }
665
666 BAD_SW_IF_INDEX_LABEL;
667
Florin Coras6c4dae22018-01-09 06:39:23 -0800668 send_sw_interface_get_table_reply (reg, mp->context, rv, table_id);
Juraj Slobodadfc19232016-12-05 13:20:37 +0100669}
670
Dave Barach6d963c22016-12-05 09:50:05 -0500671static void vl_api_sw_interface_set_unnumbered_t_handler
672 (vl_api_sw_interface_set_unnumbered_t * mp)
673{
674 vl_api_sw_interface_set_unnumbered_reply_t *rmp;
675 int rv = 0;
Dave Barach6d963c22016-12-05 09:50:05 -0500676 vnet_main_t *vnm = vnet_get_main ();
Eyal Bari1c82cd42017-03-14 14:39:51 +0200677 u32 sw_if_index = ntohl (mp->sw_if_index);
678 u32 unnumbered_sw_if_index = ntohl (mp->unnumbered_sw_if_index);
Dave Barach6d963c22016-12-05 09:50:05 -0500679
680 /*
681 * The API message field names are backwards from
682 * the underlying data structure names.
683 * It's not worth changing them now.
684 */
Eyal Bari1c82cd42017-03-14 14:39:51 +0200685 if (!vnet_sw_interface_is_api_valid (vnm, unnumbered_sw_if_index))
Dave Barach6d963c22016-12-05 09:50:05 -0500686 {
687 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
688 goto done;
689 }
690
691 /* Only check the "use loop0" field when setting the binding */
Eyal Bari1c82cd42017-03-14 14:39:51 +0200692 if (mp->is_add && !vnet_sw_interface_is_api_valid (vnm, sw_if_index))
Dave Barach6d963c22016-12-05 09:50:05 -0500693 {
694 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX_2;
695 goto done;
696 }
697
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700698 vnet_sw_interface_update_unnumbered (unnumbered_sw_if_index,
699 sw_if_index, mp->is_add);
Dave Barach6d963c22016-12-05 09:50:05 -0500700done:
701 REPLY_MACRO (VL_API_SW_INTERFACE_SET_UNNUMBERED_REPLY);
702}
703
704static void
705vl_api_sw_interface_clear_stats_t_handler (vl_api_sw_interface_clear_stats_t *
706 mp)
707{
708 vl_api_sw_interface_clear_stats_reply_t *rmp;
709
710 vnet_main_t *vnm = vnet_get_main ();
711 vnet_interface_main_t *im = &vnm->interface_main;
712 vlib_simple_counter_main_t *sm;
713 vlib_combined_counter_main_t *cm;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400714 int j, n_counters;
Dave Barach6d963c22016-12-05 09:50:05 -0500715 int rv = 0;
716
717 if (mp->sw_if_index != ~0)
718 VALIDATE_SW_IF_INDEX (mp);
719
Dave Barach6d963c22016-12-05 09:50:05 -0500720 n_counters = vec_len (im->combined_sw_if_counters);
721
722 for (j = 0; j < n_counters; j++)
723 {
Dave Barach8fdde3c2019-05-17 10:46:40 -0400724 im = &vnm->interface_main;
725 cm = im->combined_sw_if_counters + j;
726 if (mp->sw_if_index == (u32) ~ 0)
727 vlib_clear_combined_counters (cm);
728 else
729 vlib_zero_combined_counter (cm, ntohl (mp->sw_if_index));
Dave Barach6d963c22016-12-05 09:50:05 -0500730 }
731
732 n_counters = vec_len (im->sw_if_counters);
733
734 for (j = 0; j < n_counters; j++)
735 {
Dave Barach8fdde3c2019-05-17 10:46:40 -0400736 im = &vnm->interface_main;
737 sm = im->sw_if_counters + j;
738 if (mp->sw_if_index == (u32) ~ 0)
739 vlib_clear_simple_counters (sm);
740 else
741 vlib_zero_simple_counter (sm, ntohl (mp->sw_if_index));
Dave Barach6d963c22016-12-05 09:50:05 -0500742 }
743
744 BAD_SW_IF_INDEX_LABEL;
745
746 REPLY_MACRO (VL_API_SW_INTERFACE_CLEAR_STATS_REPLY);
747}
748
Ole Troan2e1c8962019-04-10 09:44:23 +0200749/*
750 * Events used for sw_interface_events
751 */
752enum api_events
Dave Barach6d963c22016-12-05 09:50:05 -0500753{
Ole Troan2e1c8962019-04-10 09:44:23 +0200754 API_LINK_STATE_UP_EVENT = 1 << 1,
755 API_LINK_STATE_DOWN_EVENT = 1 << 2,
756 API_ADMIN_UP_EVENT = 1 << 3,
757 API_ADMIN_DOWN_EVENT = 1 << 4,
758 API_SW_INTERFACE_ADD_EVENT = 1 << 5,
759 API_SW_INTERFACE_DEL_EVENT = 1 << 6,
760};
Dave Barach6d963c22016-12-05 09:50:05 -0500761
762static void
Neale Rannsa07bd702017-08-07 07:53:49 -0700763send_sw_interface_event (vpe_api_main_t * am,
Neale Rannsd292ab12017-08-15 12:29:48 -0700764 vpe_client_registration_t * reg,
Florin Coras6c4dae22018-01-09 06:39:23 -0800765 vl_api_registration_t * vl_reg,
Ole Troan2e1c8962019-04-10 09:44:23 +0200766 u32 sw_if_index, enum api_events events)
Dave Barach6d963c22016-12-05 09:50:05 -0500767{
Neale Rannsa07bd702017-08-07 07:53:49 -0700768 vl_api_sw_interface_event_t *mp;
Dave Barach6d963c22016-12-05 09:50:05 -0500769
Dave Barach6d963c22016-12-05 09:50:05 -0500770 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400771 clib_memset (mp, 0, sizeof (*mp));
Neale Rannsa07bd702017-08-07 07:53:49 -0700772 mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_EVENT);
Ole Troan2e1c8962019-04-10 09:44:23 +0200773 mp->sw_if_index = ntohl (sw_if_index);
Neale Rannsd292ab12017-08-15 12:29:48 -0700774 mp->client_index = reg->client_index;
775 mp->pid = reg->client_pid;
Jakub Grajciar053204a2019-03-18 13:17:53 +0100776 mp->flags = 0;
777 mp->flags |= (events & API_ADMIN_UP_EVENT) ?
778 IF_STATUS_API_FLAG_ADMIN_UP : 0;
779 mp->flags |= (events & API_LINK_STATE_UP_EVENT) ?
780 IF_STATUS_API_FLAG_LINK_UP : 0;
781 mp->flags = ntohl (mp->flags);
782 mp->deleted = events & API_SW_INTERFACE_DEL_EVENT ? true : false;
Florin Coras6c4dae22018-01-09 06:39:23 -0800783 vl_api_send_msg (vl_reg, (u8 *) mp);
Dave Barach6d963c22016-12-05 09:50:05 -0500784}
785
786static uword
787link_state_process (vlib_main_t * vm,
788 vlib_node_runtime_t * rt, vlib_frame_t * f)
789{
790 vpe_api_main_t *vam = &vpe_api_main;
Ole Troan2e1c8962019-04-10 09:44:23 +0200791 uword *event_by_sw_if_index = 0;
Dave Barach6d963c22016-12-05 09:50:05 -0500792 vpe_client_registration_t *reg;
793 int i;
Florin Coras6c4dae22018-01-09 06:39:23 -0800794 vl_api_registration_t *vl_reg;
Ole Troan2e1c8962019-04-10 09:44:23 +0200795 uword event_type;
796 uword *event_data = 0;
797 u32 sw_if_index;
Dave Barach6d963c22016-12-05 09:50:05 -0500798
799 vam->link_state_process_up = 1;
800
801 while (1)
802 {
803 vlib_process_wait_for_event (vm);
804
Ole Troan2e1c8962019-04-10 09:44:23 +0200805 /* Batch up events */
806 while ((event_type = vlib_process_get_events (vm, &event_data)) != ~0)
Dave Barach6d963c22016-12-05 09:50:05 -0500807 {
Ole Troan2e1c8962019-04-10 09:44:23 +0200808 for (i = 0; i < vec_len (event_data); i++)
809 {
810 sw_if_index = event_data[i];
811 vec_validate_init_empty (event_by_sw_if_index, sw_if_index, 0);
812 event_by_sw_if_index[sw_if_index] |= event_type;
813 }
814 vec_reset_length (event_data);
815 }
816
817 for (i = 0; i < vec_len (event_by_sw_if_index); i++)
818 {
819 if (event_by_sw_if_index[i] == 0)
Dave Barach6d963c22016-12-05 09:50:05 -0500820 continue;
Dave Barach6d963c22016-12-05 09:50:05 -0500821
822 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100823 pool_foreach (reg, vam->interface_events_registrations)
824 {
Florin Coras6c4dae22018-01-09 06:39:23 -0800825 vl_reg = vl_api_client_index_to_registration (reg->client_index);
826 if (vl_reg)
Ole Troan2e1c8962019-04-10 09:44:23 +0200827 send_sw_interface_event (vam, reg, vl_reg, i, event_by_sw_if_index[i]);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100828 }
Dave Barach6d963c22016-12-05 09:50:05 -0500829 /* *INDENT-ON* */
830 }
Ole Troan2e1c8962019-04-10 09:44:23 +0200831 vec_reset_length (event_by_sw_if_index);
Dave Barach6d963c22016-12-05 09:50:05 -0500832 }
833
834 return 0;
835}
836
837static clib_error_t *link_up_down_function (vnet_main_t * vm, u32 hw_if_index,
838 u32 flags);
839static clib_error_t *admin_up_down_function (vnet_main_t * vm,
840 u32 hw_if_index, u32 flags);
Ole Troan2e1c8962019-04-10 09:44:23 +0200841static clib_error_t *sw_interface_add_del_function (vnet_main_t * vm,
842 u32 sw_if_index,
843 u32 flags);
Dave Barach6d963c22016-12-05 09:50:05 -0500844
845/* *INDENT-OFF* */
846VLIB_REGISTER_NODE (link_state_process_node,static) = {
847 .function = link_state_process,
848 .type = VLIB_NODE_TYPE_PROCESS,
849 .name = "vpe-link-state-process",
850};
851/* *INDENT-ON* */
852
853VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (admin_up_down_function);
854VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION (link_up_down_function);
Ole Troan2e1c8962019-04-10 09:44:23 +0200855VNET_SW_INTERFACE_ADD_DEL_FUNCTION (sw_interface_add_del_function);
Dave Barach6d963c22016-12-05 09:50:05 -0500856
857static clib_error_t *
858link_up_down_function (vnet_main_t * vm, u32 hw_if_index, u32 flags)
859{
860 vpe_api_main_t *vam = &vpe_api_main;
861 vnet_hw_interface_t *hi = vnet_get_hw_interface (vm, hw_if_index);
862
863 if (vam->link_state_process_up)
Ole Troan2e1c8962019-04-10 09:44:23 +0200864 {
Alexander Chernavinaa27dcb2019-11-06 09:58:18 -0500865 enum api_events event = ((flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ?
866 API_LINK_STATE_UP_EVENT :
867 API_LINK_STATE_DOWN_EVENT);
Ole Troan2e1c8962019-04-10 09:44:23 +0200868 vlib_process_signal_event (vam->vlib_main,
869 link_state_process_node.index, event,
870 hi->sw_if_index);
871 }
Dave Barach6d963c22016-12-05 09:50:05 -0500872 return 0;
873}
874
875static clib_error_t *
876admin_up_down_function (vnet_main_t * vm, u32 sw_if_index, u32 flags)
877{
878 vpe_api_main_t *vam = &vpe_api_main;
879
880 /*
881 * Note: it's perfectly fair to set a subif admin up / admin down.
882 * Note the subtle distinction between this routine and the previous
883 * routine.
884 */
885 if (vam->link_state_process_up)
Ole Troan2e1c8962019-04-10 09:44:23 +0200886 {
Alexander Chernavinaa27dcb2019-11-06 09:58:18 -0500887 enum api_events event = ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
888 API_ADMIN_UP_EVENT : API_ADMIN_DOWN_EVENT);
Ole Troan2e1c8962019-04-10 09:44:23 +0200889 vlib_process_signal_event (vam->vlib_main,
890 link_state_process_node.index, event,
891 sw_if_index);
892 }
893 return 0;
894}
895
896static clib_error_t *
897sw_interface_add_del_function (vnet_main_t * vm, u32 sw_if_index, u32 flags)
898{
899 vpe_api_main_t *vam = &vpe_api_main;
900
901 if (vam->link_state_process_up)
902 {
903 enum api_events event =
904 flags ? API_SW_INTERFACE_ADD_EVENT : API_SW_INTERFACE_DEL_EVENT;
905 vlib_process_signal_event (vam->vlib_main,
906 link_state_process_node.index, event,
907 sw_if_index);
908 }
Dave Barach6d963c22016-12-05 09:50:05 -0500909 return 0;
910}
911
912static void vl_api_sw_interface_tag_add_del_t_handler
913 (vl_api_sw_interface_tag_add_del_t * mp)
914{
915 vnet_main_t *vnm = vnet_get_main ();
916 vl_api_sw_interface_tag_add_del_reply_t *rmp;
917 int rv = 0;
918 u8 *tag;
919 u32 sw_if_index = ntohl (mp->sw_if_index);
920
921 VALIDATE_SW_IF_INDEX (mp);
922
923 if (mp->is_add)
924 {
Ole Troane5ff5a32019-08-23 22:55:18 +0200925 if (mp->tag[0] == 0)
Dave Barach6d963c22016-12-05 09:50:05 -0500926 {
927 rv = VNET_API_ERROR_INVALID_VALUE;
928 goto out;
929 }
930
Ole Troane5ff5a32019-08-23 22:55:18 +0200931 mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
932 tag = format (0, "%s%c", mp->tag, 0);
Dave Barach6d963c22016-12-05 09:50:05 -0500933 vnet_set_sw_interface_tag (vnm, tag, sw_if_index);
934 }
935 else
936 vnet_clear_sw_interface_tag (vnm, sw_if_index);
937
938 BAD_SW_IF_INDEX_LABEL;
939out:
940 REPLY_MACRO (VL_API_SW_INTERFACE_TAG_ADD_DEL_REPLY);
941}
942
Matthew Smithe0792fd2019-07-12 11:48:24 -0500943static void vl_api_sw_interface_add_del_mac_address_t_handler
944 (vl_api_sw_interface_add_del_mac_address_t * mp)
945{
946 vl_api_sw_interface_add_del_mac_address_reply_t *rmp;
947 vnet_main_t *vnm = vnet_get_main ();
948 u32 sw_if_index = ntohl (mp->sw_if_index);
949 vnet_hw_interface_t *hi;
950 clib_error_t *error;
951 int rv = 0;
952
953 VALIDATE_SW_IF_INDEX (mp);
954
955 /* for subifs, the MAC should be changed on the actual hw if */
956 hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
957 error = vnet_hw_interface_add_del_mac_address (vnm, hi->hw_if_index,
958 mp->addr, mp->is_add);
959 if (error)
960 {
961 rv = VNET_API_ERROR_UNIMPLEMENTED;
962 clib_error_report (error);
963 goto out;
964 }
965
966 BAD_SW_IF_INDEX_LABEL;
967out:
968 REPLY_MACRO (VL_API_SW_INTERFACE_ADD_DEL_MAC_ADDRESS_REPLY);
969}
970
Jon Loeliger10c273b2017-03-30 08:39:33 -0500971static void vl_api_sw_interface_set_mac_address_t_handler
972 (vl_api_sw_interface_set_mac_address_t * mp)
973{
974 vl_api_sw_interface_set_mac_address_reply_t *rmp;
975 vnet_main_t *vnm = vnet_get_main ();
976 u32 sw_if_index = ntohl (mp->sw_if_index);
Neale Rannsd867a7c2017-10-04 02:29:07 -0700977 vnet_sw_interface_t *si;
Jon Loeliger10c273b2017-03-30 08:39:33 -0500978 clib_error_t *error;
979 int rv = 0;
Jakub Grajciar053204a2019-03-18 13:17:53 +0100980 mac_address_t mac;
Jon Loeliger10c273b2017-03-30 08:39:33 -0500981
982 VALIDATE_SW_IF_INDEX (mp);
983
Neale Rannsd867a7c2017-10-04 02:29:07 -0700984 si = vnet_get_sw_interface (vnm, sw_if_index);
Jakub Grajciar053204a2019-03-18 13:17:53 +0100985 mac_address_decode (mp->mac_address, &mac);
986 error =
987 vnet_hw_interface_change_mac_address (vnm, si->hw_if_index, (u8 *) & mac);
Jon Loeliger10c273b2017-03-30 08:39:33 -0500988 if (error)
989 {
990 rv = VNET_API_ERROR_UNIMPLEMENTED;
991 clib_error_report (error);
992 goto out;
993 }
994
995 BAD_SW_IF_INDEX_LABEL;
996out:
997 REPLY_MACRO (VL_API_SW_INTERFACE_SET_MAC_ADDRESS_REPLY);
998}
999
Juraj Slobodac0374232018-02-01 15:18:49 +01001000static void vl_api_sw_interface_get_mac_address_t_handler
1001 (vl_api_sw_interface_get_mac_address_t * mp)
1002{
1003 vl_api_sw_interface_get_mac_address_reply_t *rmp;
1004 vl_api_registration_t *reg;
1005 vnet_main_t *vnm = vnet_get_main ();
1006 u32 sw_if_index = ntohl (mp->sw_if_index);
1007 vnet_sw_interface_t *si;
1008 ethernet_interface_t *eth_if = 0;
1009 int rv = 0;
1010
1011 VALIDATE_SW_IF_INDEX (mp);
1012
1013 si = vnet_get_sup_sw_interface (vnm, sw_if_index);
1014 if (si->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
1015 eth_if = ethernet_get_interface (&ethernet_main, si->hw_if_index);
1016
1017 BAD_SW_IF_INDEX_LABEL;
1018
1019 reg = vl_api_client_index_to_registration (mp->client_index);
1020 if (!reg)
1021 return;
1022 rmp = vl_msg_api_alloc (sizeof (*rmp));
1023 rmp->_vl_msg_id = htons (VL_API_SW_INTERFACE_GET_MAC_ADDRESS_REPLY);
1024 rmp->context = mp->context;
1025 rmp->retval = htonl (rv);
1026 if (!rv && eth_if)
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001027 mac_address_encode (&eth_if->address.mac, rmp->mac_address);
Juraj Slobodac0374232018-02-01 15:18:49 +01001028 vl_api_send_msg (reg, (u8 *) rmp);
1029}
1030
Stevenad8015b2017-10-29 22:10:46 -07001031static void vl_api_sw_interface_set_rx_mode_t_handler
1032 (vl_api_sw_interface_set_rx_mode_t * mp)
1033{
1034 vl_api_sw_interface_set_rx_mode_reply_t *rmp;
1035 vnet_main_t *vnm = vnet_get_main ();
1036 u32 sw_if_index = ntohl (mp->sw_if_index);
1037 vnet_sw_interface_t *si;
1038 clib_error_t *error;
1039 int rv = 0;
Damjan Marioneabd4242020-10-07 20:59:07 +02001040 vnet_hw_if_rx_mode rx_mode;
Stevenad8015b2017-10-29 22:10:46 -07001041
1042 VALIDATE_SW_IF_INDEX (mp);
1043
1044 si = vnet_get_sw_interface (vnm, sw_if_index);
Mohsin Kazmi54f7c512018-08-23 18:28:11 +02001045 if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
1046 {
1047 rv = VNET_API_ERROR_INVALID_VALUE;
1048 goto bad_sw_if_index;
1049 }
1050
Damjan Marioneabd4242020-10-07 20:59:07 +02001051 rx_mode = (vnet_hw_if_rx_mode) ntohl (mp->mode);
Stevenad8015b2017-10-29 22:10:46 -07001052 error = set_hw_interface_change_rx_mode (vnm, si->hw_if_index,
1053 mp->queue_id_valid,
Jakub Grajciar053204a2019-03-18 13:17:53 +01001054 ntohl (mp->queue_id),
Damjan Marioneabd4242020-10-07 20:59:07 +02001055 (vnet_hw_if_rx_mode) rx_mode);
Jakub Grajciar053204a2019-03-18 13:17:53 +01001056
Stevenad8015b2017-10-29 22:10:46 -07001057 if (error)
1058 {
1059 rv = VNET_API_ERROR_UNIMPLEMENTED;
1060 clib_error_report (error);
1061 goto out;
1062 }
1063
1064 BAD_SW_IF_INDEX_LABEL;
1065out:
1066 REPLY_MACRO (VL_API_SW_INTERFACE_SET_RX_MODE_REPLY);
1067}
1068
Mohsin Kazmif0b42f42018-09-10 18:11:00 +02001069static void
1070send_interface_rx_placement_details (vpe_api_main_t * am,
1071 vl_api_registration_t * rp,
1072 u32 sw_if_index, u32 worker_id,
1073 u32 queue_id, u8 mode, u32 context)
1074{
1075 vl_api_sw_interface_rx_placement_details_t *mp;
1076 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -04001077 clib_memset (mp, 0, sizeof (*mp));
Mohsin Kazmif0b42f42018-09-10 18:11:00 +02001078
1079 mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_RX_PLACEMENT_DETAILS);
1080 mp->sw_if_index = htonl (sw_if_index);
1081 mp->queue_id = htonl (queue_id);
1082 mp->worker_id = htonl (worker_id);
Jakub Grajciare30f1e92020-05-05 12:30:30 +02001083 mp->mode = htonl (mode);
Mohsin Kazmif0b42f42018-09-10 18:11:00 +02001084 mp->context = context;
1085
1086 vl_api_send_msg (rp, (u8 *) mp);
1087}
1088
1089static void vl_api_sw_interface_rx_placement_dump_t_handler
1090 (vl_api_sw_interface_rx_placement_dump_t * mp)
1091{
1092 vnet_main_t *vnm = vnet_get_main ();
1093 vpe_api_main_t *am = &vpe_api_main;
1094 u32 sw_if_index = ntohl (mp->sw_if_index);
1095 vl_api_registration_t *reg;
1096
1097 reg = vl_api_client_index_to_registration (mp->client_index);
1098 if (!reg)
1099 return;
1100
1101 if (sw_if_index == ~0)
1102 {
Mohammed Hawari9fecbe12020-12-11 19:36:37 +01001103 vnet_hw_if_rx_queue_t **all_queues = 0;
1104 vnet_hw_if_rx_queue_t **qptr;
1105 vnet_hw_if_rx_queue_t *q;
1106 vec_foreach (q, vnm->interface_main.hw_if_rx_queues)
1107 vec_add1 (all_queues, q);
1108 vec_sort_with_function (all_queues, vnet_hw_if_rxq_cmp_cli_api);
Mohsin Kazmif0b42f42018-09-10 18:11:00 +02001109
Mohammed Hawari9fecbe12020-12-11 19:36:37 +01001110 vec_foreach (qptr, all_queues)
1111 {
1112 u32 current_thread = qptr[0]->thread_index;
1113 u32 hw_if_index = qptr[0]->hw_if_index;
1114 vnet_hw_interface_t *hw_if =
1115 vnet_get_hw_interface (vnm, hw_if_index);
1116 send_interface_rx_placement_details (
1117 am, reg, hw_if->sw_if_index, current_thread, qptr[0]->queue_id,
1118 qptr[0]->mode, mp->context);
1119 }
1120 vec_free (all_queues);
Mohsin Kazmif0b42f42018-09-10 18:11:00 +02001121 }
1122 else
1123 {
1124 int i;
1125 vnet_sw_interface_t *si;
1126
1127 if (!vnet_sw_if_index_is_api_valid (sw_if_index))
1128 {
1129 clib_warning ("sw_if_index %u does not exist", sw_if_index);
1130 goto bad_sw_if_index;
1131 }
1132
1133 si = vnet_get_sw_interface (vnm, sw_if_index);
1134 if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
1135 {
1136 clib_warning ("interface type is not HARDWARE! P2P, PIPE and SUB"
1137 " interfaces are not supported");
1138 goto bad_sw_if_index;
1139 }
1140
1141 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, si->hw_if_index);
1142
Mohammed Hawari9fecbe12020-12-11 19:36:37 +01001143 for (i = 0; i < vec_len (hw->rx_queue_indices); i++)
Mohsin Kazmif0b42f42018-09-10 18:11:00 +02001144 {
Mohammed Hawari9fecbe12020-12-11 19:36:37 +01001145 vnet_hw_if_rx_queue_t *rxq =
1146 vnet_hw_if_get_rx_queue (vnm, hw->rx_queue_indices[i]);
1147 send_interface_rx_placement_details (
1148 am, reg, hw->sw_if_index, rxq->thread_index, rxq->queue_id,
1149 rxq->mode, mp->context);
Mohsin Kazmif0b42f42018-09-10 18:11:00 +02001150 }
1151 }
1152
1153 BAD_SW_IF_INDEX_LABEL;
1154}
1155
Mohsin Kazmi54f7c512018-08-23 18:28:11 +02001156static void vl_api_sw_interface_set_rx_placement_t_handler
1157 (vl_api_sw_interface_set_rx_placement_t * mp)
1158{
1159 vl_api_sw_interface_set_rx_placement_reply_t *rmp;
1160 vnet_main_t *vnm = vnet_get_main ();
1161 u32 sw_if_index = ntohl (mp->sw_if_index);
1162 vnet_sw_interface_t *si;
1163 clib_error_t *error = 0;
1164 int rv = 0;
1165
1166 VALIDATE_SW_IF_INDEX (mp);
1167
1168 si = vnet_get_sw_interface (vnm, sw_if_index);
1169 if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
1170 {
1171 rv = VNET_API_ERROR_INVALID_VALUE;
1172 goto bad_sw_if_index;
1173 }
1174
1175 error = set_hw_interface_rx_placement (si->hw_if_index,
1176 ntohl (mp->queue_id),
1177 ntohl (mp->worker_id), mp->is_main);
1178 if (error)
1179 {
1180 rv = VNET_API_ERROR_UNIMPLEMENTED;
1181 clib_error_report (error);
1182 goto out;
1183 }
1184
1185 BAD_SW_IF_INDEX_LABEL;
1186out:
1187 REPLY_MACRO (VL_API_SW_INTERFACE_SET_RX_PLACEMENT_REPLY);
1188}
1189
Neale Rannsb8d44812017-11-10 06:53:54 -08001190static void
1191vl_api_create_vlan_subif_t_handler (vl_api_create_vlan_subif_t * mp)
1192{
1193 vl_api_create_vlan_subif_reply_t *rmp;
1194 vnet_main_t *vnm = vnet_get_main ();
1195 u32 sw_if_index = (u32) ~ 0;
1196 vnet_hw_interface_t *hi;
1197 int rv = 0;
1198 u32 id;
1199 vnet_sw_interface_t template;
1200 uword *p;
1201 vnet_interface_main_t *im = &vnm->interface_main;
1202 u64 sup_and_sub_key;
Florin Coras6c4dae22018-01-09 06:39:23 -08001203 vl_api_registration_t *reg;
Neale Rannsb8d44812017-11-10 06:53:54 -08001204 clib_error_t *error;
1205
1206 VALIDATE_SW_IF_INDEX (mp);
1207
1208 hi = vnet_get_sup_hw_interface (vnm, ntohl (mp->sw_if_index));
1209
1210 if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
1211 {
1212 rv = VNET_API_ERROR_BOND_SLAVE_NOT_ALLOWED;
1213 goto out;
1214 }
1215
1216 id = ntohl (mp->vlan_id);
1217 if (id == 0 || id > 4095)
1218 {
1219 rv = VNET_API_ERROR_INVALID_VLAN;
1220 goto out;
1221 }
1222
1223 sup_and_sub_key = ((u64) (hi->sw_if_index) << 32) | (u64) id;
1224
1225 p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
1226 if (p)
1227 {
1228 rv = VNET_API_ERROR_VLAN_ALREADY_EXISTS;
1229 goto out;
1230 }
1231
Dave Barachb7b92992018-10-17 10:38:51 -04001232 clib_memset (&template, 0, sizeof (template));
Neale Rannsb8d44812017-11-10 06:53:54 -08001233 template.type = VNET_SW_INTERFACE_TYPE_SUB;
Joe Zhou715f94e2019-03-06 23:05:32 -08001234 template.flood_class = VNET_FLOOD_CLASS_NORMAL;
Neale Rannsb8d44812017-11-10 06:53:54 -08001235 template.sup_sw_if_index = hi->sw_if_index;
1236 template.sub.id = id;
1237 template.sub.eth.raw_flags = 0;
1238 template.sub.eth.flags.one_tag = 1;
1239 template.sub.eth.outer_vlan_id = id;
1240 template.sub.eth.flags.exact_match = 1;
1241
1242 error = vnet_create_sw_interface (vnm, &template, &sw_if_index);
1243 if (error)
1244 {
1245 clib_error_report (error);
1246 rv = VNET_API_ERROR_INVALID_REGISTRATION;
1247 goto out;
1248 }
1249
1250 u64 *kp = clib_mem_alloc (sizeof (*kp));
1251 *kp = sup_and_sub_key;
1252
1253 hash_set (hi->sub_interface_sw_if_index_by_id, id, sw_if_index);
1254 hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index);
1255
1256 BAD_SW_IF_INDEX_LABEL;
1257
1258out:
Florin Coras6c4dae22018-01-09 06:39:23 -08001259 reg = vl_api_client_index_to_registration (mp->client_index);
1260 if (!reg)
Neale Rannsb8d44812017-11-10 06:53:54 -08001261 return;
1262
1263 rmp = vl_msg_api_alloc (sizeof (*rmp));
1264 rmp->_vl_msg_id = htons (VL_API_CREATE_VLAN_SUBIF_REPLY);
1265 rmp->context = mp->context;
1266 rmp->retval = htonl (rv);
1267 rmp->sw_if_index = htonl (sw_if_index);
Florin Coras6c4dae22018-01-09 06:39:23 -08001268 vl_api_send_msg (reg, (u8 *) rmp);
Neale Rannsb8d44812017-11-10 06:53:54 -08001269}
1270
1271static void
1272vl_api_create_subif_t_handler (vl_api_create_subif_t * mp)
1273{
1274 vl_api_create_subif_reply_t *rmp;
1275 vnet_main_t *vnm = vnet_get_main ();
Neale Ranns669f4e32019-10-28 07:56:15 -07001276 u32 sub_sw_if_index = ~0;
Neale Rannsb8d44812017-11-10 06:53:54 -08001277 vnet_hw_interface_t *hi;
Neale Ranns669f4e32019-10-28 07:56:15 -07001278 int rv = 0;
Neale Rannsb8d44812017-11-10 06:53:54 -08001279
1280 VALIDATE_SW_IF_INDEX (mp);
1281
Neale Rannsb8d44812017-11-10 06:53:54 -08001282 hi = vnet_get_sup_hw_interface (vnm, ntohl (mp->sw_if_index));
1283
1284 if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
Neale Ranns669f4e32019-10-28 07:56:15 -07001285 rv = VNET_API_ERROR_BOND_SLAVE_NOT_ALLOWED;
1286 else
1287 rv = vnet_create_sub_interface (ntohl (mp->sw_if_index),
1288 ntohl (mp->sub_id),
1289 ntohl (mp->sub_if_flags),
1290 ntohs (mp->inner_vlan_id),
1291 ntohs (mp->outer_vlan_id),
1292 &sub_sw_if_index);
Neale Rannsb8d44812017-11-10 06:53:54 -08001293
1294 BAD_SW_IF_INDEX_LABEL;
1295
Neale Rannsb8d44812017-11-10 06:53:54 -08001296 /* *INDENT-OFF* */
1297 REPLY_MACRO2(VL_API_CREATE_SUBIF_REPLY,
1298 ({
Neale Ranns669f4e32019-10-28 07:56:15 -07001299 rmp->sw_if_index = ntohl(sub_sw_if_index);
Neale Rannsb8d44812017-11-10 06:53:54 -08001300 }));
1301 /* *INDENT-ON* */
1302}
1303
1304static void
1305vl_api_delete_subif_t_handler (vl_api_delete_subif_t * mp)
1306{
1307 vl_api_delete_subif_reply_t *rmp;
1308 int rv;
1309
1310 rv = vnet_delete_sub_interface (ntohl (mp->sw_if_index));
1311
1312 REPLY_MACRO (VL_API_DELETE_SUBIF_REPLY);
1313}
1314
1315static void
1316vl_api_interface_name_renumber_t_handler (vl_api_interface_name_renumber_t *
1317 mp)
1318{
1319 vl_api_interface_name_renumber_reply_t *rmp;
1320 int rv = 0;
1321
1322 VALIDATE_SW_IF_INDEX (mp);
1323
1324 rv = vnet_interface_name_renumber
1325 (ntohl (mp->sw_if_index), ntohl (mp->new_show_dev_instance));
1326
1327 BAD_SW_IF_INDEX_LABEL;
1328
1329 REPLY_MACRO (VL_API_INTERFACE_NAME_RENUMBER_REPLY);
1330}
1331
1332static void
1333vl_api_create_loopback_t_handler (vl_api_create_loopback_t * mp)
1334{
1335 vl_api_create_loopback_reply_t *rmp;
1336 u32 sw_if_index;
1337 int rv;
Jakub Grajciar053204a2019-03-18 13:17:53 +01001338 mac_address_t mac;
Neale Rannsb8d44812017-11-10 06:53:54 -08001339
Jakub Grajciar053204a2019-03-18 13:17:53 +01001340 mac_address_decode (mp->mac_address, &mac);
1341 rv = vnet_create_loopback_interface (&sw_if_index, (u8 *) & mac, 0, 0);
Neale Rannsb8d44812017-11-10 06:53:54 -08001342
1343 /* *INDENT-OFF* */
1344 REPLY_MACRO2(VL_API_CREATE_LOOPBACK_REPLY,
1345 ({
1346 rmp->sw_if_index = ntohl (sw_if_index);
1347 }));
1348 /* *INDENT-ON* */
1349}
1350
1351static void vl_api_create_loopback_instance_t_handler
1352 (vl_api_create_loopback_instance_t * mp)
1353{
1354 vl_api_create_loopback_instance_reply_t *rmp;
1355 u32 sw_if_index;
1356 u8 is_specified = mp->is_specified;
1357 u32 user_instance = ntohl (mp->user_instance);
1358 int rv;
Jakub Grajciar053204a2019-03-18 13:17:53 +01001359 mac_address_t mac;
Neale Rannsb8d44812017-11-10 06:53:54 -08001360
Jakub Grajciar053204a2019-03-18 13:17:53 +01001361 mac_address_decode (mp->mac_address, &mac);
1362 rv = vnet_create_loopback_interface (&sw_if_index, (u8 *) & mac,
Neale Rannsb8d44812017-11-10 06:53:54 -08001363 is_specified, user_instance);
1364
1365 /* *INDENT-OFF* */
1366 REPLY_MACRO2(VL_API_CREATE_LOOPBACK_INSTANCE_REPLY,
1367 ({
1368 rmp->sw_if_index = ntohl (sw_if_index);
1369 }));
1370 /* *INDENT-ON* */
1371}
1372
1373static void
1374vl_api_delete_loopback_t_handler (vl_api_delete_loopback_t * mp)
1375{
1376 vl_api_delete_loopback_reply_t *rmp;
1377 u32 sw_if_index;
1378 int rv;
1379
1380 sw_if_index = ntohl (mp->sw_if_index);
1381 rv = vnet_delete_loopback_interface (sw_if_index);
1382
1383 REPLY_MACRO (VL_API_DELETE_LOOPBACK_REPLY);
1384}
1385
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001386static void
1387 vl_api_collect_detailed_interface_stats_t_handler
1388 (vl_api_collect_detailed_interface_stats_t * mp)
1389{
1390 vl_api_collect_detailed_interface_stats_reply_t *rmp;
1391 int rv = 0;
1392
Neale Ranns871dc422018-03-29 01:28:09 -07001393 rv =
1394 vnet_sw_interface_stats_collect_enable_disable (ntohl (mp->sw_if_index),
1395 mp->enable_disable);
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001396
1397 REPLY_MACRO (VL_API_COLLECT_DETAILED_INTERFACE_STATS_REPLY);
1398}
1399
Neale Ranns59f71132020-04-08 12:19:38 +00001400static void
1401 vl_api_sw_interface_address_replace_begin_t_handler
1402 (vl_api_sw_interface_address_replace_begin_t * mp)
1403{
1404 vl_api_sw_interface_address_replace_begin_reply_t *rmp;
1405 int rv = 0;
1406
1407 ip_interface_address_mark ();
1408
1409 REPLY_MACRO (VL_API_SW_INTERFACE_ADDRESS_REPLACE_BEGIN_REPLY);
1410}
1411
1412static void
1413 vl_api_sw_interface_address_replace_end_t_handler
1414 (vl_api_sw_interface_address_replace_end_t * mp)
1415{
1416 vl_api_sw_interface_address_replace_end_reply_t *rmp;
1417 int rv = 0;
1418
1419 ip_interface_address_sweep ();
1420
1421 REPLY_MACRO (VL_API_SW_INTERFACE_ADDRESS_REPLACE_END_REPLY);
1422}
1423
Dave Barachaff70772016-10-31 11:59:07 -04001424/*
1425 * vpe_api_hookup
1426 * Add vpe's API message handlers to the table.
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001427 * vlib has already mapped shared memory and
Dave Barachaff70772016-10-31 11:59:07 -04001428 * added the client registration handlers.
1429 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
1430 */
1431#define vl_msg_name_crc_list
Dave Barachb5e8a772016-12-06 12:04:42 -05001432#include <vnet/interface.api.h>
Dave Barachaff70772016-10-31 11:59:07 -04001433#undef vl_msg_name_crc_list
1434
1435static void
1436setup_message_id_table (api_main_t * am)
1437{
1438#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1439 foreach_vl_msg_name_crc_interface;
1440#undef _
1441}
1442
Dave Barach6d963c22016-12-05 09:50:05 -05001443pub_sub_handler (interface_events, INTERFACE_EVENTS);
1444
Dave Barachaff70772016-10-31 11:59:07 -04001445static clib_error_t *
1446interface_api_hookup (vlib_main_t * vm)
1447{
Dave Barach39d69112019-11-27 11:42:13 -05001448 api_main_t *am = vlibapi_get_main ();
Dave Barachaff70772016-10-31 11:59:07 -04001449
1450#define _(N,n) \
1451 vl_msg_api_set_handlers(VL_API_##N, #n, \
1452 vl_api_##n##_t_handler, \
1453 vl_noop_handler, \
1454 vl_api_##n##_t_endian, \
1455 vl_api_##n##_t_print, \
1456 sizeof(vl_api_##n##_t), 1);
1457 foreach_vpe_api_msg;
1458#undef _
1459
Steven Luongc5fa2b82019-04-25 11:19:49 -07001460 /* Mark these APIs as mp safe */
1461 am->is_mp_safe[VL_API_SW_INTERFACE_DUMP] = 1;
1462 am->is_mp_safe[VL_API_SW_INTERFACE_DETAILS] = 1;
1463 am->is_mp_safe[VL_API_SW_INTERFACE_TAG_ADD_DEL] = 1;
1464
Dave Barach3940de32019-07-23 16:28:36 -04001465 /* Do not replay VL_API_SW_INTERFACE_DUMP messages */
1466 am->api_trace_cfg[VL_API_SW_INTERFACE_DUMP].replay_enable = 0;
1467
Dave Barachaff70772016-10-31 11:59:07 -04001468 /*
1469 * Set up the (msg_name, crc, message-id) table
1470 */
1471 setup_message_id_table (am);
1472
1473 return 0;
1474}
1475
1476VLIB_API_INIT_FUNCTION (interface_api_hookup);
1477
1478/*
1479 * fd.io coding-style-patch-verification: ON
1480 *
1481 * Local Variables:
1482 * eval: (c-set-style "gnu")
1483 * End:
1484 */