Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 1 | /* |
| 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 Fabian | d162f3d | 2016-12-05 01:05:35 -0800 | [diff] [blame] | 25 | #include <vnet/ethernet/ethernet.h> |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 26 | #include <vnet/ip/ip.h> |
| 27 | #include <vnet/fib/fib_table.h> |
Neale Ranns | 4008ac9 | 2017-02-13 23:20:04 -0800 | [diff] [blame] | 28 | #include <vnet/mfib/mfib_table.h> |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 29 | #include <vnet/l2/l2_vtr.h> |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 30 | #include <vnet/vnet_msg_enum.h> |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 31 | #include <vnet/fib/fib_api.h> |
Neale Ranns | 358425b | 2017-02-20 09:42:36 -0800 | [diff] [blame] | 32 | #include <vnet/mfib/mfib_table.h> |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 33 | |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 34 | #include <vlibapi/api_types.h> |
| 35 | |
| 36 | #include <vnet/ip/ip_types_api.h> |
| 37 | #include <vnet/ethernet/ethernet_types_api.h> |
| 38 | |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 39 | #define vl_typedefs /* define message structures */ |
| 40 | #include <vnet/vnet_all_api_h.h> |
| 41 | #undef vl_typedefs |
| 42 | |
| 43 | #define vl_endianfun /* define message structures */ |
| 44 | #include <vnet/vnet_all_api_h.h> |
| 45 | #undef vl_endianfun |
| 46 | |
| 47 | /* instantiate all the print functions we know about */ |
| 48 | #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__) |
| 49 | #define vl_printfun |
| 50 | #include <vnet/vnet_all_api_h.h> |
| 51 | #undef vl_printfun |
| 52 | |
| 53 | #include <vlibapi/api_helper_macros.h> |
Dave Barach | f158661 | 2017-03-30 09:33:01 -0400 | [diff] [blame] | 54 | vpe_api_main_t vpe_api_main; |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 55 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 56 | #define foreach_vpe_api_msg \ |
| 57 | _(SW_INTERFACE_SET_FLAGS, sw_interface_set_flags) \ |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 58 | _(HW_INTERFACE_SET_MTU, hw_interface_set_mtu) \ |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 59 | _(SW_INTERFACE_SET_MTU, sw_interface_set_mtu) \ |
| 60 | _(WANT_INTERFACE_EVENTS, want_interface_events) \ |
| 61 | _(SW_INTERFACE_DUMP, sw_interface_dump) \ |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 62 | _(SW_INTERFACE_ADD_DEL_ADDRESS, sw_interface_add_del_address) \ |
Steven | ad8015b | 2017-10-29 22:10:46 -0700 | [diff] [blame] | 63 | _(SW_INTERFACE_SET_RX_MODE, sw_interface_set_rx_mode) \ |
Mohsin Kazmi | f0b42f4 | 2018-09-10 18:11:00 +0200 | [diff] [blame] | 64 | _(SW_INTERFACE_RX_PLACEMENT_DUMP, sw_interface_rx_placement_dump) \ |
Mohsin Kazmi | 54f7c51 | 2018-08-23 18:28:11 +0200 | [diff] [blame] | 65 | _(SW_INTERFACE_SET_RX_PLACEMENT, sw_interface_set_rx_placement) \ |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 66 | _(SW_INTERFACE_SET_TABLE, sw_interface_set_table) \ |
Juraj Sloboda | dfc1923 | 2016-12-05 13:20:37 +0100 | [diff] [blame] | 67 | _(SW_INTERFACE_GET_TABLE, sw_interface_get_table) \ |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 68 | _(SW_INTERFACE_SET_UNNUMBERED, sw_interface_set_unnumbered) \ |
| 69 | _(SW_INTERFACE_CLEAR_STATS, sw_interface_clear_stats) \ |
Jon Loeliger | 10c273b | 2017-03-30 08:39:33 -0500 | [diff] [blame] | 70 | _(SW_INTERFACE_TAG_ADD_DEL, sw_interface_tag_add_del) \ |
Matthew Smith | e0792fd | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 71 | _(SW_INTERFACE_ADD_DEL_MAC_ADDRESS, sw_interface_add_del_mac_address) \ |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 72 | _(SW_INTERFACE_SET_MAC_ADDRESS, sw_interface_set_mac_address) \ |
Juraj Sloboda | c037423 | 2018-02-01 15:18:49 +0100 | [diff] [blame] | 73 | _(SW_INTERFACE_GET_MAC_ADDRESS, sw_interface_get_mac_address) \ |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 74 | _(CREATE_VLAN_SUBIF, create_vlan_subif) \ |
| 75 | _(CREATE_SUBIF, create_subif) \ |
| 76 | _(DELETE_SUBIF, delete_subif) \ |
| 77 | _(CREATE_LOOPBACK, create_loopback) \ |
| 78 | _(CREATE_LOOPBACK_INSTANCE, create_loopback_instance) \ |
| 79 | _(DELETE_LOOPBACK, delete_loopback) \ |
Neale Ranns | 6f4a6be | 2018-03-16 16:26:21 -0700 | [diff] [blame] | 80 | _(INTERFACE_NAME_RENUMBER, interface_name_renumber) \ |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 81 | _(COLLECT_DETAILED_INTERFACE_STATS, collect_detailed_interface_stats) \ |
| 82 | _(SW_INTERFACE_SET_IP_DIRECTED_BROADCAST, \ |
| 83 | sw_interface_set_ip_directed_broadcast) |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 84 | |
| 85 | static void |
| 86 | vl_api_sw_interface_set_flags_t_handler (vl_api_sw_interface_set_flags_t * mp) |
| 87 | { |
| 88 | vl_api_sw_interface_set_flags_reply_t *rmp; |
| 89 | vnet_main_t *vnm = vnet_get_main (); |
| 90 | int rv = 0; |
| 91 | clib_error_t *error; |
| 92 | u16 flags; |
| 93 | |
| 94 | VALIDATE_SW_IF_INDEX (mp); |
| 95 | |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 96 | flags = |
| 97 | ((ntohl (mp->flags)) & IF_STATUS_API_FLAG_ADMIN_UP) ? |
| 98 | VNET_SW_INTERFACE_FLAG_ADMIN_UP : 0; |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 99 | |
| 100 | error = vnet_sw_interface_set_flags (vnm, ntohl (mp->sw_if_index), flags); |
| 101 | if (error) |
| 102 | { |
| 103 | rv = -1; |
| 104 | clib_error_report (error); |
| 105 | } |
| 106 | |
| 107 | BAD_SW_IF_INDEX_LABEL; |
| 108 | REPLY_MACRO (VL_API_SW_INTERFACE_SET_FLAGS_REPLY); |
| 109 | } |
| 110 | |
Matus Fabian | d162f3d | 2016-12-05 01:05:35 -0800 | [diff] [blame] | 111 | static void |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 112 | vl_api_hw_interface_set_mtu_t_handler (vl_api_hw_interface_set_mtu_t * mp) |
Matus Fabian | d162f3d | 2016-12-05 01:05:35 -0800 | [diff] [blame] | 113 | { |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 114 | vl_api_hw_interface_set_mtu_reply_t *rmp; |
Matus Fabian | d162f3d | 2016-12-05 01:05:35 -0800 | [diff] [blame] | 115 | vnet_main_t *vnm = vnet_get_main (); |
Matus Fabian | d162f3d | 2016-12-05 01:05:35 -0800 | [diff] [blame] | 116 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 117 | u16 mtu = ntohs (mp->mtu); |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 118 | ethernet_main_t *em = ðernet_main; |
Matus Fabian | d162f3d | 2016-12-05 01:05:35 -0800 | [diff] [blame] | 119 | int rv = 0; |
| 120 | |
| 121 | VALIDATE_SW_IF_INDEX (mp); |
| 122 | |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 123 | vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index); |
| 124 | if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE) |
| 125 | { |
| 126 | rv = VNET_API_ERROR_INVALID_VALUE; |
| 127 | goto bad_sw_if_index; |
| 128 | } |
| 129 | |
| 130 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, si->hw_if_index); |
| 131 | ethernet_interface_t *eif = ethernet_get_interface (em, si->hw_if_index); |
| 132 | |
| 133 | if (!eif) |
| 134 | { |
| 135 | rv = VNET_API_ERROR_FEATURE_DISABLED; |
| 136 | goto bad_sw_if_index; |
| 137 | } |
| 138 | |
| 139 | if (mtu < hi->min_supported_packet_bytes) |
| 140 | { |
| 141 | rv = VNET_API_ERROR_INVALID_VALUE; |
| 142 | goto bad_sw_if_index; |
| 143 | } |
| 144 | |
| 145 | if (mtu > hi->max_supported_packet_bytes) |
| 146 | { |
| 147 | rv = VNET_API_ERROR_INVALID_VALUE; |
| 148 | goto bad_sw_if_index; |
| 149 | } |
| 150 | |
| 151 | vnet_hw_interface_set_mtu (vnm, si->hw_if_index, mtu); |
Matus Fabian | d162f3d | 2016-12-05 01:05:35 -0800 | [diff] [blame] | 152 | |
| 153 | BAD_SW_IF_INDEX_LABEL; |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 154 | REPLY_MACRO (VL_API_HW_INTERFACE_SET_MTU_REPLY); |
| 155 | } |
| 156 | |
| 157 | static void |
| 158 | vl_api_sw_interface_set_mtu_t_handler (vl_api_sw_interface_set_mtu_t * mp) |
| 159 | { |
| 160 | vl_api_sw_interface_set_mtu_reply_t *rmp; |
| 161 | vnet_main_t *vnm = vnet_get_main (); |
| 162 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 163 | int rv = 0; |
| 164 | int i; |
| 165 | u32 per_protocol_mtu[VNET_N_MTU]; |
| 166 | |
| 167 | VALIDATE_SW_IF_INDEX (mp); |
| 168 | |
| 169 | for (i = 0; i < VNET_N_MTU; i++) |
Ole Troan | 33a5817 | 2019-09-04 09:12:29 +0200 | [diff] [blame] | 170 | { |
| 171 | per_protocol_mtu[i] = ntohl (mp->mtu[i]); |
| 172 | clib_warning ("MTU %u", per_protocol_mtu[i]); |
| 173 | } |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 174 | vnet_sw_interface_set_protocol_mtu (vnm, sw_if_index, per_protocol_mtu); |
| 175 | |
| 176 | BAD_SW_IF_INDEX_LABEL; |
Matus Fabian | d162f3d | 2016-12-05 01:05:35 -0800 | [diff] [blame] | 177 | REPLY_MACRO (VL_API_SW_INTERFACE_SET_MTU_REPLY); |
| 178 | } |
| 179 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 180 | static void |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 181 | vl_api_sw_interface_set_ip_directed_broadcast_t_handler |
| 182 | (vl_api_sw_interface_set_ip_directed_broadcast_t * mp) |
| 183 | { |
| 184 | vl_api_sw_interface_set_ip_directed_broadcast_reply_t *rmp; |
| 185 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 186 | int rv = 0; |
| 187 | |
| 188 | VALIDATE_SW_IF_INDEX (mp); |
| 189 | |
| 190 | vnet_sw_interface_ip_directed_broadcast (vnet_get_main (), |
| 191 | sw_if_index, mp->enable); |
| 192 | |
| 193 | BAD_SW_IF_INDEX_LABEL; |
| 194 | REPLY_MACRO (VL_API_SW_INTERFACE_SET_IP_DIRECTED_BROADCAST_REPLY); |
| 195 | } |
| 196 | |
| 197 | static void |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 198 | send_sw_interface_details (vpe_api_main_t * am, |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 199 | vl_api_registration_t * rp, |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 200 | vnet_sw_interface_t * swif, |
| 201 | u8 * interface_name, u32 context) |
| 202 | { |
Eyal Bari | 1c82cd4 | 2017-03-14 14:39:51 +0200 | [diff] [blame] | 203 | vnet_hw_interface_t *hi = |
| 204 | vnet_get_sup_hw_interface (am->vnet_main, swif->sw_if_index); |
Mohsin Kazmi | de312c2 | 2019-09-27 13:44:28 +0200 | [diff] [blame] | 205 | vnet_device_class_t *dev_class = |
| 206 | vnet_get_device_class (am->vnet_main, hi->dev_class_index); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 207 | |
Ole Troan | e5ff5a3 | 2019-08-23 22:55:18 +0200 | [diff] [blame] | 208 | vl_api_sw_interface_details_t *mp = vl_msg_api_alloc (sizeof (*mp)); |
| 209 | clib_memset (mp, 0, sizeof (*mp)); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 210 | mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_DETAILS); |
| 211 | mp->sw_if_index = ntohl (swif->sw_if_index); |
| 212 | mp->sup_sw_if_index = ntohl (swif->sup_sw_if_index); |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 213 | |
| 214 | mp->flags |= (swif->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? |
| 215 | IF_STATUS_API_FLAG_ADMIN_UP : 0; |
| 216 | mp->flags |= (hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ? |
| 217 | IF_STATUS_API_FLAG_LINK_UP : 0; |
| 218 | mp->flags = ntohl (mp->flags); |
| 219 | |
| 220 | switch (swif->type) |
| 221 | { |
| 222 | case VNET_SW_INTERFACE_TYPE_SUB: |
| 223 | mp->type = IF_API_TYPE_SUB; |
| 224 | break; |
| 225 | case VNET_SW_INTERFACE_TYPE_P2P: |
| 226 | mp->type = IF_API_TYPE_P2P; |
| 227 | break; |
| 228 | case VNET_SW_INTERFACE_TYPE_PIPE: |
| 229 | mp->type = IF_API_TYPE_PIPE; |
| 230 | break; |
| 231 | default: |
| 232 | mp->type = IF_API_TYPE_HARDWARE; |
| 233 | } |
| 234 | mp->type = ntohl (mp->type); |
| 235 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 236 | mp->link_duplex = ((hi->flags & VNET_HW_INTERFACE_FLAG_DUPLEX_MASK) >> |
| 237 | VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT); |
Ole Troan | 8ee7251 | 2018-11-20 11:03:10 +0100 | [diff] [blame] | 238 | mp->link_speed = ntohl (hi->link_speed); |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 239 | mp->link_mtu = ntohs (hi->max_packet_bytes); |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 240 | mp->mtu[VNET_MTU_L3] = ntohl (swif->mtu[VNET_MTU_L3]); |
| 241 | mp->mtu[VNET_MTU_IP4] = ntohl (swif->mtu[VNET_MTU_IP4]); |
| 242 | mp->mtu[VNET_MTU_IP6] = ntohl (swif->mtu[VNET_MTU_IP6]); |
| 243 | mp->mtu[VNET_MTU_MPLS] = ntohl (swif->mtu[VNET_MTU_MPLS]); |
| 244 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 245 | mp->context = context; |
| 246 | |
Ole Troan | e5ff5a3 | 2019-08-23 22:55:18 +0200 | [diff] [blame] | 247 | strncpy ((char *) mp->interface_name, |
| 248 | (char *) interface_name, ARRAY_LEN (mp->interface_name) - 1); |
| 249 | |
Mohsin Kazmi | de312c2 | 2019-09-27 13:44:28 +0200 | [diff] [blame] | 250 | if (dev_class && dev_class->name) |
| 251 | strncpy ((char *) mp->interface_dev_type, (char *) dev_class->name, |
| 252 | ARRAY_LEN (mp->interface_dev_type) - 1); |
| 253 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 254 | /* Send the L2 address for ethernet physical intfcs */ |
| 255 | if (swif->sup_sw_if_index == swif->sw_if_index |
| 256 | && hi->hw_class_index == ethernet_hw_interface_class.index) |
| 257 | { |
| 258 | ethernet_main_t *em = ethernet_get_main (am->vlib_main); |
| 259 | ethernet_interface_t *ei; |
| 260 | |
| 261 | ei = pool_elt_at_index (em->interfaces, hi->hw_instance); |
| 262 | ASSERT (sizeof (mp->l2_address) >= sizeof (ei->address)); |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 263 | mac_address_encode ((mac_address_t *) ei->address, mp->l2_address); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 264 | } |
| 265 | else if (swif->sup_sw_if_index != swif->sw_if_index) |
| 266 | { |
| 267 | vnet_sub_interface_t *sub = &swif->sub; |
| 268 | mp->sub_id = ntohl (sub->id); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 269 | mp->sub_number_of_tags = |
| 270 | sub->eth.flags.one_tag + sub->eth.flags.two_tags * 2; |
| 271 | mp->sub_outer_vlan_id = ntohs (sub->eth.outer_vlan_id); |
| 272 | mp->sub_inner_vlan_id = ntohs (sub->eth.inner_vlan_id); |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 273 | mp->sub_if_flags = |
| 274 | ntohl (sub->eth.raw_flags & SUB_IF_API_FLAG_MASK_VNET); |
Jon Loeliger | 9485d99 | 2019-11-08 15:05:23 -0600 | [diff] [blame] | 275 | } |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 276 | |
Jon Loeliger | 9485d99 | 2019-11-08 15:05:23 -0600 | [diff] [blame] | 277 | /* vlan tag rewrite data */ |
| 278 | u32 vtr_op = L2_VTR_DISABLED; |
| 279 | u32 vtr_push_dot1q = 0, vtr_tag1 = 0, vtr_tag2 = 0; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 280 | |
Jon Loeliger | 9485d99 | 2019-11-08 15:05:23 -0600 | [diff] [blame] | 281 | if (l2vtr_get (am->vlib_main, am->vnet_main, swif->sw_if_index, |
| 282 | &vtr_op, &vtr_push_dot1q, &vtr_tag1, &vtr_tag2) != 0) |
| 283 | { |
| 284 | // error - default to disabled |
| 285 | mp->vtr_op = ntohl (L2_VTR_DISABLED); |
| 286 | clib_warning ("cannot get vlan tag rewrite for sw_if_index %d", |
| 287 | swif->sw_if_index); |
| 288 | } |
| 289 | else |
| 290 | { |
| 291 | mp->vtr_op = ntohl (vtr_op); |
| 292 | mp->vtr_push_dot1q = ntohl (vtr_push_dot1q); |
| 293 | mp->vtr_tag1 = ntohl (vtr_tag1); |
| 294 | mp->vtr_tag2 = ntohl (vtr_tag2); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 295 | } |
| 296 | |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 297 | /* pbb tag rewrite data */ |
Gabriel Ganne | f7f2a9f | 2017-03-06 15:19:40 +0100 | [diff] [blame] | 298 | ethernet_header_t eth_hdr; |
Alexander Chernavin | fdea5c6 | 2019-04-26 10:43:09 -0400 | [diff] [blame] | 299 | u32 pbb_vtr_op = L2_VTR_DISABLED; |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 300 | u16 outer_tag = 0; |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 301 | u16 b_vlanid = 0; |
| 302 | u32 i_sid = 0; |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 303 | clib_memset (ð_hdr, 0, sizeof (eth_hdr)); |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 304 | |
| 305 | if (!l2pbb_get (am->vlib_main, am->vnet_main, swif->sw_if_index, |
Alexander Chernavin | fdea5c6 | 2019-04-26 10:43:09 -0400 | [diff] [blame] | 306 | &pbb_vtr_op, &outer_tag, ð_hdr, &b_vlanid, &i_sid)) |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 307 | { |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 308 | mp->sub_if_flags |= ntohl (SUB_IF_API_FLAG_DOT1AH); |
| 309 | mac_address_encode ((mac_address_t *) eth_hdr.dst_address, mp->b_dmac); |
| 310 | mac_address_encode ((mac_address_t *) eth_hdr.src_address, mp->b_smac); |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 311 | mp->b_vlanid = b_vlanid; |
| 312 | mp->i_sid = i_sid; |
| 313 | } |
| 314 | |
Ole Troan | e5ff5a3 | 2019-08-23 22:55:18 +0200 | [diff] [blame] | 315 | u8 *tag = vnet_get_sw_interface_tag (vnet_get_main (), swif->sw_if_index); |
| 316 | if (tag) |
| 317 | strncpy ((char *) mp->tag, (char *) tag, ARRAY_LEN (mp->tag) - 1); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 318 | |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 319 | vl_api_send_msg (rp, (u8 *) mp); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 320 | } |
| 321 | |
| 322 | static void |
| 323 | vl_api_sw_interface_dump_t_handler (vl_api_sw_interface_dump_t * mp) |
| 324 | { |
| 325 | vpe_api_main_t *am = &vpe_api_main; |
| 326 | vnet_sw_interface_t *swif; |
| 327 | vnet_interface_main_t *im = &am->vnet_main->interface_main; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 328 | vl_api_registration_t *rp; |
Paul Vinciguerra | 6407ba5 | 2019-04-04 13:22:20 -0700 | [diff] [blame] | 329 | u32 sw_if_index; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 330 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 331 | rp = vl_api_client_index_to_registration (mp->client_index); |
| 332 | |
| 333 | if (rp == 0) |
| 334 | { |
| 335 | clib_warning ("Client %d AWOL", mp->client_index); |
| 336 | return; |
| 337 | } |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 338 | |
Eyal Bari | 1c82cd4 | 2017-03-14 14:39:51 +0200 | [diff] [blame] | 339 | u8 *filter = 0, *name = 0; |
Paul Vinciguerra | 6407ba5 | 2019-04-04 13:22:20 -0700 | [diff] [blame] | 340 | sw_if_index = ntohl (mp->sw_if_index); |
| 341 | |
Vratko Polak | b8591ac | 2019-04-23 12:26:44 +0200 | [diff] [blame] | 342 | if (!mp->name_filter_valid && sw_if_index != ~0 && sw_if_index != 0) |
Paul Vinciguerra | 6407ba5 | 2019-04-04 13:22:20 -0700 | [diff] [blame] | 343 | { |
Vratko Polak | b8591ac | 2019-04-23 12:26:44 +0200 | [diff] [blame] | 344 | /* is it a valid sw_if_index? */ |
Neale Ranns | f5b0176 | 2019-06-14 08:26:21 +0000 | [diff] [blame] | 345 | if (!vnet_sw_if_index_is_api_valid (sw_if_index)) |
Paul Vinciguerra | 6407ba5 | 2019-04-04 13:22:20 -0700 | [diff] [blame] | 346 | return; |
| 347 | |
| 348 | swif = vec_elt_at_index (im->sw_interfaces, sw_if_index); |
| 349 | |
Paul Vinciguerra | 6407ba5 | 2019-04-04 13:22:20 -0700 | [diff] [blame] | 350 | vec_reset_length (name); |
| 351 | name = |
| 352 | format (name, "%U%c", format_vnet_sw_interface_name, am->vnet_main, |
| 353 | swif, 0); |
| 354 | send_sw_interface_details (am, rp, swif, name, mp->context); |
| 355 | vec_free (name); |
| 356 | return; |
| 357 | } |
| 358 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 359 | if (mp->name_filter_valid) |
| 360 | { |
Aleksander Djuric | c12eae7 | 2019-10-31 14:35:21 +0300 | [diff] [blame] | 361 | filter = vl_api_from_api_to_vec (&mp->name_filter); |
| 362 | vec_add1 (filter, 0); /* Ensure it's a C string for strcasecmp() */ |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 363 | } |
| 364 | |
Eyal Bari | 1c82cd4 | 2017-03-14 14:39:51 +0200 | [diff] [blame] | 365 | char *strcasestr (char *, char *); /* lnx hdr file botch */ |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 366 | /* *INDENT-OFF* */ |
| 367 | pool_foreach (swif, im->sw_interfaces, |
| 368 | ({ |
Eyal Bari | 1c82cd4 | 2017-03-14 14:39:51 +0200 | [diff] [blame] | 369 | if (!vnet_swif_is_api_visible (swif)) |
| 370 | continue; |
| 371 | vec_reset_length(name); |
| 372 | name = format (name, "%U%c", format_vnet_sw_interface_name, am->vnet_main, |
| 373 | swif, 0); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 374 | |
Eyal Bari | 1c82cd4 | 2017-03-14 14:39:51 +0200 | [diff] [blame] | 375 | if (filter && !strcasestr((char *) name, (char *) filter)) |
| 376 | continue; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 377 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 378 | send_sw_interface_details (am, rp, swif, name, mp->context); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 379 | })); |
| 380 | /* *INDENT-ON* */ |
| 381 | |
Eyal Bari | 1c82cd4 | 2017-03-14 14:39:51 +0200 | [diff] [blame] | 382 | vec_free (name); |
| 383 | vec_free (filter); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | static void |
| 387 | vl_api_sw_interface_add_del_address_t_handler |
| 388 | (vl_api_sw_interface_add_del_address_t * mp) |
| 389 | { |
| 390 | vlib_main_t *vm = vlib_get_main (); |
Jon Loeliger | 35ffa3e | 2017-09-28 13:54:16 -0500 | [diff] [blame] | 391 | vnet_main_t *vnm = vnet_get_main (); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 392 | vl_api_sw_interface_add_del_address_reply_t *rmp; |
| 393 | int rv = 0; |
| 394 | u32 is_del; |
Jon Loeliger | 35ffa3e | 2017-09-28 13:54:16 -0500 | [diff] [blame] | 395 | clib_error_t *error = 0; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 396 | ip46_address_t address; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 397 | |
| 398 | VALIDATE_SW_IF_INDEX (mp); |
| 399 | |
| 400 | is_del = mp->is_add == 0; |
Jon Loeliger | 35ffa3e | 2017-09-28 13:54:16 -0500 | [diff] [blame] | 401 | vnm->api_errno = 0; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 402 | |
| 403 | if (mp->del_all) |
| 404 | ip_del_all_interface_addresses (vm, ntohl (mp->sw_if_index)); |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 405 | else if (ip_address_decode (&mp->prefix.address, &address) == IP46_TYPE_IP6) |
Jon Loeliger | 35ffa3e | 2017-09-28 13:54:16 -0500 | [diff] [blame] | 406 | error = ip6_add_del_interface_address (vm, ntohl (mp->sw_if_index), |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 407 | (void *) &address.ip6, |
| 408 | mp->prefix.len, is_del); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 409 | else |
Jon Loeliger | 35ffa3e | 2017-09-28 13:54:16 -0500 | [diff] [blame] | 410 | error = ip4_add_del_interface_address (vm, ntohl (mp->sw_if_index), |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 411 | (void *) &address.ip4, |
| 412 | mp->prefix.len, is_del); |
Jon Loeliger | 35ffa3e | 2017-09-28 13:54:16 -0500 | [diff] [blame] | 413 | |
| 414 | if (error) |
| 415 | { |
| 416 | rv = vnm->api_errno; |
| 417 | clib_error_report (error); |
| 418 | goto done; |
| 419 | } |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 420 | |
| 421 | BAD_SW_IF_INDEX_LABEL; |
| 422 | |
Jon Loeliger | 35ffa3e | 2017-09-28 13:54:16 -0500 | [diff] [blame] | 423 | done: |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 424 | REPLY_MACRO (VL_API_SW_INTERFACE_ADD_DEL_ADDRESS_REPLY); |
| 425 | } |
| 426 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 427 | static void |
| 428 | vl_api_sw_interface_set_table_t_handler (vl_api_sw_interface_set_table_t * mp) |
| 429 | { |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 430 | vl_api_sw_interface_set_table_reply_t *rmp; |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 431 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 432 | u32 table_id = ntohl (mp->vrf_id); |
| 433 | int rv = 0; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 434 | |
| 435 | VALIDATE_SW_IF_INDEX (mp); |
| 436 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 437 | if (mp->is_ipv6) |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 438 | rv = ip_table_bind (FIB_PROTOCOL_IP6, sw_if_index, table_id, 1); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 439 | else |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 440 | rv = ip_table_bind (FIB_PROTOCOL_IP4, sw_if_index, table_id, 1); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 441 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 442 | BAD_SW_IF_INDEX_LABEL; |
| 443 | |
| 444 | REPLY_MACRO (VL_API_SW_INTERFACE_SET_TABLE_REPLY); |
| 445 | } |
| 446 | |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 447 | int |
| 448 | ip_table_bind (fib_protocol_t fproto, |
Neale Ranns | 6b3a8ef | 2017-09-11 10:34:33 -0700 | [diff] [blame] | 449 | u32 sw_if_index, u32 table_id, u8 is_api) |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 450 | { |
| 451 | CLIB_UNUSED (ip_interface_address_t * ia); |
| 452 | u32 fib_index, mfib_index; |
| 453 | fib_source_t src; |
| 454 | mfib_source_t msrc; |
| 455 | |
| 456 | if (is_api) |
| 457 | { |
| 458 | src = FIB_SOURCE_API; |
| 459 | msrc = MFIB_SOURCE_API; |
| 460 | } |
| 461 | else |
| 462 | { |
| 463 | src = FIB_SOURCE_CLI; |
| 464 | msrc = MFIB_SOURCE_CLI; |
| 465 | } |
| 466 | |
Florin Coras | d0a5972 | 2017-10-15 17:41:21 +0000 | [diff] [blame] | 467 | /* |
Florin Coras | d0a5972 | 2017-10-15 17:41:21 +0000 | [diff] [blame] | 468 | * This if table does not exist = error is what we want in the end. |
| 469 | */ |
Neale Ranns | 8f6dd32 | 2018-05-17 06:34:24 -0700 | [diff] [blame] | 470 | fib_index = fib_table_find (fproto, table_id); |
| 471 | mfib_index = mfib_table_find (fproto, table_id); |
Florin Coras | d0a5972 | 2017-10-15 17:41:21 +0000 | [diff] [blame] | 472 | |
Neale Ranns | 8f6dd32 | 2018-05-17 06:34:24 -0700 | [diff] [blame] | 473 | if (~0 == fib_index || ~0 == mfib_index) |
| 474 | { |
| 475 | return (VNET_API_ERROR_NO_SUCH_FIB); |
| 476 | } |
Florin Coras | d0a5972 | 2017-10-15 17:41:21 +0000 | [diff] [blame] | 477 | |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 478 | if (FIB_PROTOCOL_IP6 == fproto) |
| 479 | { |
| 480 | /* |
| 481 | * If the interface already has in IP address, then a change int |
| 482 | * VRF is not allowed. The IP address applied must first be removed. |
| 483 | * We do not do that automatically here, since VPP has no knowledge |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 484 | * of whether those subnets are valid in the destination VRF. |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 485 | */ |
| 486 | /* *INDENT-OFF* */ |
| 487 | foreach_ip_interface_address (&ip6_main.lookup_main, |
| 488 | ia, sw_if_index, |
| 489 | 1 /* honor unnumbered */ , |
| 490 | ({ |
| 491 | return (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE); |
| 492 | })); |
| 493 | /* *INDENT-ON* */ |
| 494 | |
| 495 | vec_validate (ip6_main.fib_index_by_sw_if_index, sw_if_index); |
| 496 | vec_validate (ip6_main.mfib_index_by_sw_if_index, sw_if_index); |
| 497 | |
| 498 | /* |
| 499 | * tell those that are interested that the binding is changing. |
| 500 | */ |
| 501 | ip6_table_bind_callback_t *cb; |
| 502 | vec_foreach (cb, ip6_main.table_bind_callbacks) |
| 503 | cb->function (&ip6_main, cb->function_opaque, |
| 504 | sw_if_index, |
| 505 | fib_index, |
| 506 | ip6_main.fib_index_by_sw_if_index[sw_if_index]); |
| 507 | |
| 508 | if (0 == table_id) |
| 509 | { |
| 510 | /* reset back to default */ |
| 511 | if (0 != ip6_main.fib_index_by_sw_if_index[sw_if_index]) |
| 512 | fib_table_unlock (ip6_main.fib_index_by_sw_if_index[sw_if_index], |
| 513 | FIB_PROTOCOL_IP6, src); |
| 514 | if (0 != ip6_main.mfib_index_by_sw_if_index[sw_if_index]) |
| 515 | mfib_table_unlock (ip6_main.mfib_index_by_sw_if_index |
| 516 | [sw_if_index], FIB_PROTOCOL_IP6, msrc); |
| 517 | |
| 518 | } |
| 519 | else |
| 520 | { |
| 521 | /* we need to lock the table now it's inuse */ |
| 522 | fib_table_lock (fib_index, FIB_PROTOCOL_IP6, src); |
| 523 | mfib_table_lock (mfib_index, FIB_PROTOCOL_IP6, msrc); |
| 524 | } |
| 525 | |
| 526 | ip6_main.fib_index_by_sw_if_index[sw_if_index] = fib_index; |
| 527 | ip6_main.mfib_index_by_sw_if_index[sw_if_index] = mfib_index; |
| 528 | } |
| 529 | else |
| 530 | { |
| 531 | /* |
| 532 | * If the interface already has in IP address, then a change int |
| 533 | * VRF is not allowed. The IP address applied must first be removed. |
| 534 | * We do not do that automatically here, since VPP has no knowledge |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 535 | * of whether those subnets are valid in the destination VRF. |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 536 | */ |
| 537 | /* *INDENT-OFF* */ |
| 538 | foreach_ip_interface_address (&ip4_main.lookup_main, |
| 539 | ia, sw_if_index, |
| 540 | 1 /* honor unnumbered */ , |
| 541 | ({ |
| 542 | return (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE); |
| 543 | })); |
| 544 | /* *INDENT-ON* */ |
| 545 | |
| 546 | vec_validate (ip4_main.fib_index_by_sw_if_index, sw_if_index); |
| 547 | vec_validate (ip4_main.mfib_index_by_sw_if_index, sw_if_index); |
| 548 | |
| 549 | /* |
| 550 | * tell those that are interested that the binding is changing. |
| 551 | */ |
| 552 | ip4_table_bind_callback_t *cb; |
| 553 | vec_foreach (cb, ip4_main.table_bind_callbacks) |
| 554 | cb->function (&ip4_main, cb->function_opaque, |
| 555 | sw_if_index, |
| 556 | fib_index, |
| 557 | ip4_main.fib_index_by_sw_if_index[sw_if_index]); |
| 558 | |
| 559 | if (0 == table_id) |
| 560 | { |
| 561 | /* reset back to default */ |
| 562 | if (0 != ip4_main.fib_index_by_sw_if_index[sw_if_index]) |
| 563 | fib_table_unlock (ip4_main.fib_index_by_sw_if_index[sw_if_index], |
| 564 | FIB_PROTOCOL_IP4, src); |
| 565 | if (0 != ip4_main.mfib_index_by_sw_if_index[sw_if_index]) |
| 566 | mfib_table_unlock (ip4_main.mfib_index_by_sw_if_index |
| 567 | [sw_if_index], FIB_PROTOCOL_IP4, msrc); |
| 568 | |
| 569 | } |
| 570 | else |
| 571 | { |
| 572 | /* we need to lock the table now it's inuse */ |
| 573 | fib_index = fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4, |
| 574 | table_id, src); |
| 575 | |
| 576 | mfib_index = mfib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4, |
| 577 | table_id, msrc); |
| 578 | } |
| 579 | |
| 580 | ip4_main.fib_index_by_sw_if_index[sw_if_index] = fib_index; |
| 581 | ip4_main.mfib_index_by_sw_if_index[sw_if_index] = mfib_index; |
| 582 | } |
| 583 | |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 584 | return (0); |
| 585 | } |
| 586 | |
Juraj Sloboda | dfc1923 | 2016-12-05 13:20:37 +0100 | [diff] [blame] | 587 | static void |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 588 | send_sw_interface_get_table_reply (vl_api_registration_t * reg, |
Juraj Sloboda | dfc1923 | 2016-12-05 13:20:37 +0100 | [diff] [blame] | 589 | u32 context, int retval, u32 vrf_id) |
| 590 | { |
| 591 | vl_api_sw_interface_get_table_reply_t *mp; |
| 592 | |
| 593 | mp = vl_msg_api_alloc (sizeof (*mp)); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 594 | clib_memset (mp, 0, sizeof (*mp)); |
Juraj Sloboda | dfc1923 | 2016-12-05 13:20:37 +0100 | [diff] [blame] | 595 | mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_GET_TABLE_REPLY); |
| 596 | mp->context = context; |
| 597 | mp->retval = htonl (retval); |
| 598 | mp->vrf_id = htonl (vrf_id); |
| 599 | |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 600 | vl_api_send_msg (reg, (u8 *) mp); |
Juraj Sloboda | dfc1923 | 2016-12-05 13:20:37 +0100 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | static void |
| 604 | vl_api_sw_interface_get_table_t_handler (vl_api_sw_interface_get_table_t * mp) |
| 605 | { |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 606 | vl_api_registration_t *reg; |
Juraj Sloboda | dfc1923 | 2016-12-05 13:20:37 +0100 | [diff] [blame] | 607 | fib_table_t *fib_table = 0; |
| 608 | u32 sw_if_index = ~0; |
| 609 | u32 fib_index = ~0; |
| 610 | u32 table_id = ~0; |
| 611 | fib_protocol_t fib_proto = FIB_PROTOCOL_IP4; |
| 612 | int rv = 0; |
| 613 | |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 614 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 615 | if (!reg) |
Juraj Sloboda | dfc1923 | 2016-12-05 13:20:37 +0100 | [diff] [blame] | 616 | return; |
| 617 | |
| 618 | VALIDATE_SW_IF_INDEX (mp); |
| 619 | |
| 620 | sw_if_index = ntohl (mp->sw_if_index); |
| 621 | |
| 622 | if (mp->is_ipv6) |
| 623 | fib_proto = FIB_PROTOCOL_IP6; |
| 624 | |
| 625 | fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index); |
| 626 | if (fib_index != ~0) |
| 627 | { |
| 628 | fib_table = fib_table_get (fib_index, fib_proto); |
| 629 | table_id = fib_table->ft_table_id; |
| 630 | } |
| 631 | |
| 632 | BAD_SW_IF_INDEX_LABEL; |
| 633 | |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 634 | send_sw_interface_get_table_reply (reg, mp->context, rv, table_id); |
Juraj Sloboda | dfc1923 | 2016-12-05 13:20:37 +0100 | [diff] [blame] | 635 | } |
| 636 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 637 | static void vl_api_sw_interface_set_unnumbered_t_handler |
| 638 | (vl_api_sw_interface_set_unnumbered_t * mp) |
| 639 | { |
| 640 | vl_api_sw_interface_set_unnumbered_reply_t *rmp; |
| 641 | int rv = 0; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 642 | vnet_main_t *vnm = vnet_get_main (); |
Eyal Bari | 1c82cd4 | 2017-03-14 14:39:51 +0200 | [diff] [blame] | 643 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 644 | u32 unnumbered_sw_if_index = ntohl (mp->unnumbered_sw_if_index); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 645 | |
| 646 | /* |
| 647 | * The API message field names are backwards from |
| 648 | * the underlying data structure names. |
| 649 | * It's not worth changing them now. |
| 650 | */ |
Eyal Bari | 1c82cd4 | 2017-03-14 14:39:51 +0200 | [diff] [blame] | 651 | if (!vnet_sw_interface_is_api_valid (vnm, unnumbered_sw_if_index)) |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 652 | { |
| 653 | rv = VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 654 | goto done; |
| 655 | } |
| 656 | |
| 657 | /* Only check the "use loop0" field when setting the binding */ |
Eyal Bari | 1c82cd4 | 2017-03-14 14:39:51 +0200 | [diff] [blame] | 658 | if (mp->is_add && !vnet_sw_interface_is_api_valid (vnm, sw_if_index)) |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 659 | { |
| 660 | rv = VNET_API_ERROR_INVALID_SW_IF_INDEX_2; |
| 661 | goto done; |
| 662 | } |
| 663 | |
Neale Ranns | 2ae2bc5 | 2018-03-16 03:22:39 -0700 | [diff] [blame] | 664 | vnet_sw_interface_update_unnumbered (unnumbered_sw_if_index, |
| 665 | sw_if_index, mp->is_add); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 666 | done: |
| 667 | REPLY_MACRO (VL_API_SW_INTERFACE_SET_UNNUMBERED_REPLY); |
| 668 | } |
| 669 | |
| 670 | static void |
| 671 | vl_api_sw_interface_clear_stats_t_handler (vl_api_sw_interface_clear_stats_t * |
| 672 | mp) |
| 673 | { |
| 674 | vl_api_sw_interface_clear_stats_reply_t *rmp; |
| 675 | |
| 676 | vnet_main_t *vnm = vnet_get_main (); |
| 677 | vnet_interface_main_t *im = &vnm->interface_main; |
| 678 | vlib_simple_counter_main_t *sm; |
| 679 | vlib_combined_counter_main_t *cm; |
Dave Barach | 8fdde3c | 2019-05-17 10:46:40 -0400 | [diff] [blame] | 680 | int j, n_counters; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 681 | int rv = 0; |
| 682 | |
| 683 | if (mp->sw_if_index != ~0) |
| 684 | VALIDATE_SW_IF_INDEX (mp); |
| 685 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 686 | n_counters = vec_len (im->combined_sw_if_counters); |
| 687 | |
| 688 | for (j = 0; j < n_counters; j++) |
| 689 | { |
Dave Barach | 8fdde3c | 2019-05-17 10:46:40 -0400 | [diff] [blame] | 690 | im = &vnm->interface_main; |
| 691 | cm = im->combined_sw_if_counters + j; |
| 692 | if (mp->sw_if_index == (u32) ~ 0) |
| 693 | vlib_clear_combined_counters (cm); |
| 694 | else |
| 695 | vlib_zero_combined_counter (cm, ntohl (mp->sw_if_index)); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 696 | } |
| 697 | |
| 698 | n_counters = vec_len (im->sw_if_counters); |
| 699 | |
| 700 | for (j = 0; j < n_counters; j++) |
| 701 | { |
Dave Barach | 8fdde3c | 2019-05-17 10:46:40 -0400 | [diff] [blame] | 702 | im = &vnm->interface_main; |
| 703 | sm = im->sw_if_counters + j; |
| 704 | if (mp->sw_if_index == (u32) ~ 0) |
| 705 | vlib_clear_simple_counters (sm); |
| 706 | else |
| 707 | vlib_zero_simple_counter (sm, ntohl (mp->sw_if_index)); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 708 | } |
| 709 | |
| 710 | BAD_SW_IF_INDEX_LABEL; |
| 711 | |
| 712 | REPLY_MACRO (VL_API_SW_INTERFACE_CLEAR_STATS_REPLY); |
| 713 | } |
| 714 | |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 715 | /* |
| 716 | * Events used for sw_interface_events |
| 717 | */ |
| 718 | enum api_events |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 719 | { |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 720 | API_LINK_STATE_UP_EVENT = 1 << 1, |
| 721 | API_LINK_STATE_DOWN_EVENT = 1 << 2, |
| 722 | API_ADMIN_UP_EVENT = 1 << 3, |
| 723 | API_ADMIN_DOWN_EVENT = 1 << 4, |
| 724 | API_SW_INTERFACE_ADD_EVENT = 1 << 5, |
| 725 | API_SW_INTERFACE_DEL_EVENT = 1 << 6, |
| 726 | }; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 727 | |
| 728 | static void |
Neale Ranns | a07bd70 | 2017-08-07 07:53:49 -0700 | [diff] [blame] | 729 | send_sw_interface_event (vpe_api_main_t * am, |
Neale Ranns | d292ab1 | 2017-08-15 12:29:48 -0700 | [diff] [blame] | 730 | vpe_client_registration_t * reg, |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 731 | vl_api_registration_t * vl_reg, |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 732 | u32 sw_if_index, enum api_events events) |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 733 | { |
Neale Ranns | a07bd70 | 2017-08-07 07:53:49 -0700 | [diff] [blame] | 734 | vl_api_sw_interface_event_t *mp; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 735 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 736 | mp = vl_msg_api_alloc (sizeof (*mp)); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 737 | clib_memset (mp, 0, sizeof (*mp)); |
Neale Ranns | a07bd70 | 2017-08-07 07:53:49 -0700 | [diff] [blame] | 738 | mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_EVENT); |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 739 | mp->sw_if_index = ntohl (sw_if_index); |
Neale Ranns | d292ab1 | 2017-08-15 12:29:48 -0700 | [diff] [blame] | 740 | mp->client_index = reg->client_index; |
| 741 | mp->pid = reg->client_pid; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 742 | mp->flags = 0; |
| 743 | mp->flags |= (events & API_ADMIN_UP_EVENT) ? |
| 744 | IF_STATUS_API_FLAG_ADMIN_UP : 0; |
| 745 | mp->flags |= (events & API_LINK_STATE_UP_EVENT) ? |
| 746 | IF_STATUS_API_FLAG_LINK_UP : 0; |
| 747 | mp->flags = ntohl (mp->flags); |
| 748 | mp->deleted = events & API_SW_INTERFACE_DEL_EVENT ? true : false; |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 749 | vl_api_send_msg (vl_reg, (u8 *) mp); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 750 | } |
| 751 | |
| 752 | static uword |
| 753 | link_state_process (vlib_main_t * vm, |
| 754 | vlib_node_runtime_t * rt, vlib_frame_t * f) |
| 755 | { |
| 756 | vpe_api_main_t *vam = &vpe_api_main; |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 757 | uword *event_by_sw_if_index = 0; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 758 | vpe_client_registration_t *reg; |
| 759 | int i; |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 760 | vl_api_registration_t *vl_reg; |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 761 | uword event_type; |
| 762 | uword *event_data = 0; |
| 763 | u32 sw_if_index; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 764 | |
| 765 | vam->link_state_process_up = 1; |
| 766 | |
| 767 | while (1) |
| 768 | { |
| 769 | vlib_process_wait_for_event (vm); |
| 770 | |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 771 | /* Batch up events */ |
| 772 | while ((event_type = vlib_process_get_events (vm, &event_data)) != ~0) |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 773 | { |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 774 | for (i = 0; i < vec_len (event_data); i++) |
| 775 | { |
| 776 | sw_if_index = event_data[i]; |
| 777 | vec_validate_init_empty (event_by_sw_if_index, sw_if_index, 0); |
| 778 | event_by_sw_if_index[sw_if_index] |= event_type; |
| 779 | } |
| 780 | vec_reset_length (event_data); |
| 781 | } |
| 782 | |
| 783 | for (i = 0; i < vec_len (event_by_sw_if_index); i++) |
| 784 | { |
| 785 | if (event_by_sw_if_index[i] == 0) |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 786 | continue; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 787 | |
| 788 | /* *INDENT-OFF* */ |
| 789 | pool_foreach(reg, vam->interface_events_registrations, |
| 790 | ({ |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 791 | vl_reg = vl_api_client_index_to_registration (reg->client_index); |
| 792 | if (vl_reg) |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 793 | send_sw_interface_event (vam, reg, vl_reg, i, event_by_sw_if_index[i]); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 794 | })); |
| 795 | /* *INDENT-ON* */ |
| 796 | } |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 797 | vec_reset_length (event_by_sw_if_index); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 798 | } |
| 799 | |
| 800 | return 0; |
| 801 | } |
| 802 | |
| 803 | static clib_error_t *link_up_down_function (vnet_main_t * vm, u32 hw_if_index, |
| 804 | u32 flags); |
| 805 | static clib_error_t *admin_up_down_function (vnet_main_t * vm, |
| 806 | u32 hw_if_index, u32 flags); |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 807 | static clib_error_t *sw_interface_add_del_function (vnet_main_t * vm, |
| 808 | u32 sw_if_index, |
| 809 | u32 flags); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 810 | |
| 811 | /* *INDENT-OFF* */ |
| 812 | VLIB_REGISTER_NODE (link_state_process_node,static) = { |
| 813 | .function = link_state_process, |
| 814 | .type = VLIB_NODE_TYPE_PROCESS, |
| 815 | .name = "vpe-link-state-process", |
| 816 | }; |
| 817 | /* *INDENT-ON* */ |
| 818 | |
| 819 | VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (admin_up_down_function); |
| 820 | VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION (link_up_down_function); |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 821 | VNET_SW_INTERFACE_ADD_DEL_FUNCTION (sw_interface_add_del_function); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 822 | |
| 823 | static clib_error_t * |
| 824 | link_up_down_function (vnet_main_t * vm, u32 hw_if_index, u32 flags) |
| 825 | { |
| 826 | vpe_api_main_t *vam = &vpe_api_main; |
| 827 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vm, hw_if_index); |
| 828 | |
| 829 | if (vam->link_state_process_up) |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 830 | { |
Alexander Chernavin | aa27dcb | 2019-11-06 09:58:18 -0500 | [diff] [blame] | 831 | enum api_events event = ((flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ? |
| 832 | API_LINK_STATE_UP_EVENT : |
| 833 | API_LINK_STATE_DOWN_EVENT); |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 834 | vlib_process_signal_event (vam->vlib_main, |
| 835 | link_state_process_node.index, event, |
| 836 | hi->sw_if_index); |
| 837 | } |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 838 | return 0; |
| 839 | } |
| 840 | |
| 841 | static clib_error_t * |
| 842 | admin_up_down_function (vnet_main_t * vm, u32 sw_if_index, u32 flags) |
| 843 | { |
| 844 | vpe_api_main_t *vam = &vpe_api_main; |
| 845 | |
| 846 | /* |
| 847 | * Note: it's perfectly fair to set a subif admin up / admin down. |
| 848 | * Note the subtle distinction between this routine and the previous |
| 849 | * routine. |
| 850 | */ |
| 851 | if (vam->link_state_process_up) |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 852 | { |
Alexander Chernavin | aa27dcb | 2019-11-06 09:58:18 -0500 | [diff] [blame] | 853 | enum api_events event = ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? |
| 854 | API_ADMIN_UP_EVENT : API_ADMIN_DOWN_EVENT); |
Ole Troan | 2e1c896 | 2019-04-10 09:44:23 +0200 | [diff] [blame] | 855 | vlib_process_signal_event (vam->vlib_main, |
| 856 | link_state_process_node.index, event, |
| 857 | sw_if_index); |
| 858 | } |
| 859 | return 0; |
| 860 | } |
| 861 | |
| 862 | static clib_error_t * |
| 863 | sw_interface_add_del_function (vnet_main_t * vm, u32 sw_if_index, u32 flags) |
| 864 | { |
| 865 | vpe_api_main_t *vam = &vpe_api_main; |
| 866 | |
| 867 | if (vam->link_state_process_up) |
| 868 | { |
| 869 | enum api_events event = |
| 870 | flags ? API_SW_INTERFACE_ADD_EVENT : API_SW_INTERFACE_DEL_EVENT; |
| 871 | vlib_process_signal_event (vam->vlib_main, |
| 872 | link_state_process_node.index, event, |
| 873 | sw_if_index); |
| 874 | } |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 875 | return 0; |
| 876 | } |
| 877 | |
| 878 | static void vl_api_sw_interface_tag_add_del_t_handler |
| 879 | (vl_api_sw_interface_tag_add_del_t * mp) |
| 880 | { |
| 881 | vnet_main_t *vnm = vnet_get_main (); |
| 882 | vl_api_sw_interface_tag_add_del_reply_t *rmp; |
| 883 | int rv = 0; |
| 884 | u8 *tag; |
| 885 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 886 | |
| 887 | VALIDATE_SW_IF_INDEX (mp); |
| 888 | |
| 889 | if (mp->is_add) |
| 890 | { |
Ole Troan | e5ff5a3 | 2019-08-23 22:55:18 +0200 | [diff] [blame] | 891 | if (mp->tag[0] == 0) |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 892 | { |
| 893 | rv = VNET_API_ERROR_INVALID_VALUE; |
| 894 | goto out; |
| 895 | } |
| 896 | |
Ole Troan | e5ff5a3 | 2019-08-23 22:55:18 +0200 | [diff] [blame] | 897 | mp->tag[ARRAY_LEN (mp->tag) - 1] = 0; |
| 898 | tag = format (0, "%s%c", mp->tag, 0); |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 899 | vnet_set_sw_interface_tag (vnm, tag, sw_if_index); |
| 900 | } |
| 901 | else |
| 902 | vnet_clear_sw_interface_tag (vnm, sw_if_index); |
| 903 | |
| 904 | BAD_SW_IF_INDEX_LABEL; |
| 905 | out: |
| 906 | REPLY_MACRO (VL_API_SW_INTERFACE_TAG_ADD_DEL_REPLY); |
| 907 | } |
| 908 | |
Matthew Smith | e0792fd | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 909 | static void vl_api_sw_interface_add_del_mac_address_t_handler |
| 910 | (vl_api_sw_interface_add_del_mac_address_t * mp) |
| 911 | { |
| 912 | vl_api_sw_interface_add_del_mac_address_reply_t *rmp; |
| 913 | vnet_main_t *vnm = vnet_get_main (); |
| 914 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 915 | vnet_hw_interface_t *hi; |
| 916 | clib_error_t *error; |
| 917 | int rv = 0; |
| 918 | |
| 919 | VALIDATE_SW_IF_INDEX (mp); |
| 920 | |
| 921 | /* for subifs, the MAC should be changed on the actual hw if */ |
| 922 | hi = vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 923 | error = vnet_hw_interface_add_del_mac_address (vnm, hi->hw_if_index, |
| 924 | mp->addr, mp->is_add); |
| 925 | if (error) |
| 926 | { |
| 927 | rv = VNET_API_ERROR_UNIMPLEMENTED; |
| 928 | clib_error_report (error); |
| 929 | goto out; |
| 930 | } |
| 931 | |
| 932 | BAD_SW_IF_INDEX_LABEL; |
| 933 | out: |
| 934 | REPLY_MACRO (VL_API_SW_INTERFACE_ADD_DEL_MAC_ADDRESS_REPLY); |
| 935 | } |
| 936 | |
Jon Loeliger | 10c273b | 2017-03-30 08:39:33 -0500 | [diff] [blame] | 937 | static void vl_api_sw_interface_set_mac_address_t_handler |
| 938 | (vl_api_sw_interface_set_mac_address_t * mp) |
| 939 | { |
| 940 | vl_api_sw_interface_set_mac_address_reply_t *rmp; |
| 941 | vnet_main_t *vnm = vnet_get_main (); |
| 942 | u32 sw_if_index = ntohl (mp->sw_if_index); |
Neale Ranns | d867a7c | 2017-10-04 02:29:07 -0700 | [diff] [blame] | 943 | vnet_sw_interface_t *si; |
Jon Loeliger | 10c273b | 2017-03-30 08:39:33 -0500 | [diff] [blame] | 944 | clib_error_t *error; |
| 945 | int rv = 0; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 946 | mac_address_t mac; |
Jon Loeliger | 10c273b | 2017-03-30 08:39:33 -0500 | [diff] [blame] | 947 | |
| 948 | VALIDATE_SW_IF_INDEX (mp); |
| 949 | |
Neale Ranns | d867a7c | 2017-10-04 02:29:07 -0700 | [diff] [blame] | 950 | si = vnet_get_sw_interface (vnm, sw_if_index); |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 951 | mac_address_decode (mp->mac_address, &mac); |
| 952 | error = |
| 953 | vnet_hw_interface_change_mac_address (vnm, si->hw_if_index, (u8 *) & mac); |
Jon Loeliger | 10c273b | 2017-03-30 08:39:33 -0500 | [diff] [blame] | 954 | if (error) |
| 955 | { |
| 956 | rv = VNET_API_ERROR_UNIMPLEMENTED; |
| 957 | clib_error_report (error); |
| 958 | goto out; |
| 959 | } |
| 960 | |
| 961 | BAD_SW_IF_INDEX_LABEL; |
| 962 | out: |
| 963 | REPLY_MACRO (VL_API_SW_INTERFACE_SET_MAC_ADDRESS_REPLY); |
| 964 | } |
| 965 | |
Juraj Sloboda | c037423 | 2018-02-01 15:18:49 +0100 | [diff] [blame] | 966 | static void vl_api_sw_interface_get_mac_address_t_handler |
| 967 | (vl_api_sw_interface_get_mac_address_t * mp) |
| 968 | { |
| 969 | vl_api_sw_interface_get_mac_address_reply_t *rmp; |
| 970 | vl_api_registration_t *reg; |
| 971 | vnet_main_t *vnm = vnet_get_main (); |
| 972 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 973 | vnet_sw_interface_t *si; |
| 974 | ethernet_interface_t *eth_if = 0; |
| 975 | int rv = 0; |
| 976 | |
| 977 | VALIDATE_SW_IF_INDEX (mp); |
| 978 | |
| 979 | si = vnet_get_sup_sw_interface (vnm, sw_if_index); |
| 980 | if (si->type == VNET_SW_INTERFACE_TYPE_HARDWARE) |
| 981 | eth_if = ethernet_get_interface (ðernet_main, si->hw_if_index); |
| 982 | |
| 983 | BAD_SW_IF_INDEX_LABEL; |
| 984 | |
| 985 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 986 | if (!reg) |
| 987 | return; |
| 988 | rmp = vl_msg_api_alloc (sizeof (*rmp)); |
| 989 | rmp->_vl_msg_id = htons (VL_API_SW_INTERFACE_GET_MAC_ADDRESS_REPLY); |
| 990 | rmp->context = mp->context; |
| 991 | rmp->retval = htonl (rv); |
| 992 | if (!rv && eth_if) |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 993 | mac_address_encode ((mac_address_t *) eth_if->address, rmp->mac_address); |
Juraj Sloboda | c037423 | 2018-02-01 15:18:49 +0100 | [diff] [blame] | 994 | vl_api_send_msg (reg, (u8 *) rmp); |
| 995 | } |
| 996 | |
Steven | ad8015b | 2017-10-29 22:10:46 -0700 | [diff] [blame] | 997 | static void vl_api_sw_interface_set_rx_mode_t_handler |
| 998 | (vl_api_sw_interface_set_rx_mode_t * mp) |
| 999 | { |
| 1000 | vl_api_sw_interface_set_rx_mode_reply_t *rmp; |
| 1001 | vnet_main_t *vnm = vnet_get_main (); |
| 1002 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 1003 | vnet_sw_interface_t *si; |
| 1004 | clib_error_t *error; |
| 1005 | int rv = 0; |
| 1006 | |
| 1007 | VALIDATE_SW_IF_INDEX (mp); |
| 1008 | |
| 1009 | si = vnet_get_sw_interface (vnm, sw_if_index); |
Mohsin Kazmi | 54f7c51 | 2018-08-23 18:28:11 +0200 | [diff] [blame] | 1010 | if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE) |
| 1011 | { |
| 1012 | rv = VNET_API_ERROR_INVALID_VALUE; |
| 1013 | goto bad_sw_if_index; |
| 1014 | } |
| 1015 | |
Steven | ad8015b | 2017-10-29 22:10:46 -0700 | [diff] [blame] | 1016 | error = set_hw_interface_change_rx_mode (vnm, si->hw_if_index, |
| 1017 | mp->queue_id_valid, |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 1018 | ntohl (mp->queue_id), |
| 1019 | (vnet_hw_interface_rx_mode) |
| 1020 | mp->mode); |
| 1021 | |
Steven | ad8015b | 2017-10-29 22:10:46 -0700 | [diff] [blame] | 1022 | if (error) |
| 1023 | { |
| 1024 | rv = VNET_API_ERROR_UNIMPLEMENTED; |
| 1025 | clib_error_report (error); |
| 1026 | goto out; |
| 1027 | } |
| 1028 | |
| 1029 | BAD_SW_IF_INDEX_LABEL; |
| 1030 | out: |
| 1031 | REPLY_MACRO (VL_API_SW_INTERFACE_SET_RX_MODE_REPLY); |
| 1032 | } |
| 1033 | |
Mohsin Kazmi | f0b42f4 | 2018-09-10 18:11:00 +0200 | [diff] [blame] | 1034 | static void |
| 1035 | send_interface_rx_placement_details (vpe_api_main_t * am, |
| 1036 | vl_api_registration_t * rp, |
| 1037 | u32 sw_if_index, u32 worker_id, |
| 1038 | u32 queue_id, u8 mode, u32 context) |
| 1039 | { |
| 1040 | vl_api_sw_interface_rx_placement_details_t *mp; |
| 1041 | mp = vl_msg_api_alloc (sizeof (*mp)); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 1042 | clib_memset (mp, 0, sizeof (*mp)); |
Mohsin Kazmi | f0b42f4 | 2018-09-10 18:11:00 +0200 | [diff] [blame] | 1043 | |
| 1044 | mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_RX_PLACEMENT_DETAILS); |
| 1045 | mp->sw_if_index = htonl (sw_if_index); |
| 1046 | mp->queue_id = htonl (queue_id); |
| 1047 | mp->worker_id = htonl (worker_id); |
| 1048 | mp->mode = mode; |
| 1049 | mp->context = context; |
| 1050 | |
| 1051 | vl_api_send_msg (rp, (u8 *) mp); |
| 1052 | } |
| 1053 | |
| 1054 | static void vl_api_sw_interface_rx_placement_dump_t_handler |
| 1055 | (vl_api_sw_interface_rx_placement_dump_t * mp) |
| 1056 | { |
| 1057 | vnet_main_t *vnm = vnet_get_main (); |
| 1058 | vpe_api_main_t *am = &vpe_api_main; |
| 1059 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 1060 | vl_api_registration_t *reg; |
| 1061 | |
| 1062 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 1063 | if (!reg) |
| 1064 | return; |
| 1065 | |
| 1066 | if (sw_if_index == ~0) |
| 1067 | { |
| 1068 | vnet_device_input_runtime_t *rt; |
| 1069 | vnet_device_and_queue_t *dq; |
| 1070 | vlib_node_t *pn = vlib_get_node_by_name (am->vlib_main, |
| 1071 | (u8 *) "device-input"); |
| 1072 | uword si; |
| 1073 | int index = 0; |
| 1074 | |
| 1075 | /* *INDENT-OFF* */ |
| 1076 | foreach_vlib_main (({ |
| 1077 | clib_bitmap_foreach (si, pn->sibling_bitmap, |
| 1078 | ({ |
| 1079 | rt = vlib_node_get_runtime_data (this_vlib_main, si); |
| 1080 | vec_foreach (dq, rt->devices_and_queues) |
| 1081 | { |
| 1082 | vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, |
| 1083 | dq->hw_if_index); |
| 1084 | send_interface_rx_placement_details (am, reg, hw->sw_if_index, index, |
| 1085 | dq->queue_id, dq->mode, mp->context); |
| 1086 | } |
| 1087 | })); |
| 1088 | index++; |
| 1089 | })); |
| 1090 | /* *INDENT-ON* */ |
| 1091 | } |
| 1092 | else |
| 1093 | { |
| 1094 | int i; |
| 1095 | vnet_sw_interface_t *si; |
| 1096 | |
| 1097 | if (!vnet_sw_if_index_is_api_valid (sw_if_index)) |
| 1098 | { |
| 1099 | clib_warning ("sw_if_index %u does not exist", sw_if_index); |
| 1100 | goto bad_sw_if_index; |
| 1101 | } |
| 1102 | |
| 1103 | si = vnet_get_sw_interface (vnm, sw_if_index); |
| 1104 | if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE) |
| 1105 | { |
| 1106 | clib_warning ("interface type is not HARDWARE! P2P, PIPE and SUB" |
| 1107 | " interfaces are not supported"); |
| 1108 | goto bad_sw_if_index; |
| 1109 | } |
| 1110 | |
| 1111 | vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, si->hw_if_index); |
| 1112 | |
| 1113 | for (i = 0; i < vec_len (hw->dq_runtime_index_by_queue); i++) |
| 1114 | { |
| 1115 | send_interface_rx_placement_details (am, reg, hw->sw_if_index, |
| 1116 | hw->input_node_thread_index_by_queue |
| 1117 | [i], i, |
| 1118 | hw->rx_mode_by_queue[i], |
| 1119 | mp->context); |
| 1120 | } |
| 1121 | } |
| 1122 | |
| 1123 | BAD_SW_IF_INDEX_LABEL; |
| 1124 | } |
| 1125 | |
Mohsin Kazmi | 54f7c51 | 2018-08-23 18:28:11 +0200 | [diff] [blame] | 1126 | static void vl_api_sw_interface_set_rx_placement_t_handler |
| 1127 | (vl_api_sw_interface_set_rx_placement_t * mp) |
| 1128 | { |
| 1129 | vl_api_sw_interface_set_rx_placement_reply_t *rmp; |
| 1130 | vnet_main_t *vnm = vnet_get_main (); |
| 1131 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 1132 | vnet_sw_interface_t *si; |
| 1133 | clib_error_t *error = 0; |
| 1134 | int rv = 0; |
| 1135 | |
| 1136 | VALIDATE_SW_IF_INDEX (mp); |
| 1137 | |
| 1138 | si = vnet_get_sw_interface (vnm, sw_if_index); |
| 1139 | if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE) |
| 1140 | { |
| 1141 | rv = VNET_API_ERROR_INVALID_VALUE; |
| 1142 | goto bad_sw_if_index; |
| 1143 | } |
| 1144 | |
| 1145 | error = set_hw_interface_rx_placement (si->hw_if_index, |
| 1146 | ntohl (mp->queue_id), |
| 1147 | ntohl (mp->worker_id), mp->is_main); |
| 1148 | if (error) |
| 1149 | { |
| 1150 | rv = VNET_API_ERROR_UNIMPLEMENTED; |
| 1151 | clib_error_report (error); |
| 1152 | goto out; |
| 1153 | } |
| 1154 | |
| 1155 | BAD_SW_IF_INDEX_LABEL; |
| 1156 | out: |
| 1157 | REPLY_MACRO (VL_API_SW_INTERFACE_SET_RX_PLACEMENT_REPLY); |
| 1158 | } |
| 1159 | |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1160 | static void |
| 1161 | vl_api_create_vlan_subif_t_handler (vl_api_create_vlan_subif_t * mp) |
| 1162 | { |
| 1163 | vl_api_create_vlan_subif_reply_t *rmp; |
| 1164 | vnet_main_t *vnm = vnet_get_main (); |
| 1165 | u32 sw_if_index = (u32) ~ 0; |
| 1166 | vnet_hw_interface_t *hi; |
| 1167 | int rv = 0; |
| 1168 | u32 id; |
| 1169 | vnet_sw_interface_t template; |
| 1170 | uword *p; |
| 1171 | vnet_interface_main_t *im = &vnm->interface_main; |
| 1172 | u64 sup_and_sub_key; |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 1173 | vl_api_registration_t *reg; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1174 | clib_error_t *error; |
| 1175 | |
| 1176 | VALIDATE_SW_IF_INDEX (mp); |
| 1177 | |
| 1178 | hi = vnet_get_sup_hw_interface (vnm, ntohl (mp->sw_if_index)); |
| 1179 | |
| 1180 | if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE) |
| 1181 | { |
| 1182 | rv = VNET_API_ERROR_BOND_SLAVE_NOT_ALLOWED; |
| 1183 | goto out; |
| 1184 | } |
| 1185 | |
| 1186 | id = ntohl (mp->vlan_id); |
| 1187 | if (id == 0 || id > 4095) |
| 1188 | { |
| 1189 | rv = VNET_API_ERROR_INVALID_VLAN; |
| 1190 | goto out; |
| 1191 | } |
| 1192 | |
| 1193 | sup_and_sub_key = ((u64) (hi->sw_if_index) << 32) | (u64) id; |
| 1194 | |
| 1195 | p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key); |
| 1196 | if (p) |
| 1197 | { |
| 1198 | rv = VNET_API_ERROR_VLAN_ALREADY_EXISTS; |
| 1199 | goto out; |
| 1200 | } |
| 1201 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 1202 | clib_memset (&template, 0, sizeof (template)); |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1203 | template.type = VNET_SW_INTERFACE_TYPE_SUB; |
Joe Zhou | 715f94e | 2019-03-06 23:05:32 -0800 | [diff] [blame] | 1204 | template.flood_class = VNET_FLOOD_CLASS_NORMAL; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1205 | template.sup_sw_if_index = hi->sw_if_index; |
| 1206 | template.sub.id = id; |
| 1207 | template.sub.eth.raw_flags = 0; |
| 1208 | template.sub.eth.flags.one_tag = 1; |
| 1209 | template.sub.eth.outer_vlan_id = id; |
| 1210 | template.sub.eth.flags.exact_match = 1; |
| 1211 | |
| 1212 | error = vnet_create_sw_interface (vnm, &template, &sw_if_index); |
| 1213 | if (error) |
| 1214 | { |
| 1215 | clib_error_report (error); |
| 1216 | rv = VNET_API_ERROR_INVALID_REGISTRATION; |
| 1217 | goto out; |
| 1218 | } |
| 1219 | |
| 1220 | u64 *kp = clib_mem_alloc (sizeof (*kp)); |
| 1221 | *kp = sup_and_sub_key; |
| 1222 | |
| 1223 | hash_set (hi->sub_interface_sw_if_index_by_id, id, sw_if_index); |
| 1224 | hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index); |
| 1225 | |
| 1226 | BAD_SW_IF_INDEX_LABEL; |
| 1227 | |
| 1228 | out: |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 1229 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 1230 | if (!reg) |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1231 | return; |
| 1232 | |
| 1233 | rmp = vl_msg_api_alloc (sizeof (*rmp)); |
| 1234 | rmp->_vl_msg_id = htons (VL_API_CREATE_VLAN_SUBIF_REPLY); |
| 1235 | rmp->context = mp->context; |
| 1236 | rmp->retval = htonl (rv); |
| 1237 | rmp->sw_if_index = htonl (sw_if_index); |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 1238 | vl_api_send_msg (reg, (u8 *) rmp); |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1239 | } |
| 1240 | |
| 1241 | static void |
| 1242 | vl_api_create_subif_t_handler (vl_api_create_subif_t * mp) |
| 1243 | { |
| 1244 | vl_api_create_subif_reply_t *rmp; |
| 1245 | vnet_main_t *vnm = vnet_get_main (); |
Neale Ranns | 669f4e3 | 2019-10-28 07:56:15 -0700 | [diff] [blame] | 1246 | u32 sub_sw_if_index = ~0; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1247 | vnet_hw_interface_t *hi; |
Neale Ranns | 669f4e3 | 2019-10-28 07:56:15 -0700 | [diff] [blame] | 1248 | int rv = 0; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1249 | |
| 1250 | VALIDATE_SW_IF_INDEX (mp); |
| 1251 | |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1252 | hi = vnet_get_sup_hw_interface (vnm, ntohl (mp->sw_if_index)); |
| 1253 | |
| 1254 | if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE) |
Neale Ranns | 669f4e3 | 2019-10-28 07:56:15 -0700 | [diff] [blame] | 1255 | rv = VNET_API_ERROR_BOND_SLAVE_NOT_ALLOWED; |
| 1256 | else |
| 1257 | rv = vnet_create_sub_interface (ntohl (mp->sw_if_index), |
| 1258 | ntohl (mp->sub_id), |
| 1259 | ntohl (mp->sub_if_flags), |
| 1260 | ntohs (mp->inner_vlan_id), |
| 1261 | ntohs (mp->outer_vlan_id), |
| 1262 | &sub_sw_if_index); |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1263 | |
| 1264 | BAD_SW_IF_INDEX_LABEL; |
| 1265 | |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1266 | /* *INDENT-OFF* */ |
| 1267 | REPLY_MACRO2(VL_API_CREATE_SUBIF_REPLY, |
| 1268 | ({ |
Neale Ranns | 669f4e3 | 2019-10-28 07:56:15 -0700 | [diff] [blame] | 1269 | rmp->sw_if_index = ntohl(sub_sw_if_index); |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1270 | })); |
| 1271 | /* *INDENT-ON* */ |
| 1272 | } |
| 1273 | |
| 1274 | static void |
| 1275 | vl_api_delete_subif_t_handler (vl_api_delete_subif_t * mp) |
| 1276 | { |
| 1277 | vl_api_delete_subif_reply_t *rmp; |
| 1278 | int rv; |
| 1279 | |
| 1280 | rv = vnet_delete_sub_interface (ntohl (mp->sw_if_index)); |
| 1281 | |
| 1282 | REPLY_MACRO (VL_API_DELETE_SUBIF_REPLY); |
| 1283 | } |
| 1284 | |
| 1285 | static void |
| 1286 | vl_api_interface_name_renumber_t_handler (vl_api_interface_name_renumber_t * |
| 1287 | mp) |
| 1288 | { |
| 1289 | vl_api_interface_name_renumber_reply_t *rmp; |
| 1290 | int rv = 0; |
| 1291 | |
| 1292 | VALIDATE_SW_IF_INDEX (mp); |
| 1293 | |
| 1294 | rv = vnet_interface_name_renumber |
| 1295 | (ntohl (mp->sw_if_index), ntohl (mp->new_show_dev_instance)); |
| 1296 | |
| 1297 | BAD_SW_IF_INDEX_LABEL; |
| 1298 | |
| 1299 | REPLY_MACRO (VL_API_INTERFACE_NAME_RENUMBER_REPLY); |
| 1300 | } |
| 1301 | |
| 1302 | static void |
| 1303 | vl_api_create_loopback_t_handler (vl_api_create_loopback_t * mp) |
| 1304 | { |
| 1305 | vl_api_create_loopback_reply_t *rmp; |
| 1306 | u32 sw_if_index; |
| 1307 | int rv; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 1308 | mac_address_t mac; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1309 | |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 1310 | mac_address_decode (mp->mac_address, &mac); |
| 1311 | rv = vnet_create_loopback_interface (&sw_if_index, (u8 *) & mac, 0, 0); |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1312 | |
| 1313 | /* *INDENT-OFF* */ |
| 1314 | REPLY_MACRO2(VL_API_CREATE_LOOPBACK_REPLY, |
| 1315 | ({ |
| 1316 | rmp->sw_if_index = ntohl (sw_if_index); |
| 1317 | })); |
| 1318 | /* *INDENT-ON* */ |
| 1319 | } |
| 1320 | |
| 1321 | static void vl_api_create_loopback_instance_t_handler |
| 1322 | (vl_api_create_loopback_instance_t * mp) |
| 1323 | { |
| 1324 | vl_api_create_loopback_instance_reply_t *rmp; |
| 1325 | u32 sw_if_index; |
| 1326 | u8 is_specified = mp->is_specified; |
| 1327 | u32 user_instance = ntohl (mp->user_instance); |
| 1328 | int rv; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 1329 | mac_address_t mac; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1330 | |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 1331 | mac_address_decode (mp->mac_address, &mac); |
| 1332 | rv = vnet_create_loopback_interface (&sw_if_index, (u8 *) & mac, |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1333 | is_specified, user_instance); |
| 1334 | |
| 1335 | /* *INDENT-OFF* */ |
| 1336 | REPLY_MACRO2(VL_API_CREATE_LOOPBACK_INSTANCE_REPLY, |
| 1337 | ({ |
| 1338 | rmp->sw_if_index = ntohl (sw_if_index); |
| 1339 | })); |
| 1340 | /* *INDENT-ON* */ |
| 1341 | } |
| 1342 | |
| 1343 | static void |
| 1344 | vl_api_delete_loopback_t_handler (vl_api_delete_loopback_t * mp) |
| 1345 | { |
| 1346 | vl_api_delete_loopback_reply_t *rmp; |
| 1347 | u32 sw_if_index; |
| 1348 | int rv; |
| 1349 | |
| 1350 | sw_if_index = ntohl (mp->sw_if_index); |
| 1351 | rv = vnet_delete_loopback_interface (sw_if_index); |
| 1352 | |
| 1353 | REPLY_MACRO (VL_API_DELETE_LOOPBACK_REPLY); |
| 1354 | } |
| 1355 | |
Neale Ranns | 6f4a6be | 2018-03-16 16:26:21 -0700 | [diff] [blame] | 1356 | static void |
| 1357 | vl_api_collect_detailed_interface_stats_t_handler |
| 1358 | (vl_api_collect_detailed_interface_stats_t * mp) |
| 1359 | { |
| 1360 | vl_api_collect_detailed_interface_stats_reply_t *rmp; |
| 1361 | int rv = 0; |
| 1362 | |
Neale Ranns | 871dc42 | 2018-03-29 01:28:09 -0700 | [diff] [blame] | 1363 | rv = |
| 1364 | vnet_sw_interface_stats_collect_enable_disable (ntohl (mp->sw_if_index), |
| 1365 | mp->enable_disable); |
Neale Ranns | 6f4a6be | 2018-03-16 16:26:21 -0700 | [diff] [blame] | 1366 | |
| 1367 | REPLY_MACRO (VL_API_COLLECT_DETAILED_INTERFACE_STATS_REPLY); |
| 1368 | } |
| 1369 | |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 1370 | /* |
| 1371 | * vpe_api_hookup |
| 1372 | * Add vpe's API message handlers to the table. |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 1373 | * vlib has already mapped shared memory and |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 1374 | * added the client registration handlers. |
| 1375 | * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process() |
| 1376 | */ |
| 1377 | #define vl_msg_name_crc_list |
Dave Barach | b5e8a77 | 2016-12-06 12:04:42 -0500 | [diff] [blame] | 1378 | #include <vnet/interface.api.h> |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 1379 | #undef vl_msg_name_crc_list |
| 1380 | |
| 1381 | static void |
| 1382 | setup_message_id_table (api_main_t * am) |
| 1383 | { |
| 1384 | #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id); |
| 1385 | foreach_vl_msg_name_crc_interface; |
| 1386 | #undef _ |
| 1387 | } |
| 1388 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 1389 | pub_sub_handler (interface_events, INTERFACE_EVENTS); |
| 1390 | |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 1391 | static clib_error_t * |
| 1392 | interface_api_hookup (vlib_main_t * vm) |
| 1393 | { |
Dave Barach | 39d6911 | 2019-11-27 11:42:13 -0500 | [diff] [blame] | 1394 | api_main_t *am = vlibapi_get_main (); |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 1395 | |
| 1396 | #define _(N,n) \ |
| 1397 | vl_msg_api_set_handlers(VL_API_##N, #n, \ |
| 1398 | vl_api_##n##_t_handler, \ |
| 1399 | vl_noop_handler, \ |
| 1400 | vl_api_##n##_t_endian, \ |
| 1401 | vl_api_##n##_t_print, \ |
| 1402 | sizeof(vl_api_##n##_t), 1); |
| 1403 | foreach_vpe_api_msg; |
| 1404 | #undef _ |
| 1405 | |
Steven Luong | c5fa2b8 | 2019-04-25 11:19:49 -0700 | [diff] [blame] | 1406 | /* Mark these APIs as mp safe */ |
| 1407 | am->is_mp_safe[VL_API_SW_INTERFACE_DUMP] = 1; |
| 1408 | am->is_mp_safe[VL_API_SW_INTERFACE_DETAILS] = 1; |
| 1409 | am->is_mp_safe[VL_API_SW_INTERFACE_TAG_ADD_DEL] = 1; |
| 1410 | |
Dave Barach | 3940de3 | 2019-07-23 16:28:36 -0400 | [diff] [blame] | 1411 | /* Do not replay VL_API_SW_INTERFACE_DUMP messages */ |
| 1412 | am->api_trace_cfg[VL_API_SW_INTERFACE_DUMP].replay_enable = 0; |
| 1413 | |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 1414 | /* |
| 1415 | * Set up the (msg_name, crc, message-id) table |
| 1416 | */ |
| 1417 | setup_message_id_table (am); |
| 1418 | |
| 1419 | return 0; |
| 1420 | } |
| 1421 | |
| 1422 | VLIB_API_INIT_FUNCTION (interface_api_hookup); |
| 1423 | |
| 1424 | /* |
| 1425 | * fd.io coding-style-patch-verification: ON |
| 1426 | * |
| 1427 | * Local Variables: |
| 1428 | * eval: (c-set-style "gnu") |
| 1429 | * End: |
| 1430 | */ |