blob: 8d982e36b739542f20adb4e97faf3d781b2d93dd [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>
24#include <vnet/api_errno.h>
Matus Fabiand162f3d2016-12-05 01:05:35 -080025#include <vnet/ethernet/ethernet.h>
Dave Barach6d963c22016-12-05 09:50:05 -050026#include <vnet/ip/ip.h>
27#include <vnet/fib/fib_table.h>
Neale Ranns4008ac92017-02-13 23:20:04 -080028#include <vnet/mfib/mfib_table.h>
Dave Barach6d963c22016-12-05 09:50:05 -050029#include <vnet/l2/l2_vtr.h>
Dave Barachaff70772016-10-31 11:59:07 -040030#include <vnet/vnet_msg_enum.h>
Dave Barachb5e8a772016-12-06 12:04:42 -050031#include <vnet/fib/fib_api.h>
Neale Ranns358425b2017-02-20 09:42:36 -080032#include <vnet/mfib/mfib_table.h>
Dave Barachaff70772016-10-31 11:59:07 -040033
34#define vl_typedefs /* define message structures */
35#include <vnet/vnet_all_api_h.h>
36#undef vl_typedefs
37
38#define vl_endianfun /* define message structures */
39#include <vnet/vnet_all_api_h.h>
40#undef vl_endianfun
41
42/* instantiate all the print functions we know about */
43#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
44#define vl_printfun
45#include <vnet/vnet_all_api_h.h>
46#undef vl_printfun
47
48#include <vlibapi/api_helper_macros.h>
Dave Barachf1586612017-03-30 09:33:01 -040049vpe_api_main_t vpe_api_main;
Dave Barachaff70772016-10-31 11:59:07 -040050
Dave Barach6d963c22016-12-05 09:50:05 -050051#define foreach_vpe_api_msg \
52_(SW_INTERFACE_SET_FLAGS, sw_interface_set_flags) \
53_(SW_INTERFACE_SET_MTU, sw_interface_set_mtu) \
54_(WANT_INTERFACE_EVENTS, want_interface_events) \
55_(SW_INTERFACE_DUMP, sw_interface_dump) \
Dave Barach6d963c22016-12-05 09:50:05 -050056_(SW_INTERFACE_ADD_DEL_ADDRESS, sw_interface_add_del_address) \
Stevenad8015b2017-10-29 22:10:46 -070057_(SW_INTERFACE_SET_RX_MODE, sw_interface_set_rx_mode) \
Dave Barach6d963c22016-12-05 09:50:05 -050058_(SW_INTERFACE_SET_TABLE, sw_interface_set_table) \
Juraj Slobodadfc19232016-12-05 13:20:37 +010059_(SW_INTERFACE_GET_TABLE, sw_interface_get_table) \
Dave Barach6d963c22016-12-05 09:50:05 -050060_(SW_INTERFACE_SET_UNNUMBERED, sw_interface_set_unnumbered) \
61_(SW_INTERFACE_CLEAR_STATS, sw_interface_clear_stats) \
Jon Loeliger10c273b2017-03-30 08:39:33 -050062_(SW_INTERFACE_TAG_ADD_DEL, sw_interface_tag_add_del) \
Neale Rannsb8d44812017-11-10 06:53:54 -080063_(SW_INTERFACE_SET_MAC_ADDRESS, sw_interface_set_mac_address) \
Juraj Slobodac0374232018-02-01 15:18:49 +010064_(SW_INTERFACE_GET_MAC_ADDRESS, sw_interface_get_mac_address) \
Neale Rannsb8d44812017-11-10 06:53:54 -080065_(CREATE_VLAN_SUBIF, create_vlan_subif) \
66_(CREATE_SUBIF, create_subif) \
67_(DELETE_SUBIF, delete_subif) \
68_(CREATE_LOOPBACK, create_loopback) \
69_(CREATE_LOOPBACK_INSTANCE, create_loopback_instance) \
70_(DELETE_LOOPBACK, delete_loopback) \
Neale Ranns6f4a6be2018-03-16 16:26:21 -070071_(INTERFACE_NAME_RENUMBER, interface_name_renumber) \
72_(COLLECT_DETAILED_INTERFACE_STATS, collect_detailed_interface_stats)
Dave Barachaff70772016-10-31 11:59:07 -040073
74static void
75vl_api_sw_interface_set_flags_t_handler (vl_api_sw_interface_set_flags_t * mp)
76{
77 vl_api_sw_interface_set_flags_reply_t *rmp;
78 vnet_main_t *vnm = vnet_get_main ();
79 int rv = 0;
80 clib_error_t *error;
81 u16 flags;
82
83 VALIDATE_SW_IF_INDEX (mp);
84
85 flags = mp->admin_up_down ? VNET_SW_INTERFACE_FLAG_ADMIN_UP : 0;
86
87 error = vnet_sw_interface_set_flags (vnm, ntohl (mp->sw_if_index), flags);
88 if (error)
89 {
90 rv = -1;
91 clib_error_report (error);
92 }
93
94 BAD_SW_IF_INDEX_LABEL;
95 REPLY_MACRO (VL_API_SW_INTERFACE_SET_FLAGS_REPLY);
96}
97
Matus Fabiand162f3d2016-12-05 01:05:35 -080098static void
99vl_api_sw_interface_set_mtu_t_handler (vl_api_sw_interface_set_mtu_t * mp)
100{
101 vl_api_sw_interface_set_mtu_reply_t *rmp;
102 vnet_main_t *vnm = vnet_get_main ();
Matus Fabiand162f3d2016-12-05 01:05:35 -0800103 u32 sw_if_index = ntohl (mp->sw_if_index);
104 u16 mtu = ntohs (mp->mtu);
Damjan Marionfe7d4a22018-04-13 19:43:39 +0200105 ethernet_main_t *em = &ethernet_main;
Matus Fabiand162f3d2016-12-05 01:05:35 -0800106 int rv = 0;
107
108 VALIDATE_SW_IF_INDEX (mp);
109
Damjan Marionfe7d4a22018-04-13 19:43:39 +0200110 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
111 if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
112 {
113 rv = VNET_API_ERROR_INVALID_VALUE;
114 goto bad_sw_if_index;
115 }
116
117 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, si->hw_if_index);
118 ethernet_interface_t *eif = ethernet_get_interface (em, si->hw_if_index);
119
120 if (!eif)
121 {
122 rv = VNET_API_ERROR_FEATURE_DISABLED;
123 goto bad_sw_if_index;
124 }
125
126 if (mtu < hi->min_supported_packet_bytes)
127 {
128 rv = VNET_API_ERROR_INVALID_VALUE;
129 goto bad_sw_if_index;
130 }
131
132 if (mtu > hi->max_supported_packet_bytes)
133 {
134 rv = VNET_API_ERROR_INVALID_VALUE;
135 goto bad_sw_if_index;
136 }
137
138 vnet_hw_interface_set_mtu (vnm, si->hw_if_index, mtu);
Matus Fabiand162f3d2016-12-05 01:05:35 -0800139
140 BAD_SW_IF_INDEX_LABEL;
141 REPLY_MACRO (VL_API_SW_INTERFACE_SET_MTU_REPLY);
142}
143
Dave Barach6d963c22016-12-05 09:50:05 -0500144static void
145send_sw_interface_details (vpe_api_main_t * am,
Dave Barach59b25652017-09-10 15:04:27 -0400146 vl_api_registration_t * rp,
Dave Barach6d963c22016-12-05 09:50:05 -0500147 vnet_sw_interface_t * swif,
148 u8 * interface_name, u32 context)
149{
Eyal Bari1c82cd42017-03-14 14:39:51 +0200150 vnet_hw_interface_t *hi =
151 vnet_get_sup_hw_interface (am->vnet_main, swif->sw_if_index);
Dave Barach6d963c22016-12-05 09:50:05 -0500152
Eyal Bari1c82cd42017-03-14 14:39:51 +0200153 vl_api_sw_interface_details_t *mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barach6d963c22016-12-05 09:50:05 -0500154 memset (mp, 0, sizeof (*mp));
155 mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_DETAILS);
156 mp->sw_if_index = ntohl (swif->sw_if_index);
157 mp->sup_sw_if_index = ntohl (swif->sup_sw_if_index);
158 mp->admin_up_down = (swif->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? 1 : 0;
159 mp->link_up_down = (hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ? 1 : 0;
160 mp->link_duplex = ((hi->flags & VNET_HW_INTERFACE_FLAG_DUPLEX_MASK) >>
161 VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT);
162 mp->link_speed = ((hi->flags & VNET_HW_INTERFACE_FLAG_SPEED_MASK) >>
163 VNET_HW_INTERFACE_FLAG_SPEED_SHIFT);
Damjan Marionfe7d4a22018-04-13 19:43:39 +0200164 mp->link_mtu = ntohs (hi->max_packet_bytes);
Dave Barach6d963c22016-12-05 09:50:05 -0500165 mp->context = context;
166
167 strncpy ((char *) mp->interface_name,
168 (char *) interface_name, ARRAY_LEN (mp->interface_name) - 1);
169
170 /* Send the L2 address for ethernet physical intfcs */
171 if (swif->sup_sw_if_index == swif->sw_if_index
172 && hi->hw_class_index == ethernet_hw_interface_class.index)
173 {
174 ethernet_main_t *em = ethernet_get_main (am->vlib_main);
175 ethernet_interface_t *ei;
176
177 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
178 ASSERT (sizeof (mp->l2_address) >= sizeof (ei->address));
179 clib_memcpy (mp->l2_address, ei->address, sizeof (ei->address));
180 mp->l2_address_length = ntohl (sizeof (ei->address));
181 }
182 else if (swif->sup_sw_if_index != swif->sw_if_index)
183 {
184 vnet_sub_interface_t *sub = &swif->sub;
185 mp->sub_id = ntohl (sub->id);
186 mp->sub_dot1ad = sub->eth.flags.dot1ad;
187 mp->sub_number_of_tags =
188 sub->eth.flags.one_tag + sub->eth.flags.two_tags * 2;
189 mp->sub_outer_vlan_id = ntohs (sub->eth.outer_vlan_id);
190 mp->sub_inner_vlan_id = ntohs (sub->eth.inner_vlan_id);
191 mp->sub_exact_match = sub->eth.flags.exact_match;
192 mp->sub_default = sub->eth.flags.default_sub;
193 mp->sub_outer_vlan_id_any = sub->eth.flags.outer_vlan_id_any;
194 mp->sub_inner_vlan_id_any = sub->eth.flags.inner_vlan_id_any;
195
196 /* vlan tag rewrite data */
197 u32 vtr_op = L2_VTR_DISABLED;
198 u32 vtr_push_dot1q = 0, vtr_tag1 = 0, vtr_tag2 = 0;
199
200 if (l2vtr_get (am->vlib_main, am->vnet_main, swif->sw_if_index,
201 &vtr_op, &vtr_push_dot1q, &vtr_tag1, &vtr_tag2) != 0)
202 {
203 // error - default to disabled
204 mp->vtr_op = ntohl (L2_VTR_DISABLED);
205 clib_warning ("cannot get vlan tag rewrite for sw_if_index %d",
206 swif->sw_if_index);
207 }
208 else
209 {
210 mp->vtr_op = ntohl (vtr_op);
211 mp->vtr_push_dot1q = ntohl (vtr_push_dot1q);
212 mp->vtr_tag1 = ntohl (vtr_tag1);
213 mp->vtr_tag2 = ntohl (vtr_tag2);
214 }
215 }
216
Pavel Kotucek65e84572017-01-16 17:01:56 +0100217 /* pbb tag rewrite data */
Gabriel Gannef7f2a9f2017-03-06 15:19:40 +0100218 ethernet_header_t eth_hdr;
Pavel Kotucek65e84572017-01-16 17:01:56 +0100219 u32 vtr_op = L2_VTR_DISABLED;
220 u16 outer_tag = 0;
Pavel Kotucek65e84572017-01-16 17:01:56 +0100221 u16 b_vlanid = 0;
222 u32 i_sid = 0;
Gabriel Gannef7f2a9f2017-03-06 15:19:40 +0100223 memset (&eth_hdr, 0, sizeof (eth_hdr));
Pavel Kotucek65e84572017-01-16 17:01:56 +0100224
225 if (!l2pbb_get (am->vlib_main, am->vnet_main, swif->sw_if_index,
Gabriel Gannef7f2a9f2017-03-06 15:19:40 +0100226 &vtr_op, &outer_tag, &eth_hdr, &b_vlanid, &i_sid))
Pavel Kotucek65e84572017-01-16 17:01:56 +0100227 {
228 mp->sub_dot1ah = 1;
Gabriel Gannef7f2a9f2017-03-06 15:19:40 +0100229 clib_memcpy (mp->b_dmac, eth_hdr.dst_address,
230 sizeof (eth_hdr.dst_address));
231 clib_memcpy (mp->b_smac, eth_hdr.src_address,
232 sizeof (eth_hdr.src_address));
Pavel Kotucek65e84572017-01-16 17:01:56 +0100233 mp->b_vlanid = b_vlanid;
234 mp->i_sid = i_sid;
235 }
236
Eyal Bari1c82cd42017-03-14 14:39:51 +0200237 u8 *tag = vnet_get_sw_interface_tag (vnet_get_main (), swif->sw_if_index);
Dave Barach6d963c22016-12-05 09:50:05 -0500238 if (tag)
239 strncpy ((char *) mp->tag, (char *) tag, ARRAY_LEN (mp->tag) - 1);
240
Florin Corase86a8ed2018-01-05 03:20:25 -0800241 vl_api_send_msg (rp, (u8 *) mp);
Dave Barach6d963c22016-12-05 09:50:05 -0500242}
243
244static void
245vl_api_sw_interface_dump_t_handler (vl_api_sw_interface_dump_t * mp)
246{
247 vpe_api_main_t *am = &vpe_api_main;
248 vnet_sw_interface_t *swif;
249 vnet_interface_main_t *im = &am->vnet_main->interface_main;
Dave Barach59b25652017-09-10 15:04:27 -0400250 vl_api_registration_t *rp;
Dave Barach6d963c22016-12-05 09:50:05 -0500251
Dave Barach59b25652017-09-10 15:04:27 -0400252 rp = vl_api_client_index_to_registration (mp->client_index);
253
254 if (rp == 0)
255 {
256 clib_warning ("Client %d AWOL", mp->client_index);
257 return;
258 }
Dave Barach6d963c22016-12-05 09:50:05 -0500259
Eyal Bari1c82cd42017-03-14 14:39:51 +0200260 u8 *filter = 0, *name = 0;
Dave Barach6d963c22016-12-05 09:50:05 -0500261 if (mp->name_filter_valid)
262 {
263 mp->name_filter[ARRAY_LEN (mp->name_filter) - 1] = 0;
Eyal Bari1c82cd42017-03-14 14:39:51 +0200264 filter = format (0, "%s%c", mp->name_filter, 0);
Dave Barach6d963c22016-12-05 09:50:05 -0500265 }
266
Eyal Bari1c82cd42017-03-14 14:39:51 +0200267 char *strcasestr (char *, char *); /* lnx hdr file botch */
Dave Barach6d963c22016-12-05 09:50:05 -0500268 /* *INDENT-OFF* */
269 pool_foreach (swif, im->sw_interfaces,
270 ({
Eyal Bari1c82cd42017-03-14 14:39:51 +0200271 if (!vnet_swif_is_api_visible (swif))
272 continue;
273 vec_reset_length(name);
274 name = format (name, "%U%c", format_vnet_sw_interface_name, am->vnet_main,
275 swif, 0);
Dave Barach6d963c22016-12-05 09:50:05 -0500276
Eyal Bari1c82cd42017-03-14 14:39:51 +0200277 if (filter && !strcasestr((char *) name, (char *) filter))
278 continue;
Dave Barach6d963c22016-12-05 09:50:05 -0500279
Dave Barach59b25652017-09-10 15:04:27 -0400280 send_sw_interface_details (am, rp, swif, name, mp->context);
Dave Barach6d963c22016-12-05 09:50:05 -0500281 }));
282 /* *INDENT-ON* */
283
Eyal Bari1c82cd42017-03-14 14:39:51 +0200284 vec_free (name);
285 vec_free (filter);
Dave Barach6d963c22016-12-05 09:50:05 -0500286}
287
288static void
289 vl_api_sw_interface_add_del_address_t_handler
290 (vl_api_sw_interface_add_del_address_t * mp)
291{
292 vlib_main_t *vm = vlib_get_main ();
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500293 vnet_main_t *vnm = vnet_get_main ();
Dave Barach6d963c22016-12-05 09:50:05 -0500294 vl_api_sw_interface_add_del_address_reply_t *rmp;
295 int rv = 0;
296 u32 is_del;
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500297 clib_error_t *error = 0;
Dave Barach6d963c22016-12-05 09:50:05 -0500298
299 VALIDATE_SW_IF_INDEX (mp);
300
301 is_del = mp->is_add == 0;
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500302 vnm->api_errno = 0;
Dave Barach6d963c22016-12-05 09:50:05 -0500303
304 if (mp->del_all)
305 ip_del_all_interface_addresses (vm, ntohl (mp->sw_if_index));
306 else if (mp->is_ipv6)
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500307 error = ip6_add_del_interface_address (vm, ntohl (mp->sw_if_index),
308 (void *) mp->address,
309 mp->address_length, is_del);
Dave Barach6d963c22016-12-05 09:50:05 -0500310 else
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500311 error = ip4_add_del_interface_address (vm, ntohl (mp->sw_if_index),
312 (void *) mp->address,
313 mp->address_length, is_del);
314
315 if (error)
316 {
317 rv = vnm->api_errno;
318 clib_error_report (error);
319 goto done;
320 }
Dave Barach6d963c22016-12-05 09:50:05 -0500321
322 BAD_SW_IF_INDEX_LABEL;
323
Jon Loeliger35ffa3e2017-09-28 13:54:16 -0500324done:
Dave Barach6d963c22016-12-05 09:50:05 -0500325 REPLY_MACRO (VL_API_SW_INTERFACE_ADD_DEL_ADDRESS_REPLY);
326}
327
328void stats_dslock_with_hint (int hint, int tag) __attribute__ ((weak));
329void
330stats_dslock_with_hint (int hint, int tag)
331{
332}
333
334void stats_dsunlock (void) __attribute__ ((weak));
335void
336stats_dsunlock (void)
337{
338}
339
340static void
341vl_api_sw_interface_set_table_t_handler (vl_api_sw_interface_set_table_t * mp)
342{
Dave Barach6d963c22016-12-05 09:50:05 -0500343 vl_api_sw_interface_set_table_reply_t *rmp;
Neale Ranns15002542017-09-10 04:39:11 -0700344 u32 sw_if_index = ntohl (mp->sw_if_index);
345 u32 table_id = ntohl (mp->vrf_id);
346 int rv = 0;
Dave Barach6d963c22016-12-05 09:50:05 -0500347
348 VALIDATE_SW_IF_INDEX (mp);
349
350 stats_dslock_with_hint (1 /* release hint */ , 4 /* tag */ );
351
352 if (mp->is_ipv6)
Neale Ranns15002542017-09-10 04:39:11 -0700353 rv = ip_table_bind (FIB_PROTOCOL_IP6, sw_if_index, table_id, 1);
Dave Barach6d963c22016-12-05 09:50:05 -0500354 else
Neale Ranns15002542017-09-10 04:39:11 -0700355 rv = ip_table_bind (FIB_PROTOCOL_IP4, sw_if_index, table_id, 1);
Dave Barach6d963c22016-12-05 09:50:05 -0500356
Dave Barach6d963c22016-12-05 09:50:05 -0500357 stats_dsunlock ();
358
359 BAD_SW_IF_INDEX_LABEL;
360
361 REPLY_MACRO (VL_API_SW_INTERFACE_SET_TABLE_REPLY);
362}
363
Neale Ranns15002542017-09-10 04:39:11 -0700364int
365ip_table_bind (fib_protocol_t fproto,
Neale Ranns6b3a8ef2017-09-11 10:34:33 -0700366 u32 sw_if_index, u32 table_id, u8 is_api)
Neale Ranns15002542017-09-10 04:39:11 -0700367{
368 CLIB_UNUSED (ip_interface_address_t * ia);
369 u32 fib_index, mfib_index;
370 fib_source_t src;
371 mfib_source_t msrc;
372
373 if (is_api)
374 {
375 src = FIB_SOURCE_API;
376 msrc = MFIB_SOURCE_API;
377 }
378 else
379 {
380 src = FIB_SOURCE_CLI;
381 msrc = MFIB_SOURCE_CLI;
382 }
383
Florin Corasd0a59722017-10-15 17:41:21 +0000384 /*
385 * This is temporary whilst I do the song and dance with the CSIT version
386 */
387 if (0 != table_id)
388 {
389 fib_index = fib_table_find_or_create_and_lock (fproto, table_id, src);
390 mfib_index =
391 mfib_table_find_or_create_and_lock (fproto, table_id, msrc);
392 }
393 else
394 {
395 fib_index = 0;
396 mfib_index = 0;
397 }
398
399 /*
400 * This if table does not exist = error is what we want in the end.
401 */
402 /* fib_index = fib_table_find (fproto, table_id); */
403 /* mfib_index = mfib_table_find (fproto, table_id); */
404
405 /* if (~0 == fib_index || ~0 == mfib_index) */
406 /* { */
407 /* return (VNET_API_ERROR_NO_SUCH_FIB); */
408 /* } */
409
Neale Ranns15002542017-09-10 04:39:11 -0700410 if (FIB_PROTOCOL_IP6 == fproto)
411 {
412 /*
413 * If the interface already has in IP address, then a change int
414 * VRF is not allowed. The IP address applied must first be removed.
415 * We do not do that automatically here, since VPP has no knowledge
416 * of whether thoses subnets are valid in the destination VRF.
417 */
418 /* *INDENT-OFF* */
419 foreach_ip_interface_address (&ip6_main.lookup_main,
420 ia, sw_if_index,
421 1 /* honor unnumbered */ ,
422 ({
423 return (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE);
424 }));
425 /* *INDENT-ON* */
426
427 vec_validate (ip6_main.fib_index_by_sw_if_index, sw_if_index);
428 vec_validate (ip6_main.mfib_index_by_sw_if_index, sw_if_index);
429
430 /*
431 * tell those that are interested that the binding is changing.
432 */
433 ip6_table_bind_callback_t *cb;
434 vec_foreach (cb, ip6_main.table_bind_callbacks)
435 cb->function (&ip6_main, cb->function_opaque,
436 sw_if_index,
437 fib_index,
438 ip6_main.fib_index_by_sw_if_index[sw_if_index]);
439
440 if (0 == table_id)
441 {
442 /* reset back to default */
443 if (0 != ip6_main.fib_index_by_sw_if_index[sw_if_index])
444 fib_table_unlock (ip6_main.fib_index_by_sw_if_index[sw_if_index],
445 FIB_PROTOCOL_IP6, src);
446 if (0 != ip6_main.mfib_index_by_sw_if_index[sw_if_index])
447 mfib_table_unlock (ip6_main.mfib_index_by_sw_if_index
448 [sw_if_index], FIB_PROTOCOL_IP6, msrc);
449
450 }
451 else
452 {
453 /* we need to lock the table now it's inuse */
454 fib_table_lock (fib_index, FIB_PROTOCOL_IP6, src);
455 mfib_table_lock (mfib_index, FIB_PROTOCOL_IP6, msrc);
456 }
457
458 ip6_main.fib_index_by_sw_if_index[sw_if_index] = fib_index;
459 ip6_main.mfib_index_by_sw_if_index[sw_if_index] = mfib_index;
460 }
461 else
462 {
463 /*
464 * If the interface already has in IP address, then a change int
465 * VRF is not allowed. The IP address applied must first be removed.
466 * We do not do that automatically here, since VPP has no knowledge
467 * of whether thoses subnets are valid in the destination VRF.
468 */
469 /* *INDENT-OFF* */
470 foreach_ip_interface_address (&ip4_main.lookup_main,
471 ia, sw_if_index,
472 1 /* honor unnumbered */ ,
473 ({
474 return (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE);
475 }));
476 /* *INDENT-ON* */
477
478 vec_validate (ip4_main.fib_index_by_sw_if_index, sw_if_index);
479 vec_validate (ip4_main.mfib_index_by_sw_if_index, sw_if_index);
480
481 /*
482 * tell those that are interested that the binding is changing.
483 */
484 ip4_table_bind_callback_t *cb;
485 vec_foreach (cb, ip4_main.table_bind_callbacks)
486 cb->function (&ip4_main, cb->function_opaque,
487 sw_if_index,
488 fib_index,
489 ip4_main.fib_index_by_sw_if_index[sw_if_index]);
490
491 if (0 == table_id)
492 {
493 /* reset back to default */
494 if (0 != ip4_main.fib_index_by_sw_if_index[sw_if_index])
495 fib_table_unlock (ip4_main.fib_index_by_sw_if_index[sw_if_index],
496 FIB_PROTOCOL_IP4, src);
497 if (0 != ip4_main.mfib_index_by_sw_if_index[sw_if_index])
498 mfib_table_unlock (ip4_main.mfib_index_by_sw_if_index
499 [sw_if_index], FIB_PROTOCOL_IP4, msrc);
500
501 }
502 else
503 {
504 /* we need to lock the table now it's inuse */
505 fib_index = fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4,
506 table_id, src);
507
508 mfib_index = mfib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4,
509 table_id, msrc);
510 }
511
512 ip4_main.fib_index_by_sw_if_index[sw_if_index] = fib_index;
513 ip4_main.mfib_index_by_sw_if_index[sw_if_index] = mfib_index;
514 }
515
Florin Corasd0a59722017-10-15 17:41:21 +0000516 /*
517 * Temporary. undo the locks from the find and create at the staart
518 */
519 if (0 != table_id)
520 {
521 fib_table_unlock (fib_index, fproto, src);
522 mfib_table_unlock (mfib_index, fproto, msrc);
523 }
524
Neale Ranns15002542017-09-10 04:39:11 -0700525 return (0);
526}
527
Juraj Slobodadfc19232016-12-05 13:20:37 +0100528static void
Florin Coras6c4dae22018-01-09 06:39:23 -0800529send_sw_interface_get_table_reply (vl_api_registration_t * reg,
Juraj Slobodadfc19232016-12-05 13:20:37 +0100530 u32 context, int retval, u32 vrf_id)
531{
532 vl_api_sw_interface_get_table_reply_t *mp;
533
534 mp = vl_msg_api_alloc (sizeof (*mp));
535 memset (mp, 0, sizeof (*mp));
536 mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_GET_TABLE_REPLY);
537 mp->context = context;
538 mp->retval = htonl (retval);
539 mp->vrf_id = htonl (vrf_id);
540
Florin Coras6c4dae22018-01-09 06:39:23 -0800541 vl_api_send_msg (reg, (u8 *) mp);
Juraj Slobodadfc19232016-12-05 13:20:37 +0100542}
543
544static void
545vl_api_sw_interface_get_table_t_handler (vl_api_sw_interface_get_table_t * mp)
546{
Florin Coras6c4dae22018-01-09 06:39:23 -0800547 vl_api_registration_t *reg;
Juraj Slobodadfc19232016-12-05 13:20:37 +0100548 fib_table_t *fib_table = 0;
549 u32 sw_if_index = ~0;
550 u32 fib_index = ~0;
551 u32 table_id = ~0;
552 fib_protocol_t fib_proto = FIB_PROTOCOL_IP4;
553 int rv = 0;
554
Florin Coras6c4dae22018-01-09 06:39:23 -0800555 reg = vl_api_client_index_to_registration (mp->client_index);
556 if (!reg)
Juraj Slobodadfc19232016-12-05 13:20:37 +0100557 return;
558
559 VALIDATE_SW_IF_INDEX (mp);
560
561 sw_if_index = ntohl (mp->sw_if_index);
562
563 if (mp->is_ipv6)
564 fib_proto = FIB_PROTOCOL_IP6;
565
566 fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index);
567 if (fib_index != ~0)
568 {
569 fib_table = fib_table_get (fib_index, fib_proto);
570 table_id = fib_table->ft_table_id;
571 }
572
573 BAD_SW_IF_INDEX_LABEL;
574
Florin Coras6c4dae22018-01-09 06:39:23 -0800575 send_sw_interface_get_table_reply (reg, mp->context, rv, table_id);
Juraj Slobodadfc19232016-12-05 13:20:37 +0100576}
577
Dave Barach6d963c22016-12-05 09:50:05 -0500578static void vl_api_sw_interface_set_unnumbered_t_handler
579 (vl_api_sw_interface_set_unnumbered_t * mp)
580{
581 vl_api_sw_interface_set_unnumbered_reply_t *rmp;
582 int rv = 0;
Dave Barach6d963c22016-12-05 09:50:05 -0500583 vnet_main_t *vnm = vnet_get_main ();
Eyal Bari1c82cd42017-03-14 14:39:51 +0200584 u32 sw_if_index = ntohl (mp->sw_if_index);
585 u32 unnumbered_sw_if_index = ntohl (mp->unnumbered_sw_if_index);
Dave Barach6d963c22016-12-05 09:50:05 -0500586
587 /*
588 * The API message field names are backwards from
589 * the underlying data structure names.
590 * It's not worth changing them now.
591 */
Eyal Bari1c82cd42017-03-14 14:39:51 +0200592 if (!vnet_sw_interface_is_api_valid (vnm, unnumbered_sw_if_index))
Dave Barach6d963c22016-12-05 09:50:05 -0500593 {
594 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
595 goto done;
596 }
597
598 /* Only check the "use loop0" field when setting the binding */
Eyal Bari1c82cd42017-03-14 14:39:51 +0200599 if (mp->is_add && !vnet_sw_interface_is_api_valid (vnm, sw_if_index))
Dave Barach6d963c22016-12-05 09:50:05 -0500600 {
601 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX_2;
602 goto done;
603 }
604
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700605 vnet_sw_interface_update_unnumbered (unnumbered_sw_if_index,
606 sw_if_index, mp->is_add);
Dave Barach6d963c22016-12-05 09:50:05 -0500607done:
608 REPLY_MACRO (VL_API_SW_INTERFACE_SET_UNNUMBERED_REPLY);
609}
610
611static void
612vl_api_sw_interface_clear_stats_t_handler (vl_api_sw_interface_clear_stats_t *
613 mp)
614{
615 vl_api_sw_interface_clear_stats_reply_t *rmp;
616
617 vnet_main_t *vnm = vnet_get_main ();
618 vnet_interface_main_t *im = &vnm->interface_main;
619 vlib_simple_counter_main_t *sm;
620 vlib_combined_counter_main_t *cm;
621 static vnet_main_t **my_vnet_mains;
622 int i, j, n_counters;
623 int rv = 0;
624
625 if (mp->sw_if_index != ~0)
626 VALIDATE_SW_IF_INDEX (mp);
627
628 vec_reset_length (my_vnet_mains);
629
630 for (i = 0; i < vec_len (vnet_mains); i++)
631 {
632 if (vnet_mains[i])
633 vec_add1 (my_vnet_mains, vnet_mains[i]);
634 }
635
636 if (vec_len (vnet_mains) == 0)
637 vec_add1 (my_vnet_mains, vnm);
638
639 n_counters = vec_len (im->combined_sw_if_counters);
640
641 for (j = 0; j < n_counters; j++)
642 {
643 for (i = 0; i < vec_len (my_vnet_mains); i++)
644 {
645 im = &my_vnet_mains[i]->interface_main;
646 cm = im->combined_sw_if_counters + j;
647 if (mp->sw_if_index == (u32) ~ 0)
648 vlib_clear_combined_counters (cm);
649 else
650 vlib_zero_combined_counter (cm, ntohl (mp->sw_if_index));
651 }
652 }
653
654 n_counters = vec_len (im->sw_if_counters);
655
656 for (j = 0; j < n_counters; j++)
657 {
658 for (i = 0; i < vec_len (my_vnet_mains); i++)
659 {
660 im = &my_vnet_mains[i]->interface_main;
661 sm = im->sw_if_counters + j;
662 if (mp->sw_if_index == (u32) ~ 0)
663 vlib_clear_simple_counters (sm);
664 else
665 vlib_zero_simple_counter (sm, ntohl (mp->sw_if_index));
666 }
667 }
668
669 BAD_SW_IF_INDEX_LABEL;
670
671 REPLY_MACRO (VL_API_SW_INTERFACE_CLEAR_STATS_REPLY);
672}
673
674#define API_LINK_STATE_EVENT 1
675#define API_ADMIN_UP_DOWN_EVENT 2
676
677static int
678event_data_cmp (void *a1, void *a2)
679{
680 uword *e1 = a1;
681 uword *e2 = a2;
682
683 return (word) e1[0] - (word) e2[0];
684}
685
686static void
Neale Rannsa07bd702017-08-07 07:53:49 -0700687send_sw_interface_event (vpe_api_main_t * am,
Neale Rannsd292ab12017-08-15 12:29:48 -0700688 vpe_client_registration_t * reg,
Florin Coras6c4dae22018-01-09 06:39:23 -0800689 vl_api_registration_t * vl_reg,
690 vnet_sw_interface_t * swif)
Dave Barach6d963c22016-12-05 09:50:05 -0500691{
Neale Rannsa07bd702017-08-07 07:53:49 -0700692 vl_api_sw_interface_event_t *mp;
Dave Barach6d963c22016-12-05 09:50:05 -0500693 vnet_main_t *vnm = am->vnet_main;
694
695 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm,
696 swif->sw_if_index);
697 mp = vl_msg_api_alloc (sizeof (*mp));
698 memset (mp, 0, sizeof (*mp));
Neale Rannsa07bd702017-08-07 07:53:49 -0700699 mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_EVENT);
Dave Barach6d963c22016-12-05 09:50:05 -0500700 mp->sw_if_index = ntohl (swif->sw_if_index);
Neale Rannsd292ab12017-08-15 12:29:48 -0700701 mp->client_index = reg->client_index;
702 mp->pid = reg->client_pid;
Dave Barach6d963c22016-12-05 09:50:05 -0500703
704 mp->admin_up_down = (swif->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? 1 : 0;
705 mp->link_up_down = (hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ? 1 : 0;
Florin Coras6c4dae22018-01-09 06:39:23 -0800706 vl_api_send_msg (vl_reg, (u8 *) mp);
Dave Barach6d963c22016-12-05 09:50:05 -0500707}
708
709static uword
710link_state_process (vlib_main_t * vm,
711 vlib_node_runtime_t * rt, vlib_frame_t * f)
712{
713 vpe_api_main_t *vam = &vpe_api_main;
714 vnet_main_t *vnm = vam->vnet_main;
715 vnet_sw_interface_t *swif;
716 uword *event_data = 0;
717 vpe_client_registration_t *reg;
718 int i;
719 u32 prev_sw_if_index;
Florin Coras6c4dae22018-01-09 06:39:23 -0800720 vl_api_registration_t *vl_reg;
Dave Barach6d963c22016-12-05 09:50:05 -0500721
722 vam->link_state_process_up = 1;
723
724 while (1)
725 {
726 vlib_process_wait_for_event (vm);
727
728 /* Unified list of changed link or admin state sw_if_indices */
729 vlib_process_get_events_with_type
730 (vm, &event_data, API_LINK_STATE_EVENT);
731 vlib_process_get_events_with_type
732 (vm, &event_data, API_ADMIN_UP_DOWN_EVENT);
733
734 /* Sort, so we can eliminate duplicates */
735 vec_sort_with_function (event_data, event_data_cmp);
736
737 prev_sw_if_index = ~0;
738
739 for (i = 0; i < vec_len (event_data); i++)
740 {
741 /* Only one message per swif */
742 if (prev_sw_if_index == event_data[i])
743 continue;
744 prev_sw_if_index = event_data[i];
745
746 /* *INDENT-OFF* */
747 pool_foreach(reg, vam->interface_events_registrations,
748 ({
Florin Coras6c4dae22018-01-09 06:39:23 -0800749 vl_reg = vl_api_client_index_to_registration (reg->client_index);
750 if (vl_reg)
Dave Barach6d963c22016-12-05 09:50:05 -0500751 {
752 /* sw_interface may be deleted already */
753 if (!pool_is_free_index (vnm->interface_main.sw_interfaces,
754 event_data[i]))
755 {
756 swif = vnet_get_sw_interface (vnm, event_data[i]);
Florin Coras6c4dae22018-01-09 06:39:23 -0800757 send_sw_interface_event (vam, reg, vl_reg, swif);
Dave Barach6d963c22016-12-05 09:50:05 -0500758 }
759 }
760 }));
761 /* *INDENT-ON* */
762 }
763 vec_reset_length (event_data);
764 }
765
766 return 0;
767}
768
769static clib_error_t *link_up_down_function (vnet_main_t * vm, u32 hw_if_index,
770 u32 flags);
771static clib_error_t *admin_up_down_function (vnet_main_t * vm,
772 u32 hw_if_index, u32 flags);
773
774/* *INDENT-OFF* */
775VLIB_REGISTER_NODE (link_state_process_node,static) = {
776 .function = link_state_process,
777 .type = VLIB_NODE_TYPE_PROCESS,
778 .name = "vpe-link-state-process",
779};
780/* *INDENT-ON* */
781
782VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (admin_up_down_function);
783VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION (link_up_down_function);
784
785static clib_error_t *
786link_up_down_function (vnet_main_t * vm, u32 hw_if_index, u32 flags)
787{
788 vpe_api_main_t *vam = &vpe_api_main;
789 vnet_hw_interface_t *hi = vnet_get_hw_interface (vm, hw_if_index);
790
791 if (vam->link_state_process_up)
792 vlib_process_signal_event (vam->vlib_main,
793 link_state_process_node.index,
794 API_LINK_STATE_EVENT, hi->sw_if_index);
795 return 0;
796}
797
798static clib_error_t *
799admin_up_down_function (vnet_main_t * vm, u32 sw_if_index, u32 flags)
800{
801 vpe_api_main_t *vam = &vpe_api_main;
802
803 /*
804 * Note: it's perfectly fair to set a subif admin up / admin down.
805 * Note the subtle distinction between this routine and the previous
806 * routine.
807 */
808 if (vam->link_state_process_up)
809 vlib_process_signal_event (vam->vlib_main,
810 link_state_process_node.index,
811 API_ADMIN_UP_DOWN_EVENT, sw_if_index);
812 return 0;
813}
814
815static void vl_api_sw_interface_tag_add_del_t_handler
816 (vl_api_sw_interface_tag_add_del_t * mp)
817{
818 vnet_main_t *vnm = vnet_get_main ();
819 vl_api_sw_interface_tag_add_del_reply_t *rmp;
820 int rv = 0;
821 u8 *tag;
822 u32 sw_if_index = ntohl (mp->sw_if_index);
823
824 VALIDATE_SW_IF_INDEX (mp);
825
826 if (mp->is_add)
827 {
828 if (mp->tag[0] == 0)
829 {
830 rv = VNET_API_ERROR_INVALID_VALUE;
831 goto out;
832 }
833
834 mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
835 tag = format (0, "%s%c", mp->tag, 0);
836 vnet_set_sw_interface_tag (vnm, tag, sw_if_index);
837 }
838 else
839 vnet_clear_sw_interface_tag (vnm, sw_if_index);
840
841 BAD_SW_IF_INDEX_LABEL;
842out:
843 REPLY_MACRO (VL_API_SW_INTERFACE_TAG_ADD_DEL_REPLY);
844}
845
Jon Loeliger10c273b2017-03-30 08:39:33 -0500846static void vl_api_sw_interface_set_mac_address_t_handler
847 (vl_api_sw_interface_set_mac_address_t * mp)
848{
849 vl_api_sw_interface_set_mac_address_reply_t *rmp;
850 vnet_main_t *vnm = vnet_get_main ();
851 u32 sw_if_index = ntohl (mp->sw_if_index);
Neale Rannsd867a7c2017-10-04 02:29:07 -0700852 vnet_sw_interface_t *si;
Jon Loeliger10c273b2017-03-30 08:39:33 -0500853 clib_error_t *error;
854 int rv = 0;
855
856 VALIDATE_SW_IF_INDEX (mp);
857
Neale Rannsd867a7c2017-10-04 02:29:07 -0700858 si = vnet_get_sw_interface (vnm, sw_if_index);
John Lo62fcc0a2017-10-31 14:31:10 -0400859 error = vnet_hw_interface_change_mac_address (vnm, si->hw_if_index,
860 mp->mac_address);
Jon Loeliger10c273b2017-03-30 08:39:33 -0500861 if (error)
862 {
863 rv = VNET_API_ERROR_UNIMPLEMENTED;
864 clib_error_report (error);
865 goto out;
866 }
867
868 BAD_SW_IF_INDEX_LABEL;
869out:
870 REPLY_MACRO (VL_API_SW_INTERFACE_SET_MAC_ADDRESS_REPLY);
871}
872
Juraj Slobodac0374232018-02-01 15:18:49 +0100873static void vl_api_sw_interface_get_mac_address_t_handler
874 (vl_api_sw_interface_get_mac_address_t * mp)
875{
876 vl_api_sw_interface_get_mac_address_reply_t *rmp;
877 vl_api_registration_t *reg;
878 vnet_main_t *vnm = vnet_get_main ();
879 u32 sw_if_index = ntohl (mp->sw_if_index);
880 vnet_sw_interface_t *si;
881 ethernet_interface_t *eth_if = 0;
882 int rv = 0;
883
884 VALIDATE_SW_IF_INDEX (mp);
885
886 si = vnet_get_sup_sw_interface (vnm, sw_if_index);
887 if (si->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
888 eth_if = ethernet_get_interface (&ethernet_main, si->hw_if_index);
889
890 BAD_SW_IF_INDEX_LABEL;
891
892 reg = vl_api_client_index_to_registration (mp->client_index);
893 if (!reg)
894 return;
895 rmp = vl_msg_api_alloc (sizeof (*rmp));
896 rmp->_vl_msg_id = htons (VL_API_SW_INTERFACE_GET_MAC_ADDRESS_REPLY);
897 rmp->context = mp->context;
898 rmp->retval = htonl (rv);
899 if (!rv && eth_if)
900 memcpy (rmp->mac_address, eth_if->address, 6);
901 vl_api_send_msg (reg, (u8 *) rmp);
902}
903
Stevenad8015b2017-10-29 22:10:46 -0700904static void vl_api_sw_interface_set_rx_mode_t_handler
905 (vl_api_sw_interface_set_rx_mode_t * mp)
906{
907 vl_api_sw_interface_set_rx_mode_reply_t *rmp;
908 vnet_main_t *vnm = vnet_get_main ();
909 u32 sw_if_index = ntohl (mp->sw_if_index);
910 vnet_sw_interface_t *si;
911 clib_error_t *error;
912 int rv = 0;
913
914 VALIDATE_SW_IF_INDEX (mp);
915
916 si = vnet_get_sw_interface (vnm, sw_if_index);
917 error = set_hw_interface_change_rx_mode (vnm, si->hw_if_index,
918 mp->queue_id_valid,
919 ntohl (mp->queue_id), mp->mode);
920 if (error)
921 {
922 rv = VNET_API_ERROR_UNIMPLEMENTED;
923 clib_error_report (error);
924 goto out;
925 }
926
927 BAD_SW_IF_INDEX_LABEL;
928out:
929 REPLY_MACRO (VL_API_SW_INTERFACE_SET_RX_MODE_REPLY);
930}
931
Neale Rannsb8d44812017-11-10 06:53:54 -0800932static void
933vl_api_create_vlan_subif_t_handler (vl_api_create_vlan_subif_t * mp)
934{
935 vl_api_create_vlan_subif_reply_t *rmp;
936 vnet_main_t *vnm = vnet_get_main ();
937 u32 sw_if_index = (u32) ~ 0;
938 vnet_hw_interface_t *hi;
939 int rv = 0;
940 u32 id;
941 vnet_sw_interface_t template;
942 uword *p;
943 vnet_interface_main_t *im = &vnm->interface_main;
944 u64 sup_and_sub_key;
Florin Coras6c4dae22018-01-09 06:39:23 -0800945 vl_api_registration_t *reg;
Neale Rannsb8d44812017-11-10 06:53:54 -0800946 clib_error_t *error;
947
948 VALIDATE_SW_IF_INDEX (mp);
949
950 hi = vnet_get_sup_hw_interface (vnm, ntohl (mp->sw_if_index));
951
952 if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
953 {
954 rv = VNET_API_ERROR_BOND_SLAVE_NOT_ALLOWED;
955 goto out;
956 }
957
958 id = ntohl (mp->vlan_id);
959 if (id == 0 || id > 4095)
960 {
961 rv = VNET_API_ERROR_INVALID_VLAN;
962 goto out;
963 }
964
965 sup_and_sub_key = ((u64) (hi->sw_if_index) << 32) | (u64) id;
966
967 p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
968 if (p)
969 {
970 rv = VNET_API_ERROR_VLAN_ALREADY_EXISTS;
971 goto out;
972 }
973
974 memset (&template, 0, sizeof (template));
975 template.type = VNET_SW_INTERFACE_TYPE_SUB;
976 template.sup_sw_if_index = hi->sw_if_index;
977 template.sub.id = id;
978 template.sub.eth.raw_flags = 0;
979 template.sub.eth.flags.one_tag = 1;
980 template.sub.eth.outer_vlan_id = id;
981 template.sub.eth.flags.exact_match = 1;
982
983 error = vnet_create_sw_interface (vnm, &template, &sw_if_index);
984 if (error)
985 {
986 clib_error_report (error);
987 rv = VNET_API_ERROR_INVALID_REGISTRATION;
988 goto out;
989 }
990
991 u64 *kp = clib_mem_alloc (sizeof (*kp));
992 *kp = sup_and_sub_key;
993
994 hash_set (hi->sub_interface_sw_if_index_by_id, id, sw_if_index);
995 hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index);
996
997 BAD_SW_IF_INDEX_LABEL;
998
999out:
Florin Coras6c4dae22018-01-09 06:39:23 -08001000 reg = vl_api_client_index_to_registration (mp->client_index);
1001 if (!reg)
Neale Rannsb8d44812017-11-10 06:53:54 -08001002 return;
1003
1004 rmp = vl_msg_api_alloc (sizeof (*rmp));
1005 rmp->_vl_msg_id = htons (VL_API_CREATE_VLAN_SUBIF_REPLY);
1006 rmp->context = mp->context;
1007 rmp->retval = htonl (rv);
1008 rmp->sw_if_index = htonl (sw_if_index);
Florin Coras6c4dae22018-01-09 06:39:23 -08001009 vl_api_send_msg (reg, (u8 *) rmp);
Neale Rannsb8d44812017-11-10 06:53:54 -08001010}
1011
1012static void
1013vl_api_create_subif_t_handler (vl_api_create_subif_t * mp)
1014{
1015 vl_api_create_subif_reply_t *rmp;
1016 vnet_main_t *vnm = vnet_get_main ();
1017 u32 sw_if_index = ~0;
1018 int rv = 0;
1019 u32 sub_id;
1020 vnet_sw_interface_t *si;
1021 vnet_hw_interface_t *hi;
1022 vnet_sw_interface_t template;
1023 uword *p;
1024 vnet_interface_main_t *im = &vnm->interface_main;
1025 u64 sup_and_sub_key;
1026 clib_error_t *error;
1027
1028 VALIDATE_SW_IF_INDEX (mp);
1029
1030 si = vnet_get_sup_sw_interface (vnm, ntohl (mp->sw_if_index));
1031 hi = vnet_get_sup_hw_interface (vnm, ntohl (mp->sw_if_index));
1032
1033 if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
1034 {
1035 rv = VNET_API_ERROR_BOND_SLAVE_NOT_ALLOWED;
1036 goto out;
1037 }
1038
1039 sw_if_index = si->sw_if_index;
1040 sub_id = ntohl (mp->sub_id);
1041
1042 sup_and_sub_key = ((u64) (sw_if_index) << 32) | (u64) sub_id;
1043
1044 p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
1045 if (p)
1046 {
1047 if (CLIB_DEBUG > 0)
1048 clib_warning ("sup sw_if_index %d, sub id %d already exists\n",
1049 sw_if_index, sub_id);
1050 rv = VNET_API_ERROR_SUBIF_ALREADY_EXISTS;
1051 goto out;
1052 }
1053
1054 memset (&template, 0, sizeof (template));
1055 template.type = VNET_SW_INTERFACE_TYPE_SUB;
1056 template.sup_sw_if_index = sw_if_index;
1057 template.sub.id = sub_id;
1058 template.sub.eth.flags.no_tags = mp->no_tags;
1059 template.sub.eth.flags.one_tag = mp->one_tag;
1060 template.sub.eth.flags.two_tags = mp->two_tags;
1061 template.sub.eth.flags.dot1ad = mp->dot1ad;
1062 template.sub.eth.flags.exact_match = mp->exact_match;
1063 template.sub.eth.flags.default_sub = mp->default_sub;
1064 template.sub.eth.flags.outer_vlan_id_any = mp->outer_vlan_id_any;
1065 template.sub.eth.flags.inner_vlan_id_any = mp->inner_vlan_id_any;
1066 template.sub.eth.outer_vlan_id = ntohs (mp->outer_vlan_id);
1067 template.sub.eth.inner_vlan_id = ntohs (mp->inner_vlan_id);
1068
1069 error = vnet_create_sw_interface (vnm, &template, &sw_if_index);
1070 if (error)
1071 {
1072 clib_error_report (error);
1073 rv = VNET_API_ERROR_SUBIF_CREATE_FAILED;
1074 goto out;
1075 }
1076
1077 u64 *kp = clib_mem_alloc (sizeof (*kp));
1078 *kp = sup_and_sub_key;
1079
1080 hash_set (hi->sub_interface_sw_if_index_by_id, sub_id, sw_if_index);
1081 hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index);
1082
1083 BAD_SW_IF_INDEX_LABEL;
1084
1085out:
1086
1087 /* *INDENT-OFF* */
1088 REPLY_MACRO2(VL_API_CREATE_SUBIF_REPLY,
1089 ({
1090 rmp->sw_if_index = ntohl(sw_if_index);
1091 }));
1092 /* *INDENT-ON* */
1093}
1094
1095static void
1096vl_api_delete_subif_t_handler (vl_api_delete_subif_t * mp)
1097{
1098 vl_api_delete_subif_reply_t *rmp;
1099 int rv;
1100
1101 rv = vnet_delete_sub_interface (ntohl (mp->sw_if_index));
1102
1103 REPLY_MACRO (VL_API_DELETE_SUBIF_REPLY);
1104}
1105
1106static void
1107vl_api_interface_name_renumber_t_handler (vl_api_interface_name_renumber_t *
1108 mp)
1109{
1110 vl_api_interface_name_renumber_reply_t *rmp;
1111 int rv = 0;
1112
1113 VALIDATE_SW_IF_INDEX (mp);
1114
1115 rv = vnet_interface_name_renumber
1116 (ntohl (mp->sw_if_index), ntohl (mp->new_show_dev_instance));
1117
1118 BAD_SW_IF_INDEX_LABEL;
1119
1120 REPLY_MACRO (VL_API_INTERFACE_NAME_RENUMBER_REPLY);
1121}
1122
1123static void
1124vl_api_create_loopback_t_handler (vl_api_create_loopback_t * mp)
1125{
1126 vl_api_create_loopback_reply_t *rmp;
1127 u32 sw_if_index;
1128 int rv;
1129
1130 rv = vnet_create_loopback_interface (&sw_if_index, mp->mac_address, 0, 0);
1131
1132 /* *INDENT-OFF* */
1133 REPLY_MACRO2(VL_API_CREATE_LOOPBACK_REPLY,
1134 ({
1135 rmp->sw_if_index = ntohl (sw_if_index);
1136 }));
1137 /* *INDENT-ON* */
1138}
1139
1140static void vl_api_create_loopback_instance_t_handler
1141 (vl_api_create_loopback_instance_t * mp)
1142{
1143 vl_api_create_loopback_instance_reply_t *rmp;
1144 u32 sw_if_index;
1145 u8 is_specified = mp->is_specified;
1146 u32 user_instance = ntohl (mp->user_instance);
1147 int rv;
1148
1149 rv = vnet_create_loopback_interface (&sw_if_index, mp->mac_address,
1150 is_specified, user_instance);
1151
1152 /* *INDENT-OFF* */
1153 REPLY_MACRO2(VL_API_CREATE_LOOPBACK_INSTANCE_REPLY,
1154 ({
1155 rmp->sw_if_index = ntohl (sw_if_index);
1156 }));
1157 /* *INDENT-ON* */
1158}
1159
1160static void
1161vl_api_delete_loopback_t_handler (vl_api_delete_loopback_t * mp)
1162{
1163 vl_api_delete_loopback_reply_t *rmp;
1164 u32 sw_if_index;
1165 int rv;
1166
1167 sw_if_index = ntohl (mp->sw_if_index);
1168 rv = vnet_delete_loopback_interface (sw_if_index);
1169
1170 REPLY_MACRO (VL_API_DELETE_LOOPBACK_REPLY);
1171}
1172
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001173static void
1174 vl_api_collect_detailed_interface_stats_t_handler
1175 (vl_api_collect_detailed_interface_stats_t * mp)
1176{
1177 vl_api_collect_detailed_interface_stats_reply_t *rmp;
1178 int rv = 0;
1179
Neale Ranns871dc422018-03-29 01:28:09 -07001180 rv =
1181 vnet_sw_interface_stats_collect_enable_disable (ntohl (mp->sw_if_index),
1182 mp->enable_disable);
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001183
1184 REPLY_MACRO (VL_API_COLLECT_DETAILED_INTERFACE_STATS_REPLY);
1185}
1186
Dave Barachaff70772016-10-31 11:59:07 -04001187/*
1188 * vpe_api_hookup
1189 * Add vpe's API message handlers to the table.
1190 * vlib has alread mapped shared memory and
1191 * added the client registration handlers.
1192 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
1193 */
1194#define vl_msg_name_crc_list
Dave Barachb5e8a772016-12-06 12:04:42 -05001195#include <vnet/interface.api.h>
Dave Barachaff70772016-10-31 11:59:07 -04001196#undef vl_msg_name_crc_list
1197
1198static void
1199setup_message_id_table (api_main_t * am)
1200{
1201#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1202 foreach_vl_msg_name_crc_interface;
1203#undef _
1204}
1205
Dave Barach6d963c22016-12-05 09:50:05 -05001206pub_sub_handler (interface_events, INTERFACE_EVENTS);
1207
Dave Barachaff70772016-10-31 11:59:07 -04001208static clib_error_t *
1209interface_api_hookup (vlib_main_t * vm)
1210{
1211 api_main_t *am = &api_main;
1212
1213#define _(N,n) \
1214 vl_msg_api_set_handlers(VL_API_##N, #n, \
1215 vl_api_##n##_t_handler, \
1216 vl_noop_handler, \
1217 vl_api_##n##_t_endian, \
1218 vl_api_##n##_t_print, \
1219 sizeof(vl_api_##n##_t), 1);
1220 foreach_vpe_api_msg;
1221#undef _
1222
1223 /*
1224 * Set up the (msg_name, crc, message-id) table
1225 */
1226 setup_message_id_table (am);
1227
1228 return 0;
1229}
1230
1231VLIB_API_INIT_FUNCTION (interface_api_hookup);
1232
1233/*
1234 * fd.io coding-style-patch-verification: ON
1235 *
1236 * Local Variables:
1237 * eval: (c-set-style "gnu")
1238 * End:
1239 */