dpdk: remove support for dpdk 16.04
[vpp.git] / vpp / vpp-api / api.c
1 /*
2  *------------------------------------------------------------------
3  * api.c - message handler registration
4  *
5  * Copyright (c) 2010-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 <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <sys/types.h>
24 #include <sys/mman.h>
25 #include <sys/stat.h>
26 #include <netinet/in.h>
27 #include <signal.h>
28 #include <pthread.h>
29 #include <unistd.h>
30 #include <time.h>
31 #include <fcntl.h>
32 #include <string.h>
33 #include <pwd.h>
34 #include <grp.h>
35
36 #include <vppinfra/clib.h>
37 #include <vppinfra/vec.h>
38 #include <vppinfra/hash.h>
39 #include <vppinfra/bitmap.h>
40 #include <vppinfra/fifo.h>
41 #include <vppinfra/time.h>
42 #include <vppinfra/mheap.h>
43 #include <vppinfra/heap.h>
44 #include <vppinfra/pool.h>
45 #include <vppinfra/format.h>
46 #include <vppinfra/error.h>
47
48 #include <vnet/api_errno.h>
49 #include <vnet/vnet.h>
50 #include <vnet/l2/l2_input.h>
51 #include <vnet/l2/l2_bd.h>
52 #include <vnet/l2tp/l2tp.h>
53 #include <vnet/ip/ip.h>
54 #include <vnet/ip/ip6.h>
55 #include <vnet/unix/tuntap.h>
56 #include <vnet/unix/tapcli.h>
57 #include <vnet/mpls/mpls.h>
58 #include <vnet/dhcp/proxy.h>
59 #include <vnet/dhcp/client.h>
60 #if IPV6SR > 0
61 #include <vnet/sr/sr.h>
62 #endif
63 #include <vnet/dhcpv6/proxy.h>
64 #include <vlib/vlib.h>
65 #include <vlib/unix/unix.h>
66 #include <vlibapi/api.h>
67 #include <vlibmemory/api.h>
68 #include <vnet/classify/vnet_classify.h>
69 #include <vnet/classify/input_acl.h>
70 #include <vnet/classify/policer_classify.h>
71 #include <vnet/classify/flow_classify.h>
72 #include <vnet/l2/l2_classify.h>
73 #include <vnet/vxlan/vxlan.h>
74 #include <vnet/gre/gre.h>
75 #include <vnet/l2/l2_vtr.h>
76 #include <vnet/vxlan-gpe/vxlan_gpe.h>
77 #include <vnet/lisp-gpe/lisp_gpe.h>
78 #include <vnet/lisp-gpe/lisp_gpe_fwd_entry.h>
79 #include <vnet/lisp-gpe/lisp_gpe_tenant.h>
80 #include <vnet/lisp-cp/control.h>
81 #include <vnet/map/map.h>
82 #include <vnet/cop/cop.h>
83 #include <vnet/ip/ip6_hop_by_hop.h>
84 #include <vnet/ip/ip_source_and_port_range_check.h>
85 #include <vnet/devices/af_packet/af_packet.h>
86 #include <vnet/policer/policer.h>
87 #include <vnet/devices/netmap/netmap.h>
88 #include <vnet/flow/flow_report.h>
89 #include <vnet/ipsec-gre/ipsec_gre.h>
90 #include <vnet/flow/flow_report_classify.h>
91 #include <vnet/ip/punt.h>
92
93 #undef BIHASH_TYPE
94 #undef __included_bihash_template_h__
95 #include <vnet/l2/l2_fib.h>
96
97 #if IPSEC > 0
98 #include <vnet/ipsec/ipsec.h>
99 #include <vnet/ipsec/ikev2.h>
100 #endif /* IPSEC */
101 #include <vnet/devices/virtio/vhost-user.h>
102
103 #include <stats/stats.h>
104 #include <oam/oam.h>
105
106 #include <vnet/ethernet/ethernet.h>
107 #include <vnet/ethernet/arp_packet.h>
108 #include <vnet/interface.h>
109
110 #include <vnet/l2/l2_fib.h>
111 #include <vnet/l2/l2_bd.h>
112 #include <vpp-api/vpe_msg_enum.h>
113
114 #include <vnet/fib/ip6_fib.h>
115 #include <vnet/fib/ip4_fib.h>
116 #include <vnet/dpo/drop_dpo.h>
117 #include <vnet/dpo/receive_dpo.h>
118 #include <vnet/dpo/lookup_dpo.h>
119 #include <vnet/dpo/classify_dpo.h>
120 #include <vnet/dpo/ip_null_dpo.h>
121
122 #define f64_endian(a)
123 #define f64_print(a,b)
124
125 #define vl_typedefs             /* define message structures */
126 #include <vpp-api/vpe_all_api_h.h>
127 #undef vl_typedefs
128
129 #define vl_endianfun            /* define message structures */
130 #include <vpp-api/vpe_all_api_h.h>
131 #undef vl_endianfun
132
133 /* instantiate all the print functions we know about */
134 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
135 #define vl_printfun
136 #include <vpp-api/vpe_all_api_h.h>
137 #undef vl_printfun
138
139 #define REPLY_MACRO(t)                                          \
140 do {                                                            \
141     unix_shared_memory_queue_t * q;                             \
142     rv = vl_msg_api_pd_handler (mp, rv);                        \
143     q = vl_api_client_index_to_input_queue (mp->client_index);  \
144     if (!q)                                                     \
145         return;                                                 \
146                                                                 \
147     rmp = vl_msg_api_alloc (sizeof (*rmp));                     \
148     rmp->_vl_msg_id = ntohs((t));                               \
149     rmp->context = mp->context;                                 \
150     rmp->retval = ntohl(rv);                                    \
151                                                                 \
152     vl_msg_api_send_shmem (q, (u8 *)&rmp);                      \
153 } while(0);
154
155 #define REPLY_MACRO2(t, body)                                   \
156 do {                                                            \
157     unix_shared_memory_queue_t * q;                             \
158     rv = vl_msg_api_pd_handler (mp, rv);                        \
159     q = vl_api_client_index_to_input_queue (mp->client_index);  \
160     if (!q)                                                     \
161         return;                                                 \
162                                                                 \
163     rmp = vl_msg_api_alloc (sizeof (*rmp));                     \
164     rmp->_vl_msg_id = ntohs((t));                               \
165     rmp->context = mp->context;                                 \
166     rmp->retval = ntohl(rv);                                    \
167     do {body;} while (0);                                       \
168     vl_msg_api_send_shmem (q, (u8 *)&rmp);                      \
169 } while(0);
170
171 #define REPLY_MACRO3(t, n, body)                                \
172 do {                                                            \
173     unix_shared_memory_queue_t * q;                             \
174     rv = vl_msg_api_pd_handler (mp, rv);                        \
175     q = vl_api_client_index_to_input_queue (mp->client_index);  \
176     if (!q)                                                     \
177         return;                                                 \
178                                                                 \
179     rmp = vl_msg_api_alloc (sizeof (*rmp) + n);                 \
180     rmp->_vl_msg_id = ntohs((t));                               \
181     rmp->context = mp->context;                                 \
182     rmp->retval = ntohl(rv);                                    \
183     do {body;} while (0);                                       \
184     vl_msg_api_send_shmem (q, (u8 *)&rmp);                      \
185 } while(0);
186
187 #define REPLY_MACRO4(t, n, body)                                \
188 do {                                                            \
189     unix_shared_memory_queue_t * q;                             \
190     u8 is_error = 0;                                            \
191     rv = vl_msg_api_pd_handler (mp, rv);                        \
192     q = vl_api_client_index_to_input_queue (mp->client_index);  \
193     if (!q)                                                     \
194         return;                                                 \
195                                                                 \
196     rmp = vl_msg_api_alloc_or_null (sizeof (*rmp) + n);         \
197     if (!rmp)                                                   \
198       {                                                         \
199         /* if there isn't enough memory, try to allocate */     \
200         /* some at least for returning an error */              \
201         rmp = vl_msg_api_alloc (sizeof (*rmp));                 \
202         if (!rmp)                                               \
203           return;                                               \
204                                                                 \
205         memset (rmp, 0, sizeof (*rmp));                         \
206         rv = VNET_API_ERROR_TABLE_TOO_BIG;                      \
207         is_error = 1;                                           \
208       }                                                         \
209     rmp->_vl_msg_id = ntohs((t));                               \
210     rmp->context = mp->context;                                 \
211     rmp->retval = ntohl(rv);                                    \
212     if (!is_error)                                              \
213       do {body;} while (0);                                     \
214     vl_msg_api_send_shmem (q, (u8 *)&rmp);                      \
215 } while(0);
216
217 #if (1 || CLIB_DEBUG > 0)       /* "trust, but verify" */
218
219 #define VALIDATE_SW_IF_INDEX(mp)                                \
220  do { u32 __sw_if_index = ntohl(mp->sw_if_index);               \
221     vnet_main_t *__vnm = vnet_get_main();                       \
222     if (pool_is_free_index(__vnm->interface_main.sw_interfaces, \
223                            __sw_if_index)) {                    \
224         rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;                \
225         goto bad_sw_if_index;                                   \
226     }                                                           \
227 } while(0);
228
229 #define BAD_SW_IF_INDEX_LABEL                   \
230 do {                                            \
231 bad_sw_if_index:                                \
232     ;                                           \
233 } while (0);
234
235 #define VALIDATE_RX_SW_IF_INDEX(mp)                             \
236  do { u32 __rx_sw_if_index = ntohl(mp->rx_sw_if_index);         \
237     vnet_main_t *__vnm = vnet_get_main();                       \
238     if (pool_is_free_index(__vnm->interface_main.sw_interfaces, \
239                            __rx_sw_if_index)) {                 \
240         rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;                \
241         goto bad_rx_sw_if_index;                                \
242     }                                                           \
243 } while(0);
244
245 #define BAD_RX_SW_IF_INDEX_LABEL                \
246 do {                                            \
247 bad_rx_sw_if_index:                             \
248     ;                                           \
249 } while (0);
250
251 #define VALIDATE_TX_SW_IF_INDEX(mp)                             \
252  do { u32 __tx_sw_if_index = ntohl(mp->tx_sw_if_index);         \
253     vnet_main_t *__vnm = vnet_get_main();                       \
254     if (pool_is_free_index(__vnm->interface_main.sw_interfaces, \
255                            __tx_sw_if_index)) {                 \
256         rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;                \
257         goto bad_tx_sw_if_index;                                \
258     }                                                           \
259 } while(0);
260
261 #define BAD_TX_SW_IF_INDEX_LABEL                \
262 do {                                            \
263 bad_tx_sw_if_index:                             \
264     ;                                           \
265 } while (0);
266
267 #else
268
269 #define VALIDATE_SW_IF_INDEX(mp)
270 #define BAD_SW_IF_INDEX_LABEL
271 #define VALIDATE_RX_SW_IF_INDEX(mp)
272 #define BAD_RX_SW_IF_INDEX_LABEL
273 #define VALIDATE_TX_SW_IF_INDEX(mp)
274 #define BAD_TX_SW_IF_INDEX_LABEL
275
276 #endif /* CLIB_DEBUG > 0 */
277
278 #define foreach_vpe_api_msg                                             \
279 _(WANT_INTERFACE_EVENTS, want_interface_events)                         \
280 _(WANT_OAM_EVENTS, want_oam_events)                                     \
281 _(OAM_ADD_DEL, oam_add_del)                                             \
282 _(SW_INTERFACE_DUMP, sw_interface_dump)                                 \
283 _(SW_INTERFACE_DETAILS, sw_interface_details)                           \
284 _(SW_INTERFACE_SET_FLAGS, sw_interface_set_flags)                       \
285 _(IP_ADD_DEL_ROUTE, ip_add_del_route)                                   \
286 _(MPLS_ROUTE_ADD_DEL, mpls_route_add_del)                               \
287 _(MPLS_IP_BIND_UNBIND, mpls_ip_bind_unbind)                             \
288 _(IS_ADDRESS_REACHABLE, is_address_reachable)                           \
289 _(SW_INTERFACE_ADD_DEL_ADDRESS, sw_interface_add_del_address)           \
290 _(SW_INTERFACE_SET_TABLE, sw_interface_set_table)                       \
291 _(SW_INTERFACE_SET_MPLS_ENABLE, sw_interface_set_mpls_enable)           \
292 _(SW_INTERFACE_SET_VPATH, sw_interface_set_vpath)                       \
293 _(SW_INTERFACE_SET_L2_XCONNECT, sw_interface_set_l2_xconnect)           \
294 _(SW_INTERFACE_SET_L2_BRIDGE, sw_interface_set_l2_bridge)               \
295 _(SW_INTERFACE_SET_DPDK_HQOS_PIPE, sw_interface_set_dpdk_hqos_pipe)     \
296 _(SW_INTERFACE_SET_DPDK_HQOS_SUBPORT, sw_interface_set_dpdk_hqos_subport) \
297 _(SW_INTERFACE_SET_DPDK_HQOS_TCTBL, sw_interface_set_dpdk_hqos_tctbl)   \
298 _(BRIDGE_DOMAIN_ADD_DEL, bridge_domain_add_del)                         \
299 _(BRIDGE_DOMAIN_DUMP, bridge_domain_dump)                               \
300 _(BRIDGE_DOMAIN_DETAILS, bridge_domain_details)                         \
301 _(BRIDGE_DOMAIN_SW_IF_DETAILS, bridge_domain_sw_if_details)             \
302 _(L2FIB_ADD_DEL, l2fib_add_del)                                         \
303 _(L2_FLAGS, l2_flags)                                                   \
304 _(BRIDGE_FLAGS, bridge_flags)                                           \
305 _(TAP_CONNECT, tap_connect)                                             \
306 _(TAP_MODIFY, tap_modify)                                               \
307 _(TAP_DELETE, tap_delete)                                               \
308 _(SW_INTERFACE_TAP_DUMP, sw_interface_tap_dump)                         \
309 _(CREATE_VLAN_SUBIF, create_vlan_subif)                                 \
310 _(CREATE_SUBIF, create_subif)                                           \
311 _(MPLS_ETHERNET_ADD_DEL_TUNNEL, mpls_ethernet_add_del_tunnel)           \
312 _(MPLS_ETHERNET_ADD_DEL_TUNNEL_2, mpls_ethernet_add_del_tunnel_2)       \
313 _(MPLS_ADD_DEL_ENCAP, mpls_add_del_encap)                               \
314 _(PROXY_ARP_ADD_DEL, proxy_arp_add_del)                                 \
315 _(PROXY_ARP_INTFC_ENABLE_DISABLE, proxy_arp_intfc_enable_disable)       \
316 _(IP_NEIGHBOR_ADD_DEL, ip_neighbor_add_del)                             \
317 _(VNET_GET_SUMMARY_STATS, vnet_get_summary_stats)                       \
318 _(RESET_FIB, reset_fib)                                                 \
319 _(DHCP_PROXY_CONFIG,dhcp_proxy_config)                                  \
320 _(DHCP_PROXY_CONFIG_2,dhcp_proxy_config_2)                              \
321 _(DHCP_PROXY_SET_VSS,dhcp_proxy_set_vss)                                \
322 _(DHCP_CLIENT_CONFIG, dhcp_client_config)                               \
323 _(SET_IP_FLOW_HASH,set_ip_flow_hash)                                    \
324 _(SW_INTERFACE_IP6ND_RA_CONFIG, sw_interface_ip6nd_ra_config)           \
325 _(SW_INTERFACE_IP6ND_RA_PREFIX, sw_interface_ip6nd_ra_prefix)           \
326 _(SW_INTERFACE_IP6_ENABLE_DISABLE, sw_interface_ip6_enable_disable )    \
327 _(SW_INTERFACE_IP6_SET_LINK_LOCAL_ADDRESS,                              \
328   sw_interface_ip6_set_link_local_address)                              \
329 _(SW_INTERFACE_SET_UNNUMBERED, sw_interface_set_unnumbered)             \
330 _(CREATE_LOOPBACK, create_loopback)                                     \
331 _(CONTROL_PING, control_ping)                                           \
332 _(CLI_REQUEST, cli_request)                                             \
333 _(CLI_INBAND, cli_inband)                                               \
334 _(SET_ARP_NEIGHBOR_LIMIT, set_arp_neighbor_limit)                       \
335 _(L2_PATCH_ADD_DEL, l2_patch_add_del)                                   \
336 _(CLASSIFY_ADD_DEL_TABLE, classify_add_del_table)                       \
337 _(CLASSIFY_ADD_DEL_SESSION, classify_add_del_session)                   \
338 _(CLASSIFY_SET_INTERFACE_IP_TABLE, classify_set_interface_ip_table)     \
339 _(CLASSIFY_SET_INTERFACE_L2_TABLES, classify_set_interface_l2_tables)   \
340 _(GET_NODE_INDEX, get_node_index)                                       \
341 _(ADD_NODE_NEXT, add_node_next)                                         \
342 _(L2TPV3_CREATE_TUNNEL, l2tpv3_create_tunnel)                           \
343 _(L2TPV3_SET_TUNNEL_COOKIES, l2tpv3_set_tunnel_cookies)                 \
344 _(L2TPV3_INTERFACE_ENABLE_DISABLE, l2tpv3_interface_enable_disable)     \
345 _(L2TPV3_SET_LOOKUP_KEY, l2tpv3_set_lookup_key)                         \
346 _(SW_IF_L2TPV3_TUNNEL_DUMP, sw_if_l2tpv3_tunnel_dump)                   \
347 _(VXLAN_ADD_DEL_TUNNEL, vxlan_add_del_tunnel)                           \
348 _(VXLAN_TUNNEL_DUMP, vxlan_tunnel_dump)                                 \
349 _(GRE_ADD_DEL_TUNNEL, gre_add_del_tunnel)                               \
350 _(GRE_TUNNEL_DUMP, gre_tunnel_dump)                                     \
351 _(L2_FIB_CLEAR_TABLE, l2_fib_clear_table)                               \
352 _(L2_INTERFACE_EFP_FILTER, l2_interface_efp_filter)                     \
353 _(L2_INTERFACE_VLAN_TAG_REWRITE, l2_interface_vlan_tag_rewrite)         \
354 _(CREATE_VHOST_USER_IF, create_vhost_user_if)                           \
355 _(MODIFY_VHOST_USER_IF, modify_vhost_user_if)                           \
356 _(DELETE_VHOST_USER_IF, delete_vhost_user_if)                           \
357 _(SW_INTERFACE_VHOST_USER_DUMP, sw_interface_vhost_user_dump)           \
358 _(IP_ADDRESS_DUMP, ip_address_dump)                                     \
359 _(IP_DUMP, ip_dump)                                                     \
360 _(SW_INTERFACE_VHOST_USER_DETAILS, sw_interface_vhost_user_details)     \
361 _(SHOW_VERSION, show_version)                                           \
362 _(L2_FIB_TABLE_DUMP, l2_fib_table_dump)                                 \
363 _(L2_FIB_TABLE_ENTRY, l2_fib_table_entry)                               \
364 _(VXLAN_GPE_ADD_DEL_TUNNEL, vxlan_gpe_add_del_tunnel)                   \
365 _(VXLAN_GPE_TUNNEL_DUMP, vxlan_gpe_tunnel_dump)                         \
366 _(INTERFACE_NAME_RENUMBER, interface_name_renumber)                     \
367 _(WANT_IP4_ARP_EVENTS, want_ip4_arp_events)                             \
368 _(WANT_IP6_ND_EVENTS, want_ip6_nd_events)                               \
369 _(INPUT_ACL_SET_INTERFACE, input_acl_set_interface)                     \
370 _(IPSEC_SPD_ADD_DEL, ipsec_spd_add_del)                                 \
371 _(IPSEC_INTERFACE_ADD_DEL_SPD, ipsec_interface_add_del_spd)             \
372 _(IPSEC_SPD_ADD_DEL_ENTRY, ipsec_spd_add_del_entry)                     \
373 _(IPSEC_SAD_ADD_DEL_ENTRY, ipsec_sad_add_del_entry)                     \
374 _(IPSEC_SA_SET_KEY, ipsec_sa_set_key)                                   \
375 _(IKEV2_PROFILE_ADD_DEL, ikev2_profile_add_del)                         \
376 _(IKEV2_PROFILE_SET_AUTH, ikev2_profile_set_auth)                       \
377 _(IKEV2_PROFILE_SET_ID, ikev2_profile_set_id)                           \
378 _(IKEV2_PROFILE_SET_TS, ikev2_profile_set_ts)                           \
379 _(IKEV2_SET_LOCAL_KEY, ikev2_set_local_key)                             \
380 _(DELETE_LOOPBACK, delete_loopback)                                     \
381 _(BD_IP_MAC_ADD_DEL, bd_ip_mac_add_del)                                 \
382 _(MAP_ADD_DOMAIN, map_add_domain)                                       \
383 _(MAP_DEL_DOMAIN, map_del_domain)                                       \
384 _(MAP_ADD_DEL_RULE, map_add_del_rule)                                   \
385 _(MAP_DOMAIN_DUMP, map_domain_dump)                                     \
386 _(MAP_RULE_DUMP, map_rule_dump)                                         \
387 _(MAP_SUMMARY_STATS, map_summary_stats)                                 \
388 _(COP_INTERFACE_ENABLE_DISABLE, cop_interface_enable_disable)           \
389 _(COP_WHITELIST_ENABLE_DISABLE, cop_whitelist_enable_disable)           \
390 _(GET_NODE_GRAPH, get_node_graph)                                       \
391 _(SW_INTERFACE_CLEAR_STATS, sw_interface_clear_stats)                   \
392 _(IOAM_ENABLE, ioam_enable)                                 \
393 _(IOAM_DISABLE, ioam_disable)                                 \
394 _(LISP_ADD_DEL_LOCATOR_SET, lisp_add_del_locator_set)                   \
395 _(LISP_ADD_DEL_LOCATOR, lisp_add_del_locator)                           \
396 _(LISP_ADD_DEL_LOCAL_EID, lisp_add_del_local_eid)                       \
397 _(LISP_GPE_ADD_DEL_FWD_ENTRY, lisp_gpe_add_del_fwd_entry)               \
398 _(LISP_ADD_DEL_MAP_RESOLVER, lisp_add_del_map_resolver)                 \
399 _(LISP_GPE_ENABLE_DISABLE, lisp_gpe_enable_disable)                     \
400 _(LISP_ENABLE_DISABLE, lisp_enable_disable)                             \
401 _(LISP_GPE_ADD_DEL_IFACE, lisp_gpe_add_del_iface)                       \
402 _(LISP_ADD_DEL_REMOTE_MAPPING, lisp_add_del_remote_mapping)             \
403 _(LISP_ADD_DEL_ADJACENCY, lisp_add_del_adjacency)                       \
404 _(LISP_PITR_SET_LOCATOR_SET, lisp_pitr_set_locator_set)                 \
405 _(LISP_MAP_REQUEST_MODE, lisp_map_request_mode)                         \
406 _(LISP_EID_TABLE_ADD_DEL_MAP, lisp_eid_table_add_del_map)               \
407 _(LISP_LOCATOR_SET_DUMP, lisp_locator_set_dump)                         \
408 _(LISP_LOCATOR_DUMP, lisp_locator_dump)                                 \
409 _(LISP_EID_TABLE_DUMP, lisp_eid_table_dump)                             \
410 _(LISP_GPE_TUNNEL_DUMP, lisp_gpe_tunnel_dump)                           \
411 _(LISP_MAP_RESOLVER_DUMP, lisp_map_resolver_dump)                       \
412 _(LISP_EID_TABLE_MAP_DUMP, lisp_eid_table_map_dump)                     \
413 _(LISP_EID_TABLE_VNI_DUMP, lisp_eid_table_vni_dump)                     \
414 _(LISP_ADJACENCIES_GET, lisp_adjacencies_get)                           \
415 _(SHOW_LISP_STATUS, show_lisp_status)                                   \
416 _(LISP_ADD_DEL_MAP_REQUEST_ITR_RLOCS,                                   \
417   lisp_add_del_map_request_itr_rlocs)                                   \
418 _(LISP_GET_MAP_REQUEST_ITR_RLOCS, lisp_get_map_request_itr_rlocs)       \
419 _(SHOW_LISP_PITR, show_lisp_pitr)                                       \
420 _(SHOW_LISP_MAP_REQUEST_MODE, show_lisp_map_request_mode)               \
421 _(SR_MULTICAST_MAP_ADD_DEL, sr_multicast_map_add_del)                   \
422 _(AF_PACKET_CREATE, af_packet_create)                                   \
423 _(AF_PACKET_DELETE, af_packet_delete)                                   \
424 _(POLICER_ADD_DEL, policer_add_del)                                     \
425 _(POLICER_DUMP, policer_dump)                                           \
426 _(POLICER_CLASSIFY_SET_INTERFACE, policer_classify_set_interface)       \
427 _(POLICER_CLASSIFY_DUMP, policer_classify_dump)                         \
428 _(NETMAP_CREATE, netmap_create)                                         \
429 _(NETMAP_DELETE, netmap_delete)                                         \
430 _(MPLS_ETH_TUNNEL_DUMP, mpls_eth_tunnel_dump)                           \
431 _(MPLS_ETH_TUNNEL_DETAILS, mpls_eth_tunnel_details)                     \
432 _(MPLS_FIB_ENCAP_DUMP, mpls_fib_encap_dump)                             \
433 _(MPLS_FIB_ENCAP_DETAILS, mpls_fib_encap_details)                       \
434 _(MPLS_FIB_DUMP, mpls_fib_dump)                                         \
435 _(MPLS_FIB_DETAILS, mpls_fib_details)                                   \
436 _(CLASSIFY_TABLE_IDS,classify_table_ids)                                \
437 _(CLASSIFY_TABLE_BY_INTERFACE, classify_table_by_interface)             \
438 _(CLASSIFY_TABLE_INFO,classify_table_info)                              \
439 _(CLASSIFY_SESSION_DUMP,classify_session_dump)                          \
440 _(CLASSIFY_SESSION_DETAILS,classify_session_details)                    \
441 _(SET_IPFIX_EXPORTER, set_ipfix_exporter)                               \
442 _(IPFIX_EXPORTER_DUMP, ipfix_exporter_dump)                             \
443 _(SET_IPFIX_CLASSIFY_STREAM, set_ipfix_classify_stream)                 \
444 _(IPFIX_CLASSIFY_STREAM_DUMP, ipfix_classify_stream_dump)               \
445 _(IPFIX_CLASSIFY_TABLE_ADD_DEL, ipfix_classify_table_add_del)           \
446 _(IPFIX_CLASSIFY_TABLE_DUMP, ipfix_classify_table_dump)                 \
447 _(GET_NEXT_INDEX, get_next_index)                                       \
448 _(PG_CREATE_INTERFACE, pg_create_interface)                             \
449 _(PG_CAPTURE, pg_capture)                                               \
450 _(PG_ENABLE_DISABLE, pg_enable_disable)                                 \
451 _(IP_SOURCE_AND_PORT_RANGE_CHECK_ADD_DEL,                               \
452   ip_source_and_port_range_check_add_del)                               \
453 _(IP_SOURCE_AND_PORT_RANGE_CHECK_INTERFACE_ADD_DEL,                     \
454   ip_source_and_port_range_check_interface_add_del)                     \
455 _(IPSEC_GRE_ADD_DEL_TUNNEL, ipsec_gre_add_del_tunnel)                   \
456 _(IPSEC_GRE_TUNNEL_DUMP, ipsec_gre_tunnel_dump)                         \
457 _(DELETE_SUBIF, delete_subif)                                           \
458 _(L2_INTERFACE_PBB_TAG_REWRITE, l2_interface_pbb_tag_rewrite)           \
459 _(PUNT, punt)                                                           \
460 _(FLOW_CLASSIFY_SET_INTERFACE, flow_classify_set_interface)             \
461 _(FLOW_CLASSIFY_DUMP, flow_classify_dump)
462
463 #define QUOTE_(x) #x
464 #define QUOTE(x) QUOTE_(x)
465
466 #define foreach_registration_hash               \
467 _(interface_events)                             \
468 _(to_netconf_server)                            \
469 _(from_netconf_server)                          \
470 _(to_netconf_client)                            \
471 _(from_netconf_client)                          \
472 _(oam_events)
473
474 typedef enum
475 {
476   RESOLVE_IP4_ADD_DEL_ROUTE = 1,
477   RESOLVE_IP6_ADD_DEL_ROUTE,
478   RESOLVE_MPLS_ETHERNET_ADD_DEL,
479 } resolve_t;
480
481 typedef struct
482 {
483   u8 resolve_type;
484   union
485   {
486     vl_api_ip_add_del_route_t r;
487     vl_api_mpls_ethernet_add_del_tunnel_2_t t;
488   };
489 } pending_route_t;
490
491 typedef struct
492 {
493
494 #define _(a) uword *a##_registration_hash;              \
495     vpe_client_registration_t * a##_registrations;
496   foreach_registration_hash
497 #undef _
498     /* notifications happen really early in the game */
499   u8 link_state_process_up;
500
501   /* ip4 and ip6 pending route adds */
502   pending_route_t *pending_routes;
503
504   /* ip4 arp event registration pool */
505   vl_api_ip4_arp_event_t *arp_events;
506
507   /* ip6 nd event registration pool */
508   vl_api_ip6_nd_event_t *nd_events;
509
510   /* convenience */
511   vlib_main_t *vlib_main;
512   vnet_main_t *vnet_main;
513 } vpe_api_main_t;
514
515 static vlib_node_registration_t vpe_resolver_process_node;
516 static vpe_api_main_t vpe_api_main;
517
518 static void send_sw_interface_flags (vpe_api_main_t * am,
519                                      unix_shared_memory_queue_t * q,
520                                      vnet_sw_interface_t * swif);
521 static void send_sw_interface_flags_deleted (vpe_api_main_t * am,
522                                              unix_shared_memory_queue_t * q,
523                                              u32 sw_if_index);
524
525 static int arp_change_delete_callback (u32 pool_index, u8 * notused);
526 static int nd_change_delete_callback (u32 pool_index, u8 * notused);
527
528
529 /* Clean up all registrations belonging to the indicated client */
530 int
531 vl_api_memclnt_delete_callback (u32 client_index)
532 {
533   vpe_api_main_t *vam = &vpe_api_main;
534   vpe_client_registration_t *rp;
535   uword *p;
536   int stats_memclnt_delete_callback (u32 client_index);
537
538   stats_memclnt_delete_callback (client_index);
539
540 #define _(a)                                                    \
541     p = hash_get (vam->a##_registration_hash, client_index);    \
542     if (p) {                                                    \
543         rp = pool_elt_at_index (vam->a##_registrations, p[0]);  \
544         pool_put (vam->a##_registrations, rp);                  \
545         hash_unset (vam->a##_registration_hash, client_index);  \
546     }
547   foreach_registration_hash;
548 #undef _
549   return 0;
550 }
551
552 #define API_LINK_STATE_EVENT 1
553 #define API_ADMIN_UP_DOWN_EVENT 2
554
555 static int
556 event_data_cmp (void *a1, void *a2)
557 {
558   uword *e1 = a1;
559   uword *e2 = a2;
560
561   return (word) e1[0] - (word) e2[0];
562 }
563
564 static uword
565 link_state_process (vlib_main_t * vm,
566                     vlib_node_runtime_t * rt, vlib_frame_t * f)
567 {
568   vpe_api_main_t *vam = &vpe_api_main;
569   vnet_main_t *vnm = vam->vnet_main;
570   vnet_sw_interface_t *swif;
571   uword *event_data = 0;
572   vpe_client_registration_t *reg;
573   int i;
574   u32 prev_sw_if_index;
575   unix_shared_memory_queue_t *q;
576
577   vam->link_state_process_up = 1;
578
579   while (1)
580     {
581       vlib_process_wait_for_event (vm);
582
583       /* Unified list of changed link or admin state sw_if_indices */
584       vlib_process_get_events_with_type
585         (vm, &event_data, API_LINK_STATE_EVENT);
586       vlib_process_get_events_with_type
587         (vm, &event_data, API_ADMIN_UP_DOWN_EVENT);
588
589       /* Sort, so we can eliminate duplicates */
590       vec_sort_with_function (event_data, event_data_cmp);
591
592       prev_sw_if_index = ~0;
593
594       for (i = 0; i < vec_len (event_data); i++)
595         {
596           /* Only one message per swif */
597           if (prev_sw_if_index == event_data[i])
598             continue;
599           prev_sw_if_index = event_data[i];
600
601           /* *INDENT-OFF* */
602           pool_foreach(reg, vam->interface_events_registrations,
603           ({
604             q = vl_api_client_index_to_input_queue (reg->client_index);
605             if (q)
606               {
607                 /* sw_interface may be deleted already */
608                 if (!pool_is_free_index (vnm->interface_main.sw_interfaces,
609                                          event_data[i]))
610                   {
611                     swif = vnet_get_sw_interface (vnm, event_data[i]);
612                     send_sw_interface_flags (vam, q, swif);
613                   }
614               }
615           }));
616           /* *INDENT-ON* */
617         }
618       vec_reset_length (event_data);
619     }
620
621   return 0;
622 }
623
624 static clib_error_t *link_up_down_function (vnet_main_t * vm, u32 hw_if_index,
625                                             u32 flags);
626 static clib_error_t *admin_up_down_function (vnet_main_t * vm,
627                                              u32 hw_if_index, u32 flags);
628
629 /* *INDENT-OFF* */
630 VLIB_REGISTER_NODE (link_state_process_node,static) = {
631   .function = link_state_process,
632   .type = VLIB_NODE_TYPE_PROCESS,
633   .name = "vpe-link-state-process",
634 };
635 /* *INDENT-ON* */
636
637 VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (admin_up_down_function);
638 VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION (link_up_down_function);
639
640 static clib_error_t *
641 link_up_down_function (vnet_main_t * vm, u32 hw_if_index, u32 flags)
642 {
643   vpe_api_main_t *vam = &vpe_api_main;
644   vnet_hw_interface_t *hi = vnet_get_hw_interface (vm, hw_if_index);
645
646   if (vam->link_state_process_up)
647     vlib_process_signal_event (vam->vlib_main,
648                                link_state_process_node.index,
649                                API_LINK_STATE_EVENT, hi->sw_if_index);
650   return 0;
651 }
652
653 static clib_error_t *
654 admin_up_down_function (vnet_main_t * vm, u32 sw_if_index, u32 flags)
655 {
656   vpe_api_main_t *vam = &vpe_api_main;
657
658   /*
659    * Note: it's perfectly fair to set a subif admin up / admin down.
660    * Note the subtle distinction between this routine and the previous
661    * routine.
662    */
663   if (vam->link_state_process_up)
664     vlib_process_signal_event (vam->vlib_main,
665                                link_state_process_node.index,
666                                API_ADMIN_UP_DOWN_EVENT, sw_if_index);
667   return 0;
668 }
669
670 #define pub_sub_handler(lca,UCA)                                        \
671 static void vl_api_want_##lca##_t_handler (                             \
672     vl_api_want_##lca##_t *mp)                                          \
673 {                                                                       \
674     vpe_api_main_t *vam = &vpe_api_main;                                \
675     vpe_client_registration_t *rp;                                      \
676     vl_api_want_##lca##_reply_t *rmp;                                   \
677     uword *p;                                                           \
678     i32 rv = 0;                                                         \
679                                                                         \
680     p = hash_get (vam->lca##_registration_hash, mp->client_index);      \
681     if (p) {                                                            \
682         if (mp->enable_disable) {                                       \
683             clib_warning ("pid %d: already enabled...", mp->pid);       \
684             rv = VNET_API_ERROR_INVALID_REGISTRATION;                   \
685             goto reply;                                                 \
686         } else {                                                        \
687             rp = pool_elt_at_index (vam->lca##_registrations, p[0]);    \
688             pool_put (vam->lca##_registrations, rp);                    \
689             hash_unset (vam->lca##_registration_hash,                   \
690                 mp->client_index);                                      \
691             goto reply;                                                 \
692         }                                                               \
693     }                                                                   \
694     if (mp->enable_disable == 0) {                                      \
695         clib_warning ("pid %d: already disabled...", mp->pid);          \
696         rv = VNET_API_ERROR_INVALID_REGISTRATION;                       \
697         goto reply;                                                     \
698     }                                                                   \
699     pool_get (vam->lca##_registrations, rp);                            \
700     rp->client_index = mp->client_index;                                \
701     rp->client_pid = mp->pid;                                           \
702     hash_set (vam->lca##_registration_hash, rp->client_index,           \
703               rp - vam->lca##_registrations);                           \
704                                                                         \
705 reply:                                                                  \
706     REPLY_MACRO (VL_API_WANT_##UCA##_REPLY);                            \
707 }
708
709 /* *INDENT-OFF* */
710 pub_sub_handler (interface_events, INTERFACE_EVENTS)
711 pub_sub_handler (oam_events, OAM_EVENTS)
712 /* *INDENT-ON* */
713
714 #define RESOLUTION_EVENT 1
715 #define RESOLUTION_PENDING_EVENT 2
716 #define IP4_ARP_EVENT 3
717 #define IP6_ND_EVENT 4
718
719 static int ip4_add_del_route_t_handler (vl_api_ip_add_del_route_t * mp);
720
721 static int ip6_add_del_route_t_handler (vl_api_ip_add_del_route_t * mp);
722
723 static int mpls_ethernet_add_del_tunnel_2_t_handler
724   (vl_api_mpls_ethernet_add_del_tunnel_2_t * mp);
725
726 void
727 handle_ip4_arp_event (u32 pool_index)
728 {
729   vpe_api_main_t *vam = &vpe_api_main;
730   vnet_main_t *vnm = vam->vnet_main;
731   vlib_main_t *vm = vam->vlib_main;
732   vl_api_ip4_arp_event_t *event;
733   vl_api_ip4_arp_event_t *mp;
734   unix_shared_memory_queue_t *q;
735
736   /* Client can cancel, die, etc. */
737   if (pool_is_free_index (vam->arp_events, pool_index))
738     return;
739
740   event = pool_elt_at_index (vam->arp_events, pool_index);
741
742   q = vl_api_client_index_to_input_queue (event->client_index);
743   if (!q)
744     {
745       (void) vnet_add_del_ip4_arp_change_event
746         (vnm, arp_change_delete_callback,
747          event->pid, &event->address,
748          vpe_resolver_process_node.index, IP4_ARP_EVENT,
749          ~0 /* pool index, notused */ , 0 /* is_add */ );
750       return;
751     }
752
753   if (q->cursize < q->maxsize)
754     {
755       mp = vl_msg_api_alloc (sizeof (*mp));
756       clib_memcpy (mp, event, sizeof (*mp));
757       vl_msg_api_send_shmem (q, (u8 *) & mp);
758     }
759   else
760     {
761       static f64 last_time;
762       /*
763        * Throttle syslog msgs.
764        * It's pretty tempting to just revoke the registration...
765        */
766       if (vlib_time_now (vm) > last_time + 10.0)
767         {
768           clib_warning ("arp event for %U to pid %d: queue stuffed!",
769                         format_ip4_address, &event->address, event->pid);
770           last_time = vlib_time_now (vm);
771         }
772     }
773 }
774
775 void
776 handle_ip6_nd_event (u32 pool_index)
777 {
778   vpe_api_main_t *vam = &vpe_api_main;
779   vnet_main_t *vnm = vam->vnet_main;
780   vlib_main_t *vm = vam->vlib_main;
781   vl_api_ip6_nd_event_t *event;
782   vl_api_ip6_nd_event_t *mp;
783   unix_shared_memory_queue_t *q;
784
785   /* Client can cancel, die, etc. */
786   if (pool_is_free_index (vam->nd_events, pool_index))
787     return;
788
789   event = pool_elt_at_index (vam->nd_events, pool_index);
790
791   q = vl_api_client_index_to_input_queue (event->client_index);
792   if (!q)
793     {
794       (void) vnet_add_del_ip6_nd_change_event
795         (vnm, nd_change_delete_callback,
796          event->pid, &event->address,
797          vpe_resolver_process_node.index, IP6_ND_EVENT,
798          ~0 /* pool index, notused */ , 0 /* is_add */ );
799       return;
800     }
801
802   if (q->cursize < q->maxsize)
803     {
804       mp = vl_msg_api_alloc (sizeof (*mp));
805       clib_memcpy (mp, event, sizeof (*mp));
806       vl_msg_api_send_shmem (q, (u8 *) & mp);
807     }
808   else
809     {
810       static f64 last_time;
811       /*
812        * Throttle syslog msgs.
813        * It's pretty tempting to just revoke the registration...
814        */
815       if (vlib_time_now (vm) > last_time + 10.0)
816         {
817           clib_warning ("ip6 nd event for %U to pid %d: queue stuffed!",
818                         format_ip6_address, &event->address, event->pid);
819           last_time = vlib_time_now (vm);
820         }
821     }
822 }
823
824 static uword
825 resolver_process (vlib_main_t * vm,
826                   vlib_node_runtime_t * rt, vlib_frame_t * f)
827 {
828   uword event_type;
829   uword *event_data = 0;
830   f64 timeout = 100.0;
831   vpe_api_main_t *vam = &vpe_api_main;
832   pending_route_t *pr;
833   vl_api_ip_add_del_route_t *adr;
834   vl_api_mpls_ethernet_add_del_tunnel_2_t *pme;
835   u32 *resolution_failures = 0;
836   int i, rv;
837   clib_error_t *e;
838
839   while (1)
840     {
841       vlib_process_wait_for_event_or_clock (vm, timeout);
842
843       event_type = vlib_process_get_events (vm, &event_data);
844
845       switch (event_type)
846         {
847         case RESOLUTION_PENDING_EVENT:
848           timeout = 1.0;
849           break;
850
851         case RESOLUTION_EVENT:
852           for (i = 0; i < vec_len (event_data); i++)
853             {
854               /*
855                * Resolution events can occur long after the
856                * original request has timed out. $$$ add a cancel
857                * mechanism..
858                */
859               if (pool_is_free_index (vam->pending_routes, event_data[i]))
860                 continue;
861
862               pr = pool_elt_at_index (vam->pending_routes, event_data[i]);
863               adr = &pr->r;
864               pme = &pr->t;
865
866               switch (pr->resolve_type)
867                 {
868                 case RESOLVE_IP4_ADD_DEL_ROUTE:
869                   rv = ip4_add_del_route_t_handler (adr);
870                   clib_warning ("resolver: add %U/%d via %U %s",
871                                 format_ip4_address,
872                                 (ip4_address_t *) & (adr->dst_address),
873                                 adr->dst_address_length,
874                                 format_ip4_address,
875                                 (ip4_address_t *) & (adr->next_hop_address),
876                                 (rv >= 0) ? "succeeded" : "failed");
877                   break;
878
879                 case RESOLVE_IP6_ADD_DEL_ROUTE:
880                   rv = ip6_add_del_route_t_handler (adr);
881                   clib_warning ("resolver: add %U/%d via %U %s",
882                                 format_ip6_address,
883                                 (ip6_address_t *) & (adr->dst_address),
884                                 adr->dst_address_length,
885                                 format_ip6_address,
886                                 (ip6_address_t *) & (adr->next_hop_address),
887                                 (rv >= 0) ? "succeeded" : "failed");
888                   break;
889
890                 case RESOLVE_MPLS_ETHERNET_ADD_DEL:
891                   rv = mpls_ethernet_add_del_tunnel_2_t_handler (pme);
892                   clib_warning ("resolver: add mpls-o-e via %U %s",
893                                 format_ip4_address,
894                                 (ip4_address_t *) &
895                                 (pme->next_hop_ip4_address_in_outer_vrf),
896                                 (rv >= 0) ? "succeeded" : "failed");
897                   break;
898
899                 default:
900                   clib_warning ("resolver: BOGUS TYPE %d", pr->resolve_type);
901                 }
902               pool_put (vam->pending_routes, pr);
903             }
904           break;
905
906         case IP4_ARP_EVENT:
907           for (i = 0; i < vec_len (event_data); i++)
908             handle_ip4_arp_event (event_data[i]);
909           break;
910
911         case IP6_ND_EVENT:
912           for (i = 0; i < vec_len (event_data); i++)
913             handle_ip6_nd_event (event_data[i]);
914           break;
915
916         case ~0:                /* timeout, retry pending resolutions */
917           /* *INDENT-OFF* */
918           pool_foreach (pr, vam->pending_routes,
919           ({
920             int is_adr = 1;
921             adr = &pr->r;
922             pme = &pr->t;
923
924             /* May fail, e.g. due to interface down */
925             switch (pr->resolve_type)
926               {
927               case RESOLVE_IP4_ADD_DEL_ROUTE:
928                 e = ip4_probe_neighbor
929                   (vm, (ip4_address_t *)&(adr->next_hop_address),
930                    ntohl(adr->next_hop_sw_if_index));
931                 break;
932
933               case RESOLVE_IP6_ADD_DEL_ROUTE:
934                 e = ip6_probe_neighbor
935                   (vm, (ip6_address_t *)&(adr->next_hop_address),
936                    ntohl(adr->next_hop_sw_if_index));
937                 break;
938
939               case RESOLVE_MPLS_ETHERNET_ADD_DEL:
940                 is_adr = 0;
941                 e = ip4_probe_neighbor
942                   (vm,
943                    (ip4_address_t *)&(pme->next_hop_ip4_address_in_outer_vrf),
944                    pme->resolve_opaque);
945                 break;
946
947               default:
948                 e = clib_error_return (0, "resolver: BOGUS TYPE %d",
949                                        pr->resolve_type);
950               }
951             if (e)
952               {
953                 clib_error_report (e);
954                 if (is_adr)
955                   adr->resolve_attempts = 1;
956                 else
957                   pme->resolve_attempts = 1;
958               }
959             if (is_adr)
960               {
961                 adr->resolve_attempts -= 1;
962                 if (adr->resolve_attempts == 0)
963                   vec_add1 (resolution_failures,
964                             pr - vam->pending_routes);
965               }
966             else
967               {
968                 pme->resolve_attempts -= 1;
969                 if (pme->resolve_attempts == 0)
970                   vec_add1 (resolution_failures,
971                             pr - vam->pending_routes);
972               }
973           }));
974           /* *INDENT-ON* */
975           for (i = 0; i < vec_len (resolution_failures); i++)
976             {
977               pr = pool_elt_at_index (vam->pending_routes,
978                                       resolution_failures[i]);
979               adr = &pr->r;
980               pme = &pr->t;
981
982               switch (pr->resolve_type)
983                 {
984                 case RESOLVE_IP4_ADD_DEL_ROUTE:
985                   clib_warning ("resolver: add %U/%d via %U retry failure",
986                                 format_ip4_address,
987                                 (ip4_address_t *) & (adr->dst_address),
988                                 adr->dst_address_length,
989                                 format_ip4_address,
990                                 (ip4_address_t *) & (adr->next_hop_address));
991                   break;
992
993                 case RESOLVE_IP6_ADD_DEL_ROUTE:
994                   clib_warning ("resolver: add %U/%d via %U retry failure",
995                                 format_ip6_address,
996                                 (ip6_address_t *) & (adr->dst_address),
997                                 adr->dst_address_length,
998                                 format_ip6_address,
999                                 (ip6_address_t *) & (adr->next_hop_address));
1000                   break;
1001
1002                 case RESOLVE_MPLS_ETHERNET_ADD_DEL:
1003                   clib_warning ("resolver: add mpls-o-e via %U retry failure",
1004                                 format_ip4_address,
1005                                 (ip4_address_t *) &
1006                                 (pme->next_hop_ip4_address_in_outer_vrf));
1007                   break;
1008
1009                 default:
1010                   clib_warning ("BUG");
1011                 }
1012               pool_put (vam->pending_routes, pr);
1013             }
1014           vec_reset_length (resolution_failures);
1015           break;
1016         }
1017       if (pool_elts (vam->pending_routes) == 0)
1018         timeout = 100.0;
1019       vec_reset_length (event_data);
1020     }
1021   return 0;                     /* or not */
1022 }
1023
1024 /* *INDENT-OFF* */
1025 VLIB_REGISTER_NODE (vpe_resolver_process_node,static) = {
1026   .function = resolver_process,
1027   .type = VLIB_NODE_TYPE_PROCESS,
1028   .name = "vpe-route-resolver-process",
1029 };
1030 /* *INDENT-ON* */
1031
1032 static int
1033 add_del_route_t_handler (u8 is_multipath,
1034                          u8 is_add,
1035                          u8 is_drop,
1036                          u8 is_unreach,
1037                          u8 is_prohibit,
1038                          u8 is_local,
1039                          u8 is_classify,
1040                          u32 classify_table_index,
1041                          u8 is_resolve_host,
1042                          u8 is_resolve_attached,
1043                          u32 fib_index,
1044                          const fib_prefix_t * prefix,
1045                          u8 next_hop_proto_is_ip4,
1046                          const ip46_address_t * next_hop,
1047                          u32 next_hop_sw_if_index,
1048                          u8 next_hop_fib_index,
1049                          u32 next_hop_weight, u32 next_hop_out_label)
1050 {
1051   vnet_classify_main_t *cm = &vnet_classify_main;
1052   stats_main_t *sm = &stats_main;
1053
1054   if (is_multipath)
1055     {
1056       fib_route_path_flags_t path_flags = FIB_ROUTE_PATH_FLAG_NONE;
1057
1058       dslock (sm, 1 /* release hint */ , 10 /* tag */ );
1059
1060       if (is_resolve_host)
1061         path_flags |= FIB_ROUTE_PATH_RESOLVE_VIA_HOST;
1062       if (is_resolve_attached)
1063         path_flags |= FIB_ROUTE_PATH_RESOLVE_VIA_ATTACHED;
1064
1065       if (is_add)
1066         fib_table_entry_path_add (fib_index,
1067                                   prefix,
1068                                   FIB_SOURCE_API,
1069                                   FIB_ENTRY_FLAG_NONE,
1070                                   (next_hop_proto_is_ip4 ?
1071                                    FIB_PROTOCOL_IP4 :
1072                                    FIB_PROTOCOL_IP6),
1073                                   next_hop,
1074                                   next_hop_sw_if_index,
1075                                   next_hop_fib_index,
1076                                   next_hop_weight,
1077                                   next_hop_out_label, path_flags);
1078       else
1079         fib_table_entry_path_remove (fib_index,
1080                                      prefix,
1081                                      FIB_SOURCE_API,
1082                                      (next_hop_proto_is_ip4 ?
1083                                       FIB_PROTOCOL_IP4 :
1084                                       FIB_PROTOCOL_IP6),
1085                                      next_hop,
1086                                      next_hop_sw_if_index,
1087                                      next_hop_fib_index,
1088                                      next_hop_weight, path_flags);
1089
1090       dsunlock (sm);
1091       return 0;
1092     }
1093
1094   dslock (sm, 1 /* release hint */ , 2 /* tag */ );
1095
1096   if (is_drop || is_local || is_classify || is_unreach || is_prohibit)
1097     {
1098       /*
1099        * special route types that link directly to the adj
1100        */
1101       if (is_add)
1102         {
1103           dpo_id_t dpo = DPO_INVALID;
1104           dpo_proto_t dproto;
1105
1106           dproto = fib_proto_to_dpo (prefix->fp_proto);
1107
1108           if (is_drop)
1109             ip_null_dpo_add_and_lock (dproto, IP_NULL_ACTION_NONE, &dpo);
1110           else if (is_local)
1111             receive_dpo_add_or_lock (dproto, ~0, NULL, &dpo);
1112           else if (is_unreach)
1113             ip_null_dpo_add_and_lock (dproto,
1114                                       IP_NULL_ACTION_SEND_ICMP_UNREACH, &dpo);
1115           else if (is_prohibit)
1116             ip_null_dpo_add_and_lock (dproto,
1117                                       IP_NULL_ACTION_SEND_ICMP_PROHIBIT,
1118                                       &dpo);
1119           else if (is_classify)
1120             {
1121               if (pool_is_free_index (cm->tables,
1122                                       ntohl (classify_table_index)))
1123                 {
1124                   dsunlock (sm);
1125                   return VNET_API_ERROR_NO_SUCH_TABLE;
1126                 }
1127
1128               dpo_set (&dpo, DPO_CLASSIFY, dproto,
1129                        classify_dpo_create (prefix->fp_proto,
1130                                             ntohl (classify_table_index)));
1131             }
1132           else
1133             {
1134               dsunlock (sm);
1135               return VNET_API_ERROR_NO_SUCH_TABLE;
1136             }
1137
1138           fib_table_entry_special_dpo_update (fib_index,
1139                                               prefix,
1140                                               FIB_SOURCE_API,
1141                                               FIB_ENTRY_FLAG_EXCLUSIVE, &dpo);
1142           dpo_reset (&dpo);
1143         }
1144       else
1145         {
1146           fib_table_entry_special_remove (fib_index, prefix, FIB_SOURCE_API);
1147         }
1148     }
1149   else
1150     {
1151       if (is_add)
1152         {
1153           fib_route_path_flags_t path_flags = FIB_ROUTE_PATH_FLAG_NONE;
1154
1155           if (is_resolve_host)
1156             path_flags |= FIB_ROUTE_PATH_RESOLVE_VIA_HOST;
1157           if (is_resolve_attached)
1158             path_flags |= FIB_ROUTE_PATH_RESOLVE_VIA_ATTACHED;
1159
1160           fib_table_entry_update_one_path (fib_index,
1161                                            prefix,
1162                                            FIB_SOURCE_API,
1163                                            FIB_ENTRY_FLAG_NONE,
1164                                            (next_hop_proto_is_ip4 ?
1165                                             FIB_PROTOCOL_IP4 :
1166                                             FIB_PROTOCOL_IP6),
1167                                            next_hop,
1168                                            next_hop_sw_if_index,
1169                                            next_hop_fib_index,
1170                                            next_hop_weight,
1171                                            next_hop_out_label, path_flags);
1172         }
1173       else
1174         {
1175           fib_table_entry_delete (fib_index, prefix, FIB_SOURCE_API);
1176         }
1177     }
1178
1179   dsunlock (sm);
1180   return (0);
1181 }
1182
1183 static int
1184 add_del_route_check (fib_protocol_t table_proto,
1185                      u32 table_id,
1186                      u32 next_hop_sw_if_index,
1187                      fib_protocol_t next_hop_table_proto,
1188                      u32 next_hop_table_id,
1189                      u8 create_missing_tables,
1190                      u32 * fib_index, u32 * next_hop_fib_index)
1191 {
1192   vnet_main_t *vnm = vnet_get_main ();
1193
1194   *fib_index = fib_table_find (table_proto, ntohl (table_id));
1195   if (~0 == *fib_index)
1196     {
1197       if (create_missing_tables)
1198         {
1199           *fib_index = fib_table_find_or_create_and_lock (table_proto,
1200                                                           ntohl (table_id));
1201         }
1202       else
1203         {
1204           /* No such VRF, and we weren't asked to create one */
1205           return VNET_API_ERROR_NO_SUCH_FIB;
1206         }
1207     }
1208
1209   if (~0 != ntohl (next_hop_sw_if_index))
1210     {
1211       if (pool_is_free_index (vnm->interface_main.sw_interfaces,
1212                               ntohl (next_hop_sw_if_index)))
1213         {
1214           return VNET_API_ERROR_NO_MATCHING_INTERFACE;
1215         }
1216     }
1217   else
1218     {
1219       *next_hop_fib_index = fib_table_find (next_hop_table_proto,
1220                                             ntohl (next_hop_table_id));
1221
1222       if (~0 == *next_hop_fib_index)
1223         {
1224           if (create_missing_tables)
1225             {
1226               *next_hop_fib_index =
1227                 fib_table_find_or_create_and_lock (next_hop_table_proto,
1228                                                    ntohl (next_hop_table_id));
1229             }
1230           else
1231             {
1232               /* No such VRF, and we weren't asked to create one */
1233               return VNET_API_ERROR_NO_SUCH_FIB;
1234             }
1235         }
1236     }
1237
1238   return (0);
1239 }
1240
1241 static int
1242 ip4_add_del_route_t_handler (vl_api_ip_add_del_route_t * mp)
1243 {
1244   u32 fib_index, next_hop_fib_index;
1245   int rv;
1246
1247   rv = add_del_route_check (FIB_PROTOCOL_IP4,
1248                             mp->table_id,
1249                             mp->next_hop_sw_if_index,
1250                             FIB_PROTOCOL_IP4,
1251                             mp->next_hop_table_id,
1252                             mp->create_vrf_if_needed,
1253                             &fib_index, &next_hop_fib_index);
1254
1255   if (0 != rv)
1256     return (rv);
1257
1258   fib_prefix_t pfx = {
1259     .fp_len = mp->dst_address_length,
1260     .fp_proto = FIB_PROTOCOL_IP4,
1261   };
1262   clib_memcpy (&pfx.fp_addr.ip4, mp->dst_address, sizeof (pfx.fp_addr.ip4));
1263
1264   ip46_address_t nh;
1265   memset (&nh, 0, sizeof (nh));
1266   memcpy (&nh.ip4, mp->next_hop_address, sizeof (nh.ip4));
1267
1268   return (add_del_route_t_handler (mp->is_multipath,
1269                                    mp->is_add,
1270                                    mp->is_drop,
1271                                    mp->is_unreach,
1272                                    mp->is_prohibit,
1273                                    mp->is_local,
1274                                    mp->is_classify,
1275                                    mp->classify_table_index,
1276                                    mp->is_resolve_host,
1277                                    mp->is_resolve_attached,
1278                                    fib_index, &pfx, 1,
1279                                    &nh,
1280                                    ntohl (mp->next_hop_sw_if_index),
1281                                    next_hop_fib_index,
1282                                    mp->next_hop_weight,
1283                                    ntohl (mp->next_hop_out_label)));
1284 }
1285
1286 static int
1287 ip6_add_del_route_t_handler (vl_api_ip_add_del_route_t * mp)
1288 {
1289   u32 fib_index, next_hop_fib_index;
1290   int rv;
1291
1292   rv = add_del_route_check (FIB_PROTOCOL_IP6,
1293                             mp->table_id,
1294                             mp->next_hop_sw_if_index,
1295                             FIB_PROTOCOL_IP6,
1296                             mp->next_hop_table_id,
1297                             mp->create_vrf_if_needed,
1298                             &fib_index, &next_hop_fib_index);
1299
1300   if (0 != rv)
1301     return (rv);
1302
1303   fib_prefix_t pfx = {
1304     .fp_len = mp->dst_address_length,
1305     .fp_proto = FIB_PROTOCOL_IP6,
1306   };
1307   clib_memcpy (&pfx.fp_addr.ip6, mp->dst_address, sizeof (pfx.fp_addr.ip6));
1308
1309   ip46_address_t nh;
1310   memset (&nh, 0, sizeof (nh));
1311   memcpy (&nh.ip6, mp->next_hop_address, sizeof (nh.ip6));
1312
1313   return (add_del_route_t_handler (mp->is_multipath,
1314                                    mp->is_add,
1315                                    mp->is_drop,
1316                                    mp->is_unreach,
1317                                    mp->is_prohibit,
1318                                    mp->is_local,
1319                                    mp->is_classify,
1320                                    mp->classify_table_index,
1321                                    mp->is_resolve_host,
1322                                    mp->is_resolve_attached,
1323                                    fib_index, &pfx, 0,
1324                                    &nh, ntohl (mp->next_hop_sw_if_index),
1325                                    next_hop_fib_index,
1326                                    mp->next_hop_weight,
1327                                    ntohl (mp->next_hop_out_label)));
1328 }
1329
1330 static int
1331 mpls_route_add_del_t_handler (vnet_main_t * vnm,
1332                               vl_api_mpls_route_add_del_t * mp)
1333 {
1334   u32 fib_index, next_hop_fib_index;
1335
1336   int rv;
1337
1338   fib_prefix_t pfx = {
1339     .fp_len = 21,
1340     .fp_proto = FIB_PROTOCOL_MPLS,
1341     .fp_eos = mp->mr_eos,
1342     .fp_label = ntohl (mp->mr_label),
1343   };
1344   if (pfx.fp_eos)
1345     {
1346       if (mp->mr_next_hop_proto_is_ip4)
1347         {
1348           pfx.fp_payload_proto = DPO_PROTO_IP4;
1349         }
1350       else
1351         {
1352           pfx.fp_payload_proto = DPO_PROTO_IP6;
1353         }
1354     }
1355   else
1356     {
1357       pfx.fp_payload_proto = DPO_PROTO_MPLS;
1358     }
1359
1360   rv = add_del_route_check (FIB_PROTOCOL_MPLS,
1361                             mp->mr_table_id,
1362                             mp->mr_next_hop_sw_if_index,
1363                             dpo_proto_to_fib (pfx.fp_payload_proto),
1364                             mp->mr_next_hop_table_id,
1365                             mp->mr_create_table_if_needed,
1366                             &fib_index, &next_hop_fib_index);
1367
1368   if (0 != rv)
1369     return (rv);
1370
1371   ip46_address_t nh;
1372   memset (&nh, 0, sizeof (nh));
1373
1374   if (mp->mr_next_hop_proto_is_ip4)
1375     memcpy (&nh.ip4, mp->mr_next_hop, sizeof (nh.ip4));
1376   else
1377     memcpy (&nh.ip6, mp->mr_next_hop, sizeof (nh.ip6));
1378
1379   return (add_del_route_t_handler (mp->mr_is_multipath, mp->mr_is_add, 0,       // mp->is_drop,
1380                                    0,   // mp->is_unreach,
1381                                    0,   // mp->is_prohibit,
1382                                    0,   // mp->is_local,
1383                                    mp->mr_is_classify,
1384                                    mp->mr_classify_table_index,
1385                                    mp->mr_is_resolve_host,
1386                                    mp->mr_is_resolve_attached,
1387                                    fib_index, &pfx,
1388                                    mp->mr_next_hop_proto_is_ip4,
1389                                    &nh, ntohl (mp->mr_next_hop_sw_if_index),
1390                                    next_hop_fib_index,
1391                                    mp->mr_next_hop_weight,
1392                                    ntohl (mp->mr_next_hop_out_label)));
1393 }
1394
1395 void
1396 vl_api_ip_add_del_route_t_handler (vl_api_ip_add_del_route_t * mp)
1397 {
1398   vl_api_ip_add_del_route_reply_t *rmp;
1399   int rv;
1400   vnet_main_t *vnm = vnet_get_main ();
1401
1402   vnm->api_errno = 0;
1403
1404   if (mp->is_ipv6)
1405     rv = ip6_add_del_route_t_handler (mp);
1406   else
1407     rv = ip4_add_del_route_t_handler (mp);
1408
1409   rv = (rv == 0) ? vnm->api_errno : rv;
1410
1411   REPLY_MACRO (VL_API_IP_ADD_DEL_ROUTE_REPLY);
1412 }
1413
1414 void
1415 vl_api_mpls_route_add_del_t_handler (vl_api_mpls_route_add_del_t * mp)
1416 {
1417   vl_api_mpls_route_add_del_reply_t *rmp;
1418   vnet_main_t *vnm;
1419   int rv;
1420
1421   vnm = vnet_get_main ();
1422   vnm->api_errno = 0;
1423
1424   rv = mpls_route_add_del_t_handler (vnm, mp);
1425
1426   rv = (rv == 0) ? vnm->api_errno : rv;
1427
1428   REPLY_MACRO (VL_API_MPLS_ROUTE_ADD_DEL_REPLY);
1429 }
1430
1431 static int
1432 mpls_ip_bind_unbind_handler (vnet_main_t * vnm,
1433                              vl_api_mpls_ip_bind_unbind_t * mp)
1434 {
1435   u32 mpls_fib_index, ip_fib_index;
1436
1437   mpls_fib_index =
1438     fib_table_find (FIB_PROTOCOL_MPLS, ntohl (mp->mb_mpls_table_id));
1439
1440   if (~0 == mpls_fib_index)
1441     {
1442       if (mp->mb_create_table_if_needed)
1443         {
1444           mpls_fib_index =
1445             fib_table_find_or_create_and_lock (FIB_PROTOCOL_MPLS,
1446                                                ntohl (mp->mb_mpls_table_id));
1447         }
1448       else
1449         return VNET_API_ERROR_NO_SUCH_FIB;
1450     }
1451
1452   ip_fib_index = fib_table_find ((mp->mb_is_ip4 ?
1453                                   FIB_PROTOCOL_IP4 :
1454                                   FIB_PROTOCOL_IP6),
1455                                  ntohl (mp->mb_ip_table_id));
1456   if (~0 == ip_fib_index)
1457     return VNET_API_ERROR_NO_SUCH_FIB;
1458
1459   fib_prefix_t pfx = {
1460     .fp_len = mp->mb_address_length,
1461   };
1462
1463   if (mp->mb_is_ip4)
1464     {
1465       pfx.fp_proto = FIB_PROTOCOL_IP4;
1466       clib_memcpy (&pfx.fp_addr.ip4, mp->mb_address,
1467                    sizeof (pfx.fp_addr.ip4));
1468     }
1469   else
1470     {
1471       pfx.fp_proto = FIB_PROTOCOL_IP6;
1472       clib_memcpy (&pfx.fp_addr.ip6, mp->mb_address,
1473                    sizeof (pfx.fp_addr.ip6));
1474     }
1475
1476   if (mp->mb_is_bind)
1477     fib_table_entry_local_label_add (ip_fib_index, &pfx,
1478                                      ntohl (mp->mb_label));
1479   else
1480     fib_table_entry_local_label_remove (ip_fib_index, &pfx,
1481                                         ntohl (mp->mb_label));
1482
1483   return (0);
1484 }
1485
1486 void
1487 vl_api_mpls_ip_bind_unbind_t_handler (vl_api_mpls_ip_bind_unbind_t * mp)
1488 {
1489   vl_api_mpls_route_add_del_reply_t *rmp;
1490   vnet_main_t *vnm;
1491   int rv;
1492
1493   vnm = vnet_get_main ();
1494   vnm->api_errno = 0;
1495
1496   rv = mpls_ip_bind_unbind_handler (vnm, mp);
1497
1498   rv = (rv == 0) ? vnm->api_errno : rv;
1499
1500   REPLY_MACRO (VL_API_MPLS_ROUTE_ADD_DEL_REPLY);
1501 }
1502
1503 static void
1504   vl_api_sw_interface_add_del_address_t_handler
1505   (vl_api_sw_interface_add_del_address_t * mp)
1506 {
1507   vlib_main_t *vm = vlib_get_main ();
1508   vl_api_sw_interface_add_del_address_reply_t *rmp;
1509   int rv = 0;
1510   u32 is_del;
1511
1512   VALIDATE_SW_IF_INDEX (mp);
1513
1514   is_del = mp->is_add == 0;
1515
1516   if (mp->del_all)
1517     ip_del_all_interface_addresses (vm, ntohl (mp->sw_if_index));
1518   else if (mp->is_ipv6)
1519     ip6_add_del_interface_address (vm, ntohl (mp->sw_if_index),
1520                                    (void *) mp->address,
1521                                    mp->address_length, is_del);
1522   else
1523     ip4_add_del_interface_address (vm, ntohl (mp->sw_if_index),
1524                                    (void *) mp->address,
1525                                    mp->address_length, is_del);
1526
1527   BAD_SW_IF_INDEX_LABEL;
1528
1529   REPLY_MACRO (VL_API_SW_INTERFACE_ADD_DEL_ADDRESS_REPLY);
1530 }
1531
1532 static void
1533 vl_api_sw_interface_set_table_t_handler (vl_api_sw_interface_set_table_t * mp)
1534 {
1535   int rv = 0;
1536   u32 table_id = ntohl (mp->vrf_id);
1537   u32 sw_if_index = ntohl (mp->sw_if_index);
1538   vl_api_sw_interface_set_table_reply_t *rmp;
1539   stats_main_t *sm = &stats_main;
1540   u32 fib_index;
1541
1542   VALIDATE_SW_IF_INDEX (mp);
1543
1544   dslock (sm, 1 /* release hint */ , 4 /* tag */ );
1545
1546   if (mp->is_ipv6)
1547     {
1548       fib_index = fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP6,
1549                                                      table_id);
1550
1551       vec_validate (ip6_main.fib_index_by_sw_if_index, sw_if_index);
1552       ip6_main.fib_index_by_sw_if_index[sw_if_index] = fib_index;
1553     }
1554   else
1555     {
1556
1557       fib_index = fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4,
1558                                                      table_id);
1559
1560       vec_validate (ip4_main.fib_index_by_sw_if_index, sw_if_index);
1561       ip4_main.fib_index_by_sw_if_index[sw_if_index] = fib_index;
1562     }
1563   dsunlock (sm);
1564
1565   BAD_SW_IF_INDEX_LABEL;
1566
1567   REPLY_MACRO (VL_API_SW_INTERFACE_SET_TABLE_REPLY);
1568 }
1569
1570 static void
1571 vl_api_sw_interface_set_vpath_t_handler (vl_api_sw_interface_set_vpath_t * mp)
1572 {
1573   vlib_main_t *vm = vlib_get_main ();
1574   ip4_main_t *im4 = &ip4_main;
1575   ip6_main_t *im6 = &ip6_main;
1576   vl_api_sw_interface_set_vpath_reply_t *rmp;
1577   int rv = 0;
1578   u32 ci;
1579   u32 sw_if_index = ntohl (mp->sw_if_index);
1580   ip4_main_t *ip4m = &ip4_main;
1581   ip6_main_t *ip6m = &ip6_main;
1582   ip_lookup_main_t *ip4lm = &ip4m->lookup_main;
1583   ip_lookup_main_t *ip6lm = &ip6m->lookup_main;
1584   ip_config_main_t *rx_cm4u =
1585     &ip4lm->feature_config_mains[VNET_IP_RX_UNICAST_FEAT];
1586   ip_config_main_t *rx_cm4m =
1587     &ip4lm->feature_config_mains[VNET_IP_RX_MULTICAST_FEAT];
1588   ip_config_main_t *rx_cm6u =
1589     &ip6lm->feature_config_mains[VNET_IP_RX_UNICAST_FEAT];
1590   ip_config_main_t *rx_cm6m =
1591     &ip6lm->feature_config_mains[VNET_IP_RX_MULTICAST_FEAT];
1592
1593   VALIDATE_SW_IF_INDEX (mp);
1594
1595   l2input_intf_bitmap_enable (sw_if_index, L2INPUT_FEAT_VPATH, mp->enable);
1596   if (mp->enable)
1597     {
1598       ci = rx_cm4u->config_index_by_sw_if_index[sw_if_index];   //IP4 unicast
1599       ci = vnet_config_add_feature (vm, &rx_cm4u->config_main,
1600                                     ci,
1601                                     im4->ip4_unicast_rx_feature_vpath, 0, 0);
1602       rx_cm4u->config_index_by_sw_if_index[sw_if_index] = ci;
1603       ci = rx_cm4m->config_index_by_sw_if_index[sw_if_index];   //IP4 mcast
1604       ci = vnet_config_add_feature (vm, &rx_cm4m->config_main,
1605                                     ci,
1606                                     im4->ip4_multicast_rx_feature_vpath,
1607                                     0, 0);
1608       rx_cm4m->config_index_by_sw_if_index[sw_if_index] = ci;
1609       ci = rx_cm6u->config_index_by_sw_if_index[sw_if_index];   //IP6 unicast
1610       ci = vnet_config_add_feature (vm, &rx_cm6u->config_main,
1611                                     ci,
1612                                     im6->ip6_unicast_rx_feature_vpath, 0, 0);
1613       rx_cm6u->config_index_by_sw_if_index[sw_if_index] = ci;
1614       ci = rx_cm6m->config_index_by_sw_if_index[sw_if_index];   //IP6 mcast
1615       ci = vnet_config_add_feature (vm, &rx_cm6m->config_main,
1616                                     ci,
1617                                     im6->ip6_multicast_rx_feature_vpath,
1618                                     0, 0);
1619       rx_cm6m->config_index_by_sw_if_index[sw_if_index] = ci;
1620     }
1621   else
1622     {
1623       ci = rx_cm4u->config_index_by_sw_if_index[sw_if_index];   //IP4 unicast
1624       ci = vnet_config_del_feature (vm, &rx_cm4u->config_main,
1625                                     ci,
1626                                     im4->ip4_unicast_rx_feature_vpath, 0, 0);
1627       rx_cm4u->config_index_by_sw_if_index[sw_if_index] = ci;
1628       ci = rx_cm4m->config_index_by_sw_if_index[sw_if_index];   //IP4 mcast
1629       ci = vnet_config_del_feature (vm, &rx_cm4m->config_main,
1630                                     ci,
1631                                     im4->ip4_multicast_rx_feature_vpath,
1632                                     0, 0);
1633       rx_cm4m->config_index_by_sw_if_index[sw_if_index] = ci;
1634       ci = rx_cm6u->config_index_by_sw_if_index[sw_if_index];   //IP6 unicast
1635       ci = vnet_config_del_feature (vm, &rx_cm6u->config_main,
1636                                     ci,
1637                                     im6->ip6_unicast_rx_feature_vpath, 0, 0);
1638       rx_cm6u->config_index_by_sw_if_index[sw_if_index] = ci;
1639       ci = rx_cm6m->config_index_by_sw_if_index[sw_if_index];   //IP6 mcast
1640       ci = vnet_config_del_feature (vm, &rx_cm6m->config_main,
1641                                     ci,
1642                                     im6->ip6_multicast_rx_feature_vpath,
1643                                     0, 0);
1644       rx_cm6m->config_index_by_sw_if_index[sw_if_index] = ci;
1645     }
1646
1647   BAD_SW_IF_INDEX_LABEL;
1648
1649   REPLY_MACRO (VL_API_SW_INTERFACE_SET_VPATH_REPLY);
1650 }
1651
1652 static void
1653   vl_api_sw_interface_set_l2_xconnect_t_handler
1654   (vl_api_sw_interface_set_l2_xconnect_t * mp)
1655 {
1656   vl_api_sw_interface_set_l2_xconnect_reply_t *rmp;
1657   int rv = 0;
1658   u32 rx_sw_if_index = ntohl (mp->rx_sw_if_index);
1659   u32 tx_sw_if_index = ntohl (mp->tx_sw_if_index);
1660   vlib_main_t *vm = vlib_get_main ();
1661   vnet_main_t *vnm = vnet_get_main ();
1662
1663   VALIDATE_RX_SW_IF_INDEX (mp);
1664
1665   if (mp->enable)
1666     {
1667       VALIDATE_TX_SW_IF_INDEX (mp);
1668       rv = set_int_l2_mode (vm, vnm, MODE_L2_XC,
1669                             rx_sw_if_index, 0, 0, 0, tx_sw_if_index);
1670     }
1671   else
1672     {
1673       rv = set_int_l2_mode (vm, vnm, MODE_L3, rx_sw_if_index, 0, 0, 0, 0);
1674     }
1675
1676   BAD_RX_SW_IF_INDEX_LABEL;
1677   BAD_TX_SW_IF_INDEX_LABEL;
1678
1679   REPLY_MACRO (VL_API_SW_INTERFACE_SET_L2_XCONNECT_REPLY);
1680 }
1681
1682 static void
1683   vl_api_sw_interface_set_l2_bridge_t_handler
1684   (vl_api_sw_interface_set_l2_bridge_t * mp)
1685 {
1686   bd_main_t *bdm = &bd_main;
1687   vl_api_sw_interface_set_l2_bridge_reply_t *rmp;
1688   int rv = 0;
1689   u32 rx_sw_if_index = ntohl (mp->rx_sw_if_index);
1690   u32 bd_id = ntohl (mp->bd_id);
1691   u32 bd_index;
1692   u32 bvi = mp->bvi;
1693   u8 shg = mp->shg;
1694   vlib_main_t *vm = vlib_get_main ();
1695   vnet_main_t *vnm = vnet_get_main ();
1696
1697   VALIDATE_RX_SW_IF_INDEX (mp);
1698
1699   bd_index = bd_find_or_add_bd_index (bdm, bd_id);
1700
1701   if (mp->enable)
1702     {
1703       //VALIDATE_TX_SW_IF_INDEX(mp);
1704       rv = set_int_l2_mode (vm, vnm, MODE_L2_BRIDGE,
1705                             rx_sw_if_index, bd_index, bvi, shg, 0);
1706     }
1707   else
1708     {
1709       rv = set_int_l2_mode (vm, vnm, MODE_L3, rx_sw_if_index, 0, 0, 0, 0);
1710     }
1711
1712   BAD_RX_SW_IF_INDEX_LABEL;
1713
1714   REPLY_MACRO (VL_API_SW_INTERFACE_SET_L2_BRIDGE_REPLY);
1715 }
1716
1717 static void
1718   vl_api_sw_interface_set_dpdk_hqos_pipe_t_handler
1719   (vl_api_sw_interface_set_dpdk_hqos_pipe_t * mp)
1720 {
1721   vl_api_sw_interface_set_dpdk_hqos_pipe_reply_t *rmp;
1722   int rv = 0;
1723
1724 #if DPDK > 0
1725   dpdk_main_t *dm = &dpdk_main;
1726   dpdk_device_t *xd;
1727
1728   u32 sw_if_index = ntohl (mp->sw_if_index);
1729   u32 subport = ntohl (mp->subport);
1730   u32 pipe = ntohl (mp->pipe);
1731   u32 profile = ntohl (mp->profile);
1732   vnet_hw_interface_t *hw;
1733
1734   VALIDATE_SW_IF_INDEX (mp);
1735
1736   /* hw_if & dpdk device */
1737   hw = vnet_get_sup_hw_interface (dm->vnet_main, sw_if_index);
1738
1739   xd = vec_elt_at_index (dm->devices, hw->dev_instance);
1740
1741   rv = rte_sched_pipe_config (xd->hqos_ht->hqos, subport, pipe, profile);
1742
1743   BAD_SW_IF_INDEX_LABEL;
1744 #else
1745   clib_warning ("setting HQoS pipe parameters without DPDK not implemented");
1746   rv = VNET_API_ERROR_UNIMPLEMENTED;
1747 #endif /* DPDK */
1748
1749   REPLY_MACRO (VL_API_SW_INTERFACE_SET_DPDK_HQOS_PIPE_REPLY);
1750 }
1751
1752 static void
1753   vl_api_sw_interface_set_dpdk_hqos_subport_t_handler
1754   (vl_api_sw_interface_set_dpdk_hqos_subport_t * mp)
1755 {
1756   vl_api_sw_interface_set_dpdk_hqos_subport_reply_t *rmp;
1757   int rv = 0;
1758
1759 #if DPDK > 0
1760   dpdk_main_t *dm = &dpdk_main;
1761   dpdk_device_t *xd;
1762   struct rte_sched_subport_params p;
1763
1764   u32 sw_if_index = ntohl (mp->sw_if_index);
1765   u32 subport = ntohl (mp->subport);
1766   p.tb_rate = ntohl (mp->tb_rate);
1767   p.tb_size = ntohl (mp->tb_size);
1768   p.tc_rate[0] = ntohl (mp->tc_rate[0]);
1769   p.tc_rate[1] = ntohl (mp->tc_rate[1]);
1770   p.tc_rate[2] = ntohl (mp->tc_rate[2]);
1771   p.tc_rate[3] = ntohl (mp->tc_rate[3]);
1772   p.tc_period = ntohl (mp->tc_period);
1773
1774   vnet_hw_interface_t *hw;
1775
1776   VALIDATE_SW_IF_INDEX (mp);
1777
1778   /* hw_if & dpdk device */
1779   hw = vnet_get_sup_hw_interface (dm->vnet_main, sw_if_index);
1780
1781   xd = vec_elt_at_index (dm->devices, hw->dev_instance);
1782
1783   rv = rte_sched_subport_config (xd->hqos_ht->hqos, subport, &p);
1784
1785   BAD_SW_IF_INDEX_LABEL;
1786 #else
1787   clib_warning
1788     ("setting HQoS subport parameters without DPDK not implemented");
1789   rv = VNET_API_ERROR_UNIMPLEMENTED;
1790 #endif /* DPDK */
1791
1792   REPLY_MACRO (VL_API_SW_INTERFACE_SET_DPDK_HQOS_SUBPORT_REPLY);
1793 }
1794
1795 static void
1796   vl_api_sw_interface_set_dpdk_hqos_tctbl_t_handler
1797   (vl_api_sw_interface_set_dpdk_hqos_tctbl_t * mp)
1798 {
1799   vl_api_sw_interface_set_dpdk_hqos_tctbl_reply_t *rmp;
1800   int rv = 0;
1801
1802 #if DPDK > 0
1803   dpdk_main_t *dm = &dpdk_main;
1804   vlib_thread_main_t *tm = vlib_get_thread_main ();
1805   dpdk_device_t *xd;
1806
1807   u32 sw_if_index = ntohl (mp->sw_if_index);
1808   u32 entry = ntohl (mp->entry);
1809   u32 tc = ntohl (mp->tc);
1810   u32 queue = ntohl (mp->queue);
1811   u32 val, i;
1812
1813   vnet_hw_interface_t *hw;
1814
1815   VALIDATE_SW_IF_INDEX (mp);
1816
1817   /* hw_if & dpdk device */
1818   hw = vnet_get_sup_hw_interface (dm->vnet_main, sw_if_index);
1819
1820   xd = vec_elt_at_index (dm->devices, hw->dev_instance);
1821
1822   if (tc >= RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE)
1823     {
1824       clib_warning ("invalid traffic class !!");
1825       rv = VNET_API_ERROR_INVALID_VALUE;
1826       goto done;
1827     }
1828   if (queue >= RTE_SCHED_QUEUES_PER_TRAFFIC_CLASS)
1829     {
1830       clib_warning ("invalid queue !!");
1831       rv = VNET_API_ERROR_INVALID_VALUE;
1832       goto done;
1833     }
1834
1835   /* Detect the set of worker threads */
1836   uword *p = hash_get_mem (tm->thread_registrations_by_name, "workers");
1837
1838   if (p == 0)
1839     {
1840       clib_warning ("worker thread registration AWOL !!");
1841       rv = VNET_API_ERROR_INVALID_VALUE_2;
1842       goto done;
1843     }
1844
1845   vlib_thread_registration_t *tr = (vlib_thread_registration_t *) p[0];
1846   int worker_thread_first = tr->first_index;
1847   int worker_thread_count = tr->count;
1848
1849   val = tc * RTE_SCHED_QUEUES_PER_TRAFFIC_CLASS + queue;
1850   for (i = 0; i < worker_thread_count; i++)
1851     xd->hqos_wt[worker_thread_first + i].hqos_tc_table[entry] = val;
1852
1853   BAD_SW_IF_INDEX_LABEL;
1854 done:
1855 #else
1856   clib_warning ("setting HQoS DSCP table entry without DPDK not implemented");
1857   rv = VNET_API_ERROR_UNIMPLEMENTED;
1858 #endif /* DPDK */
1859
1860   REPLY_MACRO (VL_API_SW_INTERFACE_SET_DPDK_HQOS_TCTBL_REPLY);
1861 }
1862
1863 static void
1864 vl_api_bridge_domain_add_del_t_handler (vl_api_bridge_domain_add_del_t * mp)
1865 {
1866   vlib_main_t *vm = vlib_get_main ();
1867   bd_main_t *bdm = &bd_main;
1868   vl_api_bridge_domain_add_del_reply_t *rmp;
1869   int rv = 0;
1870   u32 enable_flags = 0, disable_flags = 0;
1871   u32 bd_id = ntohl (mp->bd_id);
1872   u32 bd_index;
1873
1874   if (mp->is_add)
1875     {
1876       bd_index = bd_find_or_add_bd_index (bdm, bd_id);
1877
1878       if (mp->flood)
1879         enable_flags |= L2_FLOOD;
1880       else
1881         disable_flags |= L2_FLOOD;
1882
1883       if (mp->uu_flood)
1884         enable_flags |= L2_UU_FLOOD;
1885       else
1886         disable_flags |= L2_UU_FLOOD;
1887
1888       if (mp->forward)
1889         enable_flags |= L2_FWD;
1890       else
1891         disable_flags |= L2_FWD;
1892
1893       if (mp->arp_term)
1894         enable_flags |= L2_ARP_TERM;
1895       else
1896         disable_flags |= L2_ARP_TERM;
1897
1898       if (mp->learn)
1899         enable_flags |= L2_LEARN;
1900       else
1901         disable_flags |= L2_LEARN;
1902
1903       if (enable_flags)
1904         bd_set_flags (vm, bd_index, enable_flags, 1 /* enable */ );
1905
1906       if (disable_flags)
1907         bd_set_flags (vm, bd_index, disable_flags, 0 /* disable */ );
1908
1909     }
1910   else
1911     rv = bd_delete_bd_index (bdm, bd_id);
1912
1913   REPLY_MACRO (VL_API_BRIDGE_DOMAIN_ADD_DEL_REPLY);
1914 }
1915
1916 static void
1917 vl_api_bridge_domain_details_t_handler (vl_api_bridge_domain_details_t * mp)
1918 {
1919   clib_warning ("BUG");
1920 }
1921
1922 static void
1923   vl_api_bridge_domain_sw_if_details_t_handler
1924   (vl_api_bridge_domain_sw_if_details_t * mp)
1925 {
1926   clib_warning ("BUG");
1927 }
1928
1929 static void
1930 send_bridge_domain_details (unix_shared_memory_queue_t * q,
1931                             l2_bridge_domain_t * bd_config,
1932                             u32 n_sw_ifs, u32 context)
1933 {
1934   vl_api_bridge_domain_details_t *mp;
1935
1936   mp = vl_msg_api_alloc (sizeof (*mp));
1937   memset (mp, 0, sizeof (*mp));
1938   mp->_vl_msg_id = ntohs (VL_API_BRIDGE_DOMAIN_DETAILS);
1939   mp->bd_id = ntohl (bd_config->bd_id);
1940   mp->flood = bd_feature_flood (bd_config);
1941   mp->uu_flood = bd_feature_uu_flood (bd_config);
1942   mp->forward = bd_feature_forward (bd_config);
1943   mp->learn = bd_feature_learn (bd_config);
1944   mp->arp_term = bd_feature_arp_term (bd_config);
1945   mp->bvi_sw_if_index = ntohl (bd_config->bvi_sw_if_index);
1946   mp->n_sw_ifs = ntohl (n_sw_ifs);
1947   mp->context = context;
1948
1949   vl_msg_api_send_shmem (q, (u8 *) & mp);
1950 }
1951
1952 static void
1953 send_bd_sw_if_details (l2input_main_t * l2im,
1954                        unix_shared_memory_queue_t * q,
1955                        l2_flood_member_t * member, u32 bd_id, u32 context)
1956 {
1957   vl_api_bridge_domain_sw_if_details_t *mp;
1958   l2_input_config_t *input_cfg;
1959
1960   mp = vl_msg_api_alloc (sizeof (*mp));
1961   memset (mp, 0, sizeof (*mp));
1962   mp->_vl_msg_id = ntohs (VL_API_BRIDGE_DOMAIN_SW_IF_DETAILS);
1963   mp->bd_id = ntohl (bd_id);
1964   mp->sw_if_index = ntohl (member->sw_if_index);
1965   input_cfg = vec_elt_at_index (l2im->configs, member->sw_if_index);
1966   mp->shg = input_cfg->shg;
1967   mp->context = context;
1968
1969   vl_msg_api_send_shmem (q, (u8 *) & mp);
1970 }
1971
1972 static void
1973 vl_api_bridge_domain_dump_t_handler (vl_api_bridge_domain_dump_t * mp)
1974 {
1975   bd_main_t *bdm = &bd_main;
1976   l2input_main_t *l2im = &l2input_main;
1977   unix_shared_memory_queue_t *q;
1978   l2_bridge_domain_t *bd_config;
1979   u32 bd_id, bd_index;
1980   u32 end;
1981
1982   q = vl_api_client_index_to_input_queue (mp->client_index);
1983
1984   if (q == 0)
1985     return;
1986
1987   bd_id = ntohl (mp->bd_id);
1988
1989   bd_index = (bd_id == ~0) ? 0 : bd_find_or_add_bd_index (bdm, bd_id);
1990   end = (bd_id == ~0) ? vec_len (l2im->bd_configs) : bd_index + 1;
1991   for (; bd_index < end; bd_index++)
1992     {
1993       bd_config = l2input_bd_config_from_index (l2im, bd_index);
1994       /* skip dummy bd_id 0 */
1995       if (bd_config && (bd_config->bd_id > 0))
1996         {
1997           u32 n_sw_ifs;
1998           l2_flood_member_t *m;
1999
2000           n_sw_ifs = vec_len (bd_config->members);
2001           send_bridge_domain_details (q, bd_config, n_sw_ifs, mp->context);
2002
2003           vec_foreach (m, bd_config->members)
2004           {
2005             send_bd_sw_if_details (l2im, q, m, bd_config->bd_id, mp->context);
2006           }
2007         }
2008     }
2009 }
2010
2011 static void
2012 vl_api_l2fib_add_del_t_handler (vl_api_l2fib_add_del_t * mp)
2013 {
2014   bd_main_t *bdm = &bd_main;
2015   l2input_main_t *l2im = &l2input_main;
2016   vl_api_l2fib_add_del_reply_t *rmp;
2017   int rv = 0;
2018   u64 mac = 0;
2019   u32 sw_if_index = ntohl (mp->sw_if_index);
2020   u32 bd_id = ntohl (mp->bd_id);
2021   u32 bd_index;
2022   u32 static_mac;
2023   u32 filter_mac;
2024   u32 bvi_mac;
2025   uword *p;
2026
2027   mac = mp->mac;
2028
2029   p = hash_get (bdm->bd_index_by_bd_id, bd_id);
2030   if (!p)
2031     {
2032       rv = VNET_API_ERROR_NO_SUCH_ENTRY;
2033       goto bad_sw_if_index;
2034     }
2035   bd_index = p[0];
2036
2037   if (mp->is_add)
2038     {
2039       VALIDATE_SW_IF_INDEX (mp);
2040       if (vec_len (l2im->configs) <= sw_if_index)
2041         {
2042           rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
2043           goto bad_sw_if_index;
2044         }
2045       else
2046         {
2047           l2_input_config_t *config;
2048           config = vec_elt_at_index (l2im->configs, sw_if_index);
2049           if (config->bridge == 0)
2050             {
2051               rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
2052               goto bad_sw_if_index;
2053             }
2054         }
2055       static_mac = mp->static_mac ? 1 : 0;
2056       filter_mac = mp->filter_mac ? 1 : 0;
2057       bvi_mac = mp->bvi_mac ? 1 : 0;
2058       l2fib_add_entry (mac, bd_index, sw_if_index, static_mac, filter_mac,
2059                        bvi_mac);
2060     }
2061   else
2062     {
2063       l2fib_del_entry (mac, bd_index);
2064     }
2065
2066   BAD_SW_IF_INDEX_LABEL;
2067
2068   REPLY_MACRO (VL_API_L2FIB_ADD_DEL_REPLY);
2069 }
2070
2071 static void
2072 vl_api_l2_flags_t_handler (vl_api_l2_flags_t * mp)
2073 {
2074   vl_api_l2_flags_reply_t *rmp;
2075   int rv = 0;
2076   u32 sw_if_index = ntohl (mp->sw_if_index);
2077   u32 flags = ntohl (mp->feature_bitmap);
2078   u32 rbm = 0;
2079
2080   VALIDATE_SW_IF_INDEX (mp);
2081
2082 #define _(a,b) \
2083     if (flags & L2INPUT_FEAT_ ## a) \
2084         rbm = l2input_intf_bitmap_enable (sw_if_index, L2INPUT_FEAT_ ## a, mp->is_set);
2085   foreach_l2input_feat;
2086 #undef _
2087
2088   BAD_SW_IF_INDEX_LABEL;
2089
2090   /* *INDENT-OFF* */
2091   REPLY_MACRO2(VL_API_L2_FLAGS_REPLY,
2092   ({
2093     rmp->resulting_feature_bitmap = ntohl(rbm);
2094   }));
2095   /* *INDENT-ON* */
2096 }
2097
2098 static void
2099 vl_api_bridge_flags_t_handler (vl_api_bridge_flags_t * mp)
2100 {
2101   vlib_main_t *vm = vlib_get_main ();
2102   bd_main_t *bdm = &bd_main;
2103   vl_api_bridge_flags_reply_t *rmp;
2104   int rv = 0;
2105   u32 bd_id = ntohl (mp->bd_id);
2106   u32 bd_index;
2107   u32 flags = ntohl (mp->feature_bitmap);
2108   uword *p;
2109
2110   p = hash_get (bdm->bd_index_by_bd_id, bd_id);
2111   if (p == 0)
2112     {
2113       rv = VNET_API_ERROR_NO_SUCH_ENTRY;
2114       goto out;
2115     }
2116
2117   bd_index = p[0];
2118
2119   bd_set_flags (vm, bd_index, flags, mp->is_set);
2120
2121 out:
2122   /* *INDENT-OFF* */
2123   REPLY_MACRO2(VL_API_BRIDGE_FLAGS_REPLY,
2124   ({
2125     rmp->resulting_feature_bitmap = ntohl(flags);
2126   }));
2127   /* *INDENT-ON* */
2128 }
2129
2130 static void
2131 vl_api_bd_ip_mac_add_del_t_handler (vl_api_bd_ip_mac_add_del_t * mp)
2132 {
2133   bd_main_t *bdm = &bd_main;
2134   vl_api_bd_ip_mac_add_del_reply_t *rmp;
2135   int rv = 0;
2136   u32 bd_id = ntohl (mp->bd_id);
2137   u32 bd_index;
2138   uword *p;
2139
2140   p = hash_get (bdm->bd_index_by_bd_id, bd_id);
2141   if (p == 0)
2142     {
2143       rv = VNET_API_ERROR_NO_SUCH_ENTRY;
2144       goto out;
2145     }
2146
2147   bd_index = p[0];
2148   if (bd_add_del_ip_mac (bd_index, mp->ip_address,
2149                          mp->mac_address, mp->is_ipv6, mp->is_add))
2150     rv = VNET_API_ERROR_UNSPECIFIED;
2151
2152 out:
2153   REPLY_MACRO (VL_API_BD_IP_MAC_ADD_DEL_REPLY);
2154 }
2155
2156 static void
2157 vl_api_tap_connect_t_handler (vl_api_tap_connect_t * mp, vlib_main_t * vm)
2158 {
2159   int rv;
2160   vl_api_tap_connect_reply_t *rmp;
2161   unix_shared_memory_queue_t *q;
2162   u32 sw_if_index = (u32) ~ 0;
2163
2164   rv = vnet_tap_connect_renumber (vm, mp->tap_name,
2165                                   mp->use_random_mac ? 0 : mp->mac_address,
2166                                   &sw_if_index, mp->renumber,
2167                                   ntohl (mp->custom_dev_instance));
2168
2169   q = vl_api_client_index_to_input_queue (mp->client_index);
2170   if (!q)
2171     return;
2172
2173   rmp = vl_msg_api_alloc (sizeof (*rmp));
2174   rmp->_vl_msg_id = ntohs (VL_API_TAP_CONNECT_REPLY);
2175   rmp->context = mp->context;
2176   rmp->retval = ntohl (rv);
2177   rmp->sw_if_index = ntohl (sw_if_index);
2178
2179   vl_msg_api_send_shmem (q, (u8 *) & rmp);
2180 }
2181
2182 static void
2183 vl_api_tap_modify_t_handler (vl_api_tap_modify_t * mp, vlib_main_t * vm)
2184 {
2185   int rv;
2186   vl_api_tap_modify_reply_t *rmp;
2187   unix_shared_memory_queue_t *q;
2188   u32 sw_if_index = (u32) ~ 0;
2189
2190   rv = vnet_tap_modify (vm, ntohl (mp->sw_if_index), mp->tap_name,
2191                         mp->use_random_mac ? 0 : mp->mac_address,
2192                         &sw_if_index, mp->renumber,
2193                         ntohl (mp->custom_dev_instance));
2194
2195   q = vl_api_client_index_to_input_queue (mp->client_index);
2196   if (!q)
2197     return;
2198
2199   rmp = vl_msg_api_alloc (sizeof (*rmp));
2200   rmp->_vl_msg_id = ntohs (VL_API_TAP_MODIFY_REPLY);
2201   rmp->context = mp->context;
2202   rmp->retval = ntohl (rv);
2203   rmp->sw_if_index = ntohl (sw_if_index);
2204
2205   vl_msg_api_send_shmem (q, (u8 *) & rmp);
2206 }
2207
2208 static void
2209 vl_api_tap_delete_t_handler (vl_api_tap_delete_t * mp, vlib_main_t * vm)
2210 {
2211   int rv;
2212   vpe_api_main_t *vam = &vpe_api_main;
2213   vl_api_tap_delete_reply_t *rmp;
2214   unix_shared_memory_queue_t *q;
2215   u32 sw_if_index = ntohl (mp->sw_if_index);
2216
2217   rv = vnet_tap_delete (vm, sw_if_index);
2218
2219   q = vl_api_client_index_to_input_queue (mp->client_index);
2220   if (!q)
2221     return;
2222
2223   rmp = vl_msg_api_alloc (sizeof (*rmp));
2224   rmp->_vl_msg_id = ntohs (VL_API_TAP_DELETE_REPLY);
2225   rmp->context = mp->context;
2226   rmp->retval = ntohl (rv);
2227
2228   vl_msg_api_send_shmem (q, (u8 *) & rmp);
2229
2230   if (!rv)
2231     send_sw_interface_flags_deleted (vam, q, sw_if_index);
2232 }
2233
2234 static void
2235 vl_api_create_vlan_subif_t_handler (vl_api_create_vlan_subif_t * mp)
2236 {
2237   vl_api_create_vlan_subif_reply_t *rmp;
2238   vnet_main_t *vnm = vnet_get_main ();
2239   u32 hw_if_index, sw_if_index = (u32) ~ 0;
2240   vnet_hw_interface_t *hi;
2241   int rv = 0;
2242   u32 id;
2243   vnet_sw_interface_t template;
2244   uword *p;
2245   vnet_interface_main_t *im = &vnm->interface_main;
2246   u64 sup_and_sub_key;
2247   u64 *kp;
2248   unix_shared_memory_queue_t *q;
2249   clib_error_t *error;
2250
2251   VALIDATE_SW_IF_INDEX (mp);
2252
2253   hw_if_index = ntohl (mp->sw_if_index);
2254   hi = vnet_get_hw_interface (vnm, hw_if_index);
2255
2256   id = ntohl (mp->vlan_id);
2257   if (id == 0 || id > 4095)
2258     {
2259       rv = VNET_API_ERROR_INVALID_VLAN;
2260       goto out;
2261     }
2262
2263   sup_and_sub_key = ((u64) (hi->sw_if_index) << 32) | (u64) id;
2264
2265   p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
2266   if (p)
2267     {
2268       rv = VNET_API_ERROR_VLAN_ALREADY_EXISTS;
2269       goto out;
2270     }
2271
2272   kp = clib_mem_alloc (sizeof (*kp));
2273   *kp = sup_and_sub_key;
2274
2275   memset (&template, 0, sizeof (template));
2276   template.type = VNET_SW_INTERFACE_TYPE_SUB;
2277   template.sup_sw_if_index = hi->sw_if_index;
2278   template.sub.id = id;
2279   template.sub.eth.raw_flags = 0;
2280   template.sub.eth.flags.one_tag = 1;
2281   template.sub.eth.outer_vlan_id = id;
2282   template.sub.eth.flags.exact_match = 1;
2283
2284   error = vnet_create_sw_interface (vnm, &template, &sw_if_index);
2285   if (error)
2286     {
2287       clib_error_report (error);
2288       rv = VNET_API_ERROR_INVALID_REGISTRATION;
2289       goto out;
2290     }
2291   hash_set (hi->sub_interface_sw_if_index_by_id, id, sw_if_index);
2292   hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index);
2293
2294   BAD_SW_IF_INDEX_LABEL;
2295
2296 out:
2297   q = vl_api_client_index_to_input_queue (mp->client_index);
2298   if (!q)
2299     return;
2300
2301   rmp = vl_msg_api_alloc (sizeof (*rmp));
2302   rmp->_vl_msg_id = ntohs (VL_API_CREATE_VLAN_SUBIF_REPLY);
2303   rmp->context = mp->context;
2304   rmp->retval = ntohl (rv);
2305   rmp->sw_if_index = ntohl (sw_if_index);
2306   vl_msg_api_send_shmem (q, (u8 *) & rmp);
2307 }
2308
2309 static void
2310 vl_api_create_subif_t_handler (vl_api_create_subif_t * mp)
2311 {
2312   vl_api_create_subif_reply_t *rmp;
2313   vnet_main_t *vnm = vnet_get_main ();
2314   u32 sw_if_index = ~0;
2315   int rv = 0;
2316   u32 sub_id;
2317   vnet_sw_interface_t *si;
2318   vnet_hw_interface_t *hi;
2319   vnet_sw_interface_t template;
2320   uword *p;
2321   vnet_interface_main_t *im = &vnm->interface_main;
2322   u64 sup_and_sub_key;
2323   u64 *kp;
2324   clib_error_t *error;
2325
2326   VALIDATE_SW_IF_INDEX (mp);
2327
2328   si = vnet_get_sup_sw_interface (vnm, ntohl (mp->sw_if_index));
2329   hi = vnet_get_sup_hw_interface (vnm, ntohl (mp->sw_if_index));
2330
2331   if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
2332     {
2333       rv = VNET_API_ERROR_BOND_SLAVE_NOT_ALLOWED;
2334       goto out;
2335     }
2336
2337   sw_if_index = si->sw_if_index;
2338   sub_id = ntohl (mp->sub_id);
2339
2340   sup_and_sub_key = ((u64) (sw_if_index) << 32) | (u64) sub_id;
2341
2342   p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
2343   if (p)
2344     {
2345       if (CLIB_DEBUG > 0)
2346         clib_warning ("sup sw_if_index %d, sub id %d already exists\n",
2347                       sw_if_index, sub_id);
2348       rv = VNET_API_ERROR_SUBIF_ALREADY_EXISTS;
2349       goto out;
2350     }
2351
2352   kp = clib_mem_alloc (sizeof (*kp));
2353   *kp = sup_and_sub_key;
2354
2355   memset (&template, 0, sizeof (template));
2356   template.type = VNET_SW_INTERFACE_TYPE_SUB;
2357   template.sup_sw_if_index = sw_if_index;
2358   template.sub.id = sub_id;
2359   template.sub.eth.flags.no_tags = mp->no_tags;
2360   template.sub.eth.flags.one_tag = mp->one_tag;
2361   template.sub.eth.flags.two_tags = mp->two_tags;
2362   template.sub.eth.flags.dot1ad = mp->dot1ad;
2363   template.sub.eth.flags.exact_match = mp->exact_match;
2364   template.sub.eth.flags.default_sub = mp->default_sub;
2365   template.sub.eth.flags.outer_vlan_id_any = mp->outer_vlan_id_any;
2366   template.sub.eth.flags.inner_vlan_id_any = mp->inner_vlan_id_any;
2367   template.sub.eth.outer_vlan_id = ntohs (mp->outer_vlan_id);
2368   template.sub.eth.inner_vlan_id = ntohs (mp->inner_vlan_id);
2369
2370   error = vnet_create_sw_interface (vnm, &template, &sw_if_index);
2371   if (error)
2372     {
2373       clib_error_report (error);
2374       rv = VNET_API_ERROR_SUBIF_CREATE_FAILED;
2375       goto out;
2376     }
2377
2378   hash_set (hi->sub_interface_sw_if_index_by_id, sub_id, sw_if_index);
2379   hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index);
2380
2381   BAD_SW_IF_INDEX_LABEL;
2382
2383 out:
2384
2385   /* *INDENT-OFF* */
2386   REPLY_MACRO2(VL_API_CREATE_SUBIF_REPLY,
2387   ({
2388     rmp->sw_if_index = ntohl(sw_if_index);
2389   }));
2390   /* *INDENT-ON* */
2391 }
2392
2393 static void
2394   vl_api_mpls_ethernet_add_del_tunnel_t_handler
2395   (vl_api_mpls_ethernet_add_del_tunnel_t * mp)
2396 {
2397   vl_api_mpls_ethernet_add_del_tunnel_reply_t *rmp;
2398   int rv = 0;
2399   stats_main_t *sm = &stats_main;
2400   u32 tunnel_sw_if_index;
2401
2402   dslock (sm, 1 /* release hint */ , 5 /* tag */ );
2403
2404   rv = vnet_mpls_ethernet_add_del_tunnel
2405     (mp->dst_mac_address, (ip4_address_t *) (mp->adj_address),
2406      (u32) (mp->adj_address_length), ntohl (mp->vrf_id),
2407      ntohl (mp->tx_sw_if_index),
2408      &tunnel_sw_if_index, mp->l2_only, mp->is_add);
2409
2410   dsunlock (sm);
2411
2412   /* *INDENT-OFF* */
2413   REPLY_MACRO2(VL_API_MPLS_ETHERNET_ADD_DEL_TUNNEL_REPLY,
2414   ({
2415     rmp->tunnel_sw_if_index = ntohl(tunnel_sw_if_index);
2416   }));
2417   /* *INDENT-ON* */
2418 }
2419
2420 /*
2421  * This piece of misery brought to you because the control-plane
2422  * can't figure out the tx interface + dst-mac address all by itself
2423  */
2424 static int mpls_ethernet_add_del_tunnel_2_t_handler
2425   (vl_api_mpls_ethernet_add_del_tunnel_2_t * mp)
2426 {
2427   pending_route_t *pr;
2428   vl_api_mpls_ethernet_add_del_tunnel_2_t *pme;
2429   vnet_main_t *vnm = vnet_get_main ();
2430   vlib_main_t *vm = vlib_get_main ();
2431   stats_main_t *sm = &stats_main;
2432   vpe_api_main_t *vam = &vpe_api_main;
2433   u32 inner_fib_index, outer_fib_index;
2434   ip4_main_t *im = &ip4_main;
2435   ip_lookup_main_t *lm = &im->lookup_main;
2436   ip_adjacency_t *adj = 0;
2437   u32 lookup_result;
2438   u32 tx_sw_if_index;
2439   u8 *dst_mac_address;
2440   clib_error_t *e;
2441   uword *p;
2442   int rv;
2443   u32 tunnel_sw_if_index;
2444
2445   p = hash_get (im->fib_index_by_table_id, ntohl (mp->outer_vrf_id));
2446   if (!p)
2447     return VNET_API_ERROR_NO_SUCH_FIB;
2448   else
2449     outer_fib_index = p[0];
2450
2451
2452   p = hash_get (im->fib_index_by_table_id, ntohl (mp->inner_vrf_id));
2453   if (!p)
2454     return VNET_API_ERROR_NO_SUCH_INNER_FIB;
2455   else
2456     inner_fib_index = p[0];
2457
2458   if (inner_fib_index == outer_fib_index)
2459     return VNET_API_ERROR_INVALID_VALUE;
2460
2461   // FIXME not an ADJ
2462   lookup_result = ip4_fib_table_lookup_lb (ip4_fib_get (outer_fib_index),
2463                                            (ip4_address_t *)
2464                                            mp->next_hop_ip4_address_in_outer_vrf);
2465
2466   adj = ip_get_adjacency (lm, lookup_result);
2467   tx_sw_if_index = adj->rewrite_header.sw_if_index;
2468
2469   if (mp->is_add && mp->resolve_if_needed)
2470     {
2471       if (adj->lookup_next_index == IP_LOOKUP_NEXT_ARP)
2472         {
2473           pool_get (vam->pending_routes, pr);
2474           pr->resolve_type = RESOLVE_MPLS_ETHERNET_ADD_DEL;
2475           pme = &pr->t;
2476           clib_memcpy (pme, mp, sizeof (*pme));
2477           /* recursion block, "just in case" */
2478           pme->resolve_if_needed = 0;
2479           pme->resolve_attempts = ntohl (mp->resolve_attempts);
2480           pme->resolve_opaque = tx_sw_if_index;
2481           vnet_register_ip4_arp_resolution_event
2482             (vnm,
2483              (ip4_address_t *) & (pme->next_hop_ip4_address_in_outer_vrf),
2484              vpe_resolver_process_node.index,
2485              RESOLUTION_EVENT, pr - vam->pending_routes);
2486
2487           vlib_process_signal_event
2488             (vm, vpe_resolver_process_node.index,
2489              RESOLUTION_PENDING_EVENT, 0 /* data */ );
2490
2491           /* The interface may be down, etc. */
2492           e = ip4_probe_neighbor
2493             (vm, (ip4_address_t *) & (mp->next_hop_ip4_address_in_outer_vrf),
2494              tx_sw_if_index);
2495
2496           if (e)
2497             clib_error_report (e);
2498
2499           return VNET_API_ERROR_IN_PROGRESS;
2500         }
2501     }
2502
2503   if (adj->lookup_next_index != IP_LOOKUP_NEXT_REWRITE)
2504     return VNET_API_ERROR_NEXT_HOP_NOT_IN_FIB;
2505
2506   dst_mac_address =
2507     vnet_rewrite_get_data_internal
2508     (&adj->rewrite_header, sizeof (adj->rewrite_data));
2509
2510   dslock (sm, 1 /* release hint */ , 10 /* tag */ );
2511
2512   rv = vnet_mpls_ethernet_add_del_tunnel
2513     (dst_mac_address, (ip4_address_t *) (mp->adj_address),
2514      (u32) (mp->adj_address_length), ntohl (mp->inner_vrf_id),
2515      tx_sw_if_index, &tunnel_sw_if_index, mp->l2_only, mp->is_add);
2516
2517   dsunlock (sm);
2518
2519   return rv;
2520 }
2521
2522 static void
2523   vl_api_mpls_ethernet_add_del_tunnel_2_t_handler
2524   (vl_api_mpls_ethernet_add_del_tunnel_2_t * mp)
2525 {
2526   vl_api_mpls_ethernet_add_del_tunnel_reply_t *rmp;
2527   int rv = 0;
2528
2529   rv = mpls_ethernet_add_del_tunnel_2_t_handler (mp);
2530
2531   REPLY_MACRO (VL_API_MPLS_ETHERNET_ADD_DEL_TUNNEL_2_REPLY);
2532 }
2533
2534
2535 static void
2536 vl_api_mpls_add_del_encap_t_handler (vl_api_mpls_add_del_encap_t * mp)
2537 {
2538   vl_api_mpls_add_del_encap_reply_t *rmp;
2539   int rv;
2540   static u32 *labels;
2541   int i;
2542
2543   vec_reset_length (labels);
2544
2545   for (i = 0; i < mp->nlabels; i++)
2546     vec_add1 (labels, ntohl (mp->labels[i]));
2547
2548   /* $$$$ fixme */
2549   rv = vnet_mpls_add_del_encap ((ip4_address_t *) mp->dst_address,
2550                                 ntohl (mp->vrf_id), labels,
2551                                 ~0 /* policy_tunnel_index */ ,
2552                                 0 /* no_dst_hash */ ,
2553                                 0 /* indexp */ ,
2554                                 mp->is_add);
2555
2556   REPLY_MACRO (VL_API_MPLS_ADD_DEL_ENCAP_REPLY);
2557 }
2558
2559 static void
2560 vl_api_proxy_arp_add_del_t_handler (vl_api_proxy_arp_add_del_t * mp)
2561 {
2562   vl_api_proxy_arp_add_del_reply_t *rmp;
2563   u32 fib_index;
2564   int rv;
2565   ip4_main_t *im = &ip4_main;
2566   stats_main_t *sm = &stats_main;
2567   int vnet_proxy_arp_add_del (ip4_address_t * lo_addr,
2568                               ip4_address_t * hi_addr,
2569                               u32 fib_index, int is_del);
2570   uword *p;
2571
2572   dslock (sm, 1 /* release hint */ , 6 /* tag */ );
2573
2574   p = hash_get (im->fib_index_by_table_id, ntohl (mp->vrf_id));
2575
2576   if (!p)
2577     {
2578       rv = VNET_API_ERROR_NO_SUCH_FIB;
2579       goto out;
2580     }
2581
2582   fib_index = p[0];
2583
2584   rv = vnet_proxy_arp_add_del ((ip4_address_t *) mp->low_address,
2585                                (ip4_address_t *) mp->hi_address,
2586                                fib_index, mp->is_add == 0);
2587
2588 out:
2589   dsunlock (sm);
2590   REPLY_MACRO (VL_API_PROXY_ARP_ADD_DEL_REPLY);
2591 }
2592
2593 static void
2594   vl_api_proxy_arp_intfc_enable_disable_t_handler
2595   (vl_api_proxy_arp_intfc_enable_disable_t * mp)
2596 {
2597   int rv = 0;
2598   vnet_main_t *vnm = vnet_get_main ();
2599   vl_api_proxy_arp_intfc_enable_disable_reply_t *rmp;
2600   vnet_sw_interface_t *si;
2601   u32 sw_if_index;
2602
2603   VALIDATE_SW_IF_INDEX (mp);
2604
2605   sw_if_index = ntohl (mp->sw_if_index);
2606
2607   if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
2608     {
2609       rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
2610       goto out;
2611     }
2612
2613   si = vnet_get_sw_interface (vnm, sw_if_index);
2614
2615   ASSERT (si);
2616
2617   if (mp->enable_disable)
2618     si->flags |= VNET_SW_INTERFACE_FLAG_PROXY_ARP;
2619   else
2620     si->flags &= ~VNET_SW_INTERFACE_FLAG_PROXY_ARP;
2621
2622   BAD_SW_IF_INDEX_LABEL;
2623
2624 out:
2625   REPLY_MACRO (VL_API_PROXY_ARP_INTFC_ENABLE_DISABLE_REPLY);
2626 }
2627
2628 static void
2629 vl_api_ip_neighbor_add_del_t_handler (vl_api_ip_neighbor_add_del_t * mp,
2630                                       vlib_main_t * vm)
2631 {
2632   vl_api_ip_neighbor_add_del_reply_t *rmp;
2633   vnet_main_t *vnm = vnet_get_main ();
2634   stats_main_t *sm = &stats_main;
2635   int rv = 0;
2636
2637   VALIDATE_SW_IF_INDEX (mp);
2638
2639   dslock (sm, 1 /* release hint */ , 7 /* tag */ );
2640
2641   /*
2642    * there's no validation here of the ND/ARP entry being added.
2643    * The expectation is that the FIB will ensure that nothing bad
2644    * will come of adding bogus entries.
2645    */
2646   if (mp->is_ipv6)
2647     {
2648       if (mp->is_add)
2649         rv = vnet_set_ip6_ethernet_neighbor
2650           (vm, ntohl (mp->sw_if_index),
2651            (ip6_address_t *) (mp->dst_address),
2652            mp->mac_address, sizeof (mp->mac_address), mp->is_static);
2653       else
2654         rv = vnet_unset_ip6_ethernet_neighbor
2655           (vm, ntohl (mp->sw_if_index),
2656            (ip6_address_t *) (mp->dst_address),
2657            mp->mac_address, sizeof (mp->mac_address));
2658     }
2659   else
2660     {
2661       ethernet_arp_ip4_over_ethernet_address_t a;
2662
2663       clib_memcpy (&a.ethernet, mp->mac_address, 6);
2664       clib_memcpy (&a.ip4, mp->dst_address, 4);
2665
2666       if (mp->is_add)
2667         rv = vnet_arp_set_ip4_over_ethernet (vnm, ntohl (mp->sw_if_index),
2668                                              &a, mp->is_static);
2669       else
2670         rv =
2671           vnet_arp_unset_ip4_over_ethernet (vnm, ntohl (mp->sw_if_index), &a);
2672     }
2673
2674   BAD_SW_IF_INDEX_LABEL;
2675
2676   dsunlock (sm);
2677   REPLY_MACRO (VL_API_IP_NEIGHBOR_ADD_DEL_REPLY);
2678 }
2679
2680 static void
2681 vl_api_is_address_reachable_t_handler (vl_api_is_address_reachable_t * mp)
2682 {
2683 #if 0
2684   vpe_main_t *rm = &vpe_main;
2685   ip4_main_t *im4 = &ip4_main;
2686   ip6_main_t *im6 = &ip6_main;
2687   ip_lookup_main_t *lm;
2688   union
2689   {
2690     ip4_address_t ip4;
2691     ip6_address_t ip6;
2692   } addr;
2693   u32 adj_index, sw_if_index;
2694   vl_api_is_address_reachable_t *rmp;
2695   ip_adjacency_t *adj;
2696   unix_shared_memory_queue_t *q;
2697
2698   q = vl_api_client_index_to_input_queue (mp->client_index);
2699   if (!q)
2700     {
2701       increment_missing_api_client_counter (rm->vlib_main);
2702       return;
2703     }
2704
2705   rmp = vl_msg_api_alloc (sizeof (*rmp));
2706   clib_memcpy (rmp, mp, sizeof (*rmp));
2707
2708   sw_if_index = mp->next_hop_sw_if_index;
2709   clib_memcpy (&addr, mp->address, sizeof (addr));
2710   if (mp->is_ipv6)
2711     {
2712       lm = &im6->lookup_main;
2713       adj_index = ip6_fib_lookup (im6, sw_if_index, &addr.ip6);
2714     }
2715   else
2716     {
2717       lm = &im4->lookup_main;
2718       // FIXME NOT an ADJ
2719       adj_index = ip4_fib_lookup (im4, sw_if_index, &addr.ip4);
2720     }
2721   if (adj_index == ~0)
2722     {
2723       rmp->is_error = 1;
2724       goto send;
2725     }
2726   adj = ip_get_adjacency (lm, adj_index);
2727
2728   if (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE
2729       && adj->rewrite_header.sw_if_index == sw_if_index)
2730     {
2731       rmp->is_known = 1;
2732     }
2733   else
2734     {
2735       if (adj->lookup_next_index == IP_LOOKUP_NEXT_ARP
2736           && adj->rewrite_header.sw_if_index == sw_if_index)
2737         {
2738           if (mp->is_ipv6)
2739             ip6_probe_neighbor (rm->vlib_main, &addr.ip6, sw_if_index);
2740           else
2741             ip4_probe_neighbor (rm->vlib_main, &addr.ip4, sw_if_index);
2742         }
2743       else if (adj->lookup_next_index == IP_LOOKUP_NEXT_DROP)
2744         {
2745           rmp->is_known = 1;
2746           goto send;
2747         }
2748       rmp->is_known = 0;
2749     }
2750
2751 send:
2752   vl_msg_api_send_shmem (q, (u8 *) & rmp);
2753 #endif
2754 }
2755
2756 static void
2757 vl_api_sw_interface_details_t_handler (vl_api_sw_interface_details_t * mp)
2758 {
2759   clib_warning ("BUG");
2760 }
2761
2762 static void
2763 vl_api_sw_interface_set_flags_t_handler (vl_api_sw_interface_set_flags_t * mp)
2764 {
2765   vl_api_sw_interface_set_flags_reply_t *rmp;
2766   vnet_main_t *vnm = vnet_get_main ();
2767   int rv = 0;
2768   clib_error_t *error;
2769   u16 flags;
2770
2771   VALIDATE_SW_IF_INDEX (mp);
2772
2773   flags = mp->admin_up_down ? VNET_SW_INTERFACE_FLAG_ADMIN_UP : 0;
2774
2775   error = vnet_sw_interface_set_flags (vnm, ntohl (mp->sw_if_index), flags);
2776   if (error)
2777     {
2778       rv = -1;
2779       clib_error_report (error);
2780     }
2781
2782   BAD_SW_IF_INDEX_LABEL;
2783   REPLY_MACRO (VL_API_SW_INTERFACE_SET_FLAGS_REPLY);
2784 }
2785
2786 static void
2787   vl_api_sw_interface_set_mpls_enable_t_handler
2788   (vl_api_sw_interface_set_mpls_enable_t * mp)
2789 {
2790   vl_api_sw_interface_set_mpls_enable_reply_t *rmp;
2791   int rv = 0;
2792
2793   VALIDATE_SW_IF_INDEX (mp);
2794
2795   mpls_sw_interface_enable_disable (&mpls_main,
2796                                     ntohl (mp->sw_if_index), mp->enable);
2797
2798   BAD_SW_IF_INDEX_LABEL;
2799   REPLY_MACRO (VL_API_SW_INTERFACE_SET_MPLS_ENABLE_REPLY);
2800 }
2801
2802 static void
2803 vl_api_sw_interface_clear_stats_t_handler (vl_api_sw_interface_clear_stats_t *
2804                                            mp)
2805 {
2806   vl_api_sw_interface_clear_stats_reply_t *rmp;
2807
2808   vnet_main_t *vnm = vnet_get_main ();
2809   vnet_interface_main_t *im = &vnm->interface_main;
2810   vlib_simple_counter_main_t *sm;
2811   vlib_combined_counter_main_t *cm;
2812   static vnet_main_t **my_vnet_mains;
2813   int i, j, n_counters;
2814   int rv = 0;
2815
2816   if (mp->sw_if_index != ~0)
2817     VALIDATE_SW_IF_INDEX (mp);
2818
2819   vec_reset_length (my_vnet_mains);
2820
2821   for (i = 0; i < vec_len (vnet_mains); i++)
2822     {
2823       if (vnet_mains[i])
2824         vec_add1 (my_vnet_mains, vnet_mains[i]);
2825     }
2826
2827   if (vec_len (vnet_mains) == 0)
2828     vec_add1 (my_vnet_mains, vnm);
2829
2830   n_counters = vec_len (im->combined_sw_if_counters);
2831
2832   for (j = 0; j < n_counters; j++)
2833     {
2834       for (i = 0; i < vec_len (my_vnet_mains); i++)
2835         {
2836           im = &my_vnet_mains[i]->interface_main;
2837           cm = im->combined_sw_if_counters + j;
2838           if (mp->sw_if_index == (u32) ~ 0)
2839             vlib_clear_combined_counters (cm);
2840           else
2841             vlib_zero_combined_counter (cm, ntohl (mp->sw_if_index));
2842         }
2843     }
2844
2845   n_counters = vec_len (im->sw_if_counters);
2846
2847   for (j = 0; j < n_counters; j++)
2848     {
2849       for (i = 0; i < vec_len (my_vnet_mains); i++)
2850         {
2851           im = &my_vnet_mains[i]->interface_main;
2852           sm = im->sw_if_counters + j;
2853           if (mp->sw_if_index == (u32) ~ 0)
2854             vlib_clear_simple_counters (sm);
2855           else
2856             vlib_zero_simple_counter (sm, ntohl (mp->sw_if_index));
2857         }
2858     }
2859
2860   BAD_SW_IF_INDEX_LABEL;
2861
2862   REPLY_MACRO (VL_API_SW_INTERFACE_CLEAR_STATS_REPLY);
2863 }
2864
2865 static void
2866 send_sw_interface_details (vpe_api_main_t * am,
2867                            unix_shared_memory_queue_t * q,
2868                            vnet_sw_interface_t * swif,
2869                            u8 * interface_name, u32 context)
2870 {
2871   vl_api_sw_interface_details_t *mp;
2872   vnet_hw_interface_t *hi;
2873
2874   hi = vnet_get_sup_hw_interface (am->vnet_main, swif->sw_if_index);
2875
2876   mp = vl_msg_api_alloc (sizeof (*mp));
2877   memset (mp, 0, sizeof (*mp));
2878   mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_DETAILS);
2879   mp->sw_if_index = ntohl (swif->sw_if_index);
2880   mp->sup_sw_if_index = ntohl (swif->sup_sw_if_index);
2881   mp->admin_up_down = (swif->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? 1 : 0;
2882   mp->link_up_down = (hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ? 1 : 0;
2883   mp->link_duplex = ((hi->flags & VNET_HW_INTERFACE_FLAG_DUPLEX_MASK) >>
2884                      VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT);
2885   mp->link_speed = ((hi->flags & VNET_HW_INTERFACE_FLAG_SPEED_MASK) >>
2886                     VNET_HW_INTERFACE_FLAG_SPEED_SHIFT);
2887   mp->link_mtu = ntohs (hi->max_packet_bytes);
2888   mp->context = context;
2889
2890   strncpy ((char *) mp->interface_name,
2891            (char *) interface_name, ARRAY_LEN (mp->interface_name) - 1);
2892
2893   /* Send the L2 address for ethernet physical intfcs */
2894   if (swif->sup_sw_if_index == swif->sw_if_index
2895       && hi->hw_class_index == ethernet_hw_interface_class.index)
2896     {
2897       ethernet_main_t *em = ethernet_get_main (am->vlib_main);
2898       ethernet_interface_t *ei;
2899
2900       ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
2901       ASSERT (sizeof (mp->l2_address) >= sizeof (ei->address));
2902       clib_memcpy (mp->l2_address, ei->address, sizeof (ei->address));
2903       mp->l2_address_length = ntohl (sizeof (ei->address));
2904     }
2905   else if (swif->sup_sw_if_index != swif->sw_if_index)
2906     {
2907       vnet_sub_interface_t *sub = &swif->sub;
2908       mp->sub_id = ntohl (sub->id);
2909       mp->sub_dot1ad = sub->eth.flags.dot1ad;
2910       mp->sub_number_of_tags =
2911         sub->eth.flags.one_tag + sub->eth.flags.two_tags * 2;
2912       mp->sub_outer_vlan_id = ntohs (sub->eth.outer_vlan_id);
2913       mp->sub_inner_vlan_id = ntohs (sub->eth.inner_vlan_id);
2914       mp->sub_exact_match = sub->eth.flags.exact_match;
2915       mp->sub_default = sub->eth.flags.default_sub;
2916       mp->sub_outer_vlan_id_any = sub->eth.flags.outer_vlan_id_any;
2917       mp->sub_inner_vlan_id_any = sub->eth.flags.inner_vlan_id_any;
2918
2919       /* vlan tag rewrite data */
2920       u32 vtr_op = L2_VTR_DISABLED;
2921       u32 vtr_push_dot1q = 0, vtr_tag1 = 0, vtr_tag2 = 0;
2922
2923       if (l2vtr_get (am->vlib_main, am->vnet_main, swif->sw_if_index,
2924                      &vtr_op, &vtr_push_dot1q, &vtr_tag1, &vtr_tag2) != 0)
2925         {
2926           // error - default to disabled
2927           mp->vtr_op = ntohl (L2_VTR_DISABLED);
2928           clib_warning ("cannot get vlan tag rewrite for sw_if_index %d",
2929                         swif->sw_if_index);
2930         }
2931       else
2932         {
2933           mp->vtr_op = ntohl (vtr_op);
2934           mp->vtr_push_dot1q = ntohl (vtr_push_dot1q);
2935           mp->vtr_tag1 = ntohl (vtr_tag1);
2936           mp->vtr_tag2 = ntohl (vtr_tag2);
2937         }
2938     }
2939
2940   vl_msg_api_send_shmem (q, (u8 *) & mp);
2941 }
2942
2943 static void
2944 send_sw_interface_flags (vpe_api_main_t * am,
2945                          unix_shared_memory_queue_t * q,
2946                          vnet_sw_interface_t * swif)
2947 {
2948   vl_api_sw_interface_set_flags_t *mp;
2949   vnet_main_t *vnm = am->vnet_main;
2950
2951   vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm,
2952                                                        swif->sw_if_index);
2953   mp = vl_msg_api_alloc (sizeof (*mp));
2954   memset (mp, 0, sizeof (*mp));
2955   mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_SET_FLAGS);
2956   mp->sw_if_index = ntohl (swif->sw_if_index);
2957
2958   mp->admin_up_down = (swif->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? 1 : 0;
2959   mp->link_up_down = (hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ? 1 : 0;
2960   vl_msg_api_send_shmem (q, (u8 *) & mp);
2961 }
2962
2963 static void send_sw_interface_flags_deleted (vpe_api_main_t * am,
2964                                              unix_shared_memory_queue_t * q,
2965                                              u32 sw_if_index)
2966   __attribute__ ((unused));
2967
2968 static void
2969 send_sw_interface_flags_deleted (vpe_api_main_t * am,
2970                                  unix_shared_memory_queue_t * q,
2971                                  u32 sw_if_index)
2972 {
2973   vl_api_sw_interface_set_flags_t *mp;
2974
2975   mp = vl_msg_api_alloc (sizeof (*mp));
2976   memset (mp, 0, sizeof (*mp));
2977   mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_SET_FLAGS);
2978   mp->sw_if_index = ntohl (sw_if_index);
2979
2980   mp->admin_up_down = 0;
2981   mp->link_up_down = 0;
2982   mp->deleted = 1;
2983   vl_msg_api_send_shmem (q, (u8 *) & mp);
2984 }
2985
2986 static void
2987 vl_api_sw_interface_dump_t_handler (vl_api_sw_interface_dump_t * mp)
2988 {
2989   vpe_api_main_t *am = &vpe_api_main;
2990   vnet_sw_interface_t *swif;
2991   vnet_interface_main_t *im = &am->vnet_main->interface_main;
2992   u8 *filter_string = 0, *name_string = 0;
2993   unix_shared_memory_queue_t *q;
2994   char *strcasestr (char *, char *);    /* lnx hdr file botch */
2995
2996   q = vl_api_client_index_to_input_queue (mp->client_index);
2997
2998   if (q == 0)
2999     return;
3000
3001   if (mp->name_filter_valid)
3002     {
3003       mp->name_filter[ARRAY_LEN (mp->name_filter) - 1] = 0;
3004       filter_string = format (0, "%s%c", mp->name_filter, 0);
3005     }
3006
3007   /* *INDENT-OFF* */
3008   pool_foreach (swif, im->sw_interfaces,
3009   ({
3010     name_string = format (name_string, "%U%c",
3011                           format_vnet_sw_interface_name,
3012                           am->vnet_main, swif, 0);
3013
3014     if (mp->name_filter_valid == 0 ||
3015         strcasestr((char *) name_string, (char *) filter_string)) {
3016
3017       send_sw_interface_details (am, q, swif, name_string, mp->context);
3018     }
3019     _vec_len (name_string) = 0;
3020   }));
3021   /* *INDENT-ON* */
3022
3023   vec_free (name_string);
3024   vec_free (filter_string);
3025 }
3026
3027 void
3028 send_oam_event (oam_target_t * t)
3029 {
3030   vpe_api_main_t *vam = &vpe_api_main;
3031   unix_shared_memory_queue_t *q;
3032   vpe_client_registration_t *reg;
3033   vl_api_oam_event_t *mp;
3034
3035   /* *INDENT-OFF* */
3036   pool_foreach(reg, vam->oam_events_registrations,
3037   ({
3038     q = vl_api_client_index_to_input_queue (reg->client_index);
3039     if (q)
3040       {
3041         mp = vl_msg_api_alloc (sizeof (*mp));
3042         mp->_vl_msg_id = ntohs (VL_API_OAM_EVENT);
3043         clib_memcpy (mp->dst_address, &t->dst_address,
3044                      sizeof (mp->dst_address));
3045         mp->state = t->state;
3046         vl_msg_api_send_shmem (q, (u8 *)&mp);
3047       }
3048   }));
3049   /* *INDENT-ON* */
3050 }
3051
3052 static void
3053 vl_api_oam_add_del_t_handler (vl_api_oam_add_del_t * mp)
3054 {
3055   vl_api_oam_add_del_reply_t *rmp;
3056   int rv;
3057
3058   rv = vpe_oam_add_del_target ((ip4_address_t *) mp->src_address,
3059                                (ip4_address_t *) mp->dst_address,
3060                                ntohl (mp->vrf_id), (int) (mp->is_add));
3061
3062   REPLY_MACRO (VL_API_OAM_ADD_DEL_REPLY);
3063 }
3064
3065 static void
3066 vl_api_vnet_get_summary_stats_t_handler (vl_api_vnet_get_summary_stats_t * mp)
3067 {
3068   stats_main_t *sm = &stats_main;
3069   vnet_interface_main_t *im = sm->interface_main;
3070   vl_api_vnet_summary_stats_reply_t *rmp;
3071   vlib_combined_counter_main_t *cm;
3072   vlib_counter_t v;
3073   int i, which;
3074   u64 total_pkts[VLIB_N_RX_TX];
3075   u64 total_bytes[VLIB_N_RX_TX];
3076
3077   unix_shared_memory_queue_t *q =
3078     vl_api_client_index_to_input_queue (mp->client_index);
3079
3080   if (!q)
3081     return;
3082
3083   rmp = vl_msg_api_alloc (sizeof (*rmp));
3084   rmp->_vl_msg_id = ntohs (VL_API_VNET_SUMMARY_STATS_REPLY);
3085   rmp->context = mp->context;
3086   rmp->retval = 0;
3087
3088   memset (total_pkts, 0, sizeof (total_pkts));
3089   memset (total_bytes, 0, sizeof (total_bytes));
3090
3091   vnet_interface_counter_lock (im);
3092
3093   vec_foreach (cm, im->combined_sw_if_counters)
3094   {
3095     which = cm - im->combined_sw_if_counters;
3096
3097     for (i = 0; i < vec_len (cm->maxi); i++)
3098       {
3099         vlib_get_combined_counter (cm, i, &v);
3100         total_pkts[which] += v.packets;
3101         total_bytes[which] += v.bytes;
3102       }
3103   }
3104   vnet_interface_counter_unlock (im);
3105
3106   rmp->total_pkts[VLIB_RX] = clib_host_to_net_u64 (total_pkts[VLIB_RX]);
3107   rmp->total_bytes[VLIB_RX] = clib_host_to_net_u64 (total_bytes[VLIB_RX]);
3108   rmp->total_pkts[VLIB_TX] = clib_host_to_net_u64 (total_pkts[VLIB_TX]);
3109   rmp->total_bytes[VLIB_TX] = clib_host_to_net_u64 (total_bytes[VLIB_TX]);
3110   rmp->vector_rate =
3111     clib_host_to_net_u64 (vlib_last_vector_length_per_node (sm->vlib_main));
3112
3113   vl_msg_api_send_shmem (q, (u8 *) & rmp);
3114 }
3115
3116 /* *INDENT-OFF* */
3117 typedef CLIB_PACKED (struct {
3118   ip4_address_t address;
3119   u32 address_length: 6;
3120   u32 index:26;
3121 }) ip4_route_t;
3122 /* *INDENT-ON* */
3123
3124 static int
3125 ip4_reset_fib_t_handler (vl_api_reset_fib_t * mp)
3126 {
3127   vnet_main_t *vnm = vnet_get_main ();
3128   vnet_interface_main_t *im = &vnm->interface_main;
3129   ip4_main_t *im4 = &ip4_main;
3130   static u32 *sw_if_indices_to_shut;
3131   stats_main_t *sm = &stats_main;
3132   fib_table_t *fib_table;
3133   ip4_fib_t *fib;
3134   u32 sw_if_index;
3135   int i;
3136   int rv = VNET_API_ERROR_NO_SUCH_FIB;
3137   u32 target_fib_id = ntohl (mp->vrf_id);
3138
3139   dslock (sm, 1 /* release hint */ , 8 /* tag */ );
3140
3141   /* *INDENT-OFF* */
3142   pool_foreach (fib_table, im4->fibs,
3143   ({
3144     fib = &fib_table->v4;
3145     vnet_sw_interface_t * si;
3146
3147     if (fib->table_id != target_fib_id)
3148       continue;
3149
3150     /* remove any mpls encap/decap labels */
3151     mpls_fib_reset_labels (fib->table_id);
3152
3153     /* remove any proxy arps in this fib */
3154     vnet_proxy_arp_fib_reset (fib->table_id);
3155
3156     /* Set the flow hash for this fib to the default */
3157     vnet_set_ip4_flow_hash (fib->table_id, IP_FLOW_HASH_DEFAULT);
3158
3159     vec_reset_length (sw_if_indices_to_shut);
3160
3161     /* Shut down interfaces in this FIB / clean out intfc routes */
3162     pool_foreach (si, im->sw_interfaces,
3163     ({
3164       u32 sw_if_index = si->sw_if_index;
3165
3166       if (sw_if_index < vec_len (im4->fib_index_by_sw_if_index)
3167           && (im4->fib_index_by_sw_if_index[si->sw_if_index] ==
3168               fib->index))
3169         vec_add1 (sw_if_indices_to_shut, si->sw_if_index);
3170     }));
3171
3172     for (i = 0; i < vec_len (sw_if_indices_to_shut); i++) {
3173       sw_if_index = sw_if_indices_to_shut[i];
3174       // vec_foreach (sw_if_index, sw_if_indices_to_shut) {
3175
3176       u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index);
3177       flags &= ~(VNET_SW_INTERFACE_FLAG_ADMIN_UP);
3178       vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
3179     }
3180
3181     fib_table_flush(fib->index, FIB_PROTOCOL_IP4, FIB_SOURCE_API);
3182     fib_table_flush(fib->index, FIB_PROTOCOL_IP4, FIB_SOURCE_INTERFACE);
3183
3184     rv = 0;
3185     break;
3186     })); /* pool_foreach (fib) */
3187     /* *INDENT-ON* */
3188
3189   dsunlock (sm);
3190   return rv;
3191 }
3192
3193 static int
3194 ip6_reset_fib_t_handler (vl_api_reset_fib_t * mp)
3195 {
3196   vnet_main_t *vnm = vnet_get_main ();
3197   vnet_interface_main_t *im = &vnm->interface_main;
3198   ip6_main_t *im6 = &ip6_main;
3199   stats_main_t *sm = &stats_main;
3200   static u32 *sw_if_indices_to_shut;
3201   fib_table_t *fib_table;
3202   ip6_fib_t *fib;
3203   u32 sw_if_index;
3204   int i;
3205   int rv = VNET_API_ERROR_NO_SUCH_FIB;
3206   u32 target_fib_id = ntohl (mp->vrf_id);
3207
3208   dslock (sm, 1 /* release hint */ , 9 /* tag */ );
3209
3210   /* *INDENT-OFF* */
3211   pool_foreach (fib_table, im6->fibs,
3212   ({
3213     vnet_sw_interface_t * si;
3214     fib = &(fib_table->v6);
3215
3216     if (fib->table_id != target_fib_id)
3217       continue;
3218
3219     vec_reset_length (sw_if_indices_to_shut);
3220
3221     /* Shut down interfaces in this FIB / clean out intfc routes */
3222     pool_foreach (si, im->sw_interfaces,
3223                   ({
3224                     if (im6->fib_index_by_sw_if_index[si->sw_if_index] ==
3225                         fib->index)
3226                       vec_add1 (sw_if_indices_to_shut, si->sw_if_index);
3227                   }));
3228
3229     for (i = 0; i < vec_len (sw_if_indices_to_shut); i++) {
3230       sw_if_index = sw_if_indices_to_shut[i];
3231       // vec_foreach (sw_if_index, sw_if_indices_to_shut) {
3232
3233       u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index);
3234       flags &= ~(VNET_SW_INTERFACE_FLAG_ADMIN_UP);
3235       vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
3236     }
3237
3238     fib_table_flush(fib->index, FIB_PROTOCOL_IP6, FIB_SOURCE_API);
3239     fib_table_flush(fib->index, FIB_PROTOCOL_IP6, FIB_SOURCE_INTERFACE);
3240
3241     rv = 0;
3242     break;
3243   })); /* pool_foreach (fib) */
3244   /* *INDENT-ON* */
3245
3246   dsunlock (sm);
3247   return rv;
3248 }
3249
3250 static void
3251 vl_api_reset_fib_t_handler (vl_api_reset_fib_t * mp)
3252 {
3253   int rv;
3254   vl_api_reset_fib_reply_t *rmp;
3255
3256   if (mp->is_ipv6)
3257     rv = ip6_reset_fib_t_handler (mp);
3258   else
3259     rv = ip4_reset_fib_t_handler (mp);
3260
3261   REPLY_MACRO (VL_API_RESET_FIB_REPLY);
3262 }
3263
3264
3265 static void
3266 dhcpv4_proxy_config (vl_api_dhcp_proxy_config_t * mp)
3267 {
3268   vl_api_dhcp_proxy_config_reply_t *rmp;
3269   int rv;
3270
3271   rv = dhcp_proxy_set_server ((ip4_address_t *) (&mp->dhcp_server),
3272                               (ip4_address_t *) (&mp->dhcp_src_address),
3273                               (u32) ntohl (mp->vrf_id),
3274                               (int) mp->insert_circuit_id,
3275                               (int) (mp->is_add == 0));
3276
3277   REPLY_MACRO (VL_API_DHCP_PROXY_CONFIG_REPLY);
3278 }
3279
3280
3281 static void
3282 dhcpv6_proxy_config (vl_api_dhcp_proxy_config_t * mp)
3283 {
3284   vl_api_dhcp_proxy_config_reply_t *rmp;
3285   int rv = -1;
3286
3287   rv = dhcpv6_proxy_set_server ((ip6_address_t *) (&mp->dhcp_server),
3288                                 (ip6_address_t *) (&mp->dhcp_src_address),
3289                                 (u32) ntohl (mp->vrf_id),
3290                                 (int) mp->insert_circuit_id,
3291                                 (int) (mp->is_add == 0));
3292
3293   REPLY_MACRO (VL_API_DHCP_PROXY_CONFIG_REPLY);
3294 }
3295
3296 static void
3297 dhcpv4_proxy_config_2 (vl_api_dhcp_proxy_config_2_t * mp)
3298 {
3299   vl_api_dhcp_proxy_config_reply_t *rmp;
3300   int rv;
3301
3302   rv = dhcp_proxy_set_server_2 ((ip4_address_t *) (&mp->dhcp_server),
3303                                 (ip4_address_t *) (&mp->dhcp_src_address),
3304                                 (u32) ntohl (mp->rx_vrf_id),
3305                                 (u32) ntohl (mp->server_vrf_id),
3306                                 (int) mp->insert_circuit_id,
3307                                 (int) (mp->is_add == 0));
3308
3309   REPLY_MACRO (VL_API_DHCP_PROXY_CONFIG_2_REPLY);
3310 }
3311
3312
3313 static void
3314 dhcpv6_proxy_config_2 (vl_api_dhcp_proxy_config_2_t * mp)
3315 {
3316   vl_api_dhcp_proxy_config_reply_t *rmp;
3317   int rv = -1;
3318
3319 #if 0                           // $$$$ FIXME
3320   rv = dhcpv6_proxy_set_server_2 ((ip6_address_t *) (&mp->dhcp_server),
3321                                   (ip6_address_t *) (&mp->dhcp_src_address),
3322                                   (u32) ntohl (mp->rx_vrf_id),
3323                                   (u32) ntohl (mp->server_vrf_id),
3324                                   (int) mp->insert_circuit_id,
3325                                   (int) (mp->is_add == 0));
3326 #else
3327   rv = VNET_API_ERROR_UNIMPLEMENTED;
3328 #endif
3329
3330   REPLY_MACRO (VL_API_DHCP_PROXY_CONFIG_2_REPLY);
3331 }
3332
3333
3334 static void
3335 vl_api_dhcp_proxy_set_vss_t_handler (vl_api_dhcp_proxy_set_vss_t * mp)
3336 {
3337   vl_api_dhcp_proxy_set_vss_reply_t *rmp;
3338   int rv;
3339   if (!mp->is_ipv6)
3340     rv = dhcp_proxy_set_option82_vss (ntohl (mp->tbl_id),
3341                                       ntohl (mp->oui),
3342                                       ntohl (mp->fib_id),
3343                                       (int) mp->is_add == 0);
3344   else
3345     rv = dhcpv6_proxy_set_vss (ntohl (mp->tbl_id),
3346                                ntohl (mp->oui),
3347                                ntohl (mp->fib_id), (int) mp->is_add == 0);
3348
3349   REPLY_MACRO (VL_API_DHCP_PROXY_SET_VSS_REPLY);
3350 }
3351
3352
3353 static void vl_api_dhcp_proxy_config_t_handler
3354   (vl_api_dhcp_proxy_config_t * mp)
3355 {
3356   if (mp->is_ipv6 == 0)
3357     dhcpv4_proxy_config (mp);
3358   else
3359     dhcpv6_proxy_config (mp);
3360 }
3361
3362 static void vl_api_dhcp_proxy_config_2_t_handler
3363   (vl_api_dhcp_proxy_config_2_t * mp)
3364 {
3365   if (mp->is_ipv6 == 0)
3366     dhcpv4_proxy_config_2 (mp);
3367   else
3368     dhcpv6_proxy_config_2 (mp);
3369 }
3370
3371 void
3372 dhcp_compl_event_callback (u32 client_index, u32 pid, u8 * hostname,
3373                            u8 is_ipv6, u8 * host_address, u8 * router_address,
3374                            u8 * host_mac)
3375 {
3376   unix_shared_memory_queue_t *q;
3377   vl_api_dhcp_compl_event_t *mp;
3378
3379   q = vl_api_client_index_to_input_queue (client_index);
3380   if (!q)
3381     return;
3382
3383   mp = vl_msg_api_alloc (sizeof (*mp));
3384   mp->client_index = client_index;
3385   mp->pid = pid;
3386   mp->is_ipv6 = is_ipv6;
3387   clib_memcpy (&mp->hostname, hostname, vec_len (hostname));
3388   mp->hostname[vec_len (hostname) + 1] = '\n';
3389   clib_memcpy (&mp->host_address[0], host_address, 16);
3390   clib_memcpy (&mp->router_address[0], router_address, 16);
3391
3392   if (NULL != host_mac)
3393     clib_memcpy (&mp->host_mac[0], host_mac, 6);
3394
3395   mp->_vl_msg_id = ntohs (VL_API_DHCP_COMPL_EVENT);
3396
3397   vl_msg_api_send_shmem (q, (u8 *) & mp);
3398 }
3399
3400 static void vl_api_dhcp_client_config_t_handler
3401   (vl_api_dhcp_client_config_t * mp)
3402 {
3403   vlib_main_t *vm = vlib_get_main ();
3404   vl_api_dhcp_client_config_reply_t *rmp;
3405   int rv = 0;
3406
3407   VALIDATE_SW_IF_INDEX (mp);
3408
3409   rv = dhcp_client_config (vm, ntohl (mp->sw_if_index),
3410                            mp->hostname, mp->is_add, mp->client_index,
3411                            mp->want_dhcp_event ? dhcp_compl_event_callback :
3412                            NULL, mp->pid);
3413
3414   BAD_SW_IF_INDEX_LABEL;
3415
3416   REPLY_MACRO (VL_API_DHCP_CLIENT_CONFIG_REPLY);
3417 }
3418
3419 static void
3420   vl_api_sw_interface_ip6nd_ra_config_t_handler
3421   (vl_api_sw_interface_ip6nd_ra_config_t * mp, vlib_main_t * vm)
3422 {
3423   vl_api_sw_interface_ip6nd_ra_config_reply_t *rmp;
3424   int rv = 0;
3425   u8 is_no, suppress, managed, other, ll_option, send_unicast, cease,
3426     default_router;
3427
3428   is_no = mp->is_no == 1;
3429   suppress = mp->suppress == 1;
3430   managed = mp->managed == 1;
3431   other = mp->other == 1;
3432   ll_option = mp->ll_option == 1;
3433   send_unicast = mp->send_unicast == 1;
3434   cease = mp->cease == 1;
3435   default_router = mp->default_router == 1;
3436
3437   VALIDATE_SW_IF_INDEX (mp);
3438
3439   rv = ip6_neighbor_ra_config (vm, ntohl (mp->sw_if_index),
3440                                suppress, managed, other,
3441                                ll_option, send_unicast, cease,
3442                                default_router, ntohl (mp->lifetime),
3443                                ntohl (mp->initial_count),
3444                                ntohl (mp->initial_interval),
3445                                ntohl (mp->max_interval),
3446                                ntohl (mp->min_interval), is_no);
3447
3448   BAD_SW_IF_INDEX_LABEL;
3449
3450   REPLY_MACRO (VL_API_SW_INTERFACE_IP6ND_RA_CONFIG_REPLY);
3451 }
3452
3453 static void
3454   vl_api_sw_interface_ip6nd_ra_prefix_t_handler
3455   (vl_api_sw_interface_ip6nd_ra_prefix_t * mp, vlib_main_t * vm)
3456 {
3457   vl_api_sw_interface_ip6nd_ra_prefix_reply_t *rmp;
3458   int rv = 0;
3459   u8 is_no, use_default, no_advertise, off_link, no_autoconfig, no_onlink;
3460
3461   VALIDATE_SW_IF_INDEX (mp);
3462
3463   is_no = mp->is_no == 1;
3464   use_default = mp->use_default == 1;
3465   no_advertise = mp->no_advertise == 1;
3466   off_link = mp->off_link == 1;
3467   no_autoconfig = mp->no_autoconfig == 1;
3468   no_onlink = mp->no_onlink == 1;
3469
3470   rv = ip6_neighbor_ra_prefix (vm, ntohl (mp->sw_if_index),
3471                                (ip6_address_t *) mp->address,
3472                                mp->address_length, use_default,
3473                                ntohl (mp->val_lifetime),
3474                                ntohl (mp->pref_lifetime), no_advertise,
3475                                off_link, no_autoconfig, no_onlink, is_no);
3476
3477   BAD_SW_IF_INDEX_LABEL;
3478   REPLY_MACRO (VL_API_SW_INTERFACE_IP6ND_RA_PREFIX_REPLY);
3479 }
3480
3481 static void
3482   vl_api_sw_interface_ip6_enable_disable_t_handler
3483   (vl_api_sw_interface_ip6_enable_disable_t * mp, vlib_main_t * vm)
3484 {
3485   vl_api_sw_interface_ip6_enable_disable_reply_t *rmp;
3486   vnet_main_t *vnm = vnet_get_main ();
3487   int rv = 0;
3488   clib_error_t *error;
3489
3490   vnm->api_errno = 0;
3491
3492   VALIDATE_SW_IF_INDEX (mp);
3493
3494   error =
3495     (mp->enable == 1) ? enable_ip6_interface (vm,
3496                                               ntohl (mp->sw_if_index)) :
3497     disable_ip6_interface (vm, ntohl (mp->sw_if_index));
3498
3499   if (error)
3500     {
3501       clib_error_report (error);
3502       rv = VNET_API_ERROR_UNSPECIFIED;
3503     }
3504   else
3505     {
3506       rv = vnm->api_errno;
3507     }
3508
3509   BAD_SW_IF_INDEX_LABEL;
3510
3511   REPLY_MACRO (VL_API_SW_INTERFACE_IP6_ENABLE_DISABLE_REPLY);
3512 }
3513
3514 static void
3515   vl_api_sw_interface_ip6_set_link_local_address_t_handler
3516   (vl_api_sw_interface_ip6_set_link_local_address_t * mp, vlib_main_t * vm)
3517 {
3518   vl_api_sw_interface_ip6_set_link_local_address_reply_t *rmp;
3519   int rv = 0;
3520   clib_error_t *error;
3521   vnet_main_t *vnm = vnet_get_main ();
3522
3523   vnm->api_errno = 0;
3524
3525   VALIDATE_SW_IF_INDEX (mp);
3526
3527   error = set_ip6_link_local_address (vm,
3528                                       ntohl (mp->sw_if_index),
3529                                       (ip6_address_t *) mp->address,
3530                                       mp->address_length);
3531   if (error)
3532     {
3533       clib_error_report (error);
3534       rv = VNET_API_ERROR_UNSPECIFIED;
3535     }
3536   else
3537     {
3538       rv = vnm->api_errno;
3539     }
3540
3541   BAD_SW_IF_INDEX_LABEL;
3542
3543   REPLY_MACRO (VL_API_SW_INTERFACE_IP6_SET_LINK_LOCAL_ADDRESS_REPLY);
3544 }
3545
3546 static void
3547 set_ip6_flow_hash (vl_api_set_ip_flow_hash_t * mp)
3548 {
3549   vl_api_set_ip_flow_hash_reply_t *rmp;
3550   int rv = VNET_API_ERROR_UNIMPLEMENTED;
3551
3552   clib_warning ("unimplemented...");
3553
3554   REPLY_MACRO (VL_API_SET_IP_FLOW_HASH_REPLY);
3555 }
3556
3557 static void
3558 set_ip4_flow_hash (vl_api_set_ip_flow_hash_t * mp)
3559 {
3560   vl_api_set_ip_flow_hash_reply_t *rmp;
3561   int rv;
3562   u32 table_id;
3563   flow_hash_config_t flow_hash_config = 0;
3564
3565   table_id = ntohl (mp->vrf_id);
3566
3567 #define _(a,b) if (mp->a) flow_hash_config |= b;
3568   foreach_flow_hash_bit;
3569 #undef _
3570
3571   rv = vnet_set_ip4_flow_hash (table_id, flow_hash_config);
3572
3573   REPLY_MACRO (VL_API_SET_IP_FLOW_HASH_REPLY);
3574 }
3575
3576
3577 static void
3578 vl_api_set_ip_flow_hash_t_handler (vl_api_set_ip_flow_hash_t * mp)
3579 {
3580   if (mp->is_ipv6 == 0)
3581     set_ip4_flow_hash (mp);
3582   else
3583     set_ip6_flow_hash (mp);
3584 }
3585
3586 static void vl_api_sw_interface_set_unnumbered_t_handler
3587   (vl_api_sw_interface_set_unnumbered_t * mp)
3588 {
3589   vl_api_sw_interface_set_unnumbered_reply_t *rmp;
3590   int rv = 0;
3591   vnet_sw_interface_t *si;
3592   vnet_main_t *vnm = vnet_get_main ();
3593   u32 sw_if_index, unnumbered_sw_if_index;
3594
3595   sw_if_index = ntohl (mp->sw_if_index);
3596   unnumbered_sw_if_index = ntohl (mp->unnumbered_sw_if_index);
3597
3598   /*
3599    * The API message field names are backwards from
3600    * the underlying data structure names.
3601    * It's not worth changing them now.
3602    */
3603   if (pool_is_free_index (vnm->interface_main.sw_interfaces,
3604                           unnumbered_sw_if_index))
3605     {
3606       rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
3607       goto done;
3608     }
3609
3610   /* Only check the "use loop0" field when setting the binding */
3611   if (mp->is_add &&
3612       pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
3613     {
3614       rv = VNET_API_ERROR_INVALID_SW_IF_INDEX_2;
3615       goto done;
3616     }
3617
3618   si = vnet_get_sw_interface (vnm, unnumbered_sw_if_index);
3619
3620   if (mp->is_add)
3621     {
3622       si->flags |= VNET_SW_INTERFACE_FLAG_UNNUMBERED;
3623       si->unnumbered_sw_if_index = sw_if_index;
3624       ip4_sw_interface_enable_disable (unnumbered_sw_if_index, 1);
3625       ip6_sw_interface_enable_disable (unnumbered_sw_if_index, 1);
3626     }
3627   else
3628     {
3629       si->flags &= ~(VNET_SW_INTERFACE_FLAG_UNNUMBERED);
3630       si->unnumbered_sw_if_index = (u32) ~ 0;
3631       ip4_sw_interface_enable_disable (unnumbered_sw_if_index, 0);
3632       ip6_sw_interface_enable_disable (unnumbered_sw_if_index, 0);
3633     }
3634
3635 done:
3636   REPLY_MACRO (VL_API_SW_INTERFACE_SET_UNNUMBERED_REPLY);
3637 }
3638
3639 static void
3640 vl_api_create_loopback_t_handler (vl_api_create_loopback_t * mp)
3641 {
3642   vl_api_create_loopback_reply_t *rmp;
3643   u32 sw_if_index;
3644   int rv;
3645
3646   rv = vnet_create_loopback_interface (&sw_if_index, mp->mac_address);
3647
3648   /* *INDENT-OFF* */
3649   REPLY_MACRO2(VL_API_CREATE_LOOPBACK_REPLY,
3650   ({
3651     rmp->sw_if_index = ntohl (sw_if_index);
3652   }));
3653   /* *INDENT-ON* */
3654 }
3655
3656 static void
3657 vl_api_delete_loopback_t_handler (vl_api_delete_loopback_t * mp)
3658 {
3659   vl_api_delete_loopback_reply_t *rmp;
3660   u32 sw_if_index;
3661   int rv;
3662
3663   sw_if_index = ntohl (mp->sw_if_index);
3664   rv = vnet_delete_loopback_interface (sw_if_index);
3665
3666   REPLY_MACRO (VL_API_DELETE_LOOPBACK_REPLY);
3667 }
3668
3669 static void
3670 vl_api_control_ping_t_handler (vl_api_control_ping_t * mp)
3671 {
3672   vl_api_control_ping_reply_t *rmp;
3673   int rv = 0;
3674
3675   /* *INDENT-OFF* */
3676   REPLY_MACRO2(VL_API_CONTROL_PING_REPLY,
3677   ({
3678     rmp->vpe_pid = ntohl (getpid());
3679   }));
3680   /* *INDENT-ON* */
3681 }
3682
3683 static void
3684 shmem_cli_output (uword arg, u8 * buffer, uword buffer_bytes)
3685 {
3686   u8 **shmem_vecp = (u8 **) arg;
3687   u8 *shmem_vec;
3688   void *oldheap;
3689   api_main_t *am = &api_main;
3690   u32 offset;
3691
3692   shmem_vec = *shmem_vecp;
3693
3694   offset = vec_len (shmem_vec);
3695
3696   pthread_mutex_lock (&am->vlib_rp->mutex);
3697   oldheap = svm_push_data_heap (am->vlib_rp);
3698
3699   vec_validate (shmem_vec, offset + buffer_bytes - 1);
3700
3701   clib_memcpy (shmem_vec + offset, buffer, buffer_bytes);
3702
3703   svm_pop_heap (oldheap);
3704   pthread_mutex_unlock (&am->vlib_rp->mutex);
3705
3706   *shmem_vecp = shmem_vec;
3707 }
3708
3709
3710 static void
3711 vl_api_cli_request_t_handler (vl_api_cli_request_t * mp)
3712 {
3713   vl_api_cli_reply_t *rp;
3714   unix_shared_memory_queue_t *q;
3715   vlib_main_t *vm = vlib_get_main ();
3716   api_main_t *am = &api_main;
3717   unformat_input_t input;
3718   u8 *shmem_vec = 0;
3719   void *oldheap;
3720
3721   q = vl_api_client_index_to_input_queue (mp->client_index);
3722   if (!q)
3723     return;
3724
3725   rp = vl_msg_api_alloc (sizeof (*rp));
3726   rp->_vl_msg_id = ntohs (VL_API_CLI_REPLY);
3727   rp->context = mp->context;
3728
3729   unformat_init_vector (&input, (u8 *) (uword) mp->cmd_in_shmem);
3730
3731   vlib_cli_input (vm, &input, shmem_cli_output, (uword) & shmem_vec);
3732
3733   pthread_mutex_lock (&am->vlib_rp->mutex);
3734   oldheap = svm_push_data_heap (am->vlib_rp);
3735
3736   vec_add1 (shmem_vec, 0);
3737
3738   svm_pop_heap (oldheap);
3739   pthread_mutex_unlock (&am->vlib_rp->mutex);
3740
3741   rp->reply_in_shmem = (uword) shmem_vec;
3742
3743   vl_msg_api_send_shmem (q, (u8 *) & rp);
3744 }
3745
3746 static void
3747 inband_cli_output (uword arg, u8 * buffer, uword buffer_bytes)
3748 {
3749   u8 **mem_vecp = (u8 **) arg;
3750   u8 *mem_vec = *mem_vecp;
3751   u32 offset = vec_len (mem_vec);
3752
3753   vec_validate (mem_vec, offset + buffer_bytes - 1);
3754   clib_memcpy (mem_vec + offset, buffer, buffer_bytes);
3755   *mem_vecp = mem_vec;
3756 }
3757
3758 static void
3759 vl_api_cli_inband_t_handler (vl_api_cli_inband_t * mp)
3760 {
3761   vl_api_cli_inband_reply_t *rmp;
3762   int rv = 0;
3763   unix_shared_memory_queue_t *q;
3764   vlib_main_t *vm = vlib_get_main ();
3765   unformat_input_t input;
3766   u8 *out_vec = 0;
3767
3768   q = vl_api_client_index_to_input_queue (mp->client_index);
3769   if (!q)
3770     return;
3771
3772   unformat_init_string (&input, (char *) mp->cmd, ntohl (mp->length));
3773   vlib_cli_input (vm, &input, inband_cli_output, (uword) & out_vec);
3774
3775   u32 len = vec_len (out_vec);
3776   /* *INDENT-OFF* */
3777   REPLY_MACRO3(VL_API_CLI_INBAND_REPLY, len,
3778   ({
3779     rmp->length = htonl (len);
3780     clib_memcpy (rmp->reply, out_vec, len);
3781   }));
3782   /* *INDENT-ON* */
3783   vec_free (out_vec);
3784 }
3785
3786 static void
3787 vl_api_set_arp_neighbor_limit_t_handler (vl_api_set_arp_neighbor_limit_t * mp)
3788 {
3789   int rv;
3790   vl_api_set_arp_neighbor_limit_reply_t *rmp;
3791   vnet_main_t *vnm = vnet_get_main ();
3792   clib_error_t *error;
3793
3794   vnm->api_errno = 0;
3795
3796   if (mp->is_ipv6)
3797     error = ip6_set_neighbor_limit (ntohl (mp->arp_neighbor_limit));
3798   else
3799     error = ip4_set_arp_limit (ntohl (mp->arp_neighbor_limit));
3800
3801   if (error)
3802     {
3803       clib_error_report (error);
3804       rv = VNET_API_ERROR_UNSPECIFIED;
3805     }
3806   else
3807     {
3808       rv = vnm->api_errno;
3809     }
3810
3811   REPLY_MACRO (VL_API_SET_ARP_NEIGHBOR_LIMIT_REPLY);
3812 }
3813
3814 static void vl_api_sr_tunnel_add_del_t_handler
3815   (vl_api_sr_tunnel_add_del_t * mp)
3816 {
3817 #if IP6SR == 0
3818   clib_warning ("unimplemented");
3819 #else
3820   ip6_sr_add_del_tunnel_args_t _a, *a = &_a;
3821   int rv = 0;
3822   vl_api_sr_tunnel_add_del_reply_t *rmp;
3823   ip6_address_t *segments = 0, *seg;
3824   ip6_address_t *tags = 0, *tag;
3825   ip6_address_t *this_address;
3826   int i;
3827
3828   if (mp->n_segments == 0)
3829     {
3830       rv = -11;
3831       goto out;
3832     }
3833
3834   memset (a, 0, sizeof (*a));
3835   a->src_address = (ip6_address_t *) & mp->src_address;
3836   a->dst_address = (ip6_address_t *) & mp->dst_address;
3837   a->dst_mask_width = mp->dst_mask_width;
3838   a->flags_net_byte_order = mp->flags_net_byte_order;
3839   a->is_del = (mp->is_add == 0);
3840   a->rx_table_id = ntohl (mp->outer_vrf_id);
3841   a->tx_table_id = ntohl (mp->inner_vrf_id);
3842
3843   a->name = format (0, "%s", mp->name);
3844   if (!(vec_len (a->name)))
3845     a->name = 0;
3846
3847   a->policy_name = format (0, "%s", mp->policy_name);
3848   if (!(vec_len (a->policy_name)))
3849     a->policy_name = 0;
3850
3851   /* Yank segments and tags out of the API message */
3852   this_address = (ip6_address_t *) mp->segs_and_tags;
3853   for (i = 0; i < mp->n_segments; i++)
3854     {
3855       vec_add2 (segments, seg, 1);
3856       clib_memcpy (seg->as_u8, this_address->as_u8, sizeof (*this_address));
3857       this_address++;
3858     }
3859   for (i = 0; i < mp->n_tags; i++)
3860     {
3861       vec_add2 (tags, tag, 1);
3862       clib_memcpy (tag->as_u8, this_address->as_u8, sizeof (*this_address));
3863       this_address++;
3864     }
3865
3866   a->segments = segments;
3867   a->tags = tags;
3868
3869   rv = ip6_sr_add_del_tunnel (a);
3870
3871 out:
3872
3873   REPLY_MACRO (VL_API_SR_TUNNEL_ADD_DEL_REPLY);
3874 #endif
3875 }
3876
3877 static void vl_api_sr_policy_add_del_t_handler
3878   (vl_api_sr_policy_add_del_t * mp)
3879 {
3880 #if IP6SR == 0
3881   clib_warning ("unimplemented");
3882 #else
3883   ip6_sr_add_del_policy_args_t _a, *a = &_a;
3884   int rv = 0;
3885   vl_api_sr_policy_add_del_reply_t *rmp;
3886   int i;
3887
3888   memset (a, 0, sizeof (*a));
3889   a->is_del = (mp->is_add == 0);
3890
3891   a->name = format (0, "%s", mp->name);
3892   if (!(vec_len (a->name)))
3893     {
3894       rv = VNET_API_ERROR_NO_SUCH_NODE2;
3895       goto out;
3896     }
3897
3898   if (!(mp->tunnel_names[0]))
3899     {
3900       rv = VNET_API_ERROR_NO_SUCH_NODE2;
3901       goto out;
3902     }
3903
3904   // start deserializing tunnel_names
3905   int num_tunnels = mp->tunnel_names[0];        //number of tunnels
3906   u8 *deser_tun_names = mp->tunnel_names;
3907   deser_tun_names += 1;         //moving along
3908
3909   u8 *tun_name = 0;
3910   int tun_name_len = 0;
3911
3912   for (i = 0; i < num_tunnels; i++)
3913     {
3914       tun_name_len = *deser_tun_names;
3915       deser_tun_names += 1;
3916       vec_resize (tun_name, tun_name_len);
3917       memcpy (tun_name, deser_tun_names, tun_name_len);
3918       vec_add1 (a->tunnel_names, tun_name);
3919       deser_tun_names += tun_name_len;
3920       tun_name = 0;
3921     }
3922
3923   rv = ip6_sr_add_del_policy (a);
3924
3925 out:
3926
3927   REPLY_MACRO (VL_API_SR_POLICY_ADD_DEL_REPLY);
3928 #endif
3929 }
3930
3931 static void vl_api_sr_multicast_map_add_del_t_handler
3932   (vl_api_sr_multicast_map_add_del_t * mp)
3933 {
3934 #if IP6SR == 0
3935   clib_warning ("unimplemented");
3936 #else
3937   ip6_sr_add_del_multicastmap_args_t _a, *a = &_a;
3938   int rv = 0;
3939   vl_api_sr_multicast_map_add_del_reply_t *rmp;
3940
3941   memset (a, 0, sizeof (*a));
3942   a->is_del = (mp->is_add == 0);
3943
3944   a->multicast_address = (ip6_address_t *) & mp->multicast_address;
3945   a->policy_name = format (0, "%s", mp->policy_name);
3946
3947   if (a->multicast_address == 0)
3948     {
3949       rv = -1;
3950       goto out;
3951     }
3952
3953   if (!(a->policy_name))
3954     {
3955       rv = -2;
3956       goto out;
3957     }
3958
3959 #if DPDK > 0                    /* Cannot call replicate without DPDK */
3960   rv = ip6_sr_add_del_multicastmap (a);
3961 #else
3962   clib_warning ("multicast replication without DPDK not implemented");
3963   rv = VNET_API_ERROR_UNIMPLEMENTED;
3964 #endif /* DPDK */
3965
3966 out:
3967
3968   REPLY_MACRO (VL_API_SR_MULTICAST_MAP_ADD_DEL_REPLY);
3969 #endif
3970 }
3971
3972 #define foreach_classify_add_del_table_field    \
3973 _(table_index)                                  \
3974 _(nbuckets)                                     \
3975 _(memory_size)                                  \
3976 _(skip_n_vectors)                               \
3977 _(match_n_vectors)                              \
3978 _(next_table_index)                             \
3979 _(miss_next_index)
3980
3981 static void vl_api_classify_add_del_table_t_handler
3982   (vl_api_classify_add_del_table_t * mp)
3983 {
3984   vl_api_classify_add_del_table_reply_t *rmp;
3985   vnet_classify_main_t *cm = &vnet_classify_main;
3986   vnet_classify_table_t *t;
3987   int rv;
3988
3989 #define _(a) u32 a;
3990   foreach_classify_add_del_table_field;
3991 #undef _
3992
3993 #define _(a) a = ntohl(mp->a);
3994   foreach_classify_add_del_table_field;
3995 #undef _
3996
3997   /* The underlying API fails silently, on purpose, so check here */
3998   if (mp->is_add == 0)
3999     if (pool_is_free_index (cm->tables, table_index))
4000       {
4001         rv = VNET_API_ERROR_NO_SUCH_TABLE;
4002         goto out;
4003       }
4004
4005   rv = vnet_classify_add_del_table
4006     (cm, mp->mask, nbuckets, memory_size,
4007      skip_n_vectors, match_n_vectors,
4008      next_table_index, miss_next_index, &table_index, mp->is_add);
4009
4010 out:
4011   /* *INDENT-OFF* */
4012   REPLY_MACRO2(VL_API_CLASSIFY_ADD_DEL_TABLE_REPLY,
4013   ({
4014     if (rv == 0 && mp->is_add)
4015       {
4016         t = pool_elt_at_index (cm->tables, table_index);
4017         rmp->skip_n_vectors = ntohl(t->skip_n_vectors);
4018         rmp->match_n_vectors = ntohl(t->match_n_vectors);
4019         rmp->new_table_index = ntohl(table_index);
4020       }
4021     else
4022       {
4023         rmp->skip_n_vectors = ~0;
4024         rmp->match_n_vectors = ~0;
4025         rmp->new_table_index = ~0;
4026       }
4027   }));
4028   /* *INDENT-ON* */
4029 }
4030
4031 static void vl_api_classify_add_del_session_t_handler
4032   (vl_api_classify_add_del_session_t * mp)
4033 {
4034   vnet_classify_main_t *cm = &vnet_classify_main;
4035   vl_api_classify_add_del_session_reply_t *rmp;
4036   int rv;
4037   u32 table_index, hit_next_index, opaque_index;
4038   i32 advance;
4039
4040   table_index = ntohl (mp->table_index);
4041   hit_next_index = ntohl (mp->hit_next_index);
4042   opaque_index = ntohl (mp->opaque_index);
4043   advance = ntohl (mp->advance);
4044
4045   rv = vnet_classify_add_del_session
4046     (cm, table_index, mp->match, hit_next_index, opaque_index,
4047      advance, mp->is_add);
4048
4049   REPLY_MACRO (VL_API_CLASSIFY_ADD_DEL_SESSION_REPLY);
4050 }
4051
4052 static void vl_api_classify_set_interface_ip_table_t_handler
4053   (vl_api_classify_set_interface_ip_table_t * mp)
4054 {
4055   vlib_main_t *vm = vlib_get_main ();
4056   vl_api_classify_set_interface_ip_table_reply_t *rmp;
4057   int rv;
4058   u32 table_index, sw_if_index;
4059
4060   table_index = ntohl (mp->table_index);
4061   sw_if_index = ntohl (mp->sw_if_index);
4062
4063   VALIDATE_SW_IF_INDEX (mp);
4064
4065   if (mp->is_ipv6)
4066     rv = vnet_set_ip6_classify_intfc (vm, sw_if_index, table_index);
4067   else
4068     rv = vnet_set_ip4_classify_intfc (vm, sw_if_index, table_index);
4069
4070   BAD_SW_IF_INDEX_LABEL;
4071
4072   REPLY_MACRO (VL_API_CLASSIFY_SET_INTERFACE_IP_TABLE_REPLY);
4073 }
4074
4075 static void vl_api_classify_set_interface_l2_tables_t_handler
4076   (vl_api_classify_set_interface_l2_tables_t * mp)
4077 {
4078   vl_api_classify_set_interface_l2_tables_reply_t *rmp;
4079   int rv;
4080   u32 sw_if_index, ip4_table_index, ip6_table_index, other_table_index;
4081   int enable;
4082
4083   ip4_table_index = ntohl (mp->ip4_table_index);
4084   ip6_table_index = ntohl (mp->ip6_table_index);
4085   other_table_index = ntohl (mp->other_table_index);
4086   sw_if_index = ntohl (mp->sw_if_index);
4087
4088   VALIDATE_SW_IF_INDEX (mp);
4089
4090   if (mp->is_input)
4091     rv = vnet_l2_input_classify_set_tables (sw_if_index, ip4_table_index,
4092                                             ip6_table_index,
4093                                             other_table_index);
4094   else
4095     rv = vnet_l2_output_classify_set_tables (sw_if_index, ip4_table_index,
4096                                              ip6_table_index,
4097                                              other_table_index);
4098
4099   if (rv == 0)
4100     {
4101       if (ip4_table_index != ~0 || ip6_table_index != ~0
4102           || other_table_index != ~0)
4103         enable = 1;
4104       else
4105         enable = 0;
4106
4107       if (mp->is_input)
4108         vnet_l2_input_classify_enable_disable (sw_if_index, enable);
4109       else
4110         vnet_l2_output_classify_enable_disable (sw_if_index, enable);
4111     }
4112
4113   BAD_SW_IF_INDEX_LABEL;
4114
4115   REPLY_MACRO (VL_API_CLASSIFY_SET_INTERFACE_L2_TABLES_REPLY);
4116 }
4117
4118 static void
4119 vl_api_l2_fib_clear_table_t_handler (vl_api_l2_fib_clear_table_t * mp)
4120 {
4121   int rv = 0;
4122   vl_api_l2_fib_clear_table_reply_t *rmp;
4123
4124   /* DAW-FIXME: This API should only clear non-static l2fib entries, but
4125    *            that is not currently implemented.  When that TODO is fixed
4126    *            this call should be changed to pass 1 instead of 0.
4127    */
4128   l2fib_clear_table (0);
4129
4130   REPLY_MACRO (VL_API_L2_FIB_CLEAR_TABLE_REPLY);
4131 }
4132
4133 extern void l2_efp_filter_configure (vnet_main_t * vnet_main,
4134                                      u32 sw_if_index, u32 enable);
4135
4136 static void
4137 vl_api_l2_interface_efp_filter_t_handler (vl_api_l2_interface_efp_filter_t *
4138                                           mp)
4139 {
4140   int rv;
4141   vl_api_l2_interface_efp_filter_reply_t *rmp;
4142   vnet_main_t *vnm = vnet_get_main ();
4143
4144   // enable/disable the feature
4145   l2_efp_filter_configure (vnm, mp->sw_if_index, mp->enable_disable);
4146   rv = vnm->api_errno;
4147
4148   REPLY_MACRO (VL_API_L2_INTERFACE_EFP_FILTER_REPLY);
4149 }
4150
4151 static void
4152   vl_api_l2_interface_vlan_tag_rewrite_t_handler
4153   (vl_api_l2_interface_vlan_tag_rewrite_t * mp)
4154 {
4155   int rv = 0;
4156   vl_api_l2_interface_vlan_tag_rewrite_reply_t *rmp;
4157   vnet_main_t *vnm = vnet_get_main ();
4158   vlib_main_t *vm = vlib_get_main ();
4159   u32 vtr_op;
4160
4161   VALIDATE_SW_IF_INDEX (mp);
4162
4163   vtr_op = ntohl (mp->vtr_op);
4164
4165   /* The L2 code is unsuspicious */
4166   switch (vtr_op)
4167     {
4168     case L2_VTR_DISABLED:
4169     case L2_VTR_PUSH_1:
4170     case L2_VTR_PUSH_2:
4171     case L2_VTR_POP_1:
4172     case L2_VTR_POP_2:
4173     case L2_VTR_TRANSLATE_1_1:
4174     case L2_VTR_TRANSLATE_1_2:
4175     case L2_VTR_TRANSLATE_2_1:
4176     case L2_VTR_TRANSLATE_2_2:
4177       break;
4178
4179     default:
4180       rv = VNET_API_ERROR_INVALID_VALUE;
4181       goto bad_sw_if_index;
4182     }
4183
4184   rv = l2vtr_configure (vm, vnm, ntohl (mp->sw_if_index), vtr_op,
4185                         ntohl (mp->push_dot1q), ntohl (mp->tag1),
4186                         ntohl (mp->tag2));
4187
4188   BAD_SW_IF_INDEX_LABEL;
4189
4190   REPLY_MACRO (VL_API_L2_INTERFACE_VLAN_TAG_REWRITE_REPLY);
4191 }
4192
4193 static void
4194 vl_api_create_vhost_user_if_t_handler (vl_api_create_vhost_user_if_t * mp)
4195 {
4196   int rv = 0;
4197   vl_api_create_vhost_user_if_reply_t *rmp;
4198   u32 sw_if_index = (u32) ~ 0;
4199
4200   vnet_main_t *vnm = vnet_get_main ();
4201   vlib_main_t *vm = vlib_get_main ();
4202
4203   rv = vhost_user_create_if (vnm, vm, (char *) mp->sock_filename,
4204                              mp->is_server, &sw_if_index, (u64) ~ 0,
4205                              mp->renumber, ntohl (mp->custom_dev_instance),
4206                              (mp->use_custom_mac) ? mp->mac_address : NULL);
4207
4208   /* *INDENT-OFF* */
4209   REPLY_MACRO2(VL_API_CREATE_VHOST_USER_IF_REPLY,
4210   ({
4211     rmp->sw_if_index = ntohl (sw_if_index);
4212   }));
4213   /* *INDENT-ON* */
4214 }
4215
4216 static void
4217 vl_api_modify_vhost_user_if_t_handler (vl_api_modify_vhost_user_if_t * mp)
4218 {
4219   int rv = 0;
4220   vl_api_modify_vhost_user_if_reply_t *rmp;
4221   u32 sw_if_index = ntohl (mp->sw_if_index);
4222
4223   vnet_main_t *vnm = vnet_get_main ();
4224   vlib_main_t *vm = vlib_get_main ();
4225
4226   rv = vhost_user_modify_if (vnm, vm, (char *) mp->sock_filename,
4227                              mp->is_server, sw_if_index, (u64) ~ 0,
4228                              mp->renumber, ntohl (mp->custom_dev_instance));
4229   REPLY_MACRO (VL_API_MODIFY_VHOST_USER_IF_REPLY);
4230 }
4231
4232 static void
4233 vl_api_delete_vhost_user_if_t_handler (vl_api_delete_vhost_user_if_t * mp)
4234 {
4235   int rv = 0;
4236   vl_api_delete_vhost_user_if_reply_t *rmp;
4237   vpe_api_main_t *vam = &vpe_api_main;
4238   u32 sw_if_index = ntohl (mp->sw_if_index);
4239
4240   vnet_main_t *vnm = vnet_get_main ();
4241   vlib_main_t *vm = vlib_get_main ();
4242
4243   rv = vhost_user_delete_if (vnm, vm, sw_if_index);
4244
4245   REPLY_MACRO (VL_API_DELETE_VHOST_USER_IF_REPLY);
4246   if (!rv)
4247     {
4248       unix_shared_memory_queue_t *q =
4249         vl_api_client_index_to_input_queue (mp->client_index);
4250       if (!q)
4251         return;
4252
4253       send_sw_interface_flags_deleted (vam, q, sw_if_index);
4254     }
4255 }
4256
4257 static void
4258   vl_api_sw_interface_vhost_user_details_t_handler
4259   (vl_api_sw_interface_vhost_user_details_t * mp)
4260 {
4261   clib_warning ("BUG");
4262 }
4263
4264 static void
4265 send_sw_interface_vhost_user_details (vpe_api_main_t * am,
4266                                       unix_shared_memory_queue_t * q,
4267                                       vhost_user_intf_details_t * vui,
4268                                       u32 context)
4269 {
4270   vl_api_sw_interface_vhost_user_details_t *mp;
4271
4272   mp = vl_msg_api_alloc (sizeof (*mp));
4273   memset (mp, 0, sizeof (*mp));
4274   mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_VHOST_USER_DETAILS);
4275   mp->sw_if_index = ntohl (vui->sw_if_index);
4276   mp->virtio_net_hdr_sz = ntohl (vui->virtio_net_hdr_sz);
4277   mp->features = clib_net_to_host_u64 (vui->features);
4278   mp->is_server = vui->is_server;
4279   mp->num_regions = ntohl (vui->num_regions);
4280   mp->sock_errno = ntohl (vui->sock_errno);
4281   mp->context = context;
4282
4283   strncpy ((char *) mp->sock_filename,
4284            (char *) vui->sock_filename, ARRAY_LEN (mp->sock_filename) - 1);
4285   strncpy ((char *) mp->interface_name,
4286            (char *) vui->if_name, ARRAY_LEN (mp->interface_name) - 1);
4287
4288   vl_msg_api_send_shmem (q, (u8 *) & mp);
4289 }
4290
4291 static void
4292   vl_api_sw_interface_vhost_user_dump_t_handler
4293   (vl_api_sw_interface_vhost_user_dump_t * mp)
4294 {
4295   int rv = 0;
4296   vpe_api_main_t *am = &vpe_api_main;
4297   vnet_main_t *vnm = vnet_get_main ();
4298   vlib_main_t *vm = vlib_get_main ();
4299   vhost_user_intf_details_t *ifaces = NULL;
4300   vhost_user_intf_details_t *vuid = NULL;
4301   unix_shared_memory_queue_t *q;
4302
4303   q = vl_api_client_index_to_input_queue (mp->client_index);
4304   if (q == 0)
4305     return;
4306
4307   rv = vhost_user_dump_ifs (vnm, vm, &ifaces);
4308   if (rv)
4309     return;
4310
4311   vec_foreach (vuid, ifaces)
4312   {
4313     send_sw_interface_vhost_user_details (am, q, vuid, mp->context);
4314   }
4315   vec_free (ifaces);
4316 }
4317
4318 static void
4319 send_sw_if_l2tpv3_tunnel_details (vpe_api_main_t * am,
4320                                   unix_shared_memory_queue_t * q,
4321                                   l2t_session_t * s,
4322                                   l2t_main_t * lm, u32 context)
4323 {
4324   vl_api_sw_if_l2tpv3_tunnel_details_t *mp;
4325   u8 *if_name = NULL;
4326   vnet_sw_interface_t *si = NULL;
4327
4328   si = vnet_get_hw_sw_interface (lm->vnet_main, s->hw_if_index);
4329
4330   if_name = format (if_name, "%U",
4331                     format_vnet_sw_interface_name, lm->vnet_main, si);
4332
4333   mp = vl_msg_api_alloc (sizeof (*mp));
4334   memset (mp, 0, sizeof (*mp));
4335   mp->_vl_msg_id = ntohs (VL_API_SW_IF_L2TPV3_TUNNEL_DETAILS);
4336   strncpy ((char *) mp->interface_name,
4337            (char *) if_name, ARRAY_LEN (mp->interface_name) - 1);
4338   mp->sw_if_index = ntohl (si->sw_if_index);
4339   mp->local_session_id = s->local_session_id;
4340   mp->remote_session_id = s->remote_session_id;
4341   mp->local_cookie[0] = s->local_cookie[0];
4342   mp->local_cookie[1] = s->local_cookie[1];
4343   mp->remote_cookie = s->remote_cookie;
4344   clib_memcpy (mp->client_address, &s->client_address,
4345                sizeof (s->client_address));
4346   clib_memcpy (mp->our_address, &s->our_address, sizeof (s->our_address));
4347   mp->l2_sublayer_present = s->l2_sublayer_present;
4348   mp->context = context;
4349
4350   vl_msg_api_send_shmem (q, (u8 *) & mp);
4351 }
4352
4353 static void
4354 send_ip_address_details (vpe_api_main_t * am,
4355                          unix_shared_memory_queue_t * q,
4356                          u8 * ip, u16 prefix_length, u8 is_ipv6, u32 context)
4357 {
4358   vl_api_ip_address_details_t *mp;
4359
4360   mp = vl_msg_api_alloc (sizeof (*mp));
4361   memset (mp, 0, sizeof (*mp));
4362   mp->_vl_msg_id = ntohs (VL_API_IP_ADDRESS_DETAILS);
4363
4364   if (is_ipv6)
4365     {
4366       clib_memcpy (&mp->ip, ip, sizeof (mp->ip));
4367     }
4368   else
4369     {
4370       u32 *tp = (u32 *) mp->ip;
4371       *tp = ntohl (*(u32 *) ip);
4372     }
4373   mp->prefix_length = prefix_length;
4374   mp->context = context;
4375
4376   vl_msg_api_send_shmem (q, (u8 *) & mp);
4377 }
4378
4379 static void
4380 vl_api_ip_address_dump_t_handler (vl_api_ip_address_dump_t * mp)
4381 {
4382   vpe_api_main_t *am = &vpe_api_main;
4383   unix_shared_memory_queue_t *q;
4384   ip6_address_t *r6;
4385   ip4_address_t *r4;
4386   ip6_main_t *im6 = &ip6_main;
4387   ip4_main_t *im4 = &ip4_main;
4388   ip_lookup_main_t *lm6 = &im6->lookup_main;
4389   ip_lookup_main_t *lm4 = &im4->lookup_main;
4390   ip_interface_address_t *ia = 0;
4391   u32 sw_if_index = ~0;
4392   int rv __attribute__ ((unused)) = 0;
4393
4394   VALIDATE_SW_IF_INDEX (mp);
4395
4396   sw_if_index = ntohl (mp->sw_if_index);
4397
4398   q = vl_api_client_index_to_input_queue (mp->client_index);
4399   if (q == 0)
4400     {
4401       return;
4402     }
4403
4404   if (mp->is_ipv6)
4405     {
4406       /* *INDENT-OFF* */
4407       foreach_ip_interface_address (lm6, ia, sw_if_index,
4408                                     1 /* honor unnumbered */,
4409       ({
4410         r6 = ip_interface_address_get_address (lm6, ia);
4411         u16 prefix_length = ia->address_length;
4412         send_ip_address_details(am, q, (u8*)r6, prefix_length, 1, mp->context);
4413       }));
4414       /* *INDENT-ON* */
4415     }
4416   else
4417     {
4418       /* *INDENT-OFF* */
4419       foreach_ip_interface_address (lm4, ia, sw_if_index,
4420                                     1 /* honor unnumbered */,
4421       ({
4422         r4 = ip_interface_address_get_address (lm4, ia);
4423         u16 prefix_length = ia->address_length;
4424         send_ip_address_details(am, q, (u8*)r4, prefix_length, 0, mp->context);
4425       }));
4426       /* *INDENT-ON* */
4427     }
4428   BAD_SW_IF_INDEX_LABEL;
4429 }
4430
4431 static void
4432 send_ip_details (vpe_api_main_t * am,
4433                  unix_shared_memory_queue_t * q, u32 sw_if_index, u32 context)
4434 {
4435   vl_api_ip_details_t *mp;
4436
4437   mp = vl_msg_api_alloc (sizeof (*mp));
4438   memset (mp, 0, sizeof (*mp));
4439   mp->_vl_msg_id = ntohs (VL_API_IP_DETAILS);
4440
4441   mp->sw_if_index = ntohl (sw_if_index);
4442   mp->context = context;
4443
4444   vl_msg_api_send_shmem (q, (u8 *) & mp);
4445 }
4446
4447 static void
4448 vl_api_sw_if_l2tpv3_tunnel_dump_t_handler (vl_api_sw_if_l2tpv3_tunnel_dump_t *
4449                                            mp)
4450 {
4451   vpe_api_main_t *am = &vpe_api_main;
4452   l2t_main_t *lm = &l2t_main;
4453   unix_shared_memory_queue_t *q;
4454   l2t_session_t *session;
4455
4456   q = vl_api_client_index_to_input_queue (mp->client_index);
4457   if (q == 0)
4458     return;
4459
4460   /* *INDENT-OFF* */
4461   pool_foreach (session, lm->sessions,
4462   ({
4463     send_sw_if_l2tpv3_tunnel_details (am, q, session, lm, mp->context);
4464   }));
4465   /* *INDENT-ON* */
4466 }
4467
4468
4469 static void
4470 send_sw_interface_tap_details (vpe_api_main_t * am,
4471                                unix_shared_memory_queue_t * q,
4472                                tapcli_interface_details_t * tap_if,
4473                                u32 context)
4474 {
4475   vl_api_sw_interface_tap_details_t *mp;
4476   mp = vl_msg_api_alloc (sizeof (*mp));
4477   memset (mp, 0, sizeof (*mp));
4478   mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_TAP_DETAILS);
4479   mp->sw_if_index = ntohl (tap_if->sw_if_index);
4480   strncpy ((char *) mp->dev_name,
4481            (char *) tap_if->dev_name, ARRAY_LEN (mp->dev_name) - 1);
4482   mp->context = context;
4483
4484   vl_msg_api_send_shmem (q, (u8 *) & mp);
4485 }
4486
4487 static void
4488 vl_api_sw_interface_tap_dump_t_handler (vl_api_sw_interface_tap_dump_t * mp)
4489 {
4490   int rv = 0;
4491   vpe_api_main_t *am = &vpe_api_main;
4492   unix_shared_memory_queue_t *q;
4493   tapcli_interface_details_t *tapifs = NULL;
4494   tapcli_interface_details_t *tap_if = NULL;
4495
4496   q = vl_api_client_index_to_input_queue (mp->client_index);
4497   if (q == 0)
4498     return;
4499
4500   rv = vnet_tap_dump_ifs (&tapifs);
4501   if (rv)
4502     return;
4503
4504   vec_foreach (tap_if, tapifs)
4505   {
4506     send_sw_interface_tap_details (am, q, tap_if, mp->context);
4507   }
4508
4509   vec_free (tapifs);
4510 }
4511
4512 static void
4513 vl_api_ip_dump_t_handler (vl_api_ip_dump_t * mp)
4514 {
4515   vpe_api_main_t *am = &vpe_api_main;
4516   vnet_main_t *vnm = vnet_get_main ();
4517   vlib_main_t *vm = vlib_get_main ();
4518   vnet_interface_main_t *im = &vnm->interface_main;
4519   unix_shared_memory_queue_t *q;
4520   vnet_sw_interface_t *si, *sorted_sis;
4521   u32 sw_if_index = ~0;
4522
4523   q = vl_api_client_index_to_input_queue (mp->client_index);
4524   if (q == 0)
4525     {
4526       return;
4527     }
4528
4529   /* Gather interfaces. */
4530   sorted_sis = vec_new (vnet_sw_interface_t, pool_elts (im->sw_interfaces));
4531   _vec_len (sorted_sis) = 0;
4532   /* *INDENT-OFF* */
4533   pool_foreach (si, im->sw_interfaces,
4534   ({
4535     vec_add1 (sorted_sis, si[0]);
4536   }));
4537   /* *INDENT-ON* */
4538
4539   vec_foreach (si, sorted_sis)
4540   {
4541     if (!(si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
4542       {
4543         if (mp->is_ipv6 && !ip6_interface_enabled (vm, si->sw_if_index))
4544           {
4545             continue;
4546           }
4547         sw_if_index = si->sw_if_index;
4548         send_ip_details (am, q, sw_if_index, mp->context);
4549       }
4550   }
4551 }
4552
4553 static void
4554 vl_api_l2_fib_table_entry_t_handler (vl_api_l2_fib_table_entry_t * mp)
4555 {
4556   clib_warning ("BUG");
4557 }
4558
4559 static void
4560 send_l2fib_table_entry (vpe_api_main_t * am,
4561                         unix_shared_memory_queue_t * q,
4562                         l2fib_entry_key_t * l2fe_key,
4563                         l2fib_entry_result_t * l2fe_res, u32 context)
4564 {
4565   vl_api_l2_fib_table_entry_t *mp;
4566
4567   mp = vl_msg_api_alloc (sizeof (*mp));
4568   memset (mp, 0, sizeof (*mp));
4569   mp->_vl_msg_id = ntohs (VL_API_L2_FIB_TABLE_ENTRY);
4570
4571   mp->bd_id =
4572     ntohl (l2input_main.bd_configs[l2fe_key->fields.bd_index].bd_id);
4573
4574   mp->mac = l2fib_make_key (l2fe_key->fields.mac, 0);
4575   mp->sw_if_index = ntohl (l2fe_res->fields.sw_if_index);
4576   mp->static_mac = l2fe_res->fields.static_mac;
4577   mp->filter_mac = l2fe_res->fields.filter;
4578   mp->bvi_mac = l2fe_res->fields.bvi;
4579   mp->context = context;
4580
4581   vl_msg_api_send_shmem (q, (u8 *) & mp);
4582 }
4583
4584 static void
4585 vl_api_l2_fib_table_dump_t_handler (vl_api_l2_fib_table_dump_t * mp)
4586 {
4587   vpe_api_main_t *am = &vpe_api_main;
4588   bd_main_t *bdm = &bd_main;
4589   l2fib_entry_key_t *l2fe_key = NULL;
4590   l2fib_entry_result_t *l2fe_res = NULL;
4591   u32 ni, bd_id = ntohl (mp->bd_id);
4592   u32 bd_index;
4593   unix_shared_memory_queue_t *q;
4594   uword *p;
4595
4596   q = vl_api_client_index_to_input_queue (mp->client_index);
4597   if (q == 0)
4598     return;
4599
4600   /* see l2fib_table_dump: ~0 means "any" */
4601   if (bd_id == ~0)
4602     bd_index = ~0;
4603   else
4604     {
4605       p = hash_get (bdm->bd_index_by_bd_id, bd_id);
4606       if (p == 0)
4607         return;
4608
4609       bd_index = p[0];
4610     }
4611
4612   l2fib_table_dump (bd_index, &l2fe_key, &l2fe_res);
4613
4614   vec_foreach_index (ni, l2fe_key)
4615   {
4616     send_l2fib_table_entry (am, q, vec_elt_at_index (l2fe_key, ni),
4617                             vec_elt_at_index (l2fe_res, ni), mp->context);
4618   }
4619   vec_free (l2fe_key);
4620   vec_free (l2fe_res);
4621 }
4622
4623 static void
4624 vl_api_show_version_t_handler (vl_api_show_version_t * mp)
4625 {
4626   vl_api_show_version_reply_t *rmp;
4627   int rv = 0;
4628   char *vpe_api_get_build_directory (void);
4629   char *vpe_api_get_version (void);
4630   char *vpe_api_get_build_date (void);
4631
4632   unix_shared_memory_queue_t *q =
4633     vl_api_client_index_to_input_queue (mp->client_index);
4634
4635   if (!q)
4636     return;
4637
4638   /* *INDENT-OFF* */
4639   REPLY_MACRO2(VL_API_SHOW_VERSION_REPLY,
4640   ({
4641     strncpy ((char *) rmp->program, "vpe", ARRAY_LEN(rmp->program)-1);
4642     strncpy ((char *) rmp->build_directory, vpe_api_get_build_directory(),
4643              ARRAY_LEN(rmp->build_directory)-1);
4644     strncpy ((char *) rmp->version, vpe_api_get_version(),
4645              ARRAY_LEN(rmp->version)-1);
4646     strncpy ((char *) rmp->build_date, vpe_api_get_build_date(),
4647              ARRAY_LEN(rmp->build_date)-1);
4648   }));
4649   /* *INDENT-ON* */
4650 }
4651
4652 static void
4653 vl_api_get_node_index_t_handler (vl_api_get_node_index_t * mp)
4654 {
4655   vlib_main_t *vm = vlib_get_main ();
4656   vl_api_get_node_index_reply_t *rmp;
4657   vlib_node_t *n;
4658   int rv = 0;
4659   u32 node_index = ~0;
4660
4661   n = vlib_get_node_by_name (vm, mp->node_name);
4662
4663   if (n == 0)
4664     rv = VNET_API_ERROR_NO_SUCH_NODE;
4665   else
4666     node_index = n->index;
4667
4668   /* *INDENT-OFF* */
4669   REPLY_MACRO2(VL_API_GET_NODE_INDEX_REPLY,
4670   ({
4671     rmp->node_index = ntohl(node_index);
4672   }));
4673   /* *INDENT-ON* */
4674 }
4675
4676 static void
4677 vl_api_get_next_index_t_handler (vl_api_get_next_index_t * mp)
4678 {
4679   vlib_main_t *vm = vlib_get_main ();
4680   vl_api_get_next_index_reply_t *rmp;
4681   vlib_node_t *node, *next_node;
4682   int rv = 0;
4683   u32 next_node_index = ~0, next_index = ~0;
4684   uword *p;
4685
4686   node = vlib_get_node_by_name (vm, mp->node_name);
4687
4688   if (node == 0)
4689     {
4690       rv = VNET_API_ERROR_NO_SUCH_NODE;
4691       goto out;
4692     }
4693
4694   next_node = vlib_get_node_by_name (vm, mp->next_name);
4695
4696   if (next_node == 0)
4697     {
4698       rv = VNET_API_ERROR_NO_SUCH_NODE2;
4699       goto out;
4700     }
4701   else
4702     next_node_index = next_node->index;
4703
4704   p = hash_get (node->next_slot_by_node, next_node_index);
4705
4706   if (p == 0)
4707     {
4708       rv = VNET_API_ERROR_NO_SUCH_ENTRY;
4709       goto out;
4710     }
4711   else
4712     next_index = p[0];
4713
4714 out:
4715   /* *INDENT-OFF* */
4716   REPLY_MACRO2(VL_API_GET_NEXT_INDEX_REPLY,
4717   ({
4718     rmp->next_index = ntohl(next_index);
4719   }));
4720   /* *INDENT-ON* */
4721 }
4722
4723 static void
4724 vl_api_add_node_next_t_handler (vl_api_add_node_next_t * mp)
4725 {
4726   vlib_main_t *vm = vlib_get_main ();
4727   vl_api_add_node_next_reply_t *rmp;
4728   vlib_node_t *n, *next;
4729   int rv = 0;
4730   u32 next_index = ~0;
4731
4732   n = vlib_get_node_by_name (vm, mp->node_name);
4733
4734   if (n == 0)
4735     {
4736       rv = VNET_API_ERROR_NO_SUCH_NODE;
4737       goto out;
4738     }
4739
4740   next = vlib_get_node_by_name (vm, mp->next_name);
4741
4742   if (next == 0)
4743     rv = VNET_API_ERROR_NO_SUCH_NODE2;
4744   else
4745     next_index = vlib_node_add_next (vm, n->index, next->index);
4746
4747 out:
4748   /* *INDENT-OFF* */
4749   REPLY_MACRO2(VL_API_GET_NODE_INDEX_REPLY,
4750   ({
4751     rmp->next_index = ntohl(next_index);
4752   }));
4753   /* *INDENT-ON* */
4754 }
4755
4756 static void vl_api_l2tpv3_create_tunnel_t_handler
4757   (vl_api_l2tpv3_create_tunnel_t * mp)
4758 {
4759   vl_api_l2tpv3_create_tunnel_reply_t *rmp;
4760   l2t_main_t *lm = &l2t_main;
4761   u32 sw_if_index = (u32) ~ 0;
4762   int rv;
4763
4764   if (mp->is_ipv6 != 1)
4765     {
4766       rv = VNET_API_ERROR_UNIMPLEMENTED;
4767       goto out;
4768     }
4769
4770   u32 encap_fib_index;
4771
4772   if (mp->encap_vrf_id != ~0)
4773     {
4774       uword *p;
4775       ip6_main_t *im = &ip6_main;
4776       if (!
4777           (p =
4778            hash_get (im->fib_index_by_table_id, ntohl (mp->encap_vrf_id))))
4779         {
4780           rv = VNET_API_ERROR_NO_SUCH_FIB;
4781           goto out;
4782         }
4783       encap_fib_index = p[0];
4784     }
4785   else
4786     {
4787       encap_fib_index = ~0;
4788     }
4789
4790   rv = create_l2tpv3_ipv6_tunnel (lm,
4791                                   (ip6_address_t *) mp->client_address,
4792                                   (ip6_address_t *) mp->our_address,
4793                                   ntohl (mp->local_session_id),
4794                                   ntohl (mp->remote_session_id),
4795                                   clib_net_to_host_u64 (mp->local_cookie),
4796                                   clib_net_to_host_u64 (mp->remote_cookie),
4797                                   mp->l2_sublayer_present,
4798                                   encap_fib_index, &sw_if_index);
4799
4800 out:
4801   /* *INDENT-OFF* */
4802   REPLY_MACRO2(VL_API_L2TPV3_CREATE_TUNNEL_REPLY,
4803   ({
4804     rmp->sw_if_index = ntohl (sw_if_index);
4805   }));
4806   /* *INDENT-ON* */
4807 }
4808
4809 static void vl_api_l2tpv3_set_tunnel_cookies_t_handler
4810   (vl_api_l2tpv3_set_tunnel_cookies_t * mp)
4811 {
4812   vl_api_l2tpv3_set_tunnel_cookies_reply_t *rmp;
4813   l2t_main_t *lm = &l2t_main;
4814   int rv;
4815
4816   VALIDATE_SW_IF_INDEX (mp);
4817
4818   rv = l2tpv3_set_tunnel_cookies (lm, ntohl (mp->sw_if_index),
4819                                   clib_net_to_host_u64 (mp->new_local_cookie),
4820                                   clib_net_to_host_u64
4821                                   (mp->new_remote_cookie));
4822
4823   BAD_SW_IF_INDEX_LABEL;
4824
4825   REPLY_MACRO (VL_API_L2TPV3_SET_TUNNEL_COOKIES_REPLY);
4826 }
4827
4828 static void vl_api_l2tpv3_interface_enable_disable_t_handler
4829   (vl_api_l2tpv3_interface_enable_disable_t * mp)
4830 {
4831   int rv;
4832   vnet_main_t *vnm = vnet_get_main ();
4833   vl_api_l2tpv3_interface_enable_disable_reply_t *rmp;
4834
4835   VALIDATE_SW_IF_INDEX (mp);
4836
4837   rv = l2tpv3_interface_enable_disable
4838     (vnm, ntohl (mp->sw_if_index), mp->enable_disable);
4839
4840   BAD_SW_IF_INDEX_LABEL;
4841
4842   REPLY_MACRO (VL_API_L2TPV3_INTERFACE_ENABLE_DISABLE_REPLY);
4843 }
4844
4845 static void vl_api_l2tpv3_set_lookup_key_t_handler
4846   (vl_api_l2tpv3_set_lookup_key_t * mp)
4847 {
4848   int rv = 0;
4849   l2t_main_t *lm = &l2t_main;
4850   vl_api_l2tpv3_set_lookup_key_reply_t *rmp;
4851
4852   if (mp->key > L2T_LOOKUP_SESSION_ID)
4853     {
4854       rv = VNET_API_ERROR_INVALID_VALUE;
4855       goto out;
4856     }
4857
4858   lm->lookup_type = mp->key;
4859
4860 out:
4861   REPLY_MACRO (VL_API_L2TPV3_SET_LOOKUP_KEY_REPLY);
4862 }
4863
4864 static void vl_api_vxlan_add_del_tunnel_t_handler
4865   (vl_api_vxlan_add_del_tunnel_t * mp)
4866 {
4867   vl_api_vxlan_add_del_tunnel_reply_t *rmp;
4868   int rv = 0;
4869   vnet_vxlan_add_del_tunnel_args_t _a, *a = &_a;
4870   u32 encap_fib_index;
4871   uword *p;
4872   ip4_main_t *im = &ip4_main;
4873   u32 sw_if_index = ~0;
4874
4875   p = hash_get (im->fib_index_by_table_id, ntohl (mp->encap_vrf_id));
4876   if (!p)
4877     {
4878       rv = VNET_API_ERROR_NO_SUCH_FIB;
4879       goto out;
4880     }
4881   encap_fib_index = p[0];
4882
4883   /* Check src & dst are different */
4884   if ((mp->is_ipv6 && memcmp (mp->src_address, mp->dst_address, 16) == 0) ||
4885       (!mp->is_ipv6 && memcmp (mp->src_address, mp->dst_address, 4) == 0))
4886     {
4887       rv = VNET_API_ERROR_SAME_SRC_DST;
4888       goto out;
4889     }
4890   memset (a, 0, sizeof (*a));
4891
4892   a->is_add = mp->is_add;
4893   a->is_ip6 = mp->is_ipv6;
4894
4895   /* ip addresses sent in network byte order */
4896   if (a->is_ip6)
4897     {
4898       memcpy (&(a->src.ip6), mp->src_address, 16);
4899       memcpy (&(a->dst.ip6), mp->dst_address, 16);
4900     }
4901   else
4902     {
4903       memcpy (&(a->src.ip4), mp->src_address, 4);
4904       memcpy (&(a->dst.ip4), mp->dst_address, 4);
4905     }
4906
4907   a->encap_fib_index = encap_fib_index;
4908   a->decap_next_index = ntohl (mp->decap_next_index);
4909   a->vni = ntohl (mp->vni);
4910   rv = vnet_vxlan_add_del_tunnel (a, &sw_if_index);
4911
4912 out:
4913   /* *INDENT-OFF* */
4914   REPLY_MACRO2(VL_API_VXLAN_ADD_DEL_TUNNEL_REPLY,
4915   ({
4916     rmp->sw_if_index = ntohl (sw_if_index);
4917   }));
4918   /* *INDENT-ON* */
4919 }
4920
4921 static void send_vxlan_tunnel_details
4922   (vxlan_tunnel_t * t, unix_shared_memory_queue_t * q, u32 context)
4923 {
4924   vl_api_vxlan_tunnel_details_t *rmp;
4925   ip4_main_t *im4 = &ip4_main;
4926   ip6_main_t *im6 = &ip6_main;
4927   u8 is_ipv6 = !(t->flags & VXLAN_TUNNEL_IS_IPV4);
4928
4929   rmp = vl_msg_api_alloc (sizeof (*rmp));
4930   memset (rmp, 0, sizeof (*rmp));
4931   rmp->_vl_msg_id = ntohs (VL_API_VXLAN_TUNNEL_DETAILS);
4932   if (is_ipv6)
4933     {
4934       memcpy (rmp->src_address, &(t->src.ip6), 16);
4935       memcpy (rmp->dst_address, &(t->dst.ip6), 16);
4936       rmp->encap_vrf_id = htonl (im6->fibs[t->encap_fib_index].ft_table_id);
4937     }
4938   else
4939     {
4940       memcpy (rmp->src_address, &(t->src.ip4), 4);
4941       memcpy (rmp->dst_address, &(t->dst.ip4), 4);
4942       rmp->encap_vrf_id = htonl (im4->fibs[t->encap_fib_index].ft_table_id);
4943     }
4944   rmp->vni = htonl (t->vni);
4945   rmp->decap_next_index = htonl (t->decap_next_index);
4946   rmp->sw_if_index = htonl (t->sw_if_index);
4947   rmp->is_ipv6 = is_ipv6;
4948   rmp->context = context;
4949
4950   vl_msg_api_send_shmem (q, (u8 *) & rmp);
4951 }
4952
4953 static void vl_api_vxlan_tunnel_dump_t_handler
4954   (vl_api_vxlan_tunnel_dump_t * mp)
4955 {
4956   unix_shared_memory_queue_t *q;
4957   vxlan_main_t *vxm = &vxlan_main;
4958   vxlan_tunnel_t *t;
4959   u32 sw_if_index;
4960
4961   q = vl_api_client_index_to_input_queue (mp->client_index);
4962   if (q == 0)
4963     {
4964       return;
4965     }
4966
4967   sw_if_index = ntohl (mp->sw_if_index);
4968
4969   if (~0 == sw_if_index)
4970     {
4971       /* *INDENT-OFF* */
4972       pool_foreach (t, vxm->tunnels,
4973       ({
4974         send_vxlan_tunnel_details(t, q, mp->context);
4975       }));
4976       /* *INDENT-ON* */
4977     }
4978   else
4979     {
4980       if ((sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index)) ||
4981           (~0 == vxm->tunnel_index_by_sw_if_index[sw_if_index]))
4982         {
4983           return;
4984         }
4985       t = &vxm->tunnels[vxm->tunnel_index_by_sw_if_index[sw_if_index]];
4986       send_vxlan_tunnel_details (t, q, mp->context);
4987     }
4988 }
4989
4990 static void vl_api_gre_add_del_tunnel_t_handler
4991   (vl_api_gre_add_del_tunnel_t * mp)
4992 {
4993   vl_api_gre_add_del_tunnel_reply_t *rmp;
4994   int rv = 0;
4995   vnet_gre_add_del_tunnel_args_t _a, *a = &_a;
4996   u32 outer_fib_id;
4997   uword *p;
4998   ip4_main_t *im = &ip4_main;
4999   u32 sw_if_index = ~0;
5000
5001   p = hash_get (im->fib_index_by_table_id, ntohl (mp->outer_fib_id));
5002   if (!p)
5003     {
5004       rv = VNET_API_ERROR_NO_SUCH_FIB;
5005       goto out;
5006     }
5007   outer_fib_id = p[0];
5008
5009   /* Check src & dst are different */
5010   if ((mp->is_ipv6 && memcmp (mp->src_address, mp->dst_address, 16) == 0) ||
5011       (!mp->is_ipv6 && memcmp (mp->src_address, mp->dst_address, 4) == 0))
5012     {
5013       rv = VNET_API_ERROR_SAME_SRC_DST;
5014       goto out;
5015     }
5016   memset (a, 0, sizeof (*a));
5017
5018   a->is_add = mp->is_add;
5019   a->teb = mp->teb;
5020
5021   /* ip addresses sent in network byte order */
5022   clib_memcpy (&(a->src), mp->src_address, 4);
5023   clib_memcpy (&(a->dst), mp->dst_address, 4);
5024
5025   a->outer_fib_id = outer_fib_id;
5026   rv = vnet_gre_add_del_tunnel (a, &sw_if_index);
5027
5028 out:
5029   /* *INDENT-OFF* */
5030   REPLY_MACRO2(VL_API_GRE_ADD_DEL_TUNNEL_REPLY,
5031   ({
5032     rmp->sw_if_index = ntohl (sw_if_index);
5033   }));
5034   /* *INDENT-ON* */
5035 }
5036
5037 static void send_gre_tunnel_details
5038   (gre_tunnel_t * t, unix_shared_memory_queue_t * q, u32 context)
5039 {
5040   vl_api_gre_tunnel_details_t *rmp;
5041   ip4_main_t *im = &ip4_main;
5042
5043   rmp = vl_msg_api_alloc (sizeof (*rmp));
5044   memset (rmp, 0, sizeof (*rmp));
5045   rmp->_vl_msg_id = ntohs (VL_API_GRE_TUNNEL_DETAILS);
5046   clib_memcpy (rmp->src_address, &(t->tunnel_src), 4);
5047   clib_memcpy (rmp->dst_address, &(t->tunnel_dst), 4);
5048   rmp->outer_fib_id = htonl (im->fibs[t->outer_fib_index].ft_table_id);
5049   rmp->teb = t->teb;
5050   rmp->sw_if_index = htonl (t->sw_if_index);
5051   rmp->context = context;
5052
5053   vl_msg_api_send_shmem (q, (u8 *) & rmp);
5054 }
5055
5056 static void
5057 vl_api_gre_tunnel_dump_t_handler (vl_api_gre_tunnel_dump_t * mp)
5058 {
5059   unix_shared_memory_queue_t *q;
5060   gre_main_t *gm = &gre_main;
5061   gre_tunnel_t *t;
5062   u32 sw_if_index;
5063
5064   q = vl_api_client_index_to_input_queue (mp->client_index);
5065   if (q == 0)
5066     {
5067       return;
5068     }
5069
5070   sw_if_index = ntohl (mp->sw_if_index);
5071
5072   if (~0 == sw_if_index)
5073     {
5074       /* *INDENT-OFF* */
5075       pool_foreach (t, gm->tunnels,
5076       ({
5077         send_gre_tunnel_details(t, q, mp->context);
5078       }));
5079       /* *INDENT-ON* */
5080     }
5081   else
5082     {
5083       if ((sw_if_index >= vec_len (gm->tunnel_index_by_sw_if_index)) ||
5084           (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index]))
5085         {
5086           return;
5087         }
5088       t = &gm->tunnels[gm->tunnel_index_by_sw_if_index[sw_if_index]];
5089       send_gre_tunnel_details (t, q, mp->context);
5090     }
5091 }
5092
5093 static void
5094 vl_api_l2_patch_add_del_t_handler (vl_api_l2_patch_add_del_t * mp)
5095 {
5096   extern int vnet_l2_patch_add_del (u32 rx_sw_if_index, u32 tx_sw_if_index,
5097                                     int is_add);
5098   vl_api_l2_patch_add_del_reply_t *rmp;
5099   int vnet_l2_patch_add_del (u32 rx_sw_if_index, u32 tx_sw_if_index,
5100                              int is_add);
5101   int rv = 0;
5102
5103   VALIDATE_RX_SW_IF_INDEX (mp);
5104   VALIDATE_TX_SW_IF_INDEX (mp);
5105
5106   rv = vnet_l2_patch_add_del (ntohl (mp->rx_sw_if_index),
5107                               ntohl (mp->tx_sw_if_index),
5108                               (int) (mp->is_add != 0));
5109
5110   BAD_RX_SW_IF_INDEX_LABEL;
5111   BAD_TX_SW_IF_INDEX_LABEL;
5112
5113   REPLY_MACRO (VL_API_L2_PATCH_ADD_DEL_REPLY);
5114 }
5115
5116 static void
5117   vl_api_vxlan_gpe_add_del_tunnel_t_handler
5118   (vl_api_vxlan_gpe_add_del_tunnel_t * mp)
5119 {
5120   vl_api_vxlan_gpe_add_del_tunnel_reply_t *rmp;
5121   int rv = 0;
5122   vnet_vxlan_gpe_add_del_tunnel_args_t _a, *a = &_a;
5123   u32 encap_fib_index, decap_fib_index;
5124   u8 protocol;
5125   uword *p;
5126   ip4_main_t *im = &ip4_main;
5127   u32 sw_if_index = ~0;
5128
5129
5130   p = hash_get (im->fib_index_by_table_id, ntohl (mp->encap_vrf_id));
5131   if (!p)
5132     {
5133       rv = VNET_API_ERROR_NO_SUCH_FIB;
5134       goto out;
5135     }
5136   encap_fib_index = p[0];
5137
5138   protocol = mp->protocol;
5139
5140   /* Interpret decap_vrf_id as an opaque if sending to other-than-ip4-input */
5141   if (protocol == VXLAN_GPE_INPUT_NEXT_IP4_INPUT)
5142     {
5143       p = hash_get (im->fib_index_by_table_id, ntohl (mp->decap_vrf_id));
5144       if (!p)
5145         {
5146           rv = VNET_API_ERROR_NO_SUCH_INNER_FIB;
5147           goto out;
5148         }
5149       decap_fib_index = p[0];
5150     }
5151   else
5152     {
5153       decap_fib_index = ntohl (mp->decap_vrf_id);
5154     }
5155
5156   /* Check src & dst are different */
5157   if ((mp->is_ipv6 && memcmp (mp->local, mp->remote, 16) == 0) ||
5158       (!mp->is_ipv6 && memcmp (mp->local, mp->remote, 4) == 0))
5159     {
5160       rv = VNET_API_ERROR_SAME_SRC_DST;
5161       goto out;
5162     }
5163   memset (a, 0, sizeof (*a));
5164
5165   a->is_add = mp->is_add;
5166   a->is_ip6 = mp->is_ipv6;
5167   /* ip addresses sent in network byte order */
5168   if (a->is_ip6)
5169     {
5170       clib_memcpy (&(a->local.ip6), mp->local, 16);
5171       clib_memcpy (&(a->remote.ip6), mp->remote, 16);
5172     }
5173   else
5174     {
5175       clib_memcpy (&(a->local.ip4), mp->local, 4);
5176       clib_memcpy (&(a->remote.ip4), mp->remote, 4);
5177     }
5178   a->encap_fib_index = encap_fib_index;
5179   a->decap_fib_index = decap_fib_index;
5180   a->protocol = protocol;
5181   a->vni = ntohl (mp->vni);
5182   rv = vnet_vxlan_gpe_add_del_tunnel (a, &sw_if_index);
5183
5184 out:
5185   /* *INDENT-OFF* */
5186   REPLY_MACRO2(VL_API_VXLAN_GPE_ADD_DEL_TUNNEL_REPLY,
5187   ({
5188     rmp->sw_if_index = ntohl (sw_if_index);
5189   }));
5190   /* *INDENT-ON* */
5191 }
5192
5193 static void send_vxlan_gpe_tunnel_details
5194   (vxlan_gpe_tunnel_t * t, unix_shared_memory_queue_t * q, u32 context)
5195 {
5196   vl_api_vxlan_gpe_tunnel_details_t *rmp;
5197   ip4_main_t *im4 = &ip4_main;
5198   ip6_main_t *im6 = &ip6_main;
5199   u8 is_ipv6 = !(t->flags & VXLAN_GPE_TUNNEL_IS_IPV4);
5200
5201   rmp = vl_msg_api_alloc (sizeof (*rmp));
5202   memset (rmp, 0, sizeof (*rmp));
5203   rmp->_vl_msg_id = ntohs (VL_API_VXLAN_GPE_TUNNEL_DETAILS);
5204   if (is_ipv6)
5205     {
5206       memcpy (rmp->local, &(t->local.ip6), 16);
5207       memcpy (rmp->remote, &(t->remote.ip6), 16);
5208       rmp->encap_vrf_id = htonl (im6->fibs[t->encap_fib_index].ft_table_id);
5209       rmp->decap_vrf_id = htonl (im6->fibs[t->decap_fib_index].ft_table_id);
5210     }
5211   else
5212     {
5213       memcpy (rmp->local, &(t->local.ip4), 4);
5214       memcpy (rmp->remote, &(t->remote.ip4), 4);
5215       rmp->encap_vrf_id = htonl (im4->fibs[t->encap_fib_index].ft_table_id);
5216       rmp->decap_vrf_id = htonl (im4->fibs[t->decap_fib_index].ft_table_id);
5217     }
5218   rmp->vni = htonl (t->vni);
5219   rmp->protocol = t->protocol;
5220   rmp->sw_if_index = htonl (t->sw_if_index);
5221   rmp->is_ipv6 = is_ipv6;
5222   rmp->context = context;
5223
5224   vl_msg_api_send_shmem (q, (u8 *) & rmp);
5225 }
5226
5227 static void vl_api_vxlan_gpe_tunnel_dump_t_handler
5228   (vl_api_vxlan_gpe_tunnel_dump_t * mp)
5229 {
5230   unix_shared_memory_queue_t *q;
5231   vxlan_gpe_main_t *vgm = &vxlan_gpe_main;
5232   vxlan_gpe_tunnel_t *t;
5233   u32 sw_if_index;
5234
5235   q = vl_api_client_index_to_input_queue (mp->client_index);
5236   if (q == 0)
5237     {
5238       return;
5239     }
5240
5241   sw_if_index = ntohl (mp->sw_if_index);
5242
5243   if (~0 == sw_if_index)
5244     {
5245       /* *INDENT-OFF* */
5246       pool_foreach (t, vgm->tunnels,
5247       ({
5248         send_vxlan_gpe_tunnel_details(t, q, mp->context);
5249       }));
5250       /* *INDENT-ON* */
5251     }
5252   else
5253     {
5254       if ((sw_if_index >= vec_len (vgm->tunnel_index_by_sw_if_index)) ||
5255           (~0 == vgm->tunnel_index_by_sw_if_index[sw_if_index]))
5256         {
5257           return;
5258         }
5259       t = &vgm->tunnels[vgm->tunnel_index_by_sw_if_index[sw_if_index]];
5260       send_vxlan_gpe_tunnel_details (t, q, mp->context);
5261     }
5262 }
5263
5264 /** Used for transferring locators via VPP API */
5265 /* *INDENT-OFF* */
5266 typedef CLIB_PACKED (struct {
5267   u32 sw_if_index; /**< locator sw_if_index */
5268   u8 priority; /**< locator priority */
5269   u8 weight; /**< locator weight */
5270 }) ls_locator_t;
5271 /* *INDENT-ON* */
5272
5273 static void
5274 vl_api_lisp_add_del_locator_set_t_handler (vl_api_lisp_add_del_locator_set_t *
5275                                            mp)
5276 {
5277   vl_api_lisp_add_del_locator_set_reply_t *rmp;
5278   int rv = 0;
5279   vnet_lisp_add_del_locator_set_args_t _a, *a = &_a;
5280   locator_t locator;
5281   ls_locator_t *ls_loc;
5282   u32 ls_index = ~0, locator_num;
5283   u8 *locator_name = NULL;
5284   int i;
5285
5286   memset (a, 0, sizeof (a[0]));
5287
5288   locator_name = format (0, "%s", mp->locator_set_name);
5289
5290   a->name = locator_name;
5291   a->is_add = mp->is_add;
5292   a->local = 1;
5293   locator_num = clib_net_to_host_u32 (mp->locator_num);
5294
5295   memset (&locator, 0, sizeof (locator));
5296   for (i = 0; i < locator_num; i++)
5297     {
5298       ls_loc = &((ls_locator_t *) mp->locators)[i];
5299       VALIDATE_SW_IF_INDEX (ls_loc);
5300
5301       locator.sw_if_index = htonl (ls_loc->sw_if_index);
5302       locator.priority = ls_loc->priority;
5303       locator.weight = ls_loc->weight;
5304       locator.local = 1;
5305       vec_add1 (a->locators, locator);
5306     }
5307
5308   rv = vnet_lisp_add_del_locator_set (a, &ls_index);
5309
5310   BAD_SW_IF_INDEX_LABEL;
5311
5312   vec_free (locator_name);
5313   vec_free (a->locators);
5314
5315   /* *INDENT-OFF* */
5316   REPLY_MACRO2 (VL_API_LISP_ADD_DEL_LOCATOR_SET_REPLY,
5317   ({
5318     rmp->ls_index = clib_host_to_net_u32 (ls_index);
5319   }));
5320   /* *INDENT-ON* */
5321 }
5322
5323 static void
5324 vl_api_lisp_add_del_locator_t_handler (vl_api_lisp_add_del_locator_t * mp)
5325 {
5326   vl_api_lisp_add_del_locator_reply_t *rmp;
5327   int rv = 0;
5328   locator_t locator, *locators = NULL;
5329   vnet_lisp_add_del_locator_set_args_t _a, *a = &_a;
5330   u32 ls_index = ~0;
5331   u8 *locator_name = NULL;
5332
5333   memset (&locator, 0, sizeof (locator));
5334   memset (a, 0, sizeof (a[0]));
5335
5336   locator.sw_if_index = ntohl (mp->sw_if_index);
5337   locator.priority = mp->priority;
5338   locator.weight = mp->weight;
5339   locator.local = 1;
5340   vec_add1 (locators, locator);
5341
5342   locator_name = format (0, "%s", mp->locator_set_name);
5343
5344   a->name = locator_name;
5345   a->locators = locators;
5346   a->is_add = mp->is_add;
5347   a->local = 1;
5348
5349   rv = vnet_lisp_add_del_locator (a, NULL, &ls_index);
5350
5351   vec_free (locators);
5352   vec_free (locator_name);
5353
5354   REPLY_MACRO (VL_API_LISP_ADD_DEL_LOCATOR_REPLY);
5355 }
5356
5357 static int
5358 unformat_lisp_eid_api (gid_address_t * dst, u32 vni, u8 type, void *src,
5359                        u8 len)
5360 {
5361   switch (type)
5362     {
5363     case 0:                     /* ipv4 */
5364       gid_address_type (dst) = GID_ADDR_IP_PREFIX;
5365       gid_address_ip_set (dst, src, IP4);
5366       gid_address_ippref_len (dst) = len;
5367       ip_prefix_normalize (&gid_address_ippref (dst));
5368       break;
5369     case 1:                     /* ipv6 */
5370       gid_address_type (dst) = GID_ADDR_IP_PREFIX;
5371       gid_address_ip_set (dst, src, IP6);
5372       gid_address_ippref_len (dst) = len;
5373       ip_prefix_normalize (&gid_address_ippref (dst));
5374       break;
5375     case 2:                     /* l2 mac */
5376       gid_address_type (dst) = GID_ADDR_MAC;
5377       clib_memcpy (&gid_address_mac (dst), src, 6);
5378       break;
5379     default:
5380       /* unknown type */
5381       return VNET_API_ERROR_INVALID_VALUE;
5382     }
5383
5384   gid_address_vni (dst) = vni;
5385
5386   return 0;
5387 }
5388
5389 static void
5390 vl_api_lisp_add_del_local_eid_t_handler (vl_api_lisp_add_del_local_eid_t * mp)
5391 {
5392   vl_api_lisp_add_del_local_eid_reply_t *rmp;
5393   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
5394   int rv = 0;
5395   gid_address_t _eid, *eid = &_eid;
5396   uword *p = NULL;
5397   u32 locator_set_index = ~0, map_index = ~0;
5398   vnet_lisp_add_del_mapping_args_t _a, *a = &_a;
5399   u8 *name = NULL;
5400   memset (a, 0, sizeof (a[0]));
5401   memset (eid, 0, sizeof (eid[0]));
5402
5403   rv = unformat_lisp_eid_api (eid, clib_net_to_host_u32 (mp->vni),
5404                               mp->eid_type, mp->eid, mp->prefix_len);
5405   if (rv)
5406     goto out;
5407
5408   name = format (0, "%s", mp->locator_set_name);
5409   p = hash_get_mem (lcm->locator_set_index_by_name, name);
5410   if (!p)
5411     {
5412       rv = VNET_API_ERROR_INVALID_VALUE;
5413       goto out;
5414     }
5415   locator_set_index = p[0];
5416
5417   /* XXX treat batch configuration */
5418   a->is_add = mp->is_add;
5419   gid_address_copy (&a->eid, eid);
5420   a->locator_set_index = locator_set_index;
5421   a->local = 1;
5422   rv = vnet_lisp_add_del_local_mapping (a, &map_index);
5423
5424 out:
5425   vec_free (name);
5426   gid_address_free (&a->eid);
5427
5428   REPLY_MACRO (VL_API_LISP_ADD_DEL_LOCAL_EID_REPLY);
5429 }
5430
5431 static void
5432   vl_api_lisp_eid_table_add_del_map_t_handler
5433   (vl_api_lisp_eid_table_add_del_map_t * mp)
5434 {
5435   vl_api_lisp_eid_table_add_del_map_reply_t *rmp;
5436   int rv = 0;
5437   rv = vnet_lisp_eid_table_map (clib_net_to_host_u32 (mp->vni),
5438                                 clib_net_to_host_u32 (mp->dp_table),
5439                                 mp->is_l2, mp->is_add);
5440 REPLY_MACRO (VL_API_LISP_EID_TABLE_ADD_DEL_MAP_REPLY)}
5441
5442 /** Used for transferring locators via VPP API */
5443 /* *INDENT-OFF* */
5444 typedef CLIB_PACKED (struct {
5445   u8 is_ip4; /**< is locator an IPv4 address */
5446   u8 priority; /**< locator priority */
5447   u8 weight; /**< locator weight */
5448   u8 addr[16]; /**< IPv4/IPv6 address */
5449 }) rloc_t;
5450 /* *INDENT-ON* */
5451
5452 static locator_pair_t *
5453 unformat_lisp_loc_pairs (void *lcl_locs, void *rmt_locs, u32 rloc_num)
5454 {
5455   u32 i;
5456   locator_pair_t *pairs = 0, pair;
5457   rloc_t *r;
5458
5459   for (i = 0; i < rloc_num; i++)
5460     {
5461       /* local locator */
5462       r = &((rloc_t *) lcl_locs)[i];
5463       memset (&pair.lcl_loc, 0, sizeof (pair.lcl_loc));
5464       ip_address_set (&pair.lcl_loc, &r->addr, r->is_ip4 ? IP4 : IP6);
5465
5466       /* remote locators */
5467       r = &((rloc_t *) rmt_locs)[i];
5468       memset (&pair.rmt_loc, 0, sizeof (pair.rmt_loc));
5469       ip_address_set (&pair.rmt_loc, &r->addr, r->is_ip4 ? IP4 : IP6);
5470
5471       pair.priority = r->priority;
5472       pair.weight = r->weight;
5473
5474       vec_add1 (pairs, pair);
5475     }
5476   return pairs;
5477 }
5478
5479 static locator_t *
5480 unformat_lisp_locs (void *rmt_locs, u32 rloc_num)
5481 {
5482   u32 i;
5483   locator_t *locs = 0, loc;
5484   rloc_t *r;
5485
5486   for (i = 0; i < rloc_num; i++)
5487     {
5488       /* remote locators */
5489       r = &((rloc_t *) rmt_locs)[i];
5490       memset (&loc, 0, sizeof (loc));
5491       gid_address_ip_set (&loc.address, &r->addr, r->is_ip4 ? IP4 : IP6);
5492
5493       loc.priority = r->priority;
5494       loc.weight = r->weight;
5495
5496       vec_add1 (locs, loc);
5497     }
5498   return locs;
5499 }
5500
5501 static void
5502   vl_api_lisp_gpe_add_del_fwd_entry_t_handler
5503   (vl_api_lisp_gpe_add_del_fwd_entry_t * mp)
5504 {
5505   vl_api_lisp_gpe_add_del_fwd_entry_reply_t *rmp;
5506   vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a;
5507   locator_pair_t *pairs = 0;
5508   int rv = 0;
5509
5510   memset (a, 0, sizeof (a[0]));
5511
5512   rv = unformat_lisp_eid_api (&a->rmt_eid, mp->vni, mp->eid_type,
5513                               mp->rmt_eid, mp->rmt_len);
5514   rv |= unformat_lisp_eid_api (&a->lcl_eid, mp->vni, mp->eid_type,
5515                                mp->lcl_eid, mp->lcl_len);
5516
5517   pairs = unformat_lisp_loc_pairs (mp->lcl_locs, mp->rmt_locs, mp->loc_num);
5518
5519   if (rv || 0 == pairs)
5520     goto send_reply;
5521
5522   a->is_add = mp->is_add;
5523   a->locator_pairs = pairs;
5524   a->dp_table = mp->dp_table;
5525   a->vni = mp->vni;
5526   a->action = mp->action;
5527
5528   rv = vnet_lisp_gpe_add_del_fwd_entry (a, 0);
5529   vec_free (pairs);
5530 send_reply:
5531   REPLY_MACRO (VL_API_LISP_GPE_ADD_DEL_FWD_ENTRY_REPLY);
5532 }
5533
5534 static void
5535 vl_api_lisp_add_del_map_resolver_t_handler (vl_api_lisp_add_del_map_resolver_t
5536                                             * mp)
5537 {
5538   vl_api_lisp_add_del_map_resolver_reply_t *rmp;
5539   int rv = 0;
5540   vnet_lisp_add_del_map_resolver_args_t _a, *a = &_a;
5541
5542   memset (a, 0, sizeof (a[0]));
5543
5544   a->is_add = mp->is_add;
5545   ip_address_set (&a->address, mp->ip_address, mp->is_ipv6 ? IP6 : IP4);
5546
5547   rv = vnet_lisp_add_del_map_resolver (a);
5548
5549   REPLY_MACRO (VL_API_LISP_ADD_DEL_MAP_RESOLVER_REPLY);
5550 }
5551
5552 static void
5553 vl_api_lisp_gpe_enable_disable_t_handler (vl_api_lisp_gpe_enable_disable_t *
5554                                           mp)
5555 {
5556   vl_api_lisp_gpe_enable_disable_reply_t *rmp;
5557   int rv = 0;
5558   vnet_lisp_gpe_enable_disable_args_t _a, *a = &_a;
5559
5560   a->is_en = mp->is_en;
5561   vnet_lisp_gpe_enable_disable (a);
5562
5563   REPLY_MACRO (VL_API_LISP_GPE_ENABLE_DISABLE_REPLY);
5564 }
5565
5566 static void
5567 vl_api_lisp_enable_disable_t_handler (vl_api_lisp_enable_disable_t * mp)
5568 {
5569   vl_api_lisp_enable_disable_reply_t *rmp;
5570   int rv = 0;
5571
5572   vnet_lisp_enable_disable (mp->is_en);
5573   REPLY_MACRO (VL_API_LISP_ENABLE_DISABLE_REPLY);
5574 }
5575
5576 static void
5577 vl_api_lisp_gpe_add_del_iface_t_handler (vl_api_lisp_gpe_add_del_iface_t * mp)
5578 {
5579   vl_api_lisp_gpe_add_del_iface_reply_t *rmp;
5580   int rv = 0;
5581
5582   if (mp->is_l2)
5583     {
5584       if (mp->is_add)
5585         {
5586           if (~0 ==
5587               lisp_gpe_tenant_l2_iface_add_or_lock (mp->vni, mp->dp_table))
5588             rv = 1;
5589         }
5590       else
5591         lisp_gpe_tenant_l2_iface_unlock (mp->vni);
5592     }
5593   else
5594     {
5595       if (mp->is_add)
5596         {
5597           if (~0 ==
5598               lisp_gpe_tenant_l3_iface_add_or_lock (mp->vni, mp->dp_table))
5599             rv = 1;
5600         }
5601       else
5602         lisp_gpe_tenant_l3_iface_unlock (mp->vni);
5603     }
5604
5605   REPLY_MACRO (VL_API_LISP_GPE_ADD_DEL_IFACE_REPLY);
5606 }
5607
5608 static void
5609   vl_api_show_lisp_map_request_mode_t_handler
5610   (vl_api_show_lisp_map_request_mode_t * mp)
5611 {
5612   int rv = 0;
5613   vl_api_show_lisp_map_request_mode_reply_t *rmp;
5614
5615   /* *INDENT-OFF* */
5616   REPLY_MACRO2(VL_API_SHOW_LISP_MAP_REQUEST_MODE_REPLY,
5617   ({
5618     rmp->mode = vnet_lisp_get_map_request_mode ();
5619   }));
5620   /* *INDENT-ON* */
5621 }
5622
5623 static void
5624 vl_api_lisp_map_request_mode_t_handler (vl_api_lisp_map_request_mode_t * mp)
5625 {
5626   vl_api_lisp_map_request_mode_reply_t *rmp;
5627   int rv = 0;
5628
5629   rv = vnet_lisp_set_map_request_mode (mp->mode);
5630
5631   REPLY_MACRO (VL_API_LISP_MAP_REQUEST_MODE_REPLY);
5632 }
5633
5634 static void
5635 vl_api_lisp_pitr_set_locator_set_t_handler (vl_api_lisp_pitr_set_locator_set_t
5636                                             * mp)
5637 {
5638   vl_api_lisp_pitr_set_locator_set_reply_t *rmp;
5639   int rv = 0;
5640   u8 *ls_name = 0;
5641
5642   ls_name = format (0, "%s", mp->ls_name);
5643   rv = vnet_lisp_pitr_set_locator_set (ls_name, mp->is_add);
5644   vec_free (ls_name);
5645
5646   REPLY_MACRO (VL_API_LISP_PITR_SET_LOCATOR_SET_REPLY);
5647 }
5648
5649 static void
5650   vl_api_lisp_add_del_map_request_itr_rlocs_t_handler
5651   (vl_api_lisp_add_del_map_request_itr_rlocs_t * mp)
5652 {
5653   vl_api_lisp_add_del_map_request_itr_rlocs_reply_t *rmp;
5654   int rv = 0;
5655   u8 *locator_set_name = NULL;
5656   vnet_lisp_add_del_mreq_itr_rloc_args_t _a, *a = &_a;
5657
5658   locator_set_name = format (0, "%s", mp->locator_set_name);
5659
5660   a->is_add = mp->is_add;
5661   a->locator_set_name = locator_set_name;
5662
5663   rv = vnet_lisp_add_del_mreq_itr_rlocs (a);
5664
5665   vec_free (locator_set_name);
5666
5667   REPLY_MACRO (VL_API_LISP_ADD_DEL_MAP_REQUEST_ITR_RLOCS_REPLY);
5668 }
5669
5670 static void
5671   vl_api_lisp_add_del_remote_mapping_t_handler
5672   (vl_api_lisp_add_del_remote_mapping_t * mp)
5673 {
5674   locator_t *rlocs = 0;
5675   vl_api_lisp_add_del_remote_mapping_reply_t *rmp;
5676   int rv = 0;
5677   gid_address_t _eid, *eid = &_eid;
5678   u32 rloc_num = clib_net_to_host_u32 (mp->rloc_num);
5679
5680   memset (eid, 0, sizeof (eid[0]));
5681
5682   rv = unformat_lisp_eid_api (eid, clib_net_to_host_u32 (mp->vni),
5683                               mp->eid_type, mp->eid, mp->eid_len);
5684   if (rv)
5685     goto send_reply;
5686
5687   rlocs = unformat_lisp_locs (mp->rlocs, rloc_num);
5688
5689   if (!mp->is_add)
5690     {
5691       vnet_lisp_add_del_adjacency_args_t _a, *a = &_a;
5692       gid_address_copy (&a->reid, eid);
5693       a->is_add = 0;
5694       rv = vnet_lisp_add_del_adjacency (a);
5695       if (rv)
5696         {
5697           goto out;
5698         }
5699     }
5700
5701   /* NOTE: for now this works as a static remote mapping, i.e.,
5702    * not authoritative and ttl infinite. */
5703   rv = vnet_lisp_add_del_mapping (eid, rlocs, mp->action, 0, ~0,
5704                                   mp->is_add, 1 /* is_static */ , 0);
5705
5706   if (mp->del_all)
5707     vnet_lisp_clear_all_remote_adjacencies ();
5708
5709 out:
5710   vec_free (rlocs);
5711 send_reply:
5712   REPLY_MACRO (VL_API_LISP_ADD_DEL_REMOTE_MAPPING_REPLY);
5713 }
5714
5715 static void
5716 vl_api_lisp_add_del_adjacency_t_handler (vl_api_lisp_add_del_adjacency_t * mp)
5717 {
5718   vl_api_lisp_add_del_adjacency_reply_t *rmp;
5719   vnet_lisp_add_del_adjacency_args_t _a, *a = &_a;
5720
5721   int rv = 0;
5722   memset (a, 0, sizeof (a[0]));
5723
5724   rv = unformat_lisp_eid_api (&a->leid, clib_net_to_host_u32 (mp->vni),
5725                               mp->eid_type, mp->leid, mp->leid_len);
5726   rv |= unformat_lisp_eid_api (&a->reid, clib_net_to_host_u32 (mp->vni),
5727                                mp->eid_type, mp->reid, mp->reid_len);
5728
5729   if (rv)
5730     goto send_reply;
5731
5732   a->is_add = mp->is_add;
5733   rv = vnet_lisp_add_del_adjacency (a);
5734
5735 send_reply:
5736   REPLY_MACRO (VL_API_LISP_ADD_DEL_ADJACENCY_REPLY);
5737 }
5738
5739 static void
5740 send_lisp_locator_details (lisp_cp_main_t * lcm,
5741                            locator_t * loc,
5742                            unix_shared_memory_queue_t * q, u32 context)
5743 {
5744   vl_api_lisp_locator_details_t *rmp;
5745
5746   rmp = vl_msg_api_alloc (sizeof (*rmp));
5747   memset (rmp, 0, sizeof (*rmp));
5748   rmp->_vl_msg_id = ntohs (VL_API_LISP_LOCATOR_DETAILS);
5749   rmp->context = context;
5750
5751   rmp->local = loc->local;
5752   if (loc->local)
5753     {
5754       rmp->sw_if_index = ntohl (loc->sw_if_index);
5755     }
5756   else
5757     {
5758       rmp->is_ipv6 = gid_address_ip_version (&loc->address);
5759       ip_address_copy_addr (rmp->ip_address, &gid_address_ip (&loc->address));
5760     }
5761   rmp->priority = loc->priority;
5762   rmp->weight = loc->weight;
5763
5764   vl_msg_api_send_shmem (q, (u8 *) & rmp);
5765 }
5766
5767 static void
5768 vl_api_lisp_locator_dump_t_handler (vl_api_lisp_locator_dump_t * mp)
5769 {
5770   u8 *ls_name = 0;
5771   unix_shared_memory_queue_t *q = 0;
5772   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
5773   locator_set_t *lsit = 0;
5774   locator_t *loc = 0;
5775   u32 ls_index = ~0, *locit = 0;
5776   uword *p = 0;
5777
5778   q = vl_api_client_index_to_input_queue (mp->client_index);
5779   if (q == 0)
5780     {
5781       return;
5782     }
5783
5784   if (mp->is_index_set)
5785     ls_index = htonl (mp->ls_index);
5786   else
5787     {
5788       /* make sure we get a proper C-string */
5789       mp->ls_name[sizeof (mp->ls_name) - 1] = 0;
5790       ls_name = format (0, "%s", mp->ls_name);
5791       p = hash_get_mem (lcm->locator_set_index_by_name, ls_name);
5792       if (!p)
5793         goto out;
5794       ls_index = p[0];
5795     }
5796
5797   if (pool_is_free_index (lcm->locator_set_pool, ls_index))
5798     return;
5799
5800   lsit = pool_elt_at_index (lcm->locator_set_pool, ls_index);
5801
5802   vec_foreach (locit, lsit->locator_indices)
5803   {
5804     loc = pool_elt_at_index (lcm->locator_pool, locit[0]);
5805     send_lisp_locator_details (lcm, loc, q, mp->context);
5806   };
5807 out:
5808   vec_free (ls_name);
5809 }
5810
5811 static void
5812 send_lisp_locator_set_details (lisp_cp_main_t * lcm,
5813                                locator_set_t * lsit,
5814                                unix_shared_memory_queue_t * q,
5815                                u32 context, u32 ls_index)
5816 {
5817   vl_api_lisp_locator_set_details_t *rmp;
5818   u8 *str = 0;
5819
5820   rmp = vl_msg_api_alloc (sizeof (*rmp));
5821   memset (rmp, 0, sizeof (*rmp));
5822   rmp->_vl_msg_id = ntohs (VL_API_LISP_LOCATOR_SET_DETAILS);
5823   rmp->context = context;
5824
5825   rmp->ls_index = htonl (ls_index);
5826   if (lsit->local)
5827     {
5828       ASSERT (lsit->name != NULL);
5829       strncpy ((char *) rmp->ls_name, (char *) lsit->name,
5830                vec_len (lsit->name));
5831     }
5832   else
5833     {
5834       str = format (0, "<remote-%d>", ls_index);
5835       strncpy ((char *) rmp->ls_name, (char *) str, vec_len (str));
5836       vec_free (str);
5837     }
5838
5839   vl_msg_api_send_shmem (q, (u8 *) & rmp);
5840 }
5841
5842 static void
5843 vl_api_lisp_locator_set_dump_t_handler (vl_api_lisp_locator_set_dump_t * mp)
5844 {
5845   unix_shared_memory_queue_t *q = NULL;
5846   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
5847   locator_set_t *lsit = NULL;
5848   u8 filter;
5849
5850   q = vl_api_client_index_to_input_queue (mp->client_index);
5851   if (q == 0)
5852     {
5853       return;
5854     }
5855
5856   filter = mp->filter;
5857   /* *INDENT-OFF* */
5858   pool_foreach (lsit, lcm->locator_set_pool,
5859   ({
5860     if (filter && !((1 == filter && lsit->local) ||
5861                     (2 == filter && !lsit->local)))
5862       {
5863         continue;
5864       }
5865     send_lisp_locator_set_details (lcm, lsit, q, mp->context,
5866                                    lsit - lcm->locator_set_pool);
5867   }));
5868   /* *INDENT-ON* */
5869 }
5870
5871 static void
5872 lisp_fid_put_api (u8 * dst, fid_address_t * src, u8 * prefix_length)
5873 {
5874   ASSERT (prefix_length);
5875   ip_prefix_t *ippref = &fid_addr_ippref (src);
5876
5877   switch (fid_addr_type (src))
5878     {
5879     case FID_ADDR_IP_PREF:
5880       if (ip_prefix_version (ippref) == IP4)
5881         clib_memcpy (dst, &ip_prefix_v4 (ippref), 4);
5882       else
5883         clib_memcpy (dst, &ip_prefix_v6 (ippref), 16);
5884       prefix_length[0] = ip_prefix_len (ippref);
5885       break;
5886
5887     case FID_ADDR_MAC:
5888       prefix_length[0] = 0;
5889       clib_memcpy (dst, fid_addr_mac (src), 6);
5890       break;
5891
5892     default:
5893       clib_warning ("Unknown FID type %d!", fid_addr_type (src));
5894       break;
5895     }
5896 }
5897
5898 static u8
5899 fid_type_to_api_type (fid_address_t * fid)
5900 {
5901   ip_prefix_t *ippref;
5902
5903   switch (fid_addr_type (fid))
5904     {
5905     case FID_ADDR_IP_PREF:
5906       ippref = &fid_addr_ippref (fid);
5907       if (ip_prefix_version (ippref) == IP4)
5908         return 0;
5909       else if (ip_prefix_version (ippref) == IP6)
5910         return 1;
5911       else
5912         return ~0;
5913
5914     case FID_ADDR_MAC:
5915       return 2;
5916     }
5917
5918   return ~0;
5919 }
5920
5921 static void
5922 send_lisp_eid_table_details (mapping_t * mapit,
5923                              unix_shared_memory_queue_t * q,
5924                              u32 context, u8 filter)
5925 {
5926   fid_address_t *fid;
5927   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
5928   locator_set_t *ls = 0;
5929   vl_api_lisp_eid_table_details_t *rmp = NULL;
5930   gid_address_t *gid = NULL;
5931   u8 *mac = 0;
5932   ip_prefix_t *ip_prefix = NULL;
5933
5934   switch (filter)
5935     {
5936     case 0:                     /* all mappings */
5937       break;
5938
5939     case 1:                     /* local only */
5940       if (!mapit->local)
5941         return;
5942       break;
5943     case 2:                     /* remote only */
5944       if (mapit->local)
5945         return;
5946       break;
5947     default:
5948       clib_warning ("Filter error, unknown filter: %d", filter);
5949       return;
5950     }
5951
5952   gid = &mapit->eid;
5953   ip_prefix = &gid_address_ippref (gid);
5954   mac = gid_address_mac (gid);
5955
5956   rmp = vl_msg_api_alloc (sizeof (*rmp));
5957   memset (rmp, 0, sizeof (*rmp));
5958   rmp->_vl_msg_id = ntohs (VL_API_LISP_EID_TABLE_DETAILS);
5959
5960   ls = pool_elt_at_index (lcm->locator_set_pool, mapit->locator_set_index);
5961   if (vec_len (ls->locator_indices) == 0)
5962     rmp->locator_set_index = ~0;
5963   else
5964     rmp->locator_set_index = clib_host_to_net_u32 (mapit->locator_set_index);
5965
5966   rmp->is_local = mapit->local;
5967   rmp->ttl = clib_host_to_net_u32 (mapit->ttl);
5968   rmp->action = mapit->action;
5969   rmp->authoritative = mapit->authoritative;
5970
5971   switch (gid_address_type (gid))
5972     {
5973     case GID_ADDR_SRC_DST:
5974       rmp->is_src_dst = 1;
5975       fid = &gid_address_sd_src (gid);
5976       rmp->eid_type = fid_type_to_api_type (fid);
5977       lisp_fid_put_api (rmp->seid, &gid_address_sd_src (gid),
5978                         &rmp->seid_prefix_len);
5979       lisp_fid_put_api (rmp->eid, &gid_address_sd_dst (gid),
5980                         &rmp->eid_prefix_len);
5981       break;
5982     case GID_ADDR_IP_PREFIX:
5983       rmp->eid_prefix_len = ip_prefix_len (ip_prefix);
5984       if (ip_prefix_version (ip_prefix) == IP4)
5985         {
5986           rmp->eid_type = 0;    /* ipv4 type */
5987           clib_memcpy (rmp->eid, &ip_prefix_v4 (ip_prefix),
5988                        sizeof (ip_prefix_v4 (ip_prefix)));
5989         }
5990       else
5991         {
5992           rmp->eid_type = 1;    /* ipv6 type */
5993           clib_memcpy (rmp->eid, &ip_prefix_v6 (ip_prefix),
5994                        sizeof (ip_prefix_v6 (ip_prefix)));
5995         }
5996       break;
5997     case GID_ADDR_MAC:
5998       rmp->eid_type = 2;        /* l2 mac type */
5999       clib_memcpy (rmp->eid, mac, 6);
6000       break;
6001     default:
6002       ASSERT (0);
6003     }
6004   rmp->context = context;
6005   rmp->vni = clib_host_to_net_u32 (gid_address_vni (gid));
6006   vl_msg_api_send_shmem (q, (u8 *) & rmp);
6007 }
6008
6009 static void
6010 vl_api_lisp_eid_table_dump_t_handler (vl_api_lisp_eid_table_dump_t * mp)
6011 {
6012   u32 mi;
6013   unix_shared_memory_queue_t *q = NULL;
6014   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
6015   mapping_t *mapit = NULL;
6016   gid_address_t _eid, *eid = &_eid;
6017
6018   q = vl_api_client_index_to_input_queue (mp->client_index);
6019   if (q == 0)
6020     {
6021       return;
6022     }
6023
6024   if (mp->eid_set)
6025     {
6026       memset (eid, 0, sizeof (*eid));
6027
6028       unformat_lisp_eid_api (eid, clib_net_to_host_u32 (mp->vni),
6029                              mp->eid_type, mp->eid, mp->prefix_length);
6030
6031       mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, eid);
6032       if ((u32) ~ 0 == mi)
6033         return;
6034
6035       mapit = pool_elt_at_index (lcm->mapping_pool, mi);
6036       send_lisp_eid_table_details (mapit, q, mp->context,
6037                                    0 /* ignore filter */ );
6038     }
6039   else
6040     {
6041       /* *INDENT-OFF* */
6042       pool_foreach (mapit, lcm->mapping_pool,
6043       ({
6044         send_lisp_eid_table_details(mapit, q, mp->context,
6045                                     mp->filter);
6046       }));
6047       /* *INDENT-ON* */
6048     }
6049 }
6050
6051 static void
6052 send_lisp_gpe_fwd_entry_details (lisp_gpe_fwd_entry_t * lfe,
6053                                  unix_shared_memory_queue_t * q, u32 context)
6054 {
6055   vl_api_lisp_gpe_tunnel_details_t *rmp;
6056   lisp_gpe_main_t *lgm = &lisp_gpe_main;
6057
6058   rmp = vl_msg_api_alloc (sizeof (*rmp));
6059   memset (rmp, 0, sizeof (*rmp));
6060   rmp->_vl_msg_id = ntohs (VL_API_LISP_GPE_TUNNEL_DETAILS);
6061
6062   rmp->tunnels = lfe - lgm->lisp_fwd_entry_pool;
6063
6064   rmp->is_ipv6 = ip_prefix_version (&(lfe->key->rmt.ippref)) == IP6 ? 1 : 0;
6065   ip_address_copy_addr (rmp->source_ip,
6066                         &ip_prefix_addr (&(lfe->key->rmt.ippref)));
6067   ip_address_copy_addr (rmp->destination_ip,
6068                         &ip_prefix_addr (&(lfe->key->rmt.ippref)));
6069
6070   rmp->encap_fib_id = htonl (0);
6071   rmp->decap_fib_id = htonl (lfe->eid_fib_index);
6072   rmp->iid = htonl (lfe->key->vni);
6073   rmp->context = context;
6074
6075   vl_msg_api_send_shmem (q, (u8 *) & rmp);
6076 }
6077
6078 static void
6079 vl_api_lisp_gpe_tunnel_dump_t_handler (vl_api_lisp_gpe_tunnel_dump_t * mp)
6080 {
6081   unix_shared_memory_queue_t *q = NULL;
6082   lisp_gpe_main_t *lgm = &lisp_gpe_main;
6083   lisp_gpe_fwd_entry_t *lfe = NULL;
6084
6085   if (pool_elts (lgm->lisp_fwd_entry_pool) == 0)
6086     {
6087       return;
6088     }
6089
6090   q = vl_api_client_index_to_input_queue (mp->client_index);
6091   if (q == 0)
6092     {
6093       return;
6094     }
6095
6096   /* *INDENT-OFF* */
6097   pool_foreach(lfe, lgm->lisp_fwd_entry_pool,
6098   ({
6099     send_lisp_gpe_fwd_entry_details(lfe, q, mp->context);
6100   }));
6101   /* *INDENT-ON* */
6102 }
6103
6104 static void
6105 send_lisp_map_resolver_details (ip_address_t * ip,
6106                                 unix_shared_memory_queue_t * q, u32 context)
6107 {
6108   vl_api_lisp_map_resolver_details_t *rmp = NULL;
6109
6110   rmp = vl_msg_api_alloc (sizeof (*rmp));
6111   memset (rmp, 0, sizeof (*rmp));
6112   rmp->_vl_msg_id = ntohs (VL_API_LISP_MAP_RESOLVER_DETAILS);
6113
6114   switch (ip_addr_version (ip))
6115     {
6116     case IP4:
6117       rmp->is_ipv6 = 0;
6118       clib_memcpy (rmp->ip_address, &ip_addr_v4 (ip),
6119                    sizeof (ip_addr_v4 (ip)));
6120       break;
6121
6122     case IP6:
6123       rmp->is_ipv6 = 1;
6124       clib_memcpy (rmp->ip_address, &ip_addr_v6 (ip),
6125                    sizeof (ip_addr_v6 (ip)));
6126       break;
6127
6128     default:
6129       ASSERT (0);
6130     }
6131   rmp->context = context;
6132
6133   vl_msg_api_send_shmem (q, (u8 *) & rmp);
6134 }
6135
6136 static void
6137 vl_api_lisp_map_resolver_dump_t_handler (vl_api_lisp_map_resolver_dump_t * mp)
6138 {
6139   unix_shared_memory_queue_t *q = NULL;
6140   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
6141   map_resolver_t *mr;
6142
6143   q = vl_api_client_index_to_input_queue (mp->client_index);
6144   if (q == 0)
6145     {
6146       return;
6147     }
6148
6149   vec_foreach (mr, lcm->map_resolvers)
6150   {
6151     send_lisp_map_resolver_details (&mr->address, q, mp->context);
6152   }
6153 }
6154
6155 static void
6156 send_eid_table_map_pair (hash_pair_t * p,
6157                          unix_shared_memory_queue_t * q, u32 context)
6158 {
6159   vl_api_lisp_eid_table_map_details_t *rmp = NULL;
6160
6161   rmp = vl_msg_api_alloc (sizeof (*rmp));
6162   memset (rmp, 0, sizeof (*rmp));
6163   rmp->_vl_msg_id = ntohs (VL_API_LISP_EID_TABLE_MAP_DETAILS);
6164
6165   rmp->vni = clib_host_to_net_u32 (p->key);
6166   rmp->dp_table = clib_host_to_net_u32 (p->value[0]);
6167   rmp->context = context;
6168   vl_msg_api_send_shmem (q, (u8 *) & rmp);
6169 }
6170
6171 static void
6172 vl_api_lisp_eid_table_map_dump_t_handler (vl_api_lisp_eid_table_map_dump_t *
6173                                           mp)
6174 {
6175   unix_shared_memory_queue_t *q = NULL;
6176   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
6177   hash_pair_t *p;
6178   uword *vni_table = 0;
6179
6180   q = vl_api_client_index_to_input_queue (mp->client_index);
6181   if (q == 0)
6182     {
6183       return;
6184     }
6185
6186   if (mp->is_l2)
6187     {
6188       vni_table = lcm->bd_id_by_vni;
6189     }
6190   else
6191     {
6192       vni_table = lcm->table_id_by_vni;
6193     }
6194
6195   /* *INDENT-OFF* */
6196   hash_foreach_pair (p, vni_table,
6197   ({
6198     send_eid_table_map_pair (p, q, mp->context);
6199   }));
6200   /* *INDENT-ON* */
6201 }
6202
6203 static void
6204 send_eid_table_vni (u32 vni, unix_shared_memory_queue_t * q, u32 context)
6205 {
6206   vl_api_lisp_eid_table_vni_details_t *rmp = 0;
6207
6208   rmp = vl_msg_api_alloc (sizeof (*rmp));
6209   memset (rmp, 0, sizeof (*rmp));
6210   rmp->_vl_msg_id = ntohs (VL_API_LISP_EID_TABLE_VNI_DETAILS);
6211   rmp->context = context;
6212   rmp->vni = clib_host_to_net_u32 (vni);
6213   vl_msg_api_send_shmem (q, (u8 *) & rmp);
6214 }
6215
6216 static void
6217 lisp_adjacency_copy (vl_api_lisp_adjacency_t * dst, lisp_adjacency_t * adjs)
6218 {
6219   lisp_adjacency_t *adj;
6220   vl_api_lisp_adjacency_t a;
6221   u32 i, n = vec_len (adjs);
6222
6223   for (i = 0; i < n; i++)
6224     {
6225       adj = vec_elt_at_index (adjs, i);
6226       memset (&a, 0, sizeof (a));
6227
6228       switch (gid_address_type (&adj->reid))
6229         {
6230         case GID_ADDR_IP_PREFIX:
6231           a.reid_prefix_len = gid_address_ippref_len (&adj->reid);
6232           a.leid_prefix_len = gid_address_ippref_len (&adj->leid);
6233           if (gid_address_ip_version (&adj->reid) == IP4)
6234             {
6235               a.eid_type = 0;   /* ipv4 type */
6236               clib_memcpy (a.reid, &gid_address_ip (&adj->reid), 4);
6237               clib_memcpy (a.leid, &gid_address_ip (&adj->leid), 4);
6238             }
6239           else
6240             {
6241               a.eid_type = 1;   /* ipv6 type */
6242               clib_memcpy (a.reid, &gid_address_ip (&adj->reid), 16);
6243               clib_memcpy (a.leid, &gid_address_ip (&adj->leid), 16);
6244             }
6245           break;
6246         case GID_ADDR_MAC:
6247           a.eid_type = 2;       /* l2 mac type */
6248           mac_copy (a.reid, gid_address_mac (&adj->reid));
6249           mac_copy (a.leid, gid_address_mac (&adj->leid));
6250           break;
6251         default:
6252           ASSERT (0);
6253         }
6254       dst[i] = a;
6255     }
6256 }
6257
6258 static void
6259 vl_api_lisp_adjacencies_get_t_handler (vl_api_lisp_adjacencies_get_t * mp)
6260 {
6261   vl_api_lisp_adjacencies_get_reply_t *rmp = 0;
6262   lisp_adjacency_t *adjs = 0;
6263   int rv = 0;
6264   vl_api_lisp_adjacency_t a;
6265   u32 size = ~0;
6266   u32 vni = clib_net_to_host_u32 (mp->vni);
6267
6268   adjs = vnet_lisp_adjacencies_get_by_vni (vni);
6269   size = vec_len (adjs) * sizeof (a);
6270
6271   /* *INDENT-OFF* */
6272   REPLY_MACRO4 (VL_API_LISP_ADJACENCIES_GET_REPLY, size,
6273   {
6274     rmp->count = clib_host_to_net_u32 (vec_len (adjs));
6275     lisp_adjacency_copy (rmp->adjacencies, adjs);
6276   });
6277   /* *INDENT-ON* */
6278
6279   vec_free (adjs);
6280 }
6281
6282 static void
6283 vl_api_lisp_eid_table_vni_dump_t_handler (vl_api_lisp_eid_table_vni_dump_t *
6284                                           mp)
6285 {
6286   hash_pair_t *p;
6287   u32 *vnis = 0;
6288   unix_shared_memory_queue_t *q = 0;
6289   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
6290
6291   q = vl_api_client_index_to_input_queue (mp->client_index);
6292   if (q == 0)
6293     {
6294       return;
6295     }
6296
6297   /* *INDENT-OFF* */
6298   hash_foreach_pair (p, lcm->table_id_by_vni,
6299   ({
6300     hash_set (vnis, p->key, 0);
6301   }));
6302
6303   hash_foreach_pair (p, lcm->bd_id_by_vni,
6304   ({
6305     hash_set (vnis, p->key, 0);
6306   }));
6307
6308   hash_foreach_pair (p, vnis,
6309   ({
6310     send_eid_table_vni (p->key, q, mp->context);
6311   }));
6312   /* *INDENT-ON* */
6313
6314   hash_free (vnis);
6315 }
6316
6317 static void
6318 vl_api_show_lisp_status_t_handler (vl_api_show_lisp_status_t * mp)
6319 {
6320   unix_shared_memory_queue_t *q = NULL;
6321   vl_api_show_lisp_status_reply_t *rmp = NULL;
6322   int rv = 0;
6323
6324   q = vl_api_client_index_to_input_queue (mp->client_index);
6325   if (q == 0)
6326     {
6327       return;
6328     }
6329
6330   /* *INDENT-OFF* */
6331   REPLY_MACRO2(VL_API_SHOW_LISP_STATUS_REPLY,
6332   ({
6333     rmp->gpe_status = vnet_lisp_gpe_enable_disable_status ();
6334     rmp->feature_status = vnet_lisp_enable_disable_status ();
6335   }));
6336   /* *INDENT-ON* */
6337 }
6338
6339 static void
6340   vl_api_lisp_get_map_request_itr_rlocs_t_handler
6341   (vl_api_lisp_get_map_request_itr_rlocs_t * mp)
6342 {
6343   unix_shared_memory_queue_t *q = NULL;
6344   vl_api_lisp_get_map_request_itr_rlocs_reply_t *rmp = NULL;
6345   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
6346   locator_set_t *loc_set = 0;
6347   u8 *tmp_str = 0;
6348   int rv = 0;
6349
6350   q = vl_api_client_index_to_input_queue (mp->client_index);
6351   if (q == 0)
6352     {
6353       return;
6354     }
6355
6356   if (~0 == lcm->mreq_itr_rlocs)
6357     {
6358       tmp_str = format (0, " ");
6359     }
6360   else
6361     {
6362       loc_set =
6363         pool_elt_at_index (lcm->locator_set_pool, lcm->mreq_itr_rlocs);
6364       tmp_str = format (0, "%s", loc_set->name);
6365     }
6366
6367   /* *INDENT-OFF* */
6368   REPLY_MACRO2(VL_API_LISP_GET_MAP_REQUEST_ITR_RLOCS_REPLY,
6369   ({
6370     strncpy((char *) rmp->locator_set_name, (char *) tmp_str,
6371             ARRAY_LEN(rmp->locator_set_name) - 1);
6372   }));
6373   /* *INDENT-ON* */
6374
6375   vec_free (tmp_str);
6376 }
6377
6378 static void
6379 vl_api_show_lisp_pitr_t_handler (vl_api_show_lisp_pitr_t * mp)
6380 {
6381   unix_shared_memory_queue_t *q = NULL;
6382   vl_api_show_lisp_pitr_reply_t *rmp = NULL;
6383   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
6384   mapping_t *m;
6385   locator_set_t *ls = 0;
6386   u8 *tmp_str = 0;
6387   int rv = 0;
6388
6389   q = vl_api_client_index_to_input_queue (mp->client_index);
6390   if (q == 0)
6391     {
6392       return;
6393     }
6394
6395   if (!lcm->lisp_pitr)
6396     {
6397       tmp_str = format (0, "N/A");
6398     }
6399   else
6400     {
6401       m = pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index);
6402       if (~0 != m->locator_set_index)
6403         {
6404           ls =
6405             pool_elt_at_index (lcm->locator_set_pool, m->locator_set_index);
6406           tmp_str = format (0, "%s", ls->name);
6407         }
6408       else
6409         {
6410           tmp_str = format (0, "N/A");
6411         }
6412     }
6413   vec_add1 (tmp_str, 0);
6414
6415   /* *INDENT-OFF* */
6416   REPLY_MACRO2(VL_API_SHOW_LISP_PITR_REPLY,
6417   ({
6418     rmp->status = lcm->lisp_pitr;
6419     strncpy((char *) rmp->locator_set_name, (char *) tmp_str,
6420             ARRAY_LEN(rmp->locator_set_name) - 1);
6421   }));
6422   /* *INDENT-ON* */
6423 }
6424
6425 static void
6426 vl_api_interface_name_renumber_t_handler (vl_api_interface_name_renumber_t *
6427                                           mp)
6428 {
6429   vl_api_interface_name_renumber_reply_t *rmp;
6430   int rv = 0;
6431
6432   VALIDATE_SW_IF_INDEX (mp);
6433
6434   rv = vnet_interface_name_renumber
6435     (ntohl (mp->sw_if_index), ntohl (mp->new_show_dev_instance));
6436
6437   BAD_SW_IF_INDEX_LABEL;
6438
6439   REPLY_MACRO (VL_API_INTERFACE_NAME_RENUMBER_REPLY);
6440 }
6441
6442 static int
6443 arp_change_data_callback (u32 pool_index, u8 * new_mac,
6444                           u32 sw_if_index, u32 address)
6445 {
6446   vpe_api_main_t *am = &vpe_api_main;
6447   vlib_main_t *vm = am->vlib_main;
6448   vl_api_ip4_arp_event_t *event;
6449   static f64 arp_event_last_time;
6450   f64 now = vlib_time_now (vm);
6451
6452   if (pool_is_free_index (am->arp_events, pool_index))
6453     return 1;
6454
6455   event = pool_elt_at_index (am->arp_events, pool_index);
6456   /* *INDENT-OFF* */
6457   if (memcmp (&event->new_mac, new_mac, sizeof (event->new_mac)))
6458     {
6459       clib_memcpy (event->new_mac, new_mac, sizeof (event->new_mac));
6460     }
6461   else
6462     {                           /* same mac */
6463       if (sw_if_index == event->sw_if_index &&
6464           (!event->mac_ip ||
6465            /* for BD case, also check IP address with 10 sec timeout */
6466            (address == event->address &&
6467             (now - arp_event_last_time) < 10.0)))
6468         return 1;
6469     }
6470   /* *INDENT-ON* */
6471
6472   arp_event_last_time = now;
6473   event->sw_if_index = sw_if_index;
6474   if (event->mac_ip)
6475     event->address = address;
6476   return 0;
6477 }
6478
6479 static int
6480 nd_change_data_callback (u32 pool_index, u8 * new_mac,
6481                          u32 sw_if_index, ip6_address_t * address)
6482 {
6483   vpe_api_main_t *am = &vpe_api_main;
6484   vlib_main_t *vm = am->vlib_main;
6485   vl_api_ip6_nd_event_t *event;
6486   static f64 nd_event_last_time;
6487   f64 now = vlib_time_now (vm);
6488
6489   if (pool_is_free_index (am->nd_events, pool_index))
6490     return 1;
6491
6492   event = pool_elt_at_index (am->nd_events, pool_index);
6493
6494   /* *INDENT-OFF* */
6495   if (memcmp (&event->new_mac, new_mac, sizeof (event->new_mac)))
6496     {
6497       clib_memcpy (event->new_mac, new_mac, sizeof (event->new_mac));
6498     }
6499   else
6500     {                           /* same mac */
6501       if (sw_if_index == event->sw_if_index &&
6502           (!event->mac_ip ||
6503            /* for BD case, also check IP address with 10 sec timeout */
6504            (ip6_address_is_equal (address,
6505                                   (ip6_address_t *) event->address) &&
6506             (now - nd_event_last_time) < 10.0)))
6507         return 1;
6508     }
6509   /* *INDENT-ON* */
6510
6511   nd_event_last_time = now;
6512   event->sw_if_index = sw_if_index;
6513   if (event->mac_ip)
6514     clib_memcpy (event->address, address, sizeof (event->address));
6515   return 0;
6516 }
6517
6518 static int
6519 arp_change_delete_callback (u32 pool_index, u8 * notused)
6520 {
6521   vpe_api_main_t *am = &vpe_api_main;
6522
6523   if (pool_is_free_index (am->arp_events, pool_index))
6524     return 1;
6525
6526   pool_put_index (am->arp_events, pool_index);
6527   return 0;
6528 }
6529
6530 static int
6531 nd_change_delete_callback (u32 pool_index, u8 * notused)
6532 {
6533   vpe_api_main_t *am = &vpe_api_main;
6534
6535   if (pool_is_free_index (am->nd_events, pool_index))
6536     return 1;
6537
6538   pool_put_index (am->nd_events, pool_index);
6539   return 0;
6540 }
6541
6542 static void
6543 vl_api_want_ip4_arp_events_t_handler (vl_api_want_ip4_arp_events_t * mp)
6544 {
6545   vpe_api_main_t *am = &vpe_api_main;
6546   vnet_main_t *vnm = vnet_get_main ();
6547   vl_api_want_ip4_arp_events_reply_t *rmp;
6548   vl_api_ip4_arp_event_t *event;
6549   int rv;
6550
6551   if (mp->enable_disable)
6552     {
6553       pool_get (am->arp_events, event);
6554       memset (event, 0, sizeof (*event));
6555
6556       event->_vl_msg_id = ntohs (VL_API_IP4_ARP_EVENT);
6557       event->client_index = mp->client_index;
6558       event->context = mp->context;
6559       event->address = mp->address;
6560       event->pid = mp->pid;
6561       if (mp->address == 0)
6562         event->mac_ip = 1;
6563
6564       rv = vnet_add_del_ip4_arp_change_event
6565         (vnm, arp_change_data_callback,
6566          mp->pid, &mp->address /* addr, in net byte order */ ,
6567          vpe_resolver_process_node.index,
6568          IP4_ARP_EVENT, event - am->arp_events, 1 /* is_add */ );
6569     }
6570   else
6571     {
6572       rv = vnet_add_del_ip4_arp_change_event
6573         (vnm, arp_change_delete_callback,
6574          mp->pid, &mp->address /* addr, in net byte order */ ,
6575          vpe_resolver_process_node.index,
6576          IP4_ARP_EVENT, ~0 /* pool index */ , 0 /* is_add */ );
6577     }
6578   REPLY_MACRO (VL_API_WANT_IP4_ARP_EVENTS_REPLY);
6579 }
6580
6581 static void
6582 vl_api_want_ip6_nd_events_t_handler (vl_api_want_ip6_nd_events_t * mp)
6583 {
6584   vpe_api_main_t *am = &vpe_api_main;
6585   vnet_main_t *vnm = vnet_get_main ();
6586   vl_api_want_ip6_nd_events_reply_t *rmp;
6587   vl_api_ip6_nd_event_t *event;
6588   int rv;
6589
6590   if (mp->enable_disable)
6591     {
6592       pool_get (am->nd_events, event);
6593       memset (event, 0, sizeof (*event));
6594
6595       event->_vl_msg_id = ntohs (VL_API_IP6_ND_EVENT);
6596       event->client_index = mp->client_index;
6597       event->context = mp->context;
6598       clib_memcpy (event->address, mp->address, 16);
6599       event->pid = mp->pid;
6600       if (ip6_address_is_zero ((ip6_address_t *) mp->address))
6601         event->mac_ip = 1;
6602
6603       rv = vnet_add_del_ip6_nd_change_event
6604         (vnm, nd_change_data_callback,
6605          mp->pid, mp->address /* addr, in net byte order */ ,
6606          vpe_resolver_process_node.index,
6607          IP6_ND_EVENT, event - am->nd_events, 1 /* is_add */ );
6608     }
6609   else
6610     {
6611       rv = vnet_add_del_ip6_nd_change_event
6612         (vnm, nd_change_delete_callback,
6613          mp->pid, mp->address /* addr, in net byte order */ ,
6614          vpe_resolver_process_node.index,
6615          IP6_ND_EVENT, ~0 /* pool index */ , 0 /* is_add */ );
6616     }
6617   REPLY_MACRO (VL_API_WANT_IP6_ND_EVENTS_REPLY);
6618 }
6619
6620 static void vl_api_input_acl_set_interface_t_handler
6621   (vl_api_input_acl_set_interface_t * mp)
6622 {
6623   vlib_main_t *vm = vlib_get_main ();
6624   vl_api_input_acl_set_interface_reply_t *rmp;
6625   int rv;
6626   u32 sw_if_index, ip4_table_index, ip6_table_index, l2_table_index;
6627
6628   ip4_table_index = ntohl (mp->ip4_table_index);
6629   ip6_table_index = ntohl (mp->ip6_table_index);
6630   l2_table_index = ntohl (mp->l2_table_index);
6631   sw_if_index = ntohl (mp->sw_if_index);
6632
6633   VALIDATE_SW_IF_INDEX (mp);
6634
6635   rv = vnet_set_input_acl_intfc (vm, sw_if_index, ip4_table_index,
6636                                  ip6_table_index, l2_table_index, mp->is_add);
6637
6638   BAD_SW_IF_INDEX_LABEL;
6639
6640   REPLY_MACRO (VL_API_INPUT_ACL_SET_INTERFACE_REPLY);
6641 }
6642
6643 static void vl_api_ipsec_spd_add_del_t_handler
6644   (vl_api_ipsec_spd_add_del_t * mp)
6645 {
6646 #if IPSEC == 0
6647   clib_warning ("unimplemented");
6648 #else
6649
6650   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
6651   vl_api_ipsec_spd_add_del_reply_t *rmp;
6652   int rv;
6653
6654 #if DPDK > 0
6655   rv = ipsec_add_del_spd (vm, ntohl (mp->spd_id), mp->is_add);
6656 #else
6657   rv = VNET_API_ERROR_UNIMPLEMENTED;
6658 #endif
6659
6660   REPLY_MACRO (VL_API_IPSEC_SPD_ADD_DEL_REPLY);
6661 #endif
6662 }
6663
6664 static void vl_api_ipsec_interface_add_del_spd_t_handler
6665   (vl_api_ipsec_interface_add_del_spd_t * mp)
6666 {
6667   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
6668   vl_api_ipsec_interface_add_del_spd_reply_t *rmp;
6669   int rv;
6670   u32 sw_if_index __attribute__ ((unused));
6671   u32 spd_id __attribute__ ((unused));
6672
6673   sw_if_index = ntohl (mp->sw_if_index);
6674   spd_id = ntohl (mp->spd_id);
6675
6676   VALIDATE_SW_IF_INDEX (mp);
6677
6678 #if IPSEC > 0
6679   rv = ipsec_set_interface_spd (vm, sw_if_index, spd_id, mp->is_add);
6680 #else
6681   rv = VNET_API_ERROR_UNIMPLEMENTED;
6682 #endif
6683
6684   BAD_SW_IF_INDEX_LABEL;
6685
6686   REPLY_MACRO (VL_API_IPSEC_INTERFACE_ADD_DEL_SPD_REPLY);
6687 }
6688
6689 static void vl_api_ipsec_spd_add_del_entry_t_handler
6690   (vl_api_ipsec_spd_add_del_entry_t * mp)
6691 {
6692   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
6693   vl_api_ipsec_spd_add_del_entry_reply_t *rmp;
6694   int rv;
6695
6696 #if IPSEC > 0
6697   ipsec_policy_t p;
6698
6699   memset (&p, 0, sizeof (p));
6700
6701   p.id = ntohl (mp->spd_id);
6702   p.priority = ntohl (mp->priority);
6703   p.is_outbound = mp->is_outbound;
6704   p.is_ipv6 = mp->is_ipv6;
6705
6706   if (mp->is_ipv6 || mp->is_ip_any)
6707     {
6708       clib_memcpy (&p.raddr.start, mp->remote_address_start, 16);
6709       clib_memcpy (&p.raddr.stop, mp->remote_address_stop, 16);
6710       clib_memcpy (&p.laddr.start, mp->local_address_start, 16);
6711       clib_memcpy (&p.laddr.stop, mp->local_address_stop, 16);
6712     }
6713   else
6714     {
6715       clib_memcpy (&p.raddr.start.ip4.data, mp->remote_address_start, 4);
6716       clib_memcpy (&p.raddr.stop.ip4.data, mp->remote_address_stop, 4);
6717       clib_memcpy (&p.laddr.start.ip4.data, mp->local_address_start, 4);
6718       clib_memcpy (&p.laddr.stop.ip4.data, mp->local_address_stop, 4);
6719     }
6720   p.protocol = mp->protocol;
6721   p.rport.start = ntohs (mp->remote_port_start);
6722   p.rport.stop = ntohs (mp->remote_port_stop);
6723   p.lport.start = ntohs (mp->local_port_start);
6724   p.lport.stop = ntohs (mp->local_port_stop);
6725   /* policy action resolve unsupported */
6726   if (mp->policy == IPSEC_POLICY_ACTION_RESOLVE)
6727     {
6728       clib_warning ("unsupported action: 'resolve'");
6729       rv = VNET_API_ERROR_UNIMPLEMENTED;
6730       goto out;
6731     }
6732   p.policy = mp->policy;
6733   p.sa_id = ntohl (mp->sa_id);
6734
6735   rv = ipsec_add_del_policy (vm, &p, mp->is_add);
6736   if (rv)
6737     goto out;
6738
6739   if (mp->is_ip_any)
6740     {
6741       p.is_ipv6 = 1;
6742       rv = ipsec_add_del_policy (vm, &p, mp->is_add);
6743     }
6744 #else
6745   rv = VNET_API_ERROR_UNIMPLEMENTED;
6746   goto out;
6747 #endif
6748
6749 out:
6750   REPLY_MACRO (VL_API_IPSEC_SPD_ADD_DEL_ENTRY_REPLY);
6751 }
6752
6753 static void vl_api_ipsec_sad_add_del_entry_t_handler
6754   (vl_api_ipsec_sad_add_del_entry_t * mp)
6755 {
6756   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
6757   vl_api_ipsec_sad_add_del_entry_reply_t *rmp;
6758   int rv;
6759 #if IPSEC > 0
6760   ipsec_sa_t sa;
6761
6762   memset (&sa, 0, sizeof (sa));
6763
6764   sa.id = ntohl (mp->sad_id);
6765   sa.spi = ntohl (mp->spi);
6766   /* security protocol AH unsupported */
6767   if (mp->protocol == IPSEC_PROTOCOL_AH)
6768     {
6769       clib_warning ("unsupported security protocol 'AH'");
6770       rv = VNET_API_ERROR_UNIMPLEMENTED;
6771       goto out;
6772     }
6773   sa.protocol = mp->protocol;
6774   /* check for unsupported crypto-alg */
6775   if (mp->crypto_algorithm < IPSEC_CRYPTO_ALG_AES_CBC_128 ||
6776       mp->crypto_algorithm > IPSEC_CRYPTO_ALG_AES_CBC_256)
6777     {
6778       clib_warning ("unsupported crypto-alg: '%U'", format_ipsec_crypto_alg,
6779                     mp->crypto_algorithm);
6780       rv = VNET_API_ERROR_UNIMPLEMENTED;
6781       goto out;
6782     }
6783   sa.crypto_alg = mp->crypto_algorithm;
6784   sa.crypto_key_len = mp->crypto_key_length;
6785   clib_memcpy (&sa.crypto_key, mp->crypto_key, sizeof (sa.crypto_key));
6786   /* check for unsupported integ-alg */
6787   if (mp->integrity_algorithm < IPSEC_INTEG_ALG_SHA1_96 ||
6788       mp->integrity_algorithm > IPSEC_INTEG_ALG_SHA_512_256)
6789     {
6790       clib_warning ("unsupported integ-alg: '%U'", format_ipsec_integ_alg,
6791                     mp->integrity_algorithm);
6792       rv = VNET_API_ERROR_UNIMPLEMENTED;
6793       goto out;
6794     }
6795   sa.integ_alg = mp->integrity_algorithm;
6796   sa.integ_key_len = mp->integrity_key_length;
6797   clib_memcpy (&sa.integ_key, mp->integrity_key, sizeof (sa.integ_key));
6798   sa.use_esn = mp->use_extended_sequence_number;
6799   sa.is_tunnel = mp->is_tunnel;
6800   sa.is_tunnel_ip6 = mp->is_tunnel_ipv6;
6801   if (sa.is_tunnel_ip6)
6802     {
6803       clib_memcpy (&sa.tunnel_src_addr, mp->tunnel_src_address, 16);
6804       clib_memcpy (&sa.tunnel_dst_addr, mp->tunnel_dst_address, 16);
6805     }
6806   else
6807     {
6808       clib_memcpy (&sa.tunnel_src_addr.ip4.data, mp->tunnel_src_address, 4);
6809       clib_memcpy (&sa.tunnel_dst_addr.ip4.data, mp->tunnel_dst_address, 4);
6810     }
6811
6812   rv = ipsec_add_del_sa (vm, &sa, mp->is_add);
6813 #else
6814   rv = VNET_API_ERROR_UNIMPLEMENTED;
6815   goto out;
6816 #endif
6817
6818 out:
6819   REPLY_MACRO (VL_API_IPSEC_SAD_ADD_DEL_ENTRY_REPLY);
6820 }
6821
6822 static void
6823 vl_api_ikev2_profile_add_del_t_handler (vl_api_ikev2_profile_add_del_t * mp)
6824 {
6825   vl_api_ikev2_profile_add_del_reply_t *rmp;
6826   int rv = 0;
6827
6828 #if IPSEC > 0
6829   vlib_main_t *vm = vlib_get_main ();
6830   clib_error_t *error;
6831   u8 *tmp = format (0, "%s", mp->name);
6832   error = ikev2_add_del_profile (vm, tmp, mp->is_add);
6833   vec_free (tmp);
6834   if (error)
6835     rv = VNET_API_ERROR_UNSPECIFIED;
6836 #else
6837   rv = VNET_API_ERROR_UNIMPLEMENTED;
6838 #endif
6839
6840   REPLY_MACRO (VL_API_IKEV2_PROFILE_ADD_DEL_REPLY);
6841 }
6842
6843 static void
6844   vl_api_ikev2_profile_set_auth_t_handler
6845   (vl_api_ikev2_profile_set_auth_t * mp)
6846 {
6847   vl_api_ikev2_profile_set_auth_reply_t *rmp;
6848   int rv = 0;
6849
6850 #if IPSEC > 0
6851   vlib_main_t *vm = vlib_get_main ();
6852   clib_error_t *error;
6853   u8 *tmp = format (0, "%s", mp->name);
6854   u8 *data = vec_new (u8, mp->data_len);
6855   clib_memcpy (data, mp->data, mp->data_len);
6856   error = ikev2_set_profile_auth (vm, tmp, mp->auth_method, data, mp->is_hex);
6857   vec_free (tmp);
6858   vec_free (data);
6859   if (error)
6860     rv = VNET_API_ERROR_UNSPECIFIED;
6861 #else
6862   rv = VNET_API_ERROR_UNIMPLEMENTED;
6863 #endif
6864
6865   REPLY_MACRO (VL_API_IKEV2_PROFILE_SET_AUTH_REPLY);
6866 }
6867
6868 static void
6869 vl_api_ikev2_profile_set_id_t_handler (vl_api_ikev2_profile_set_id_t * mp)
6870 {
6871   vl_api_ikev2_profile_add_del_reply_t *rmp;
6872   int rv = 0;
6873
6874 #if IPSEC > 0
6875   vlib_main_t *vm = vlib_get_main ();
6876   clib_error_t *error;
6877   u8 *tmp = format (0, "%s", mp->name);
6878   u8 *data = vec_new (u8, mp->data_len);
6879   clib_memcpy (data, mp->data, mp->data_len);
6880   error = ikev2_set_profile_id (vm, tmp, mp->id_type, data, mp->is_local);
6881   vec_free (tmp);
6882   vec_free (data);
6883   if (error)
6884     rv = VNET_API_ERROR_UNSPECIFIED;
6885 #else
6886   rv = VNET_API_ERROR_UNIMPLEMENTED;
6887 #endif
6888
6889   REPLY_MACRO (VL_API_IKEV2_PROFILE_SET_ID_REPLY);
6890 }
6891
6892 static void
6893 vl_api_ikev2_profile_set_ts_t_handler (vl_api_ikev2_profile_set_ts_t * mp)
6894 {
6895   vl_api_ikev2_profile_set_ts_reply_t *rmp;
6896   int rv = 0;
6897
6898 #if IPSEC > 0
6899   vlib_main_t *vm = vlib_get_main ();
6900   clib_error_t *error;
6901   u8 *tmp = format (0, "%s", mp->name);
6902   error = ikev2_set_profile_ts (vm, tmp, mp->proto, mp->start_port,
6903                                 mp->end_port, (ip4_address_t) mp->start_addr,
6904                                 (ip4_address_t) mp->end_addr, mp->is_local);
6905   vec_free (tmp);
6906   if (error)
6907     rv = VNET_API_ERROR_UNSPECIFIED;
6908 #else
6909   rv = VNET_API_ERROR_UNIMPLEMENTED;
6910 #endif
6911
6912   REPLY_MACRO (VL_API_IKEV2_PROFILE_SET_TS_REPLY);
6913 }
6914
6915 static void
6916 vl_api_ikev2_set_local_key_t_handler (vl_api_ikev2_set_local_key_t * mp)
6917 {
6918   vl_api_ikev2_profile_set_ts_reply_t *rmp;
6919   int rv = 0;
6920
6921 #if IPSEC > 0
6922   vlib_main_t *vm = vlib_get_main ();
6923   clib_error_t *error;
6924
6925   error = ikev2_set_local_key (vm, mp->key_file);
6926   if (error)
6927     rv = VNET_API_ERROR_UNSPECIFIED;
6928 #else
6929   rv = VNET_API_ERROR_UNIMPLEMENTED;
6930 #endif
6931
6932   REPLY_MACRO (VL_API_IKEV2_SET_LOCAL_KEY_REPLY);
6933 }
6934
6935 static void
6936 vl_api_map_add_domain_t_handler (vl_api_map_add_domain_t * mp)
6937 {
6938   vl_api_map_add_domain_reply_t *rmp;
6939   int rv = 0;
6940   u32 index;
6941   u8 flags = mp->is_translation ? MAP_DOMAIN_TRANSLATION : 0;
6942   rv =
6943     map_create_domain ((ip4_address_t *) & mp->ip4_prefix, mp->ip4_prefix_len,
6944                        (ip6_address_t *) & mp->ip6_prefix, mp->ip6_prefix_len,
6945                        (ip6_address_t *) & mp->ip6_src,
6946                        mp->ip6_src_prefix_len, mp->ea_bits_len,
6947                        mp->psid_offset, mp->psid_length, &index,
6948                        ntohs (mp->mtu), flags);
6949
6950   /* *INDENT-OFF* */
6951   REPLY_MACRO2(VL_API_MAP_ADD_DOMAIN_REPLY,
6952   ({
6953     rmp->index = ntohl(index);
6954   }));
6955   /* *INDENT-ON* */
6956 }
6957
6958 static void
6959 vl_api_map_del_domain_t_handler (vl_api_map_del_domain_t * mp)
6960 {
6961   vl_api_map_del_domain_reply_t *rmp;
6962   int rv = 0;
6963
6964   rv = map_delete_domain (ntohl (mp->index));
6965
6966   REPLY_MACRO (VL_API_MAP_DEL_DOMAIN_REPLY);
6967 }
6968
6969 static void
6970 vl_api_map_add_del_rule_t_handler (vl_api_map_add_del_rule_t * mp)
6971 {
6972   vl_api_map_del_domain_reply_t *rmp;
6973   int rv = 0;
6974
6975   rv =
6976     map_add_del_psid (ntohl (mp->index), ntohs (mp->psid),
6977                       (ip6_address_t *) mp->ip6_dst, mp->is_add);
6978
6979   REPLY_MACRO (VL_API_MAP_ADD_DEL_RULE_REPLY);
6980 }
6981
6982 static void
6983 vl_api_map_domain_dump_t_handler (vl_api_map_domain_dump_t * mp)
6984 {
6985   vl_api_map_domain_details_t *rmp;
6986   map_main_t *mm = &map_main;
6987   map_domain_t *d;
6988   unix_shared_memory_queue_t *q;
6989
6990   if (pool_elts (mm->domains) == 0)
6991     return;
6992
6993   q = vl_api_client_index_to_input_queue (mp->client_index);
6994   if (q == 0)
6995     {
6996       return;
6997     }
6998
6999   /* *INDENT-OFF* */
7000   pool_foreach(d, mm->domains,
7001   ({
7002     /* Make sure every field is initiated (or don't skip the memset()) */
7003     rmp = vl_msg_api_alloc (sizeof (*rmp));
7004     rmp->_vl_msg_id = ntohs(VL_API_MAP_DOMAIN_DETAILS);
7005     rmp->domain_index = htonl(d - mm->domains);
7006     rmp->ea_bits_len = d->ea_bits_len;
7007     rmp->psid_offset = d->psid_offset;
7008     rmp->psid_length = d->psid_length;
7009     clib_memcpy(rmp->ip4_prefix, &d->ip4_prefix, sizeof(rmp->ip4_prefix));
7010     rmp->ip4_prefix_len = d->ip4_prefix_len;
7011     clib_memcpy(rmp->ip6_prefix, &d->ip6_prefix, sizeof(rmp->ip6_prefix));
7012     rmp->ip6_prefix_len = d->ip6_prefix_len;
7013     clib_memcpy(rmp->ip6_src, &d->ip6_src, sizeof(rmp->ip6_src));
7014     rmp->ip6_src_len = d->ip6_src_len;
7015     rmp->mtu = htons(d->mtu);
7016     rmp->is_translation = (d->flags & MAP_DOMAIN_TRANSLATION);
7017     rmp->context = mp->context;
7018
7019     vl_msg_api_send_shmem (q, (u8 *)&rmp);
7020   }));
7021   /* *INDENT-ON* */
7022 }
7023
7024 static void
7025 vl_api_map_rule_dump_t_handler (vl_api_map_rule_dump_t * mp)
7026 {
7027   unix_shared_memory_queue_t *q;
7028   u16 i;
7029   ip6_address_t dst;
7030   vl_api_map_rule_details_t *rmp;
7031   map_main_t *mm = &map_main;
7032   u32 domain_index = ntohl (mp->domain_index);
7033   map_domain_t *d;
7034
7035   if (pool_elts (mm->domains) == 0)
7036     return;
7037
7038   d = pool_elt_at_index (mm->domains, domain_index);
7039   if (!d || !d->rules)
7040     {
7041       return;
7042     }
7043
7044   q = vl_api_client_index_to_input_queue (mp->client_index);
7045   if (q == 0)
7046     {
7047       return;
7048     }
7049
7050   for (i = 0; i < (0x1 << d->psid_length); i++)
7051     {
7052       dst = d->rules[i];
7053       if (dst.as_u64[0] == 0 && dst.as_u64[1] == 0)
7054         {
7055           continue;
7056         }
7057       rmp = vl_msg_api_alloc (sizeof (*rmp));
7058       memset (rmp, 0, sizeof (*rmp));
7059       rmp->_vl_msg_id = ntohs (VL_API_MAP_RULE_DETAILS);
7060       rmp->psid = htons (i);
7061       clib_memcpy (rmp->ip6_dst, &dst, sizeof (rmp->ip6_dst));
7062       rmp->context = mp->context;
7063       vl_msg_api_send_shmem (q, (u8 *) & rmp);
7064     }
7065 }
7066
7067 static void
7068 vl_api_map_summary_stats_t_handler (vl_api_map_summary_stats_t * mp)
7069 {
7070   vl_api_map_summary_stats_reply_t *rmp;
7071   vlib_combined_counter_main_t *cm;
7072   vlib_counter_t v;
7073   int i, which;
7074   u64 total_pkts[VLIB_N_RX_TX];
7075   u64 total_bytes[VLIB_N_RX_TX];
7076   map_main_t *mm = &map_main;
7077   unix_shared_memory_queue_t *q =
7078     vl_api_client_index_to_input_queue (mp->client_index);
7079
7080   if (!q)
7081     return;
7082
7083   rmp = vl_msg_api_alloc (sizeof (*rmp));
7084   rmp->_vl_msg_id = ntohs (VL_API_MAP_SUMMARY_STATS_REPLY);
7085   rmp->context = mp->context;
7086   rmp->retval = 0;
7087
7088   memset (total_pkts, 0, sizeof (total_pkts));
7089   memset (total_bytes, 0, sizeof (total_bytes));
7090
7091   map_domain_counter_lock (mm);
7092   vec_foreach (cm, mm->domain_counters)
7093   {
7094     which = cm - mm->domain_counters;
7095
7096     for (i = 0; i < vec_len (cm->maxi); i++)
7097       {
7098         vlib_get_combined_counter (cm, i, &v);
7099         total_pkts[which] += v.packets;
7100         total_bytes[which] += v.bytes;
7101       }
7102   }
7103
7104   map_domain_counter_unlock (mm);
7105
7106   /* Note: in network byte order! */
7107   rmp->total_pkts[MAP_DOMAIN_COUNTER_RX] =
7108     clib_host_to_net_u64 (total_pkts[MAP_DOMAIN_COUNTER_RX]);
7109   rmp->total_bytes[MAP_DOMAIN_COUNTER_RX] =
7110     clib_host_to_net_u64 (total_bytes[MAP_DOMAIN_COUNTER_RX]);
7111   rmp->total_pkts[MAP_DOMAIN_COUNTER_TX] =
7112     clib_host_to_net_u64 (total_pkts[MAP_DOMAIN_COUNTER_TX]);
7113   rmp->total_bytes[MAP_DOMAIN_COUNTER_TX] =
7114     clib_host_to_net_u64 (total_bytes[MAP_DOMAIN_COUNTER_TX]);
7115   rmp->total_bindings = clib_host_to_net_u64 (pool_elts (mm->domains));
7116   rmp->total_ip4_fragments = 0; // Not yet implemented. Should be a simple counter.
7117   rmp->total_security_check[MAP_DOMAIN_COUNTER_TX] =
7118     clib_host_to_net_u64 (map_error_counter_get
7119                           (ip4_map_node.index, MAP_ERROR_ENCAP_SEC_CHECK));
7120   rmp->total_security_check[MAP_DOMAIN_COUNTER_RX] =
7121     clib_host_to_net_u64 (map_error_counter_get
7122                           (ip4_map_node.index, MAP_ERROR_DECAP_SEC_CHECK));
7123
7124   vl_msg_api_send_shmem (q, (u8 *) & rmp);
7125 }
7126
7127 static void
7128 vl_api_ipsec_sa_set_key_t_handler (vl_api_ipsec_sa_set_key_t * mp)
7129 {
7130   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
7131   vl_api_ipsec_sa_set_key_reply_t *rmp;
7132   int rv;
7133 #if IPSEC > 0
7134   ipsec_sa_t sa;
7135   sa.id = ntohl (mp->sa_id);
7136   sa.crypto_key_len = mp->crypto_key_length;
7137   clib_memcpy (&sa.crypto_key, mp->crypto_key, sizeof (sa.crypto_key));
7138   sa.integ_key_len = mp->integrity_key_length;
7139   clib_memcpy (&sa.integ_key, mp->integrity_key, sizeof (sa.integ_key));
7140
7141   rv = ipsec_set_sa_key (vm, &sa);
7142 #else
7143   rv = VNET_API_ERROR_UNIMPLEMENTED;
7144 #endif
7145
7146   REPLY_MACRO (VL_API_IPSEC_SA_SET_KEY_REPLY);
7147 }
7148
7149 static void vl_api_cop_interface_enable_disable_t_handler
7150   (vl_api_cop_interface_enable_disable_t * mp)
7151 {
7152   vl_api_cop_interface_enable_disable_reply_t *rmp;
7153   int rv;
7154   u32 sw_if_index = ntohl (mp->sw_if_index);
7155   int enable_disable;
7156
7157   VALIDATE_SW_IF_INDEX (mp);
7158
7159   enable_disable = (int) mp->enable_disable;
7160
7161   rv = cop_interface_enable_disable (sw_if_index, enable_disable);
7162
7163   BAD_SW_IF_INDEX_LABEL;
7164
7165   REPLY_MACRO (VL_API_COP_INTERFACE_ENABLE_DISABLE_REPLY);
7166 }
7167
7168 static void vl_api_cop_whitelist_enable_disable_t_handler
7169   (vl_api_cop_whitelist_enable_disable_t * mp)
7170 {
7171   vl_api_cop_whitelist_enable_disable_reply_t *rmp;
7172   cop_whitelist_enable_disable_args_t _a, *a = &_a;
7173   u32 sw_if_index = ntohl (mp->sw_if_index);
7174   int rv;
7175
7176   VALIDATE_SW_IF_INDEX (mp);
7177
7178   a->sw_if_index = sw_if_index;
7179   a->ip4 = mp->ip4;
7180   a->ip6 = mp->ip6;
7181   a->default_cop = mp->default_cop;
7182   a->fib_id = ntohl (mp->fib_id);
7183
7184   rv = cop_whitelist_enable_disable (a);
7185
7186   BAD_SW_IF_INDEX_LABEL;
7187
7188   REPLY_MACRO (VL_API_COP_WHITELIST_ENABLE_DISABLE_REPLY);
7189 }
7190
7191 static void
7192 vl_api_get_node_graph_t_handler (vl_api_get_node_graph_t * mp)
7193 {
7194   int rv = 0;
7195   u8 *vector = 0;
7196   api_main_t *am = &api_main;
7197   vlib_main_t *vm = vlib_get_main ();
7198   void *oldheap;
7199   vl_api_get_node_graph_reply_t *rmp;
7200
7201   pthread_mutex_lock (&am->vlib_rp->mutex);
7202   oldheap = svm_push_data_heap (am->vlib_rp);
7203
7204   /*
7205    * Keep the number of memcpy ops to a minimum (e.g. 1).
7206    */
7207   vec_validate (vector, 16384);
7208   vec_reset_length (vector);
7209
7210   /* $$$$ FIXME */
7211   vector = vlib_node_serialize (&vm->node_main, vector,
7212                                 (u32) ~ 0 /* all threads */ ,
7213                                 1 /* include nexts */ ,
7214                                 1 /* include stats */ );
7215
7216   svm_pop_heap (oldheap);
7217   pthread_mutex_unlock (&am->vlib_rp->mutex);
7218
7219   /* *INDENT-OFF* */
7220   REPLY_MACRO2(VL_API_GET_NODE_GRAPH_REPLY,
7221   ({
7222     rmp->reply_in_shmem = (uword) vector;
7223   }));
7224   /* *INDENT-ON* */
7225 }
7226
7227 static void
7228 vl_api_ioam_enable_t_handler (vl_api_ioam_enable_t * mp)
7229 {
7230   int rv = 0;
7231   vl_api_ioam_enable_reply_t *rmp;
7232   clib_error_t *error;
7233
7234   /* Ignoring the profile id as currently a single profile
7235    * is supported */
7236   error = ip6_ioam_enable (mp->trace_enable, mp->pow_enable, mp->trace_ppc);
7237   if (error)
7238     {
7239       clib_error_report (error);
7240       rv = clib_error_get_code (error);
7241     }
7242
7243   REPLY_MACRO (VL_API_IOAM_ENABLE_REPLY);
7244 }
7245
7246 static void
7247 vl_api_ioam_disable_t_handler (vl_api_ioam_disable_t * mp)
7248 {
7249   int rv = 0;
7250   vl_api_ioam_disable_reply_t *rmp;
7251   clib_error_t *error;
7252
7253   error = clear_ioam_rewrite_fn ();
7254   if (error)
7255     {
7256       clib_error_report (error);
7257       rv = clib_error_get_code (error);
7258     }
7259
7260   REPLY_MACRO (VL_API_IOAM_DISABLE_REPLY);
7261 }
7262
7263 static void
7264 vl_api_af_packet_create_t_handler (vl_api_af_packet_create_t * mp)
7265 {
7266   vlib_main_t *vm = vlib_get_main ();
7267   vl_api_af_packet_create_reply_t *rmp;
7268   int rv = 0;
7269   u8 *host_if_name = NULL;
7270   u32 sw_if_index;
7271
7272   host_if_name = format (0, "%s", mp->host_if_name);
7273   vec_add1 (host_if_name, 0);
7274
7275   rv = af_packet_create_if (vm, host_if_name,
7276                             mp->use_random_hw_addr ? 0 : mp->hw_addr,
7277                             &sw_if_index);
7278
7279   vec_free (host_if_name);
7280
7281   /* *INDENT-OFF* */
7282   REPLY_MACRO2(VL_API_AF_PACKET_CREATE_REPLY,
7283   ({
7284     rmp->sw_if_index = clib_host_to_net_u32(sw_if_index);
7285   }));
7286   /* *INDENT-ON* */
7287 }
7288
7289 static void
7290 vl_api_af_packet_delete_t_handler (vl_api_af_packet_delete_t * mp)
7291 {
7292   vlib_main_t *vm = vlib_get_main ();
7293   vl_api_af_packet_delete_reply_t *rmp;
7294   int rv = 0;
7295   u8 *host_if_name = NULL;
7296
7297   host_if_name = format (0, "%s", mp->host_if_name);
7298   vec_add1 (host_if_name, 0);
7299
7300   rv = af_packet_delete_if (vm, host_if_name);
7301
7302   vec_free (host_if_name);
7303
7304   REPLY_MACRO (VL_API_AF_PACKET_DELETE_REPLY);
7305 }
7306
7307 static void
7308 vl_api_policer_add_del_t_handler (vl_api_policer_add_del_t * mp)
7309 {
7310   vlib_main_t *vm = vlib_get_main ();
7311   vl_api_policer_add_del_reply_t *rmp;
7312   int rv = 0;
7313   u8 *name = NULL;
7314   sse2_qos_pol_cfg_params_st cfg;
7315   clib_error_t *error;
7316   u32 policer_index;
7317
7318   name = format (0, "%s", mp->name);
7319
7320   memset (&cfg, 0, sizeof (cfg));
7321   cfg.rfc = mp->type;
7322   cfg.rnd_type = mp->round_type;
7323   cfg.rate_type = mp->rate_type;
7324   cfg.rb.kbps.cir_kbps = mp->cir;
7325   cfg.rb.kbps.eir_kbps = mp->eir;
7326   cfg.rb.kbps.cb_bytes = mp->cb;
7327   cfg.rb.kbps.eb_bytes = mp->eb;
7328   cfg.conform_action.action_type = mp->conform_action_type;
7329   cfg.conform_action.dscp = mp->conform_dscp;
7330   cfg.exceed_action.action_type = mp->exceed_action_type;
7331   cfg.exceed_action.dscp = mp->exceed_dscp;
7332   cfg.violate_action.action_type = mp->violate_action_type;
7333   cfg.violate_action.dscp = mp->violate_dscp;
7334   cfg.color_aware = mp->color_aware;
7335
7336   error = policer_add_del (vm, name, &cfg, &policer_index, mp->is_add);
7337
7338   if (error)
7339     rv = VNET_API_ERROR_UNSPECIFIED;
7340
7341   /* *INDENT-OFF* */
7342   REPLY_MACRO2(VL_API_POLICER_ADD_DEL_REPLY,
7343   ({
7344     if (rv == 0 &&  mp->is_add)
7345       rmp->policer_index = ntohl(policer_index);
7346     else
7347       rmp->policer_index = ~0;
7348   }));
7349   /* *INDENT-ON* */
7350 }
7351
7352 static void
7353 send_policer_details (u8 * name,
7354                       sse2_qos_pol_cfg_params_st * config,
7355                       policer_read_response_type_st * templ,
7356                       unix_shared_memory_queue_t * q, u32 context)
7357 {
7358   vl_api_policer_details_t *mp;
7359
7360   mp = vl_msg_api_alloc (sizeof (*mp));
7361   memset (mp, 0, sizeof (*mp));
7362   mp->_vl_msg_id = ntohs (VL_API_POLICER_DETAILS);
7363   mp->context = context;
7364   mp->cir = htonl (config->rb.kbps.cir_kbps);
7365   mp->eir = htonl (config->rb.kbps.eir_kbps);
7366   mp->cb = htonl (config->rb.kbps.cb_bytes);
7367   mp->eb = htonl (config->rb.kbps.eb_bytes);
7368   mp->rate_type = config->rate_type;
7369   mp->round_type = config->rnd_type;
7370   mp->type = config->rfc;
7371   mp->conform_action_type = config->conform_action.action_type;
7372   mp->conform_dscp = config->conform_action.dscp;
7373   mp->exceed_action_type = config->exceed_action.action_type;
7374   mp->exceed_dscp = config->exceed_action.dscp;
7375   mp->violate_action_type = config->violate_action.action_type;
7376   mp->violate_dscp = config->violate_action.dscp;
7377   mp->single_rate = templ->single_rate ? 1 : 0;
7378   mp->color_aware = templ->color_aware ? 1 : 0;
7379   mp->scale = htonl (templ->scale);
7380   mp->cir_tokens_per_period = htonl (templ->cir_tokens_per_period);
7381   mp->pir_tokens_per_period = htonl (templ->pir_tokens_per_period);
7382   mp->current_limit = htonl (templ->current_limit);
7383   mp->current_bucket = htonl (templ->current_bucket);
7384   mp->extended_limit = htonl (templ->extended_limit);
7385   mp->extended_bucket = htonl (templ->extended_bucket);
7386   mp->last_update_time = clib_host_to_net_u64 (templ->last_update_time);
7387
7388   strncpy ((char *) mp->name, (char *) name, ARRAY_LEN (mp->name) - 1);
7389
7390   vl_msg_api_send_shmem (q, (u8 *) & mp);
7391 }
7392
7393 static void
7394 vl_api_policer_dump_t_handler (vl_api_policer_dump_t * mp)
7395 {
7396   unix_shared_memory_queue_t *q;
7397   vnet_policer_main_t *pm = &vnet_policer_main;
7398   hash_pair_t *hp;
7399   uword *p;
7400   u32 pool_index;
7401   u8 *match_name = 0;
7402   u8 *name;
7403   sse2_qos_pol_cfg_params_st *config;
7404   policer_read_response_type_st *templ;
7405
7406   q = vl_api_client_index_to_input_queue (mp->client_index);
7407   if (q == 0)
7408     return;
7409
7410   if (mp->match_name_valid)
7411     {
7412       match_name = format (0, "%s%c", mp->match_name, 0);
7413     }
7414
7415   if (mp->match_name_valid)
7416     {
7417       p = hash_get_mem (pm->policer_config_by_name, match_name);
7418       if (p)
7419         {
7420           pool_index = p[0];
7421           config = pool_elt_at_index (pm->configs, pool_index);
7422           templ = pool_elt_at_index (pm->policer_templates, pool_index);
7423           send_policer_details (match_name, config, templ, q, mp->context);
7424         }
7425     }
7426   else
7427     {
7428       /* *INDENT-OFF* */
7429       hash_foreach_pair (hp, pm->policer_config_by_name,
7430       ({
7431         name = (u8 *) hp->key;
7432         pool_index = hp->value[0];
7433         config = pool_elt_at_index (pm->configs, pool_index);
7434         templ = pool_elt_at_index (pm->policer_templates, pool_index);
7435         send_policer_details(name, config, templ, q, mp->context);
7436       }));
7437       /* *INDENT-ON* */
7438     }
7439 }
7440
7441 static void
7442   vl_api_policer_classify_set_interface_t_handler
7443   (vl_api_policer_classify_set_interface_t * mp)
7444 {
7445   vlib_main_t *vm = vlib_get_main ();
7446   vl_api_policer_classify_set_interface_reply_t *rmp;
7447   int rv;
7448   u32 sw_if_index, ip4_table_index, ip6_table_index, l2_table_index;
7449
7450   ip4_table_index = ntohl (mp->ip4_table_index);
7451   ip6_table_index = ntohl (mp->ip6_table_index);
7452   l2_table_index = ntohl (mp->l2_table_index);
7453   sw_if_index = ntohl (mp->sw_if_index);
7454
7455   VALIDATE_SW_IF_INDEX (mp);
7456
7457   rv = vnet_set_policer_classify_intfc (vm, sw_if_index, ip4_table_index,
7458                                         ip6_table_index, l2_table_index,
7459                                         mp->is_add);
7460
7461   BAD_SW_IF_INDEX_LABEL;
7462
7463   REPLY_MACRO (VL_API_POLICER_CLASSIFY_SET_INTERFACE_REPLY);
7464 }
7465
7466 static void
7467 send_policer_classify_details (u32 sw_if_index,
7468                                u32 table_index,
7469                                unix_shared_memory_queue_t * q, u32 context)
7470 {
7471   vl_api_policer_classify_details_t *mp;
7472
7473   mp = vl_msg_api_alloc (sizeof (*mp));
7474   memset (mp, 0, sizeof (*mp));
7475   mp->_vl_msg_id = ntohs (VL_API_POLICER_CLASSIFY_DETAILS);
7476   mp->context = context;
7477   mp->sw_if_index = htonl (sw_if_index);
7478   mp->table_index = htonl (table_index);
7479
7480   vl_msg_api_send_shmem (q, (u8 *) & mp);
7481 }
7482
7483 static void
7484 vl_api_policer_classify_dump_t_handler (vl_api_policer_classify_dump_t * mp)
7485 {
7486   unix_shared_memory_queue_t *q;
7487   policer_classify_main_t *pcm = &policer_classify_main;
7488   u32 *vec_tbl;
7489   int i;
7490
7491   q = vl_api_client_index_to_input_queue (mp->client_index);
7492   if (q == 0)
7493     return;
7494
7495   vec_tbl = pcm->classify_table_index_by_sw_if_index[mp->type];
7496
7497   if (vec_len (vec_tbl))
7498     {
7499       for (i = 0; i < vec_len (vec_tbl); i++)
7500         {
7501           if (vec_elt (vec_tbl, i) == ~0)
7502             continue;
7503
7504           send_policer_classify_details (i, vec_elt (vec_tbl, i), q,
7505                                          mp->context);
7506         }
7507     }
7508 }
7509
7510 static void
7511 vl_api_netmap_create_t_handler (vl_api_netmap_create_t * mp)
7512 {
7513   vlib_main_t *vm = vlib_get_main ();
7514   vl_api_netmap_create_reply_t *rmp;
7515   int rv = 0;
7516   u8 *if_name = NULL;
7517
7518   if_name = format (0, "%s", mp->netmap_if_name);
7519   vec_add1 (if_name, 0);
7520
7521   rv =
7522     netmap_create_if (vm, if_name, mp->use_random_hw_addr ? 0 : mp->hw_addr,
7523                       mp->is_pipe, mp->is_master, 0);
7524
7525   vec_free (if_name);
7526
7527   REPLY_MACRO (VL_API_NETMAP_CREATE_REPLY);
7528 }
7529
7530 static void
7531 vl_api_netmap_delete_t_handler (vl_api_netmap_delete_t * mp)
7532 {
7533   vlib_main_t *vm = vlib_get_main ();
7534   vl_api_netmap_delete_reply_t *rmp;
7535   int rv = 0;
7536   u8 *if_name = NULL;
7537
7538   if_name = format (0, "%s", mp->netmap_if_name);
7539   vec_add1 (if_name, 0);
7540
7541   rv = netmap_delete_if (vm, if_name);
7542
7543   vec_free (if_name);
7544
7545   REPLY_MACRO (VL_API_NETMAP_DELETE_REPLY);
7546 }
7547
7548 static void
7549 vl_api_mpls_eth_tunnel_details_t_handler (vl_api_mpls_eth_tunnel_details_t *
7550                                           mp)
7551 {
7552   clib_warning ("BUG");
7553 }
7554
7555 static void
7556 send_mpls_eth_tunnel_entry (vpe_api_main_t * am,
7557                             unix_shared_memory_queue_t * q,
7558                             mpls_eth_tunnel_t * et, u32 index, u32 context)
7559 {
7560   mpls_main_t *mm = &mpls_main;
7561   mpls_encap_t *e;
7562   int i;
7563   u32 nlabels;
7564   vl_api_mpls_eth_tunnel_details_t *mp;
7565
7566   e = pool_elt_at_index (mm->encaps, et->encap_index);
7567   nlabels = vec_len (e->labels);
7568
7569   mp = vl_msg_api_alloc (sizeof (*mp) + nlabels * sizeof (u32));
7570   memset (mp, 0, sizeof (*mp));
7571   mp->_vl_msg_id = ntohs (VL_API_MPLS_ETH_TUNNEL_DETAILS);
7572   mp->context = context;
7573
7574   mp->tunnel_index = htonl (index);
7575   memcpy (mp->tunnel_dst_mac, et->tunnel_dst, 6);
7576   mp->intfc_address = et->intfc_address.as_u32;
7577   mp->tx_sw_if_index = htonl (et->tx_sw_if_index);
7578   mp->inner_fib_index = htonl (et->inner_fib_index);
7579   mp->mask_width = htonl (et->mask_width);
7580   mp->encap_index = htonl (et->encap_index);
7581   mp->hw_if_index = htonl (et->hw_if_index);
7582   mp->l2_only = htonl (et->l2_only);
7583   mp->nlabels = htonl (nlabels);
7584
7585   for (i = 0; i < nlabels; i++)
7586     {
7587       mp->labels[i] =
7588         htonl (vnet_mpls_uc_get_label
7589                (clib_host_to_net_u32 (e->labels[i].label_exp_s_ttl)));
7590     }
7591
7592   vl_msg_api_send_shmem (q, (u8 *) & mp);
7593 }
7594
7595 static void
7596 vl_api_mpls_eth_tunnel_dump_t_handler (vl_api_mpls_eth_tunnel_dump_t * mp)
7597 {
7598   vpe_api_main_t *am = &vpe_api_main;
7599   unix_shared_memory_queue_t *q;
7600   mpls_main_t *mm = &mpls_main;
7601   mpls_eth_tunnel_t *et;
7602   u32 index = ntohl (mp->tunnel_index);
7603
7604   q = vl_api_client_index_to_input_queue (mp->client_index);
7605   if (q == 0)
7606     return;
7607
7608   if (index != ~0)
7609     {
7610       if (!pool_is_free_index (mm->eth_tunnels, index))
7611         {
7612           et = pool_elt_at_index (mm->eth_tunnels, index);
7613           send_mpls_eth_tunnel_entry (am, q, et, et - mm->eth_tunnels,
7614                                       mp->context);
7615         }
7616     }
7617   else
7618     {
7619       /* *INDENT-OFF* */
7620       pool_foreach (et, mm->eth_tunnels,
7621       ({
7622         send_mpls_eth_tunnel_entry (am, q, et, et - mm->eth_tunnels,
7623                                     mp->context);
7624       }));
7625       /* *INDENT-ON* */
7626     }
7627 }
7628
7629 static void
7630 vl_api_mpls_fib_details_t_handler (vl_api_mpls_fib_details_t * mp)
7631 {
7632   clib_warning ("BUG");
7633 }
7634
7635 static void
7636 send_mpls_fib_details (vpe_api_main_t * am,
7637                        unix_shared_memory_queue_t * q,
7638                        u32 table_id, u32 label, u32 eos, u32 context)
7639 {
7640   vl_api_mpls_fib_details_t *mp;
7641
7642   mp = vl_msg_api_alloc (sizeof (*mp));
7643   memset (mp, 0, sizeof (*mp));
7644   mp->_vl_msg_id = ntohs (VL_API_MPLS_FIB_DETAILS);
7645   mp->context = context;
7646
7647   mp->table_id = htonl (table_id);
7648   mp->eos_bit = eos;
7649   mp->label = htonl (label);
7650
7651   vl_msg_api_send_shmem (q, (u8 *) & mp);
7652 }
7653
7654 static void
7655 vl_api_mpls_fib_dump_t_handler (vl_api_mpls_fib_dump_t * mp)
7656 {
7657   vpe_api_main_t *am = &vpe_api_main;
7658   unix_shared_memory_queue_t *q;
7659   mpls_main_t *mm = &mpls_main;
7660   fib_table_t *fib_table;
7661   fib_node_index_t lfei, *lfeip, *lfeis = NULL;
7662   mpls_label_t key;
7663   fib_prefix_t pfx;
7664   u32 fib_index;
7665
7666   q = vl_api_client_index_to_input_queue (mp->client_index);
7667   if (q == 0)
7668     return;
7669
7670   /* *INDENT-OFF* */
7671   pool_foreach (fib_table, mm->fibs,
7672   ({
7673     hash_foreach(key, lfei, fib_table->mpls.mf_entries,
7674     ({
7675         vec_add1(lfeis, lfei);
7676     }));
7677   }));
7678   vec_sort_with_function(lfeis, fib_entry_cmp_for_sort);
7679
7680   vec_foreach(lfeip, lfeis)
7681   {
7682     fib_entry_get_prefix(*lfeip, &pfx);
7683     fib_index = fib_entry_get_fib_index(*lfeip);
7684
7685     fib_table = fib_table_get(fib_index, pfx.fp_proto);
7686
7687     send_mpls_fib_details (am, q,
7688                            fib_table->ft_table_id,
7689                            pfx.fp_label,
7690                            pfx.fp_eos,
7691                            mp->context);
7692   }
7693
7694   vec_free (lfeis);
7695 }
7696
7697 static void
7698 vl_api_mpls_fib_encap_details_t_handler (vl_api_mpls_fib_encap_details_t * mp)
7699 {
7700   clib_warning ("BUG");
7701 }
7702
7703 static void
7704 send_mpls_fib_encap_details (vpe_api_main_t * am,
7705                              unix_shared_memory_queue_t * q,
7706                              show_mpls_fib_t * s, u32 context)
7707 {
7708   vl_api_mpls_fib_encap_details_t *mp;
7709   mpls_main_t *mm = &mpls_main;
7710   mpls_encap_t *e;
7711   int i;
7712   u32 nlabels;
7713
7714   e = pool_elt_at_index (mm->encaps, s->entry_index);
7715   nlabels = vec_len (e->labels);
7716
7717   mp = vl_msg_api_alloc (sizeof (*mp) + nlabels * sizeof (u32));
7718   memset (mp, 0, sizeof (*mp));
7719   mp->_vl_msg_id = ntohs (VL_API_MPLS_FIB_ENCAP_DETAILS);
7720   mp->context = context;
7721
7722   mp->fib_index = htonl (s->fib_index);
7723   mp->entry_index = htonl (s->entry_index);
7724   mp->dest = s->dest;
7725   mp->s_bit = htonl (s->s_bit);
7726
7727   mp->nlabels = htonl (nlabels);
7728
7729   for (i = 0; i < nlabels; i++)
7730     {
7731       mp->labels[i] =
7732         htonl (vnet_mpls_uc_get_label
7733                (clib_host_to_net_u32 (e->labels[i].label_exp_s_ttl)));
7734     }
7735
7736   vl_msg_api_send_shmem (q, (u8 *) & mp);
7737 }
7738
7739 static void
7740 vl_api_mpls_fib_encap_dump_t_handler (vl_api_mpls_fib_encap_dump_t * mp)
7741 {
7742   vpe_api_main_t *am = &vpe_api_main;
7743   unix_shared_memory_queue_t *q;
7744   vlib_main_t *vm = &vlib_global_main;
7745   u64 key;
7746   u32 value;
7747   show_mpls_fib_t *records = 0;
7748   show_mpls_fib_t *s;
7749   mpls_main_t *mm = &mpls_main;
7750   ip4_fib_t *rx_fib;
7751
7752   q = vl_api_client_index_to_input_queue (mp->client_index);
7753   if (q == 0)
7754     return;
7755
7756   /* *INDENT-OFF* */
7757   hash_foreach (key, value, mm->mpls_encap_by_fib_and_dest,
7758   ({
7759     vec_add2 (records, s, 1);
7760     s->fib_index = (u32)(key>>32);
7761     s->dest = (u32)(key & 0xFFFFFFFF);
7762     s->entry_index = (u32) value;
7763   }));
7764   /* *INDENT-ON* */
7765
7766   if (0 == vec_len (records))
7767     {
7768       vlib_cli_output (vm, "MPLS encap table empty");
7769       goto out;
7770     }
7771
7772   /* sort output by dst address within fib */
7773   vec_sort_with_function (records, mpls_dest_cmp);
7774   vec_sort_with_function (records, mpls_fib_index_cmp);
7775   vlib_cli_output (vm, "MPLS encap table");
7776   vlib_cli_output (vm, "%=6s%=16s%=16s", "Table", "Dest address", "Labels");
7777   vec_foreach (s, records)
7778   {
7779     rx_fib = ip4_fib_get (s->fib_index);
7780     vlib_cli_output (vm, "%=6d%=16U%=16U", rx_fib->table_id,
7781                      format_ip4_address, &s->dest, format_mpls_encap_index,
7782                      mm, s->entry_index);
7783     send_mpls_fib_encap_details (am, q, s, mp->context);
7784   }
7785
7786 out:
7787   vec_free (records);
7788 }
7789
7790 static void
7791 vl_api_classify_table_ids_t_handler (vl_api_classify_table_ids_t * mp)
7792 {
7793   unix_shared_memory_queue_t *q;
7794
7795   q = vl_api_client_index_to_input_queue (mp->client_index);
7796   if (q == 0)
7797     return;
7798
7799   vnet_classify_main_t *cm = &vnet_classify_main;
7800   vnet_classify_table_t *t;
7801   u32 *table_ids = 0;
7802   u32 count;
7803
7804   /* *INDENT-OFF* */
7805   pool_foreach (t, cm->tables,
7806   ({
7807     vec_add1 (table_ids, ntohl(t - cm->tables));
7808   }));
7809   /* *INDENT-ON* */
7810   count = vec_len (table_ids);
7811
7812   vl_api_classify_table_ids_reply_t *rmp;
7813   rmp = vl_msg_api_alloc_as_if_client (sizeof (*rmp) + count * sizeof (u32));
7814   rmp->_vl_msg_id = ntohs (VL_API_CLASSIFY_TABLE_IDS_REPLY);
7815   rmp->context = mp->context;
7816   rmp->count = ntohl (count);
7817   clib_memcpy (rmp->ids, table_ids, count * sizeof (u32));
7818   rmp->retval = 0;
7819
7820   vl_msg_api_send_shmem (q, (u8 *) & rmp);
7821
7822   vec_free (table_ids);
7823 }
7824
7825 static void
7826   vl_api_classify_table_by_interface_t_handler
7827   (vl_api_classify_table_by_interface_t * mp)
7828 {
7829   vl_api_classify_table_by_interface_reply_t *rmp;
7830   int rv = 0;
7831
7832   u32 sw_if_index = ntohl (mp->sw_if_index);
7833   u32 *acl = 0;
7834
7835   vec_validate (acl, INPUT_ACL_N_TABLES - 1);
7836   vec_set (acl, ~0);
7837
7838   VALIDATE_SW_IF_INDEX (mp);
7839
7840   input_acl_main_t *am = &input_acl_main;
7841
7842   int if_idx;
7843   u32 type;
7844
7845   for (type = 0; type < INPUT_ACL_N_TABLES; type++)
7846     {
7847       u32 *vec_tbl = am->classify_table_index_by_sw_if_index[type];
7848       if (vec_len (vec_tbl))
7849         {
7850           for (if_idx = 0; if_idx < vec_len (vec_tbl); if_idx++)
7851             {
7852               if (vec_elt (vec_tbl, if_idx) == ~0 || sw_if_index != if_idx)
7853                 {
7854                   continue;
7855                 }
7856               acl[type] = vec_elt (vec_tbl, if_idx);
7857             }
7858         }
7859     }
7860
7861   BAD_SW_IF_INDEX_LABEL;
7862
7863   /* *INDENT-OFF* */
7864   REPLY_MACRO2(VL_API_CLASSIFY_TABLE_BY_INTERFACE_REPLY,
7865   ({
7866     rmp->sw_if_index = ntohl(sw_if_index);
7867     rmp->l2_table_id = ntohl(acl[INPUT_ACL_TABLE_L2]);
7868     rmp->ip4_table_id = ntohl(acl[INPUT_ACL_TABLE_IP4]);
7869     rmp->ip6_table_id = ntohl(acl[INPUT_ACL_TABLE_IP6]);
7870   }));
7871   /* *INDENT-ON* */
7872   vec_free (acl);
7873 }
7874
7875 static void
7876 vl_api_classify_table_info_t_handler (vl_api_classify_table_info_t * mp)
7877 {
7878   unix_shared_memory_queue_t *q;
7879
7880   q = vl_api_client_index_to_input_queue (mp->client_index);
7881   if (q == 0)
7882     return;
7883
7884   vl_api_classify_table_info_reply_t *rmp = 0;
7885
7886   vnet_classify_main_t *cm = &vnet_classify_main;
7887   u32 table_id = ntohl (mp->table_id);
7888   vnet_classify_table_t *t;
7889
7890   /* *INDENT-OFF* */
7891   pool_foreach (t, cm->tables,
7892   ({
7893     if (table_id == t - cm->tables)
7894       {
7895         rmp = vl_msg_api_alloc_as_if_client
7896           (sizeof (*rmp) + t->match_n_vectors * sizeof (u32x4));
7897         rmp->_vl_msg_id = ntohs (VL_API_CLASSIFY_TABLE_INFO_REPLY);
7898         rmp->context = mp->context;
7899         rmp->table_id = ntohl(table_id);
7900         rmp->nbuckets = ntohl(t->nbuckets);
7901         rmp->match_n_vectors = ntohl(t->match_n_vectors);
7902         rmp->skip_n_vectors = ntohl(t->skip_n_vectors);
7903         rmp->active_sessions = ntohl(t->active_elements);
7904         rmp->next_table_index = ntohl(t->next_table_index);
7905         rmp->miss_next_index = ntohl(t->miss_next_index);
7906         rmp->mask_length = ntohl(t->match_n_vectors * sizeof (u32x4));
7907         clib_memcpy(rmp->mask, t->mask, t->match_n_vectors * sizeof(u32x4));
7908         rmp->retval = 0;
7909         break;
7910       }
7911   }));
7912   /* *INDENT-ON* */
7913
7914   if (rmp == 0)
7915     {
7916       rmp = vl_msg_api_alloc (sizeof (*rmp));
7917       rmp->_vl_msg_id = ntohs ((VL_API_CLASSIFY_TABLE_INFO_REPLY));
7918       rmp->context = mp->context;
7919       rmp->retval = ntohl (VNET_API_ERROR_CLASSIFY_TABLE_NOT_FOUND);
7920     }
7921
7922   vl_msg_api_send_shmem (q, (u8 *) & rmp);
7923 }
7924
7925 static void
7926 vl_api_classify_session_details_t_handler (vl_api_classify_session_details_t *
7927                                            mp)
7928 {
7929   clib_warning ("BUG");
7930 }
7931
7932 static void
7933 send_classify_session_details (unix_shared_memory_queue_t * q,
7934                                u32 table_id,
7935                                u32 match_length,
7936                                vnet_classify_entry_t * e, u32 context)
7937 {
7938   vl_api_classify_session_details_t *rmp;
7939
7940   rmp = vl_msg_api_alloc (sizeof (*rmp));
7941   memset (rmp, 0, sizeof (*rmp));
7942   rmp->_vl_msg_id = ntohs (VL_API_CLASSIFY_SESSION_DETAILS);
7943   rmp->context = context;
7944   rmp->table_id = ntohl (table_id);
7945   rmp->hit_next_index = ntohl (e->next_index);
7946   rmp->advance = ntohl (e->advance);
7947   rmp->opaque_index = ntohl (e->opaque_index);
7948   rmp->match_length = ntohl (match_length);
7949   clib_memcpy (rmp->match, e->key, match_length);
7950
7951   vl_msg_api_send_shmem (q, (u8 *) & rmp);
7952 }
7953
7954 static void
7955 vl_api_classify_session_dump_t_handler (vl_api_classify_session_dump_t * mp)
7956 {
7957   vnet_classify_main_t *cm = &vnet_classify_main;
7958   unix_shared_memory_queue_t *q;
7959
7960   u32 table_id = ntohl (mp->table_id);
7961   vnet_classify_table_t *t;
7962
7963   q = vl_api_client_index_to_input_queue (mp->client_index);
7964   if (!q)
7965     return;
7966
7967   /* *INDENT-OFF* */
7968   pool_foreach (t, cm->tables,
7969   ({
7970     if (table_id == t - cm->tables)
7971       {
7972         vnet_classify_bucket_t * b;
7973         vnet_classify_entry_t * v, * save_v;
7974         int i, j, k;
7975
7976         for (i = 0; i < t->nbuckets; i++)
7977           {
7978             b = &t->buckets [i];
7979             if (b->offset == 0)
7980               continue;
7981
7982             save_v = vnet_classify_get_entry (t, b->offset);
7983             for (j = 0; j < (1<<b->log2_pages); j++)
7984               {
7985                 for (k = 0; k < t->entries_per_page; k++)
7986                   {
7987                     v = vnet_classify_entry_at_index
7988                       (t, save_v, j*t->entries_per_page + k);
7989                     if (vnet_classify_entry_is_free (v))
7990                       continue;
7991
7992                     send_classify_session_details
7993                       (q, table_id, t->match_n_vectors * sizeof (u32x4),
7994                        v, mp->context);
7995                   }
7996               }
7997           }
7998         break;
7999       }
8000   }));
8001   /* *INDENT-ON* */
8002 }
8003
8004 static void
8005 vl_api_set_ipfix_exporter_t_handler (vl_api_set_ipfix_exporter_t * mp)
8006 {
8007   vlib_main_t *vm = vlib_get_main ();
8008   flow_report_main_t *frm = &flow_report_main;
8009   vl_api_set_ipfix_exporter_reply_t *rmp;
8010   ip4_address_t collector, src;
8011   u16 collector_port = UDP_DST_PORT_ipfix;
8012   u32 path_mtu;
8013   u32 template_interval;
8014   u8 udp_checksum;
8015   u32 fib_id;
8016   u32 fib_index = ~0;
8017   int rv = 0;
8018
8019   memcpy (collector.data, mp->collector_address, sizeof (collector.data));
8020   collector_port = ntohs (mp->collector_port);
8021   if (collector_port == (u16) ~ 0)
8022     collector_port = UDP_DST_PORT_ipfix;
8023   memcpy (src.data, mp->src_address, sizeof (src.data));
8024   fib_id = ntohl (mp->vrf_id);
8025
8026   ip4_main_t *im = &ip4_main;
8027   if (fib_id == ~0)
8028     {
8029       fib_index = ~0;
8030     }
8031   else
8032     {
8033       uword *p = hash_get (im->fib_index_by_table_id, fib_id);
8034       if (!p)
8035         {
8036           rv = VNET_API_ERROR_NO_SUCH_FIB;
8037           goto out;
8038         }
8039       fib_index = p[0];
8040     }
8041
8042   path_mtu = ntohl (mp->path_mtu);
8043   if (path_mtu == ~0)
8044     path_mtu = 512;             // RFC 7011 section 10.3.3.
8045   template_interval = ntohl (mp->template_interval);
8046   if (template_interval == ~0)
8047     template_interval = 20;
8048   udp_checksum = mp->udp_checksum;
8049
8050   if (collector.as_u32 == 0)
8051     {
8052       rv = VNET_API_ERROR_INVALID_VALUE;
8053       goto out;
8054     }
8055
8056   if (src.as_u32 == 0)
8057     {
8058       rv = VNET_API_ERROR_INVALID_VALUE;
8059       goto out;
8060     }
8061
8062   if (path_mtu > 1450 /* vpp does not support fragmentation */ )
8063     {
8064       rv = VNET_API_ERROR_INVALID_VALUE;
8065       goto out;
8066     }
8067
8068   if (path_mtu < 68)
8069     {
8070       rv = VNET_API_ERROR_INVALID_VALUE;
8071       goto out;
8072     }
8073
8074   /* Reset report streams if we are reconfiguring IP addresses */
8075   if (frm->ipfix_collector.as_u32 != collector.as_u32 ||
8076       frm->src_address.as_u32 != src.as_u32 ||
8077       frm->collector_port != collector_port)
8078     vnet_flow_reports_reset (frm);
8079
8080   frm->ipfix_collector.as_u32 = collector.as_u32;
8081   frm->collector_port = collector_port;
8082   frm->src_address.as_u32 = src.as_u32;
8083   frm->fib_index = fib_index;
8084   frm->path_mtu = path_mtu;
8085   frm->template_interval = template_interval;
8086   frm->udp_checksum = udp_checksum;
8087
8088   /* Turn on the flow reporting process */
8089   vlib_process_signal_event (vm, flow_report_process_node.index, 1, 0);
8090
8091 out:
8092   REPLY_MACRO (VL_API_SET_IPFIX_EXPORTER_REPLY);
8093 }
8094
8095 static void
8096 vl_api_ipfix_exporter_dump_t_handler (vl_api_ipfix_exporter_dump_t * mp)
8097 {
8098   flow_report_main_t *frm = &flow_report_main;
8099   unix_shared_memory_queue_t *q;
8100   vl_api_ipfix_exporter_details_t *rmp;
8101   ip4_main_t *im = &ip4_main;
8102   u32 vrf_id;
8103
8104   q = vl_api_client_index_to_input_queue (mp->client_index);
8105   if (!q)
8106     return;
8107
8108   rmp = vl_msg_api_alloc (sizeof (*rmp));
8109   memset (rmp, 0, sizeof (*rmp));
8110   rmp->_vl_msg_id = ntohs (VL_API_IPFIX_EXPORTER_DETAILS);
8111   rmp->context = mp->context;
8112   memcpy (rmp->collector_address, frm->ipfix_collector.data,
8113           sizeof (frm->ipfix_collector.data));
8114   rmp->collector_port = htons (frm->collector_port);
8115   memcpy (rmp->src_address, frm->src_address.data,
8116           sizeof (frm->src_address.data));
8117   if (frm->fib_index == ~0)
8118     vrf_id = ~0;
8119   else
8120     vrf_id = im->fibs[frm->fib_index].ft_table_id;
8121   rmp->vrf_id = htonl (vrf_id);
8122   rmp->path_mtu = htonl (frm->path_mtu);
8123   rmp->template_interval = htonl (frm->template_interval);
8124   rmp->udp_checksum = (frm->udp_checksum != 0);
8125
8126   vl_msg_api_send_shmem (q, (u8 *) & rmp);
8127 }
8128
8129 static void
8130   vl_api_set_ipfix_classify_stream_t_handler
8131   (vl_api_set_ipfix_classify_stream_t * mp)
8132 {
8133   vl_api_set_ipfix_classify_stream_reply_t *rmp;
8134   flow_report_classify_main_t *fcm = &flow_report_classify_main;
8135   flow_report_main_t *frm = &flow_report_main;
8136   u32 domain_id = 0;
8137   u32 src_port = UDP_DST_PORT_ipfix;
8138   int rv = 0;
8139
8140   domain_id = ntohl (mp->domain_id);
8141   src_port = ntohs (mp->src_port);
8142
8143   if (fcm->src_port != 0 &&
8144       (fcm->domain_id != domain_id || fcm->src_port != (u16) src_port))
8145     {
8146       int rv = vnet_stream_change (frm, fcm->domain_id, fcm->src_port,
8147                                    domain_id, (u16) src_port);
8148       ASSERT (rv == 0);
8149     }
8150
8151   fcm->domain_id = domain_id;
8152   fcm->src_port = (u16) src_port;
8153
8154   REPLY_MACRO (VL_API_SET_IPFIX_CLASSIFY_STREAM_REPLY);
8155 }
8156
8157 static void
8158   vl_api_ipfix_classify_stream_dump_t_handler
8159   (vl_api_ipfix_classify_stream_dump_t * mp)
8160 {
8161   flow_report_classify_main_t *fcm = &flow_report_classify_main;
8162   unix_shared_memory_queue_t *q;
8163   vl_api_ipfix_classify_stream_details_t *rmp;
8164
8165   q = vl_api_client_index_to_input_queue (mp->client_index);
8166   if (!q)
8167     return;
8168
8169   rmp = vl_msg_api_alloc (sizeof (*rmp));
8170   memset (rmp, 0, sizeof (*rmp));
8171   rmp->_vl_msg_id = ntohs (VL_API_IPFIX_CLASSIFY_STREAM_DETAILS);
8172   rmp->context = mp->context;
8173   rmp->domain_id = htonl (fcm->domain_id);
8174   rmp->src_port = htons (fcm->src_port);
8175
8176   vl_msg_api_send_shmem (q, (u8 *) & rmp);
8177 }
8178
8179 static void
8180   vl_api_ipfix_classify_table_add_del_t_handler
8181   (vl_api_ipfix_classify_table_add_del_t * mp)
8182 {
8183   vl_api_ipfix_classify_table_add_del_reply_t *rmp;
8184   flow_report_classify_main_t *fcm = &flow_report_classify_main;
8185   flow_report_main_t *frm = &flow_report_main;
8186   vnet_flow_report_add_del_args_t args;
8187   ipfix_classify_table_t *table;
8188   int is_add;
8189   u32 classify_table_index;
8190   u8 ip_version;
8191   u8 transport_protocol;
8192   int rv = 0;
8193
8194   classify_table_index = ntohl (mp->table_id);
8195   ip_version = mp->ip_version;
8196   transport_protocol = mp->transport_protocol;
8197   is_add = mp->is_add;
8198
8199   if (fcm->src_port == 0)
8200     {
8201       /* call set_ipfix_classify_stream first */
8202       rv = VNET_API_ERROR_UNSPECIFIED;
8203       goto out;
8204     }
8205
8206   memset (&args, 0, sizeof (args));
8207
8208   table = 0;
8209   int i;
8210   for (i = 0; i < vec_len (fcm->tables); i++)
8211     if (ipfix_classify_table_index_valid (i))
8212       if (fcm->tables[i].classify_table_index == classify_table_index)
8213         {
8214           table = &fcm->tables[i];
8215           break;
8216         }
8217
8218   if (is_add)
8219     {
8220       if (table)
8221         {
8222           rv = VNET_API_ERROR_VALUE_EXIST;
8223           goto out;
8224         }
8225       table = ipfix_classify_add_table ();
8226       table->classify_table_index = classify_table_index;
8227     }
8228   else
8229     {
8230       if (!table)
8231         {
8232           rv = VNET_API_ERROR_NO_SUCH_ENTRY;
8233           goto out;
8234         }
8235     }
8236
8237   table->ip_version = ip_version;
8238   table->transport_protocol = transport_protocol;
8239
8240   args.opaque.as_uword = table - fcm->tables;
8241   args.rewrite_callback = ipfix_classify_template_rewrite;
8242   args.flow_data_callback = ipfix_classify_send_flows;
8243   args.is_add = is_add;
8244   args.domain_id = fcm->domain_id;
8245   args.src_port = fcm->src_port;
8246
8247   rv = vnet_flow_report_add_del (frm, &args);
8248
8249   /* If deleting, or add failed */
8250   if (is_add == 0 || (rv && is_add))
8251     ipfix_classify_delete_table (table - fcm->tables);
8252
8253 out:
8254   REPLY_MACRO (VL_API_SET_IPFIX_CLASSIFY_STREAM_REPLY);
8255 }
8256
8257 static void
8258 send_ipfix_classify_table_details (u32 table_index,
8259                                    unix_shared_memory_queue_t * q,
8260                                    u32 context)
8261 {
8262   flow_report_classify_main_t *fcm = &flow_report_classify_main;
8263   vl_api_ipfix_classify_table_details_t *mp;
8264
8265   ipfix_classify_table_t *table = &fcm->tables[table_index];
8266
8267   mp = vl_msg_api_alloc (sizeof (*mp));
8268   memset (mp, 0, sizeof (*mp));
8269   mp->_vl_msg_id = ntohs (VL_API_IPFIX_CLASSIFY_TABLE_DETAILS);
8270   mp->context = context;
8271   mp->table_id = htonl (table->classify_table_index);
8272   mp->ip_version = table->ip_version;
8273   mp->transport_protocol = table->transport_protocol;
8274
8275   vl_msg_api_send_shmem (q, (u8 *) & mp);
8276 }
8277
8278 static void
8279   vl_api_ipfix_classify_table_dump_t_handler
8280   (vl_api_ipfix_classify_table_dump_t * mp)
8281 {
8282   flow_report_classify_main_t *fcm = &flow_report_classify_main;
8283   unix_shared_memory_queue_t *q;
8284   u32 i;
8285
8286   q = vl_api_client_index_to_input_queue (mp->client_index);
8287   if (!q)
8288     return;
8289
8290   for (i = 0; i < vec_len (fcm->tables); i++)
8291     if (ipfix_classify_table_index_valid (i))
8292       send_ipfix_classify_table_details (i, q, mp->context);
8293 }
8294
8295 static void
8296 vl_api_pg_create_interface_t_handler (vl_api_pg_create_interface_t * mp)
8297 {
8298   vl_api_pg_create_interface_reply_t *rmp;
8299   int rv = 0;
8300
8301   pg_main_t *pg = &pg_main;
8302   u32 pg_if_id = pg_interface_add_or_get (pg, ntohl (mp->interface_id));
8303   pg_interface_t *pi = pool_elt_at_index (pg->interfaces, pg_if_id);
8304
8305   /* *INDENT-OFF* */
8306   REPLY_MACRO2(VL_API_PG_CREATE_INTERFACE_REPLY,
8307   ({
8308     rmp->sw_if_index = ntohl(pi->sw_if_index);
8309   }));
8310   /* *INDENT-ON* */
8311 }
8312
8313 static void
8314 vl_api_pg_capture_t_handler (vl_api_pg_capture_t * mp)
8315 {
8316   vl_api_pg_capture_reply_t *rmp;
8317   int rv = 0;
8318
8319   vnet_main_t *vnm = vnet_get_main ();
8320   vnet_interface_main_t *im = &vnm->interface_main;
8321   vnet_hw_interface_t *hi = 0;
8322
8323   u8 *intf_name = format (0, "pg%d", ntohl (mp->interface_id), 0);
8324   u32 hw_if_index = ~0;
8325   uword *p = hash_get_mem (im->hw_interface_by_name, intf_name);
8326   if (p)
8327     hw_if_index = *p;
8328   vec_free (intf_name);
8329
8330   if (hw_if_index != ~0)
8331     {
8332       pg_capture_args_t _a, *a = &_a;
8333
8334       u32 len = ntohl (mp->pcap_name_length);
8335       u8 *pcap_file_name = vec_new (u8, len);
8336       clib_memcpy (pcap_file_name, mp->pcap_file_name, len);
8337
8338       hi = vnet_get_sup_hw_interface (vnm, hw_if_index);
8339       a->hw_if_index = hw_if_index;
8340       a->dev_instance = hi->dev_instance;
8341       a->is_enabled = mp->is_enabled;
8342       a->pcap_file_name = pcap_file_name;
8343       a->count = ntohl (mp->count);
8344
8345       clib_error_t *e = pg_capture (a);
8346       if (e)
8347         {
8348           clib_error_report (e);
8349           rv = VNET_API_ERROR_CANNOT_CREATE_PCAP_FILE;
8350         }
8351
8352       vec_free (pcap_file_name);
8353     }
8354   REPLY_MACRO (VL_API_PG_CAPTURE_REPLY);
8355 }
8356
8357 static void
8358 vl_api_pg_enable_disable_t_handler (vl_api_pg_enable_disable_t * mp)
8359 {
8360   vl_api_pg_enable_disable_reply_t *rmp;
8361   int rv = 0;
8362
8363   pg_main_t *pg = &pg_main;
8364   u32 stream_index = ~0;
8365
8366   int is_enable = mp->is_enabled != 0;
8367   u32 len = ntohl (mp->stream_name_length) - 1;
8368
8369   if (len > 0)
8370     {
8371       u8 *stream_name = vec_new (u8, len);
8372       clib_memcpy (stream_name, mp->stream_name, len);
8373       uword *p = hash_get_mem (pg->stream_index_by_name, stream_name);
8374       if (p)
8375         stream_index = *p;
8376       vec_free (stream_name);
8377     }
8378
8379   pg_enable_disable (stream_index, is_enable);
8380
8381   REPLY_MACRO (VL_API_PG_ENABLE_DISABLE_REPLY);
8382 }
8383
8384 static void
8385   vl_api_ip_source_and_port_range_check_add_del_t_handler
8386   (vl_api_ip_source_and_port_range_check_add_del_t * mp)
8387 {
8388   vl_api_ip_source_and_port_range_check_add_del_reply_t *rmp;
8389   int rv = 0;
8390
8391   u8 is_ipv6 = mp->is_ipv6;
8392   u8 is_add = mp->is_add;
8393   u8 mask_length = mp->mask_length;
8394   ip4_address_t ip4_addr;
8395   ip6_address_t ip6_addr;
8396   u16 *low_ports = 0;
8397   u16 *high_ports = 0;
8398   u32 vrf_id;
8399   u16 tmp_low, tmp_high;
8400   u8 num_ranges;
8401   int i;
8402
8403   // Validate port range
8404   num_ranges = mp->number_of_ranges;
8405   if (num_ranges > 32)
8406     {                           // This is size of array in VPE.API
8407       rv = VNET_API_ERROR_EXCEEDED_NUMBER_OF_RANGES_CAPACITY;
8408       goto reply;
8409     }
8410
8411   vec_reset_length (low_ports);
8412   vec_reset_length (high_ports);
8413
8414   for (i = 0; i < num_ranges; i++)
8415     {
8416       tmp_low = mp->low_ports[i];
8417       tmp_high = mp->high_ports[i];
8418       // If tmp_low <= tmp_high then only need to check tmp_low = 0
8419       // If tmp_low <= tmp_high then only need to check tmp_high > 65535
8420       if (tmp_low > tmp_high || tmp_low == 0 || tmp_high > 65535)
8421         {
8422           rv = VNET_API_ERROR_INVALID_VALUE;
8423           goto reply;
8424         }
8425       vec_add1 (low_ports, tmp_low);
8426       vec_add1 (high_ports, tmp_high + 1);
8427     }
8428
8429   // Validate mask_length
8430   if ((is_ipv6 && mask_length > 128) || (!is_ipv6 && mask_length > 32))
8431     {
8432       rv = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
8433       goto reply;
8434     }
8435
8436   vrf_id = ntohl (mp->vrf_id);
8437
8438   if (vrf_id < 1)
8439     {
8440       rv = VNET_API_ERROR_INVALID_VALUE;
8441       goto reply;
8442     }
8443
8444
8445   if (is_ipv6)
8446     {
8447       clib_memcpy (ip6_addr.as_u8, mp->address, sizeof (ip6_addr.as_u8));
8448       rv = ip6_source_and_port_range_check_add_del (&ip6_addr,
8449                                                     mask_length,
8450                                                     vrf_id,
8451                                                     low_ports,
8452                                                     high_ports, is_add);
8453     }
8454   else
8455     {
8456       clib_memcpy (ip4_addr.data, mp->address, sizeof (ip4_addr));
8457       rv = ip4_source_and_port_range_check_add_del (&ip4_addr,
8458                                                     mask_length,
8459                                                     vrf_id,
8460                                                     low_ports,
8461                                                     high_ports, is_add);
8462     }
8463
8464 reply:
8465   vec_free (low_ports);
8466   vec_free (high_ports);
8467   REPLY_MACRO (VL_API_IP_SOURCE_AND_PORT_RANGE_CHECK_ADD_DEL_REPLY);
8468 }
8469
8470 static void
8471   vl_api_ip_source_and_port_range_check_interface_add_del_t_handler
8472   (vl_api_ip_source_and_port_range_check_interface_add_del_t * mp)
8473 {
8474   vlib_main_t *vm = vlib_get_main ();
8475   vl_api_ip_source_and_port_range_check_interface_add_del_reply_t *rmp;
8476   ip4_main_t *im = &ip4_main;
8477   int rv;
8478   u32 sw_if_index;
8479   u32 fib_index[IP_SOURCE_AND_PORT_RANGE_CHECK_N_PROTOCOLS];
8480   u32 vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_N_PROTOCOLS];
8481   uword *p = 0;
8482   int i;
8483
8484   vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_TCP_OUT] =
8485     ntohl (mp->tcp_out_vrf_id);
8486   vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_UDP_OUT] =
8487     ntohl (mp->udp_out_vrf_id);
8488   vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_TCP_IN] =
8489     ntohl (mp->tcp_in_vrf_id);
8490   vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_UDP_IN] =
8491     ntohl (mp->udp_in_vrf_id);
8492
8493
8494   for (i = 0; i < IP_SOURCE_AND_PORT_RANGE_CHECK_N_PROTOCOLS; i++)
8495     {
8496       if (vrf_id[i] != 0 && vrf_id[i] != ~0)
8497         {
8498           p = hash_get (im->fib_index_by_table_id, vrf_id[i]);
8499
8500           if (p == 0)
8501             {
8502               rv = VNET_API_ERROR_INVALID_VALUE;
8503               goto reply;
8504             }
8505
8506           fib_index[i] = p[0];
8507         }
8508       else
8509         fib_index[i] = ~0;
8510     }
8511   sw_if_index = ntohl (mp->sw_if_index);
8512
8513   VALIDATE_SW_IF_INDEX (mp);
8514
8515   rv =
8516     set_ip_source_and_port_range_check (vm, fib_index, sw_if_index,
8517                                         mp->is_add);
8518
8519   BAD_SW_IF_INDEX_LABEL;
8520 reply:
8521
8522   REPLY_MACRO (VL_API_IP_SOURCE_AND_PORT_RANGE_CHECK_INTERFACE_ADD_DEL_REPLY);
8523 }
8524
8525 static void
8526 vl_api_ipsec_gre_add_del_tunnel_t_handler (vl_api_ipsec_gre_add_del_tunnel_t *
8527                                            mp)
8528 {
8529   vl_api_ipsec_gre_add_del_tunnel_reply_t *rmp;
8530   int rv = 0;
8531   vnet_ipsec_gre_add_del_tunnel_args_t _a, *a = &_a;
8532   u32 sw_if_index = ~0;
8533
8534   /* Check src & dst are different */
8535   if (memcmp (mp->src_address, mp->dst_address, 4) == 0)
8536     {
8537       rv = VNET_API_ERROR_SAME_SRC_DST;
8538       goto out;
8539     }
8540
8541   memset (a, 0, sizeof (*a));
8542
8543   /* ip addresses sent in network byte order */
8544   clib_memcpy (&(a->src), mp->src_address, 4);
8545   clib_memcpy (&(a->dst), mp->dst_address, 4);
8546   a->is_add = mp->is_add;
8547   a->lsa = ntohl (mp->local_sa_id);
8548   a->rsa = ntohl (mp->remote_sa_id);
8549
8550   rv = vnet_ipsec_gre_add_del_tunnel (a, &sw_if_index);
8551
8552 out:
8553     /* *INDENT-OFF* */
8554     REPLY_MACRO2(VL_API_GRE_ADD_DEL_TUNNEL_REPLY,
8555     ({
8556         rmp->sw_if_index = ntohl (sw_if_index);
8557     }));
8558     /* *INDENT-ON* */
8559 }
8560
8561 static void send_ipsec_gre_tunnel_details
8562   (ipsec_gre_tunnel_t * t, unix_shared_memory_queue_t * q, u32 context)
8563 {
8564   vl_api_ipsec_gre_tunnel_details_t *rmp;
8565
8566   rmp = vl_msg_api_alloc (sizeof (*rmp));
8567   memset (rmp, 0, sizeof (*rmp));
8568   rmp->_vl_msg_id = ntohs (VL_API_IPSEC_GRE_TUNNEL_DETAILS);
8569   clib_memcpy (rmp->src_address, &(t->tunnel_src), 4);
8570   clib_memcpy (rmp->dst_address, &(t->tunnel_dst), 4);
8571   rmp->sw_if_index = htonl (t->sw_if_index);
8572   rmp->local_sa_id = htonl (t->local_sa_id);
8573   rmp->remote_sa_id = htonl (t->remote_sa_id);
8574   rmp->context = context;
8575
8576   vl_msg_api_send_shmem (q, (u8 *) & rmp);
8577 }
8578
8579 static void vl_api_ipsec_gre_tunnel_dump_t_handler
8580   (vl_api_ipsec_gre_tunnel_dump_t * mp)
8581 {
8582   unix_shared_memory_queue_t *q;
8583   ipsec_gre_main_t *igm = &ipsec_gre_main;
8584   ipsec_gre_tunnel_t *t;
8585   u32 sw_if_index;
8586
8587   q = vl_api_client_index_to_input_queue (mp->client_index);
8588   if (q == 0)
8589     {
8590       return;
8591     }
8592
8593   sw_if_index = ntohl (mp->sw_if_index);
8594
8595   if (~0 == sw_if_index)
8596     {
8597         /* *INDENT-OFF* */
8598         pool_foreach (t, igm->tunnels,
8599         ({
8600             send_ipsec_gre_tunnel_details(t, q, mp->context);
8601         }));
8602         /* *INDENT-ON* */
8603     }
8604   else
8605     {
8606       if ((sw_if_index >= vec_len (igm->tunnel_index_by_sw_if_index)) ||
8607           (~0 == igm->tunnel_index_by_sw_if_index[sw_if_index]))
8608         {
8609           return;
8610         }
8611       t = &igm->tunnels[igm->tunnel_index_by_sw_if_index[sw_if_index]];
8612       send_ipsec_gre_tunnel_details (t, q, mp->context);
8613     }
8614 }
8615
8616 static void
8617 vl_api_delete_subif_t_handler (vl_api_delete_subif_t * mp)
8618 {
8619   vl_api_delete_subif_reply_t *rmp;
8620   int rv;
8621
8622   rv = vnet_delete_sub_interface (ntohl (mp->sw_if_index));
8623
8624   REPLY_MACRO (VL_API_DELETE_SUBIF_REPLY);
8625 }
8626
8627 static void
8628   vl_api_l2_interface_pbb_tag_rewrite_t_handler
8629   (vl_api_l2_interface_pbb_tag_rewrite_t * mp)
8630 {
8631   vl_api_l2_interface_pbb_tag_rewrite_reply_t *rmp;
8632   vnet_main_t *vnm = vnet_get_main ();
8633   vlib_main_t *vm = vlib_get_main ();
8634   u32 vtr_op;
8635   int rv = 0;
8636
8637   VALIDATE_SW_IF_INDEX (mp);
8638
8639   vtr_op = ntohl (mp->vtr_op);
8640
8641   switch (vtr_op)
8642     {
8643     case L2_VTR_DISABLED:
8644     case L2_VTR_PUSH_2:
8645     case L2_VTR_POP_2:
8646     case L2_VTR_TRANSLATE_2_1:
8647       break;
8648
8649     default:
8650       rv = VNET_API_ERROR_INVALID_VALUE;
8651       goto bad_sw_if_index;
8652     }
8653
8654   rv = l2pbb_configure (vm, vnm, ntohl (mp->sw_if_index), vtr_op,
8655                         mp->b_dmac, mp->b_smac, ntohs (mp->b_vlanid),
8656                         ntohl (mp->i_sid), ntohs (mp->outer_tag));
8657
8658   BAD_SW_IF_INDEX_LABEL;
8659
8660   REPLY_MACRO (VL_API_L2_INTERFACE_PBB_TAG_REWRITE_REPLY);
8661 }
8662
8663 static void
8664 vl_api_punt_t_handler (vl_api_punt_t * mp)
8665 {
8666   vl_api_punt_reply_t *rmp;
8667   vlib_main_t *vm = vlib_get_main ();
8668   int rv = 0;
8669   clib_error_t *error;
8670
8671   error = vnet_punt_add_del (vm, mp->ipv, mp->l4_protocol,
8672                              ntohs (mp->l4_port), mp->is_add);
8673   if (error)
8674     {
8675       rv = -1;
8676       clib_error_report (error);
8677     }
8678
8679   REPLY_MACRO (VL_API_PUNT_REPLY);
8680 }
8681
8682 static void
8683   vl_api_flow_classify_set_interface_t_handler
8684   (vl_api_flow_classify_set_interface_t * mp)
8685 {
8686   vlib_main_t *vm = vlib_get_main ();
8687   vl_api_flow_classify_set_interface_reply_t *rmp;
8688   int rv;
8689   u32 sw_if_index, ip4_table_index, ip6_table_index;
8690
8691   ip4_table_index = ntohl (mp->ip4_table_index);
8692   ip6_table_index = ntohl (mp->ip6_table_index);
8693   sw_if_index = ntohl (mp->sw_if_index);
8694
8695   VALIDATE_SW_IF_INDEX (mp);
8696
8697   rv = vnet_set_flow_classify_intfc (vm, sw_if_index, ip4_table_index,
8698                                      ip6_table_index, mp->is_add);
8699
8700   BAD_SW_IF_INDEX_LABEL;
8701
8702   REPLY_MACRO (VL_API_FLOW_CLASSIFY_SET_INTERFACE_REPLY);
8703 }
8704
8705 static void
8706 send_flow_classify_details (u32 sw_if_index,
8707                             u32 table_index,
8708                             unix_shared_memory_queue_t * q, u32 context)
8709 {
8710   vl_api_flow_classify_details_t *mp;
8711
8712   mp = vl_msg_api_alloc (sizeof (*mp));
8713   memset (mp, 0, sizeof (*mp));
8714   mp->_vl_msg_id = ntohs (VL_API_FLOW_CLASSIFY_DETAILS);
8715   mp->context = context;
8716   mp->sw_if_index = htonl (sw_if_index);
8717   mp->table_index = htonl (table_index);
8718
8719   vl_msg_api_send_shmem (q, (u8 *) & mp);
8720 }
8721
8722 static void
8723 vl_api_flow_classify_dump_t_handler (vl_api_flow_classify_dump_t * mp)
8724 {
8725   unix_shared_memory_queue_t *q;
8726   flow_classify_main_t *pcm = &flow_classify_main;
8727   u32 *vec_tbl;
8728   int i;
8729
8730   q = vl_api_client_index_to_input_queue (mp->client_index);
8731   if (q == 0)
8732     return;
8733
8734   vec_tbl = pcm->classify_table_index_by_sw_if_index[mp->type];
8735
8736   if (vec_len (vec_tbl))
8737     {
8738       for (i = 0; i < vec_len (vec_tbl); i++)
8739         {
8740           if (vec_elt (vec_tbl, i) == ~0)
8741             continue;
8742
8743           send_flow_classify_details (i, vec_elt (vec_tbl, i), q,
8744                                       mp->context);
8745         }
8746     }
8747 }
8748
8749 #define BOUNCE_HANDLER(nn)                                              \
8750 static void vl_api_##nn##_t_handler (                                   \
8751     vl_api_##nn##_t *mp)                                                \
8752 {                                                                       \
8753     vpe_client_registration_t *reg;                                     \
8754     vpe_api_main_t * vam = &vpe_api_main;                               \
8755     unix_shared_memory_queue_t * q;                                     \
8756                                                                         \
8757     /* One registration only... */                                      \
8758     pool_foreach(reg, vam->nn##_registrations,                          \
8759     ({                                                                  \
8760         q = vl_api_client_index_to_input_queue (reg->client_index);     \
8761         if (q) {                                                        \
8762             /*                                                          \
8763              * If the queue is stuffed, turf the msg and complain       \
8764              * It's unlikely that the intended recipient is             \
8765              * alive; avoid deadlock at all costs.                      \
8766              */                                                         \
8767             if (q->cursize == q->maxsize) {                             \
8768                 clib_warning ("ERROR: receiver queue full, drop msg");  \
8769                 vl_msg_api_free (mp);                                   \
8770                 return;                                                 \
8771             }                                                           \
8772             vl_msg_api_send_shmem (q, (u8 *)&mp);                       \
8773             return;                                                     \
8774         }                                                               \
8775     }));                                                                \
8776     vl_msg_api_free (mp);                                               \
8777 }
8778
8779 /*
8780  * vpe_api_hookup
8781  * Add vpe's API message handlers to the table.
8782  * vlib has alread mapped shared memory and
8783  * added the client registration handlers.
8784  * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
8785  */
8786
8787 static clib_error_t *
8788 vpe_api_hookup (vlib_main_t * vm)
8789 {
8790   api_main_t *am = &api_main;
8791
8792 #define _(N,n)                                                  \
8793     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
8794                            vl_api_##n##_t_handler,              \
8795                            vl_noop_handler,                     \
8796                            vl_api_##n##_t_endian,               \
8797                            vl_api_##n##_t_print,                \
8798                            sizeof(vl_api_##n##_t), 1);
8799   foreach_vpe_api_msg;
8800 #undef _
8801
8802   /*
8803    * Manually register the sr tunnel add del msg, so we trace
8804    * enough bytes to capture a typical segment list
8805    */
8806   vl_msg_api_set_handlers (VL_API_SR_TUNNEL_ADD_DEL,
8807                            "sr_tunnel_add_del",
8808                            vl_api_sr_tunnel_add_del_t_handler,
8809                            vl_noop_handler,
8810                            vl_api_sr_tunnel_add_del_t_endian,
8811                            vl_api_sr_tunnel_add_del_t_print, 256, 1);
8812
8813
8814   /*
8815    * Manually register the sr policy add del msg, so we trace
8816    * enough bytes to capture a typical tunnel name list
8817    */
8818   vl_msg_api_set_handlers (VL_API_SR_POLICY_ADD_DEL,
8819                            "sr_policy_add_del",
8820                            vl_api_sr_policy_add_del_t_handler,
8821                            vl_noop_handler,
8822                            vl_api_sr_policy_add_del_t_endian,
8823                            vl_api_sr_policy_add_del_t_print, 256, 1);
8824
8825   /*
8826    * Trace space for 8 MPLS encap labels, classifier mask+match
8827    */
8828   am->api_trace_cfg[VL_API_MPLS_ADD_DEL_ENCAP].size += 8 * sizeof (u32);
8829   am->api_trace_cfg[VL_API_CLASSIFY_ADD_DEL_TABLE].size += 5 * sizeof (u32x4);
8830   am->api_trace_cfg[VL_API_CLASSIFY_ADD_DEL_SESSION].size
8831     += 5 * sizeof (u32x4);
8832   am->api_trace_cfg[VL_API_VXLAN_ADD_DEL_TUNNEL].size += 16 * sizeof (u32);
8833
8834   /*
8835    * Thread-safe API messages
8836    */
8837   am->is_mp_safe[VL_API_IP_ADD_DEL_ROUTE] = 1;
8838   am->is_mp_safe[VL_API_GET_NODE_GRAPH] = 1;
8839
8840   return 0;
8841 }
8842
8843 VLIB_API_INIT_FUNCTION (vpe_api_hookup);
8844
8845 static clib_error_t *
8846 vpe_api_init (vlib_main_t * vm)
8847 {
8848   vpe_api_main_t *am = &vpe_api_main;
8849
8850   am->vlib_main = vm;
8851   am->vnet_main = vnet_get_main ();
8852   am->interface_events_registration_hash = hash_create (0, sizeof (uword));
8853   am->to_netconf_server_registration_hash = hash_create (0, sizeof (uword));
8854   am->from_netconf_server_registration_hash = hash_create (0, sizeof (uword));
8855   am->to_netconf_client_registration_hash = hash_create (0, sizeof (uword));
8856   am->from_netconf_client_registration_hash = hash_create (0, sizeof (uword));
8857   am->oam_events_registration_hash = hash_create (0, sizeof (uword));
8858
8859   vl_api_init (vm);
8860   vl_set_memory_region_name ("/vpe-api");
8861   vl_enable_disable_memory_api (vm, 1 /* enable it */ );
8862
8863   return 0;
8864 }
8865
8866 VLIB_INIT_FUNCTION (vpe_api_init);
8867
8868
8869 static clib_error_t *
8870 api_segment_config (vlib_main_t * vm, unformat_input_t * input)
8871 {
8872   u8 *chroot_path;
8873   u64 baseva, size, pvt_heap_size;
8874   int uid, gid, rv;
8875   const int max_buf_size = 4096;
8876   char *s, *buf;
8877   struct passwd _pw, *pw;
8878   struct group _grp, *grp;
8879   clib_error_t *e;
8880   buf = vec_new (char, 128);
8881   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
8882     {
8883       if (unformat (input, "prefix %s", &chroot_path))
8884         {
8885           vec_add1 (chroot_path, 0);
8886           vl_set_memory_root_path ((char *) chroot_path);
8887         }
8888       else if (unformat (input, "uid %d", &uid))
8889         vl_set_memory_uid (uid);
8890       else if (unformat (input, "gid %d", &gid))
8891         vl_set_memory_gid (gid);
8892       else if (unformat (input, "baseva %llx", &baseva))
8893         vl_set_global_memory_baseva (baseva);
8894       else if (unformat (input, "global-size %lldM", &size))
8895         vl_set_global_memory_size (size * (1ULL << 20));
8896       else if (unformat (input, "global-size %lldG", &size))
8897         vl_set_global_memory_size (size * (1ULL << 30));
8898       else if (unformat (input, "global-size %lld", &size))
8899         vl_set_global_memory_size (size);
8900       else if (unformat (input, "global-pvt-heap-size %lldM", &pvt_heap_size))
8901         vl_set_global_pvt_heap_size (pvt_heap_size * (1ULL << 20));
8902       else if (unformat (input, "global-pvt-heap-size size %lld",
8903                          &pvt_heap_size))
8904         vl_set_global_pvt_heap_size (pvt_heap_size);
8905       else if (unformat (input, "api-pvt-heap-size %lldM", &pvt_heap_size))
8906         vl_set_api_pvt_heap_size (pvt_heap_size * (1ULL << 20));
8907       else if (unformat (input, "api-pvt-heap-size size %lld",
8908                          &pvt_heap_size))
8909         vl_set_api_pvt_heap_size (pvt_heap_size);
8910       else if (unformat (input, "api-size %lldM", &size))
8911         vl_set_api_memory_size (size * (1ULL << 20));
8912       else if (unformat (input, "api-size %lldG", &size))
8913         vl_set_api_memory_size (size * (1ULL << 30));
8914       else if (unformat (input, "api-size %lld", &size))
8915         vl_set_api_memory_size (size);
8916       else if (unformat (input, "uid %s", &s))
8917         {
8918           /* lookup the username */
8919           pw = NULL;
8920           while (((rv =
8921                    getpwnam_r (s, &_pw, buf, vec_len (buf), &pw)) == ERANGE)
8922                  && (vec_len (buf) <= max_buf_size))
8923             {
8924               vec_resize (buf, vec_len (buf) * 2);
8925             }
8926           if (rv < 0)
8927             {
8928               e = clib_error_return_code (0, rv,
8929                                           CLIB_ERROR_ERRNO_VALID |
8930                                           CLIB_ERROR_FATAL,
8931                                           "cannot fetch username %s", s);
8932               vec_free (s);
8933               vec_free (buf);
8934               return e;
8935             }
8936           if (pw == NULL)
8937             {
8938               e =
8939                 clib_error_return_fatal (0, "username %s does not exist", s);
8940               vec_free (s);
8941               vec_free (buf);
8942               return e;
8943             }
8944           vec_free (s);
8945           vl_set_memory_uid (pw->pw_uid);
8946         }
8947       else if (unformat (input, "gid %s", &s))
8948         {
8949           /* lookup the group name */
8950           grp = NULL;
8951           while (((rv =
8952                    getgrnam_r (s, &_grp, buf, vec_len (buf), &grp)) == ERANGE)
8953                  && (vec_len (buf) <= max_buf_size))
8954             {
8955               vec_resize (buf, vec_len (buf) * 2);
8956             }
8957           if (rv != 0)
8958             {
8959               e = clib_error_return_code (0, rv,
8960                                           CLIB_ERROR_ERRNO_VALID |
8961                                           CLIB_ERROR_FATAL,
8962                                           "cannot fetch group %s", s);
8963               vec_free (s);
8964               vec_free (buf);
8965               return e;
8966             }
8967           if (grp == NULL)
8968             {
8969               e = clib_error_return_fatal (0, "group %s does not exist", s);
8970               vec_free (s);
8971               vec_free (buf);
8972               return e;
8973             }
8974           vec_free (s);
8975           vec_free (buf);
8976           vl_set_memory_gid (grp->gr_gid);
8977         }
8978       else
8979         return clib_error_return (0, "unknown input `%U'",
8980                                   format_unformat_error, input);
8981     }
8982   return 0;
8983 }
8984
8985 VLIB_EARLY_CONFIG_FUNCTION (api_segment_config, "api-segment");
8986
8987 void *
8988 get_unformat_vnet_sw_interface (void)
8989 {
8990   return (void *) &unformat_vnet_sw_interface;
8991 }
8992
8993 #undef vl_api_version
8994 #define vl_api_version(n,v) static u32 vpe_api_version = v;
8995 #include <vpp-api/vpe.api.h>
8996 #undef vl_api_version
8997
8998 int
8999 vl_msg_api_version_check (vl_api_memclnt_create_t * mp)
9000 {
9001   if (clib_host_to_net_u32 (mp->api_versions[0]) != vpe_api_version)
9002     {
9003       clib_warning ("vpe API mismatch: 0x%08x instead of 0x%08x",
9004                     clib_host_to_net_u32 (mp->api_versions[0]),
9005                     vpe_api_version);
9006       return -1;
9007     }
9008   return 0;
9009 }
9010
9011 static u8 *
9012 format_arp_event (u8 * s, va_list * args)
9013 {
9014   vl_api_ip4_arp_event_t *event = va_arg (*args, vl_api_ip4_arp_event_t *);
9015
9016   s = format (s, "pid %d: ", event->pid);
9017   if (event->mac_ip)
9018     s = format (s, "bd mac/ip4 binding events");
9019   else
9020     s = format (s, "resolution for %U", format_ip4_address, &event->address);
9021   return s;
9022 }
9023
9024 static u8 *
9025 format_nd_event (u8 * s, va_list * args)
9026 {
9027   vl_api_ip6_nd_event_t *event = va_arg (*args, vl_api_ip6_nd_event_t *);
9028
9029   s = format (s, "pid %d: ", event->pid);
9030   if (event->mac_ip)
9031     s = format (s, "bd mac/ip6 binding events");
9032   else
9033     s = format (s, "resolution for %U", format_ip6_address, event->address);
9034   return s;
9035 }
9036
9037 static clib_error_t *
9038 show_ip_arp_nd_events_fn (vlib_main_t * vm,
9039                           unformat_input_t * input, vlib_cli_command_t * cmd)
9040 {
9041   vpe_api_main_t *am = &vpe_api_main;
9042   vl_api_ip4_arp_event_t *arp_event;
9043   vl_api_ip6_nd_event_t *nd_event;
9044
9045   if ((pool_elts (am->arp_events) == 0) && (pool_elts (am->nd_events) == 0))
9046     {
9047       vlib_cli_output (vm, "No active arp or nd event registrations");
9048       return 0;
9049     }
9050
9051   /* *INDENT-OFF* */
9052   pool_foreach (arp_event, am->arp_events,
9053   ({
9054     vlib_cli_output (vm, "%U", format_arp_event, arp_event);
9055   }));
9056
9057   pool_foreach (nd_event, am->nd_events,
9058   ({
9059     vlib_cli_output (vm, "%U", format_nd_event, nd_event);
9060   }));
9061   /* *INDENT-ON* */
9062
9063   return 0;
9064 }
9065
9066 /* *INDENT-OFF* */
9067 VLIB_CLI_COMMAND (show_ip_arp_nd_events, static) = {
9068   .path = "show arp-nd-event registrations",
9069   .function = show_ip_arp_nd_events_fn,
9070   .short_help = "Show ip4 arp and ip6 nd event registrations",
9071 };
9072 /* *INDENT-ON* */
9073
9074 /*
9075  * fd.io coding-style-patch-verification: ON
9076  *
9077  * Local Variables:
9078  * eval: (c-set-style "gnu")
9079  * End:
9080  */