Support IETF routing Yang models (VPP-503).
[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 #if DPDK > 0 && DPDK_VHOST_USER
4204   rv = dpdk_vhost_user_create_if (
4205 #else
4206   rv = vhost_user_create_if (
4207 #endif
4208                               vnm, vm, (char *) mp->sock_filename,
4209                               mp->is_server, &sw_if_index, (u64) ~ 0,
4210                               mp->renumber, ntohl (mp->custom_dev_instance),
4211                               (mp->use_custom_mac) ? mp->mac_address : NULL);
4212
4213   /* *INDENT-OFF* */
4214   REPLY_MACRO2(VL_API_CREATE_VHOST_USER_IF_REPLY,
4215   ({
4216     rmp->sw_if_index = ntohl (sw_if_index);
4217   }));
4218   /* *INDENT-ON* */
4219 }
4220
4221 static void
4222 vl_api_modify_vhost_user_if_t_handler (vl_api_modify_vhost_user_if_t * mp)
4223 {
4224   int rv = 0;
4225   vl_api_modify_vhost_user_if_reply_t *rmp;
4226   u32 sw_if_index = ntohl (mp->sw_if_index);
4227
4228   vnet_main_t *vnm = vnet_get_main ();
4229   vlib_main_t *vm = vlib_get_main ();
4230
4231 #if DPDK > 0 && DPDK_VHOST_USER
4232   rv = dpdk_vhost_user_modify_if (
4233 #else
4234   rv = vhost_user_modify_if (
4235 #endif
4236                               vnm, vm, (char *) mp->sock_filename,
4237                               mp->is_server, sw_if_index, (u64) ~ 0,
4238                               mp->renumber, ntohl (mp->custom_dev_instance));
4239   REPLY_MACRO (VL_API_MODIFY_VHOST_USER_IF_REPLY);
4240 }
4241
4242 static void
4243 vl_api_delete_vhost_user_if_t_handler (vl_api_delete_vhost_user_if_t * mp)
4244 {
4245   int rv = 0;
4246   vl_api_delete_vhost_user_if_reply_t *rmp;
4247   vpe_api_main_t *vam = &vpe_api_main;
4248   u32 sw_if_index = ntohl (mp->sw_if_index);
4249
4250   vnet_main_t *vnm = vnet_get_main ();
4251   vlib_main_t *vm = vlib_get_main ();
4252
4253 #if DPDK > 0 && DPDK_VHOST_USER
4254   rv = dpdk_vhost_user_delete_if (vnm, vm, sw_if_index);
4255 #else
4256   rv = vhost_user_delete_if (vnm, vm, sw_if_index);
4257 #endif
4258
4259   REPLY_MACRO (VL_API_DELETE_VHOST_USER_IF_REPLY);
4260   if (!rv)
4261     {
4262       unix_shared_memory_queue_t *q =
4263         vl_api_client_index_to_input_queue (mp->client_index);
4264       if (!q)
4265         return;
4266
4267       send_sw_interface_flags_deleted (vam, q, sw_if_index);
4268     }
4269 }
4270
4271 static void
4272   vl_api_sw_interface_vhost_user_details_t_handler
4273   (vl_api_sw_interface_vhost_user_details_t * mp)
4274 {
4275   clib_warning ("BUG");
4276 }
4277
4278 static void
4279 send_sw_interface_vhost_user_details (vpe_api_main_t * am,
4280                                       unix_shared_memory_queue_t * q,
4281                                       vhost_user_intf_details_t * vui,
4282                                       u32 context)
4283 {
4284   vl_api_sw_interface_vhost_user_details_t *mp;
4285
4286   mp = vl_msg_api_alloc (sizeof (*mp));
4287   memset (mp, 0, sizeof (*mp));
4288   mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_VHOST_USER_DETAILS);
4289   mp->sw_if_index = ntohl (vui->sw_if_index);
4290   mp->virtio_net_hdr_sz = ntohl (vui->virtio_net_hdr_sz);
4291   mp->features = clib_net_to_host_u64 (vui->features);
4292   mp->is_server = vui->is_server;
4293   mp->num_regions = ntohl (vui->num_regions);
4294   mp->sock_errno = ntohl (vui->sock_errno);
4295   mp->context = context;
4296
4297   strncpy ((char *) mp->sock_filename,
4298            (char *) vui->sock_filename, ARRAY_LEN (mp->sock_filename) - 1);
4299   strncpy ((char *) mp->interface_name,
4300            (char *) vui->if_name, ARRAY_LEN (mp->interface_name) - 1);
4301
4302   vl_msg_api_send_shmem (q, (u8 *) & mp);
4303 }
4304
4305 static void
4306   vl_api_sw_interface_vhost_user_dump_t_handler
4307   (vl_api_sw_interface_vhost_user_dump_t * mp)
4308 {
4309   int rv = 0;
4310   vpe_api_main_t *am = &vpe_api_main;
4311   vnet_main_t *vnm = vnet_get_main ();
4312   vlib_main_t *vm = vlib_get_main ();
4313   vhost_user_intf_details_t *ifaces = NULL;
4314   vhost_user_intf_details_t *vuid = NULL;
4315   unix_shared_memory_queue_t *q;
4316
4317   q = vl_api_client_index_to_input_queue (mp->client_index);
4318   if (q == 0)
4319     return;
4320
4321 #if DPDK > 0 && DPDK_VHOST_USER
4322   rv = dpdk_vhost_user_dump_ifs (vnm, vm, &ifaces);
4323 #else
4324   rv = vhost_user_dump_ifs (vnm, vm, &ifaces);
4325 #endif
4326   if (rv)
4327     return;
4328
4329   vec_foreach (vuid, ifaces)
4330   {
4331     send_sw_interface_vhost_user_details (am, q, vuid, mp->context);
4332   }
4333   vec_free (ifaces);
4334 }
4335
4336 static void
4337 send_sw_if_l2tpv3_tunnel_details (vpe_api_main_t * am,
4338                                   unix_shared_memory_queue_t * q,
4339                                   l2t_session_t * s,
4340                                   l2t_main_t * lm, u32 context)
4341 {
4342   vl_api_sw_if_l2tpv3_tunnel_details_t *mp;
4343   u8 *if_name = NULL;
4344   vnet_sw_interface_t *si = NULL;
4345
4346   si = vnet_get_hw_sw_interface (lm->vnet_main, s->hw_if_index);
4347
4348   if_name = format (if_name, "%U",
4349                     format_vnet_sw_interface_name, lm->vnet_main, si);
4350
4351   mp = vl_msg_api_alloc (sizeof (*mp));
4352   memset (mp, 0, sizeof (*mp));
4353   mp->_vl_msg_id = ntohs (VL_API_SW_IF_L2TPV3_TUNNEL_DETAILS);
4354   strncpy ((char *) mp->interface_name,
4355            (char *) if_name, ARRAY_LEN (mp->interface_name) - 1);
4356   mp->sw_if_index = ntohl (si->sw_if_index);
4357   mp->local_session_id = s->local_session_id;
4358   mp->remote_session_id = s->remote_session_id;
4359   mp->local_cookie[0] = s->local_cookie[0];
4360   mp->local_cookie[1] = s->local_cookie[1];
4361   mp->remote_cookie = s->remote_cookie;
4362   clib_memcpy (mp->client_address, &s->client_address,
4363                sizeof (s->client_address));
4364   clib_memcpy (mp->our_address, &s->our_address, sizeof (s->our_address));
4365   mp->l2_sublayer_present = s->l2_sublayer_present;
4366   mp->context = context;
4367
4368   vl_msg_api_send_shmem (q, (u8 *) & mp);
4369 }
4370
4371 static void
4372 send_ip_address_details (vpe_api_main_t * am,
4373                          unix_shared_memory_queue_t * q,
4374                          u8 * ip, u16 prefix_length, u8 is_ipv6, u32 context)
4375 {
4376   vl_api_ip_address_details_t *mp;
4377
4378   mp = vl_msg_api_alloc (sizeof (*mp));
4379   memset (mp, 0, sizeof (*mp));
4380   mp->_vl_msg_id = ntohs (VL_API_IP_ADDRESS_DETAILS);
4381
4382   if (is_ipv6)
4383     {
4384       clib_memcpy (&mp->ip, ip, sizeof (mp->ip));
4385     }
4386   else
4387     {
4388       u32 *tp = (u32 *) mp->ip;
4389       *tp = ntohl (*(u32 *) ip);
4390     }
4391   mp->prefix_length = prefix_length;
4392   mp->context = context;
4393
4394   vl_msg_api_send_shmem (q, (u8 *) & mp);
4395 }
4396
4397 static void
4398 vl_api_ip_address_dump_t_handler (vl_api_ip_address_dump_t * mp)
4399 {
4400   vpe_api_main_t *am = &vpe_api_main;
4401   unix_shared_memory_queue_t *q;
4402   ip6_address_t *r6;
4403   ip4_address_t *r4;
4404   ip6_main_t *im6 = &ip6_main;
4405   ip4_main_t *im4 = &ip4_main;
4406   ip_lookup_main_t *lm6 = &im6->lookup_main;
4407   ip_lookup_main_t *lm4 = &im4->lookup_main;
4408   ip_interface_address_t *ia = 0;
4409   u32 sw_if_index = ~0;
4410   int rv __attribute__ ((unused)) = 0;
4411
4412   VALIDATE_SW_IF_INDEX (mp);
4413
4414   sw_if_index = ntohl (mp->sw_if_index);
4415
4416   q = vl_api_client_index_to_input_queue (mp->client_index);
4417   if (q == 0)
4418     {
4419       return;
4420     }
4421
4422   if (mp->is_ipv6)
4423     {
4424       /* *INDENT-OFF* */
4425       foreach_ip_interface_address (lm6, ia, sw_if_index,
4426                                     1 /* honor unnumbered */,
4427       ({
4428         r6 = ip_interface_address_get_address (lm6, ia);
4429         u16 prefix_length = ia->address_length;
4430         send_ip_address_details(am, q, (u8*)r6, prefix_length, 1, mp->context);
4431       }));
4432       /* *INDENT-ON* */
4433     }
4434   else
4435     {
4436       /* *INDENT-OFF* */
4437       foreach_ip_interface_address (lm4, ia, sw_if_index,
4438                                     1 /* honor unnumbered */,
4439       ({
4440         r4 = ip_interface_address_get_address (lm4, ia);
4441         u16 prefix_length = ia->address_length;
4442         send_ip_address_details(am, q, (u8*)r4, prefix_length, 0, mp->context);
4443       }));
4444       /* *INDENT-ON* */
4445     }
4446   BAD_SW_IF_INDEX_LABEL;
4447 }
4448
4449 static void
4450 send_ip_details (vpe_api_main_t * am,
4451                  unix_shared_memory_queue_t * q, u32 sw_if_index, u32 context)
4452 {
4453   vl_api_ip_details_t *mp;
4454
4455   mp = vl_msg_api_alloc (sizeof (*mp));
4456   memset (mp, 0, sizeof (*mp));
4457   mp->_vl_msg_id = ntohs (VL_API_IP_DETAILS);
4458
4459   mp->sw_if_index = ntohl (sw_if_index);
4460   mp->context = context;
4461
4462   vl_msg_api_send_shmem (q, (u8 *) & mp);
4463 }
4464
4465 static void
4466 vl_api_sw_if_l2tpv3_tunnel_dump_t_handler (vl_api_sw_if_l2tpv3_tunnel_dump_t *
4467                                            mp)
4468 {
4469   vpe_api_main_t *am = &vpe_api_main;
4470   l2t_main_t *lm = &l2t_main;
4471   unix_shared_memory_queue_t *q;
4472   l2t_session_t *session;
4473
4474   q = vl_api_client_index_to_input_queue (mp->client_index);
4475   if (q == 0)
4476     return;
4477
4478   /* *INDENT-OFF* */
4479   pool_foreach (session, lm->sessions,
4480   ({
4481     send_sw_if_l2tpv3_tunnel_details (am, q, session, lm, mp->context);
4482   }));
4483   /* *INDENT-ON* */
4484 }
4485
4486
4487 static void
4488 send_sw_interface_tap_details (vpe_api_main_t * am,
4489                                unix_shared_memory_queue_t * q,
4490                                tapcli_interface_details_t * tap_if,
4491                                u32 context)
4492 {
4493   vl_api_sw_interface_tap_details_t *mp;
4494   mp = vl_msg_api_alloc (sizeof (*mp));
4495   memset (mp, 0, sizeof (*mp));
4496   mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_TAP_DETAILS);
4497   mp->sw_if_index = ntohl (tap_if->sw_if_index);
4498   strncpy ((char *) mp->dev_name,
4499            (char *) tap_if->dev_name, ARRAY_LEN (mp->dev_name) - 1);
4500   mp->context = context;
4501
4502   vl_msg_api_send_shmem (q, (u8 *) & mp);
4503 }
4504
4505 static void
4506 vl_api_sw_interface_tap_dump_t_handler (vl_api_sw_interface_tap_dump_t * mp)
4507 {
4508   int rv = 0;
4509   vpe_api_main_t *am = &vpe_api_main;
4510   unix_shared_memory_queue_t *q;
4511   tapcli_interface_details_t *tapifs = NULL;
4512   tapcli_interface_details_t *tap_if = NULL;
4513
4514   q = vl_api_client_index_to_input_queue (mp->client_index);
4515   if (q == 0)
4516     return;
4517
4518   rv = vnet_tap_dump_ifs (&tapifs);
4519   if (rv)
4520     return;
4521
4522   vec_foreach (tap_if, tapifs)
4523   {
4524     send_sw_interface_tap_details (am, q, tap_if, mp->context);
4525   }
4526
4527   vec_free (tapifs);
4528 }
4529
4530 static void
4531 vl_api_ip_dump_t_handler (vl_api_ip_dump_t * mp)
4532 {
4533   vpe_api_main_t *am = &vpe_api_main;
4534   vnet_main_t *vnm = vnet_get_main ();
4535   vlib_main_t *vm = vlib_get_main ();
4536   vnet_interface_main_t *im = &vnm->interface_main;
4537   unix_shared_memory_queue_t *q;
4538   vnet_sw_interface_t *si, *sorted_sis;
4539   u32 sw_if_index = ~0;
4540
4541   q = vl_api_client_index_to_input_queue (mp->client_index);
4542   if (q == 0)
4543     {
4544       return;
4545     }
4546
4547   /* Gather interfaces. */
4548   sorted_sis = vec_new (vnet_sw_interface_t, pool_elts (im->sw_interfaces));
4549   _vec_len (sorted_sis) = 0;
4550   /* *INDENT-OFF* */
4551   pool_foreach (si, im->sw_interfaces,
4552   ({
4553     vec_add1 (sorted_sis, si[0]);
4554   }));
4555   /* *INDENT-ON* */
4556
4557   vec_foreach (si, sorted_sis)
4558   {
4559     if (!(si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
4560       {
4561         if (mp->is_ipv6 && !ip6_interface_enabled (vm, si->sw_if_index))
4562           {
4563             continue;
4564           }
4565         sw_if_index = si->sw_if_index;
4566         send_ip_details (am, q, sw_if_index, mp->context);
4567       }
4568   }
4569 }
4570
4571 static void
4572 vl_api_l2_fib_table_entry_t_handler (vl_api_l2_fib_table_entry_t * mp)
4573 {
4574   clib_warning ("BUG");
4575 }
4576
4577 static void
4578 send_l2fib_table_entry (vpe_api_main_t * am,
4579                         unix_shared_memory_queue_t * q,
4580                         l2fib_entry_key_t * l2fe_key,
4581                         l2fib_entry_result_t * l2fe_res, u32 context)
4582 {
4583   vl_api_l2_fib_table_entry_t *mp;
4584
4585   mp = vl_msg_api_alloc (sizeof (*mp));
4586   memset (mp, 0, sizeof (*mp));
4587   mp->_vl_msg_id = ntohs (VL_API_L2_FIB_TABLE_ENTRY);
4588
4589   mp->bd_id =
4590     ntohl (l2input_main.bd_configs[l2fe_key->fields.bd_index].bd_id);
4591
4592   mp->mac = l2fib_make_key (l2fe_key->fields.mac, 0);
4593   mp->sw_if_index = ntohl (l2fe_res->fields.sw_if_index);
4594   mp->static_mac = l2fe_res->fields.static_mac;
4595   mp->filter_mac = l2fe_res->fields.filter;
4596   mp->bvi_mac = l2fe_res->fields.bvi;
4597   mp->context = context;
4598
4599   vl_msg_api_send_shmem (q, (u8 *) & mp);
4600 }
4601
4602 static void
4603 vl_api_l2_fib_table_dump_t_handler (vl_api_l2_fib_table_dump_t * mp)
4604 {
4605   vpe_api_main_t *am = &vpe_api_main;
4606   bd_main_t *bdm = &bd_main;
4607   l2fib_entry_key_t *l2fe_key = NULL;
4608   l2fib_entry_result_t *l2fe_res = NULL;
4609   u32 ni, bd_id = ntohl (mp->bd_id);
4610   u32 bd_index;
4611   unix_shared_memory_queue_t *q;
4612   uword *p;
4613
4614   q = vl_api_client_index_to_input_queue (mp->client_index);
4615   if (q == 0)
4616     return;
4617
4618   /* see l2fib_table_dump: ~0 means "any" */
4619   if (bd_id == ~0)
4620     bd_index = ~0;
4621   else
4622     {
4623       p = hash_get (bdm->bd_index_by_bd_id, bd_id);
4624       if (p == 0)
4625         return;
4626
4627       bd_index = p[0];
4628     }
4629
4630   l2fib_table_dump (bd_index, &l2fe_key, &l2fe_res);
4631
4632   vec_foreach_index (ni, l2fe_key)
4633   {
4634     send_l2fib_table_entry (am, q, vec_elt_at_index (l2fe_key, ni),
4635                             vec_elt_at_index (l2fe_res, ni), mp->context);
4636   }
4637   vec_free (l2fe_key);
4638   vec_free (l2fe_res);
4639 }
4640
4641 static void
4642 vl_api_show_version_t_handler (vl_api_show_version_t * mp)
4643 {
4644   vl_api_show_version_reply_t *rmp;
4645   int rv = 0;
4646   char *vpe_api_get_build_directory (void);
4647   char *vpe_api_get_version (void);
4648   char *vpe_api_get_build_date (void);
4649
4650   unix_shared_memory_queue_t *q =
4651     vl_api_client_index_to_input_queue (mp->client_index);
4652
4653   if (!q)
4654     return;
4655
4656   /* *INDENT-OFF* */
4657   REPLY_MACRO2(VL_API_SHOW_VERSION_REPLY,
4658   ({
4659     strncpy ((char *) rmp->program, "vpe", ARRAY_LEN(rmp->program)-1);
4660     strncpy ((char *) rmp->build_directory, vpe_api_get_build_directory(),
4661              ARRAY_LEN(rmp->build_directory)-1);
4662     strncpy ((char *) rmp->version, vpe_api_get_version(),
4663              ARRAY_LEN(rmp->version)-1);
4664     strncpy ((char *) rmp->build_date, vpe_api_get_build_date(),
4665              ARRAY_LEN(rmp->build_date)-1);
4666   }));
4667   /* *INDENT-ON* */
4668 }
4669
4670 static void
4671 vl_api_get_node_index_t_handler (vl_api_get_node_index_t * mp)
4672 {
4673   vlib_main_t *vm = vlib_get_main ();
4674   vl_api_get_node_index_reply_t *rmp;
4675   vlib_node_t *n;
4676   int rv = 0;
4677   u32 node_index = ~0;
4678
4679   n = vlib_get_node_by_name (vm, mp->node_name);
4680
4681   if (n == 0)
4682     rv = VNET_API_ERROR_NO_SUCH_NODE;
4683   else
4684     node_index = n->index;
4685
4686   /* *INDENT-OFF* */
4687   REPLY_MACRO2(VL_API_GET_NODE_INDEX_REPLY,
4688   ({
4689     rmp->node_index = ntohl(node_index);
4690   }));
4691   /* *INDENT-ON* */
4692 }
4693
4694 static void
4695 vl_api_get_next_index_t_handler (vl_api_get_next_index_t * mp)
4696 {
4697   vlib_main_t *vm = vlib_get_main ();
4698   vl_api_get_next_index_reply_t *rmp;
4699   vlib_node_t *node, *next_node;
4700   int rv = 0;
4701   u32 next_node_index = ~0, next_index = ~0;
4702   uword *p;
4703
4704   node = vlib_get_node_by_name (vm, mp->node_name);
4705
4706   if (node == 0)
4707     {
4708       rv = VNET_API_ERROR_NO_SUCH_NODE;
4709       goto out;
4710     }
4711
4712   next_node = vlib_get_node_by_name (vm, mp->next_name);
4713
4714   if (next_node == 0)
4715     {
4716       rv = VNET_API_ERROR_NO_SUCH_NODE2;
4717       goto out;
4718     }
4719   else
4720     next_node_index = next_node->index;
4721
4722   p = hash_get (node->next_slot_by_node, next_node_index);
4723
4724   if (p == 0)
4725     {
4726       rv = VNET_API_ERROR_NO_SUCH_ENTRY;
4727       goto out;
4728     }
4729   else
4730     next_index = p[0];
4731
4732 out:
4733   /* *INDENT-OFF* */
4734   REPLY_MACRO2(VL_API_GET_NEXT_INDEX_REPLY,
4735   ({
4736     rmp->next_index = ntohl(next_index);
4737   }));
4738   /* *INDENT-ON* */
4739 }
4740
4741 static void
4742 vl_api_add_node_next_t_handler (vl_api_add_node_next_t * mp)
4743 {
4744   vlib_main_t *vm = vlib_get_main ();
4745   vl_api_add_node_next_reply_t *rmp;
4746   vlib_node_t *n, *next;
4747   int rv = 0;
4748   u32 next_index = ~0;
4749
4750   n = vlib_get_node_by_name (vm, mp->node_name);
4751
4752   if (n == 0)
4753     {
4754       rv = VNET_API_ERROR_NO_SUCH_NODE;
4755       goto out;
4756     }
4757
4758   next = vlib_get_node_by_name (vm, mp->next_name);
4759
4760   if (next == 0)
4761     rv = VNET_API_ERROR_NO_SUCH_NODE2;
4762   else
4763     next_index = vlib_node_add_next (vm, n->index, next->index);
4764
4765 out:
4766   /* *INDENT-OFF* */
4767   REPLY_MACRO2(VL_API_GET_NODE_INDEX_REPLY,
4768   ({
4769     rmp->next_index = ntohl(next_index);
4770   }));
4771   /* *INDENT-ON* */
4772 }
4773
4774 static void vl_api_l2tpv3_create_tunnel_t_handler
4775   (vl_api_l2tpv3_create_tunnel_t * mp)
4776 {
4777   vl_api_l2tpv3_create_tunnel_reply_t *rmp;
4778   l2t_main_t *lm = &l2t_main;
4779   u32 sw_if_index = (u32) ~ 0;
4780   int rv;
4781
4782   if (mp->is_ipv6 != 1)
4783     {
4784       rv = VNET_API_ERROR_UNIMPLEMENTED;
4785       goto out;
4786     }
4787
4788   u32 encap_fib_index;
4789
4790   if (mp->encap_vrf_id != ~0)
4791     {
4792       uword *p;
4793       ip6_main_t *im = &ip6_main;
4794       if (!
4795           (p =
4796            hash_get (im->fib_index_by_table_id, ntohl (mp->encap_vrf_id))))
4797         {
4798           rv = VNET_API_ERROR_NO_SUCH_FIB;
4799           goto out;
4800         }
4801       encap_fib_index = p[0];
4802     }
4803   else
4804     {
4805       encap_fib_index = ~0;
4806     }
4807
4808   rv = create_l2tpv3_ipv6_tunnel (lm,
4809                                   (ip6_address_t *) mp->client_address,
4810                                   (ip6_address_t *) mp->our_address,
4811                                   ntohl (mp->local_session_id),
4812                                   ntohl (mp->remote_session_id),
4813                                   clib_net_to_host_u64 (mp->local_cookie),
4814                                   clib_net_to_host_u64 (mp->remote_cookie),
4815                                   mp->l2_sublayer_present,
4816                                   encap_fib_index, &sw_if_index);
4817
4818 out:
4819   /* *INDENT-OFF* */
4820   REPLY_MACRO2(VL_API_L2TPV3_CREATE_TUNNEL_REPLY,
4821   ({
4822     rmp->sw_if_index = ntohl (sw_if_index);
4823   }));
4824   /* *INDENT-ON* */
4825 }
4826
4827 static void vl_api_l2tpv3_set_tunnel_cookies_t_handler
4828   (vl_api_l2tpv3_set_tunnel_cookies_t * mp)
4829 {
4830   vl_api_l2tpv3_set_tunnel_cookies_reply_t *rmp;
4831   l2t_main_t *lm = &l2t_main;
4832   int rv;
4833
4834   VALIDATE_SW_IF_INDEX (mp);
4835
4836   rv = l2tpv3_set_tunnel_cookies (lm, ntohl (mp->sw_if_index),
4837                                   clib_net_to_host_u64 (mp->new_local_cookie),
4838                                   clib_net_to_host_u64
4839                                   (mp->new_remote_cookie));
4840
4841   BAD_SW_IF_INDEX_LABEL;
4842
4843   REPLY_MACRO (VL_API_L2TPV3_SET_TUNNEL_COOKIES_REPLY);
4844 }
4845
4846 static void vl_api_l2tpv3_interface_enable_disable_t_handler
4847   (vl_api_l2tpv3_interface_enable_disable_t * mp)
4848 {
4849   int rv;
4850   vnet_main_t *vnm = vnet_get_main ();
4851   vl_api_l2tpv3_interface_enable_disable_reply_t *rmp;
4852
4853   VALIDATE_SW_IF_INDEX (mp);
4854
4855   rv = l2tpv3_interface_enable_disable
4856     (vnm, ntohl (mp->sw_if_index), mp->enable_disable);
4857
4858   BAD_SW_IF_INDEX_LABEL;
4859
4860   REPLY_MACRO (VL_API_L2TPV3_INTERFACE_ENABLE_DISABLE_REPLY);
4861 }
4862
4863 static void vl_api_l2tpv3_set_lookup_key_t_handler
4864   (vl_api_l2tpv3_set_lookup_key_t * mp)
4865 {
4866   int rv = 0;
4867   l2t_main_t *lm = &l2t_main;
4868   vl_api_l2tpv3_set_lookup_key_reply_t *rmp;
4869
4870   if (mp->key > L2T_LOOKUP_SESSION_ID)
4871     {
4872       rv = VNET_API_ERROR_INVALID_VALUE;
4873       goto out;
4874     }
4875
4876   lm->lookup_type = mp->key;
4877
4878 out:
4879   REPLY_MACRO (VL_API_L2TPV3_SET_LOOKUP_KEY_REPLY);
4880 }
4881
4882 static void vl_api_vxlan_add_del_tunnel_t_handler
4883   (vl_api_vxlan_add_del_tunnel_t * mp)
4884 {
4885   vl_api_vxlan_add_del_tunnel_reply_t *rmp;
4886   int rv = 0;
4887   vnet_vxlan_add_del_tunnel_args_t _a, *a = &_a;
4888   u32 encap_fib_index;
4889   uword *p;
4890   ip4_main_t *im = &ip4_main;
4891   u32 sw_if_index = ~0;
4892
4893   p = hash_get (im->fib_index_by_table_id, ntohl (mp->encap_vrf_id));
4894   if (!p)
4895     {
4896       rv = VNET_API_ERROR_NO_SUCH_FIB;
4897       goto out;
4898     }
4899   encap_fib_index = p[0];
4900
4901   /* Check src & dst are different */
4902   if ((mp->is_ipv6 && memcmp (mp->src_address, mp->dst_address, 16) == 0) ||
4903       (!mp->is_ipv6 && memcmp (mp->src_address, mp->dst_address, 4) == 0))
4904     {
4905       rv = VNET_API_ERROR_SAME_SRC_DST;
4906       goto out;
4907     }
4908   memset (a, 0, sizeof (*a));
4909
4910   a->is_add = mp->is_add;
4911   a->is_ip6 = mp->is_ipv6;
4912
4913   /* ip addresses sent in network byte order */
4914   if (a->is_ip6)
4915     {
4916       memcpy (&(a->src.ip6), mp->src_address, 16);
4917       memcpy (&(a->dst.ip6), mp->dst_address, 16);
4918     }
4919   else
4920     {
4921       memcpy (&(a->src.ip4), mp->src_address, 4);
4922       memcpy (&(a->dst.ip4), mp->dst_address, 4);
4923     }
4924
4925   a->encap_fib_index = encap_fib_index;
4926   a->decap_next_index = ntohl (mp->decap_next_index);
4927   a->vni = ntohl (mp->vni);
4928   rv = vnet_vxlan_add_del_tunnel (a, &sw_if_index);
4929
4930 out:
4931   /* *INDENT-OFF* */
4932   REPLY_MACRO2(VL_API_VXLAN_ADD_DEL_TUNNEL_REPLY,
4933   ({
4934     rmp->sw_if_index = ntohl (sw_if_index);
4935   }));
4936   /* *INDENT-ON* */
4937 }
4938
4939 static void send_vxlan_tunnel_details
4940   (vxlan_tunnel_t * t, unix_shared_memory_queue_t * q, u32 context)
4941 {
4942   vl_api_vxlan_tunnel_details_t *rmp;
4943   ip4_main_t *im4 = &ip4_main;
4944   ip6_main_t *im6 = &ip6_main;
4945   u8 is_ipv6 = !(t->flags & VXLAN_TUNNEL_IS_IPV4);
4946
4947   rmp = vl_msg_api_alloc (sizeof (*rmp));
4948   memset (rmp, 0, sizeof (*rmp));
4949   rmp->_vl_msg_id = ntohs (VL_API_VXLAN_TUNNEL_DETAILS);
4950   if (is_ipv6)
4951     {
4952       memcpy (rmp->src_address, &(t->src.ip6), 16);
4953       memcpy (rmp->dst_address, &(t->dst.ip6), 16);
4954       rmp->encap_vrf_id = htonl (im6->fibs[t->encap_fib_index].ft_table_id);
4955     }
4956   else
4957     {
4958       memcpy (rmp->src_address, &(t->src.ip4), 4);
4959       memcpy (rmp->dst_address, &(t->dst.ip4), 4);
4960       rmp->encap_vrf_id = htonl (im4->fibs[t->encap_fib_index].ft_table_id);
4961     }
4962   rmp->vni = htonl (t->vni);
4963   rmp->decap_next_index = htonl (t->decap_next_index);
4964   rmp->sw_if_index = htonl (t->sw_if_index);
4965   rmp->is_ipv6 = is_ipv6;
4966   rmp->context = context;
4967
4968   vl_msg_api_send_shmem (q, (u8 *) & rmp);
4969 }
4970
4971 static void vl_api_vxlan_tunnel_dump_t_handler
4972   (vl_api_vxlan_tunnel_dump_t * mp)
4973 {
4974   unix_shared_memory_queue_t *q;
4975   vxlan_main_t *vxm = &vxlan_main;
4976   vxlan_tunnel_t *t;
4977   u32 sw_if_index;
4978
4979   q = vl_api_client_index_to_input_queue (mp->client_index);
4980   if (q == 0)
4981     {
4982       return;
4983     }
4984
4985   sw_if_index = ntohl (mp->sw_if_index);
4986
4987   if (~0 == sw_if_index)
4988     {
4989       /* *INDENT-OFF* */
4990       pool_foreach (t, vxm->tunnels,
4991       ({
4992         send_vxlan_tunnel_details(t, q, mp->context);
4993       }));
4994       /* *INDENT-ON* */
4995     }
4996   else
4997     {
4998       if ((sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index)) ||
4999           (~0 == vxm->tunnel_index_by_sw_if_index[sw_if_index]))
5000         {
5001           return;
5002         }
5003       t = &vxm->tunnels[vxm->tunnel_index_by_sw_if_index[sw_if_index]];
5004       send_vxlan_tunnel_details (t, q, mp->context);
5005     }
5006 }
5007
5008 static void vl_api_gre_add_del_tunnel_t_handler
5009   (vl_api_gre_add_del_tunnel_t * mp)
5010 {
5011   vl_api_gre_add_del_tunnel_reply_t *rmp;
5012   int rv = 0;
5013   vnet_gre_add_del_tunnel_args_t _a, *a = &_a;
5014   u32 outer_fib_id;
5015   uword *p;
5016   ip4_main_t *im = &ip4_main;
5017   u32 sw_if_index = ~0;
5018
5019   p = hash_get (im->fib_index_by_table_id, ntohl (mp->outer_fib_id));
5020   if (!p)
5021     {
5022       rv = VNET_API_ERROR_NO_SUCH_FIB;
5023       goto out;
5024     }
5025   outer_fib_id = p[0];
5026
5027   /* Check src & dst are different */
5028   if ((mp->is_ipv6 && memcmp (mp->src_address, mp->dst_address, 16) == 0) ||
5029       (!mp->is_ipv6 && memcmp (mp->src_address, mp->dst_address, 4) == 0))
5030     {
5031       rv = VNET_API_ERROR_SAME_SRC_DST;
5032       goto out;
5033     }
5034   memset (a, 0, sizeof (*a));
5035
5036   a->is_add = mp->is_add;
5037   a->teb = mp->teb;
5038
5039   /* ip addresses sent in network byte order */
5040   clib_memcpy (&(a->src), mp->src_address, 4);
5041   clib_memcpy (&(a->dst), mp->dst_address, 4);
5042
5043   a->outer_fib_id = outer_fib_id;
5044   rv = vnet_gre_add_del_tunnel (a, &sw_if_index);
5045
5046 out:
5047   /* *INDENT-OFF* */
5048   REPLY_MACRO2(VL_API_GRE_ADD_DEL_TUNNEL_REPLY,
5049   ({
5050     rmp->sw_if_index = ntohl (sw_if_index);
5051   }));
5052   /* *INDENT-ON* */
5053 }
5054
5055 static void send_gre_tunnel_details
5056   (gre_tunnel_t * t, unix_shared_memory_queue_t * q, u32 context)
5057 {
5058   vl_api_gre_tunnel_details_t *rmp;
5059   ip4_main_t *im = &ip4_main;
5060
5061   rmp = vl_msg_api_alloc (sizeof (*rmp));
5062   memset (rmp, 0, sizeof (*rmp));
5063   rmp->_vl_msg_id = ntohs (VL_API_GRE_TUNNEL_DETAILS);
5064   clib_memcpy (rmp->src_address, &(t->tunnel_src), 4);
5065   clib_memcpy (rmp->dst_address, &(t->tunnel_dst), 4);
5066   rmp->outer_fib_id = htonl (im->fibs[t->outer_fib_index].ft_table_id);
5067   rmp->teb = t->teb;
5068   rmp->sw_if_index = htonl (t->sw_if_index);
5069   rmp->context = context;
5070
5071   vl_msg_api_send_shmem (q, (u8 *) & rmp);
5072 }
5073
5074 static void
5075 vl_api_gre_tunnel_dump_t_handler (vl_api_gre_tunnel_dump_t * mp)
5076 {
5077   unix_shared_memory_queue_t *q;
5078   gre_main_t *gm = &gre_main;
5079   gre_tunnel_t *t;
5080   u32 sw_if_index;
5081
5082   q = vl_api_client_index_to_input_queue (mp->client_index);
5083   if (q == 0)
5084     {
5085       return;
5086     }
5087
5088   sw_if_index = ntohl (mp->sw_if_index);
5089
5090   if (~0 == sw_if_index)
5091     {
5092       /* *INDENT-OFF* */
5093       pool_foreach (t, gm->tunnels,
5094       ({
5095         send_gre_tunnel_details(t, q, mp->context);
5096       }));
5097       /* *INDENT-ON* */
5098     }
5099   else
5100     {
5101       if ((sw_if_index >= vec_len (gm->tunnel_index_by_sw_if_index)) ||
5102           (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index]))
5103         {
5104           return;
5105         }
5106       t = &gm->tunnels[gm->tunnel_index_by_sw_if_index[sw_if_index]];
5107       send_gre_tunnel_details (t, q, mp->context);
5108     }
5109 }
5110
5111 static void
5112 vl_api_l2_patch_add_del_t_handler (vl_api_l2_patch_add_del_t * mp)
5113 {
5114   extern int vnet_l2_patch_add_del (u32 rx_sw_if_index, u32 tx_sw_if_index,
5115                                     int is_add);
5116   vl_api_l2_patch_add_del_reply_t *rmp;
5117   int vnet_l2_patch_add_del (u32 rx_sw_if_index, u32 tx_sw_if_index,
5118                              int is_add);
5119   int rv = 0;
5120
5121   VALIDATE_RX_SW_IF_INDEX (mp);
5122   VALIDATE_TX_SW_IF_INDEX (mp);
5123
5124   rv = vnet_l2_patch_add_del (ntohl (mp->rx_sw_if_index),
5125                               ntohl (mp->tx_sw_if_index),
5126                               (int) (mp->is_add != 0));
5127
5128   BAD_RX_SW_IF_INDEX_LABEL;
5129   BAD_TX_SW_IF_INDEX_LABEL;
5130
5131   REPLY_MACRO (VL_API_L2_PATCH_ADD_DEL_REPLY);
5132 }
5133
5134 static void
5135   vl_api_vxlan_gpe_add_del_tunnel_t_handler
5136   (vl_api_vxlan_gpe_add_del_tunnel_t * mp)
5137 {
5138   vl_api_vxlan_gpe_add_del_tunnel_reply_t *rmp;
5139   int rv = 0;
5140   vnet_vxlan_gpe_add_del_tunnel_args_t _a, *a = &_a;
5141   u32 encap_fib_index, decap_fib_index;
5142   u8 protocol;
5143   uword *p;
5144   ip4_main_t *im = &ip4_main;
5145   u32 sw_if_index = ~0;
5146
5147
5148   p = hash_get (im->fib_index_by_table_id, ntohl (mp->encap_vrf_id));
5149   if (!p)
5150     {
5151       rv = VNET_API_ERROR_NO_SUCH_FIB;
5152       goto out;
5153     }
5154   encap_fib_index = p[0];
5155
5156   protocol = mp->protocol;
5157
5158   /* Interpret decap_vrf_id as an opaque if sending to other-than-ip4-input */
5159   if (protocol == VXLAN_GPE_INPUT_NEXT_IP4_INPUT)
5160     {
5161       p = hash_get (im->fib_index_by_table_id, ntohl (mp->decap_vrf_id));
5162       if (!p)
5163         {
5164           rv = VNET_API_ERROR_NO_SUCH_INNER_FIB;
5165           goto out;
5166         }
5167       decap_fib_index = p[0];
5168     }
5169   else
5170     {
5171       decap_fib_index = ntohl (mp->decap_vrf_id);
5172     }
5173
5174   /* Check src & dst are different */
5175   if ((mp->is_ipv6 && memcmp (mp->local, mp->remote, 16) == 0) ||
5176       (!mp->is_ipv6 && memcmp (mp->local, mp->remote, 4) == 0))
5177     {
5178       rv = VNET_API_ERROR_SAME_SRC_DST;
5179       goto out;
5180     }
5181   memset (a, 0, sizeof (*a));
5182
5183   a->is_add = mp->is_add;
5184   a->is_ip6 = mp->is_ipv6;
5185   /* ip addresses sent in network byte order */
5186   if (a->is_ip6)
5187     {
5188       clib_memcpy (&(a->local.ip6), mp->local, 16);
5189       clib_memcpy (&(a->remote.ip6), mp->remote, 16);
5190     }
5191   else
5192     {
5193       clib_memcpy (&(a->local.ip4), mp->local, 4);
5194       clib_memcpy (&(a->remote.ip4), mp->remote, 4);
5195     }
5196   a->encap_fib_index = encap_fib_index;
5197   a->decap_fib_index = decap_fib_index;
5198   a->protocol = protocol;
5199   a->vni = ntohl (mp->vni);
5200   rv = vnet_vxlan_gpe_add_del_tunnel (a, &sw_if_index);
5201
5202 out:
5203   /* *INDENT-OFF* */
5204   REPLY_MACRO2(VL_API_VXLAN_GPE_ADD_DEL_TUNNEL_REPLY,
5205   ({
5206     rmp->sw_if_index = ntohl (sw_if_index);
5207   }));
5208   /* *INDENT-ON* */
5209 }
5210
5211 static void send_vxlan_gpe_tunnel_details
5212   (vxlan_gpe_tunnel_t * t, unix_shared_memory_queue_t * q, u32 context)
5213 {
5214   vl_api_vxlan_gpe_tunnel_details_t *rmp;
5215   ip4_main_t *im4 = &ip4_main;
5216   ip6_main_t *im6 = &ip6_main;
5217   u8 is_ipv6 = !(t->flags & VXLAN_GPE_TUNNEL_IS_IPV4);
5218
5219   rmp = vl_msg_api_alloc (sizeof (*rmp));
5220   memset (rmp, 0, sizeof (*rmp));
5221   rmp->_vl_msg_id = ntohs (VL_API_VXLAN_GPE_TUNNEL_DETAILS);
5222   if (is_ipv6)
5223     {
5224       memcpy (rmp->local, &(t->local.ip6), 16);
5225       memcpy (rmp->remote, &(t->remote.ip6), 16);
5226       rmp->encap_vrf_id = htonl (im6->fibs[t->encap_fib_index].ft_table_id);
5227       rmp->decap_vrf_id = htonl (im6->fibs[t->decap_fib_index].ft_table_id);
5228     }
5229   else
5230     {
5231       memcpy (rmp->local, &(t->local.ip4), 4);
5232       memcpy (rmp->remote, &(t->remote.ip4), 4);
5233       rmp->encap_vrf_id = htonl (im4->fibs[t->encap_fib_index].ft_table_id);
5234       rmp->decap_vrf_id = htonl (im4->fibs[t->decap_fib_index].ft_table_id);
5235     }
5236   rmp->vni = htonl (t->vni);
5237   rmp->protocol = t->protocol;
5238   rmp->sw_if_index = htonl (t->sw_if_index);
5239   rmp->is_ipv6 = is_ipv6;
5240   rmp->context = context;
5241
5242   vl_msg_api_send_shmem (q, (u8 *) & rmp);
5243 }
5244
5245 static void vl_api_vxlan_gpe_tunnel_dump_t_handler
5246   (vl_api_vxlan_gpe_tunnel_dump_t * mp)
5247 {
5248   unix_shared_memory_queue_t *q;
5249   vxlan_gpe_main_t *vgm = &vxlan_gpe_main;
5250   vxlan_gpe_tunnel_t *t;
5251   u32 sw_if_index;
5252
5253   q = vl_api_client_index_to_input_queue (mp->client_index);
5254   if (q == 0)
5255     {
5256       return;
5257     }
5258
5259   sw_if_index = ntohl (mp->sw_if_index);
5260
5261   if (~0 == sw_if_index)
5262     {
5263       /* *INDENT-OFF* */
5264       pool_foreach (t, vgm->tunnels,
5265       ({
5266         send_vxlan_gpe_tunnel_details(t, q, mp->context);
5267       }));
5268       /* *INDENT-ON* */
5269     }
5270   else
5271     {
5272       if ((sw_if_index >= vec_len (vgm->tunnel_index_by_sw_if_index)) ||
5273           (~0 == vgm->tunnel_index_by_sw_if_index[sw_if_index]))
5274         {
5275           return;
5276         }
5277       t = &vgm->tunnels[vgm->tunnel_index_by_sw_if_index[sw_if_index]];
5278       send_vxlan_gpe_tunnel_details (t, q, mp->context);
5279     }
5280 }
5281
5282 /** Used for transferring locators via VPP API */
5283 /* *INDENT-OFF* */
5284 typedef CLIB_PACKED (struct {
5285   u32 sw_if_index; /**< locator sw_if_index */
5286   u8 priority; /**< locator priority */
5287   u8 weight; /**< locator weight */
5288 }) ls_locator_t;
5289 /* *INDENT-ON* */
5290
5291 static void
5292 vl_api_lisp_add_del_locator_set_t_handler (vl_api_lisp_add_del_locator_set_t *
5293                                            mp)
5294 {
5295   vl_api_lisp_add_del_locator_set_reply_t *rmp;
5296   int rv = 0;
5297   vnet_lisp_add_del_locator_set_args_t _a, *a = &_a;
5298   locator_t locator;
5299   ls_locator_t *ls_loc;
5300   u32 ls_index = ~0, locator_num;
5301   u8 *locator_name = NULL;
5302   int i;
5303
5304   memset (a, 0, sizeof (a[0]));
5305
5306   locator_name = format (0, "%s", mp->locator_set_name);
5307
5308   a->name = locator_name;
5309   a->is_add = mp->is_add;
5310   a->local = 1;
5311   locator_num = clib_net_to_host_u32 (mp->locator_num);
5312
5313   memset (&locator, 0, sizeof (locator));
5314   for (i = 0; i < locator_num; i++)
5315     {
5316       ls_loc = &((ls_locator_t *) mp->locators)[i];
5317       VALIDATE_SW_IF_INDEX (ls_loc);
5318
5319       locator.sw_if_index = htonl (ls_loc->sw_if_index);
5320       locator.priority = ls_loc->priority;
5321       locator.weight = ls_loc->weight;
5322       locator.local = 1;
5323       vec_add1 (a->locators, locator);
5324     }
5325
5326   rv = vnet_lisp_add_del_locator_set (a, &ls_index);
5327
5328   BAD_SW_IF_INDEX_LABEL;
5329
5330   vec_free (locator_name);
5331   vec_free (a->locators);
5332
5333   /* *INDENT-OFF* */
5334   REPLY_MACRO2 (VL_API_LISP_ADD_DEL_LOCATOR_SET_REPLY,
5335   ({
5336     rmp->ls_index = clib_host_to_net_u32 (ls_index);
5337   }));
5338   /* *INDENT-ON* */
5339 }
5340
5341 static void
5342 vl_api_lisp_add_del_locator_t_handler (vl_api_lisp_add_del_locator_t * mp)
5343 {
5344   vl_api_lisp_add_del_locator_reply_t *rmp;
5345   int rv = 0;
5346   locator_t locator, *locators = NULL;
5347   vnet_lisp_add_del_locator_set_args_t _a, *a = &_a;
5348   u32 ls_index = ~0;
5349   u8 *locator_name = NULL;
5350
5351   memset (&locator, 0, sizeof (locator));
5352   memset (a, 0, sizeof (a[0]));
5353
5354   locator.sw_if_index = ntohl (mp->sw_if_index);
5355   locator.priority = mp->priority;
5356   locator.weight = mp->weight;
5357   locator.local = 1;
5358   vec_add1 (locators, locator);
5359
5360   locator_name = format (0, "%s", mp->locator_set_name);
5361
5362   a->name = locator_name;
5363   a->locators = locators;
5364   a->is_add = mp->is_add;
5365   a->local = 1;
5366
5367   rv = vnet_lisp_add_del_locator (a, NULL, &ls_index);
5368
5369   vec_free (locators);
5370   vec_free (locator_name);
5371
5372   REPLY_MACRO (VL_API_LISP_ADD_DEL_LOCATOR_REPLY);
5373 }
5374
5375 static int
5376 unformat_lisp_eid_api (gid_address_t * dst, u32 vni, u8 type, void *src,
5377                        u8 len)
5378 {
5379   switch (type)
5380     {
5381     case 0:                     /* ipv4 */
5382       gid_address_type (dst) = GID_ADDR_IP_PREFIX;
5383       gid_address_ip_set (dst, src, IP4);
5384       gid_address_ippref_len (dst) = len;
5385       ip_prefix_normalize (&gid_address_ippref (dst));
5386       break;
5387     case 1:                     /* ipv6 */
5388       gid_address_type (dst) = GID_ADDR_IP_PREFIX;
5389       gid_address_ip_set (dst, src, IP6);
5390       gid_address_ippref_len (dst) = len;
5391       ip_prefix_normalize (&gid_address_ippref (dst));
5392       break;
5393     case 2:                     /* l2 mac */
5394       gid_address_type (dst) = GID_ADDR_MAC;
5395       clib_memcpy (&gid_address_mac (dst), src, 6);
5396       break;
5397     default:
5398       /* unknown type */
5399       return VNET_API_ERROR_INVALID_VALUE;
5400     }
5401
5402   gid_address_vni (dst) = vni;
5403
5404   return 0;
5405 }
5406
5407 static void
5408 vl_api_lisp_add_del_local_eid_t_handler (vl_api_lisp_add_del_local_eid_t * mp)
5409 {
5410   vl_api_lisp_add_del_local_eid_reply_t *rmp;
5411   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
5412   int rv = 0;
5413   gid_address_t _eid, *eid = &_eid;
5414   uword *p = NULL;
5415   u32 locator_set_index = ~0, map_index = ~0;
5416   vnet_lisp_add_del_mapping_args_t _a, *a = &_a;
5417   u8 *name = NULL;
5418   memset (a, 0, sizeof (a[0]));
5419   memset (eid, 0, sizeof (eid[0]));
5420
5421   rv = unformat_lisp_eid_api (eid, clib_net_to_host_u32 (mp->vni),
5422                               mp->eid_type, mp->eid, mp->prefix_len);
5423   if (rv)
5424     goto out;
5425
5426   name = format (0, "%s", mp->locator_set_name);
5427   p = hash_get_mem (lcm->locator_set_index_by_name, name);
5428   if (!p)
5429     {
5430       rv = VNET_API_ERROR_INVALID_VALUE;
5431       goto out;
5432     }
5433   locator_set_index = p[0];
5434
5435   /* XXX treat batch configuration */
5436   a->is_add = mp->is_add;
5437   gid_address_copy (&a->eid, eid);
5438   a->locator_set_index = locator_set_index;
5439   a->local = 1;
5440   rv = vnet_lisp_add_del_local_mapping (a, &map_index);
5441
5442 out:
5443   vec_free (name);
5444   gid_address_free (&a->eid);
5445
5446   REPLY_MACRO (VL_API_LISP_ADD_DEL_LOCAL_EID_REPLY);
5447 }
5448
5449 static void
5450   vl_api_lisp_eid_table_add_del_map_t_handler
5451   (vl_api_lisp_eid_table_add_del_map_t * mp)
5452 {
5453   vl_api_lisp_eid_table_add_del_map_reply_t *rmp;
5454   int rv = 0;
5455   rv = vnet_lisp_eid_table_map (clib_net_to_host_u32 (mp->vni),
5456                                 clib_net_to_host_u32 (mp->dp_table),
5457                                 mp->is_l2, mp->is_add);
5458 REPLY_MACRO (VL_API_LISP_EID_TABLE_ADD_DEL_MAP_REPLY)}
5459
5460 /** Used for transferring locators via VPP API */
5461 /* *INDENT-OFF* */
5462 typedef CLIB_PACKED (struct {
5463   u8 is_ip4; /**< is locator an IPv4 address */
5464   u8 priority; /**< locator priority */
5465   u8 weight; /**< locator weight */
5466   u8 addr[16]; /**< IPv4/IPv6 address */
5467 }) rloc_t;
5468 /* *INDENT-ON* */
5469
5470 static locator_pair_t *
5471 unformat_lisp_loc_pairs (void *lcl_locs, void *rmt_locs, u32 rloc_num)
5472 {
5473   u32 i;
5474   locator_pair_t *pairs = 0, pair;
5475   rloc_t *r;
5476
5477   for (i = 0; i < rloc_num; i++)
5478     {
5479       /* local locator */
5480       r = &((rloc_t *) lcl_locs)[i];
5481       memset (&pair.lcl_loc, 0, sizeof (pair.lcl_loc));
5482       ip_address_set (&pair.lcl_loc, &r->addr, r->is_ip4 ? IP4 : IP6);
5483
5484       /* remote locators */
5485       r = &((rloc_t *) rmt_locs)[i];
5486       memset (&pair.rmt_loc, 0, sizeof (pair.rmt_loc));
5487       ip_address_set (&pair.rmt_loc, &r->addr, r->is_ip4 ? IP4 : IP6);
5488
5489       pair.priority = r->priority;
5490       pair.weight = r->weight;
5491
5492       vec_add1 (pairs, pair);
5493     }
5494   return pairs;
5495 }
5496
5497 static locator_t *
5498 unformat_lisp_locs (void *rmt_locs, u32 rloc_num)
5499 {
5500   u32 i;
5501   locator_t *locs = 0, loc;
5502   rloc_t *r;
5503
5504   for (i = 0; i < rloc_num; i++)
5505     {
5506       /* remote locators */
5507       r = &((rloc_t *) rmt_locs)[i];
5508       memset (&loc, 0, sizeof (loc));
5509       gid_address_ip_set (&loc.address, &r->addr, r->is_ip4 ? IP4 : IP6);
5510
5511       loc.priority = r->priority;
5512       loc.weight = r->weight;
5513
5514       vec_add1 (locs, loc);
5515     }
5516   return locs;
5517 }
5518
5519 static void
5520   vl_api_lisp_gpe_add_del_fwd_entry_t_handler
5521   (vl_api_lisp_gpe_add_del_fwd_entry_t * mp)
5522 {
5523   vl_api_lisp_gpe_add_del_fwd_entry_reply_t *rmp;
5524   vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a;
5525   locator_pair_t *pairs = 0;
5526   int rv = 0;
5527
5528   memset (a, 0, sizeof (a[0]));
5529
5530   rv = unformat_lisp_eid_api (&a->rmt_eid, mp->vni, mp->eid_type,
5531                               mp->rmt_eid, mp->rmt_len);
5532   rv |= unformat_lisp_eid_api (&a->lcl_eid, mp->vni, mp->eid_type,
5533                                mp->lcl_eid, mp->lcl_len);
5534
5535   pairs = unformat_lisp_loc_pairs (mp->lcl_locs, mp->rmt_locs, mp->loc_num);
5536
5537   if (rv || 0 == pairs)
5538     goto send_reply;
5539
5540   a->is_add = mp->is_add;
5541   a->locator_pairs = pairs;
5542   a->dp_table = mp->dp_table;
5543   a->vni = mp->vni;
5544   a->action = mp->action;
5545
5546   rv = vnet_lisp_gpe_add_del_fwd_entry (a, 0);
5547   vec_free (pairs);
5548 send_reply:
5549   REPLY_MACRO (VL_API_LISP_GPE_ADD_DEL_FWD_ENTRY_REPLY);
5550 }
5551
5552 static void
5553 vl_api_lisp_add_del_map_resolver_t_handler (vl_api_lisp_add_del_map_resolver_t
5554                                             * mp)
5555 {
5556   vl_api_lisp_add_del_map_resolver_reply_t *rmp;
5557   int rv = 0;
5558   vnet_lisp_add_del_map_resolver_args_t _a, *a = &_a;
5559
5560   memset (a, 0, sizeof (a[0]));
5561
5562   a->is_add = mp->is_add;
5563   ip_address_set (&a->address, mp->ip_address, mp->is_ipv6 ? IP6 : IP4);
5564
5565   rv = vnet_lisp_add_del_map_resolver (a);
5566
5567   REPLY_MACRO (VL_API_LISP_ADD_DEL_MAP_RESOLVER_REPLY);
5568 }
5569
5570 static void
5571 vl_api_lisp_gpe_enable_disable_t_handler (vl_api_lisp_gpe_enable_disable_t *
5572                                           mp)
5573 {
5574   vl_api_lisp_gpe_enable_disable_reply_t *rmp;
5575   int rv = 0;
5576   vnet_lisp_gpe_enable_disable_args_t _a, *a = &_a;
5577
5578   a->is_en = mp->is_en;
5579   vnet_lisp_gpe_enable_disable (a);
5580
5581   REPLY_MACRO (VL_API_LISP_GPE_ENABLE_DISABLE_REPLY);
5582 }
5583
5584 static void
5585 vl_api_lisp_enable_disable_t_handler (vl_api_lisp_enable_disable_t * mp)
5586 {
5587   vl_api_lisp_enable_disable_reply_t *rmp;
5588   int rv = 0;
5589
5590   vnet_lisp_enable_disable (mp->is_en);
5591   REPLY_MACRO (VL_API_LISP_ENABLE_DISABLE_REPLY);
5592 }
5593
5594 static void
5595 vl_api_lisp_gpe_add_del_iface_t_handler (vl_api_lisp_gpe_add_del_iface_t * mp)
5596 {
5597   vl_api_lisp_gpe_add_del_iface_reply_t *rmp;
5598   int rv = 0;
5599
5600   if (mp->is_l2)
5601     {
5602       if (mp->is_add)
5603         {
5604           if (~0 ==
5605               lisp_gpe_tenant_l2_iface_add_or_lock (mp->vni, mp->dp_table))
5606             rv = 1;
5607         }
5608       else
5609         lisp_gpe_tenant_l2_iface_unlock (mp->vni);
5610     }
5611   else
5612     {
5613       if (mp->is_add)
5614         {
5615           if (~0 ==
5616               lisp_gpe_tenant_l3_iface_add_or_lock (mp->vni, mp->dp_table))
5617             rv = 1;
5618         }
5619       else
5620         lisp_gpe_tenant_l3_iface_unlock (mp->vni);
5621     }
5622
5623   REPLY_MACRO (VL_API_LISP_GPE_ADD_DEL_IFACE_REPLY);
5624 }
5625
5626 static void
5627   vl_api_show_lisp_map_request_mode_t_handler
5628   (vl_api_show_lisp_map_request_mode_t * mp)
5629 {
5630   int rv = 0;
5631   vl_api_show_lisp_map_request_mode_reply_t *rmp;
5632
5633   /* *INDENT-OFF* */
5634   REPLY_MACRO2(VL_API_SHOW_LISP_MAP_REQUEST_MODE_REPLY,
5635   ({
5636     rmp->mode = vnet_lisp_get_map_request_mode ();
5637   }));
5638   /* *INDENT-ON* */
5639 }
5640
5641 static void
5642 vl_api_lisp_map_request_mode_t_handler (vl_api_lisp_map_request_mode_t * mp)
5643 {
5644   vl_api_lisp_map_request_mode_reply_t *rmp;
5645   int rv = 0;
5646
5647   rv = vnet_lisp_set_map_request_mode (mp->mode);
5648
5649   REPLY_MACRO (VL_API_LISP_MAP_REQUEST_MODE_REPLY);
5650 }
5651
5652 static void
5653 vl_api_lisp_pitr_set_locator_set_t_handler (vl_api_lisp_pitr_set_locator_set_t
5654                                             * mp)
5655 {
5656   vl_api_lisp_pitr_set_locator_set_reply_t *rmp;
5657   int rv = 0;
5658   u8 *ls_name = 0;
5659
5660   ls_name = format (0, "%s", mp->ls_name);
5661   rv = vnet_lisp_pitr_set_locator_set (ls_name, mp->is_add);
5662   vec_free (ls_name);
5663
5664   REPLY_MACRO (VL_API_LISP_PITR_SET_LOCATOR_SET_REPLY);
5665 }
5666
5667 static void
5668   vl_api_lisp_add_del_map_request_itr_rlocs_t_handler
5669   (vl_api_lisp_add_del_map_request_itr_rlocs_t * mp)
5670 {
5671   vl_api_lisp_add_del_map_request_itr_rlocs_reply_t *rmp;
5672   int rv = 0;
5673   u8 *locator_set_name = NULL;
5674   vnet_lisp_add_del_mreq_itr_rloc_args_t _a, *a = &_a;
5675
5676   locator_set_name = format (0, "%s", mp->locator_set_name);
5677
5678   a->is_add = mp->is_add;
5679   a->locator_set_name = locator_set_name;
5680
5681   rv = vnet_lisp_add_del_mreq_itr_rlocs (a);
5682
5683   vec_free (locator_set_name);
5684
5685   REPLY_MACRO (VL_API_LISP_ADD_DEL_MAP_REQUEST_ITR_RLOCS_REPLY);
5686 }
5687
5688 static void
5689   vl_api_lisp_add_del_remote_mapping_t_handler
5690   (vl_api_lisp_add_del_remote_mapping_t * mp)
5691 {
5692   locator_t *rlocs = 0;
5693   vl_api_lisp_add_del_remote_mapping_reply_t *rmp;
5694   int rv = 0;
5695   gid_address_t _eid, *eid = &_eid;
5696   u32 rloc_num = clib_net_to_host_u32 (mp->rloc_num);
5697
5698   memset (eid, 0, sizeof (eid[0]));
5699
5700   rv = unformat_lisp_eid_api (eid, clib_net_to_host_u32 (mp->vni),
5701                               mp->eid_type, mp->eid, mp->eid_len);
5702   if (rv)
5703     goto send_reply;
5704
5705   rlocs = unformat_lisp_locs (mp->rlocs, rloc_num);
5706
5707   if (!mp->is_add)
5708     {
5709       vnet_lisp_add_del_adjacency_args_t _a, *a = &_a;
5710       gid_address_copy (&a->reid, eid);
5711       a->is_add = 0;
5712       rv = vnet_lisp_add_del_adjacency (a);
5713       if (rv)
5714         {
5715           goto out;
5716         }
5717     }
5718
5719   /* NOTE: for now this works as a static remote mapping, i.e.,
5720    * not authoritative and ttl infinite. */
5721   rv = vnet_lisp_add_del_mapping (eid, rlocs, mp->action, 0, ~0,
5722                                   mp->is_add, 1 /* is_static */ , 0);
5723
5724   if (mp->del_all)
5725     vnet_lisp_clear_all_remote_adjacencies ();
5726
5727 out:
5728   vec_free (rlocs);
5729 send_reply:
5730   REPLY_MACRO (VL_API_LISP_ADD_DEL_REMOTE_MAPPING_REPLY);
5731 }
5732
5733 static void
5734 vl_api_lisp_add_del_adjacency_t_handler (vl_api_lisp_add_del_adjacency_t * mp)
5735 {
5736   vl_api_lisp_add_del_adjacency_reply_t *rmp;
5737   vnet_lisp_add_del_adjacency_args_t _a, *a = &_a;
5738
5739   int rv = 0;
5740   memset (a, 0, sizeof (a[0]));
5741
5742   rv = unformat_lisp_eid_api (&a->leid, clib_net_to_host_u32 (mp->vni),
5743                               mp->eid_type, mp->leid, mp->leid_len);
5744   rv |= unformat_lisp_eid_api (&a->reid, clib_net_to_host_u32 (mp->vni),
5745                                mp->eid_type, mp->reid, mp->reid_len);
5746
5747   if (rv)
5748     goto send_reply;
5749
5750   a->is_add = mp->is_add;
5751   rv = vnet_lisp_add_del_adjacency (a);
5752
5753 send_reply:
5754   REPLY_MACRO (VL_API_LISP_ADD_DEL_ADJACENCY_REPLY);
5755 }
5756
5757 static void
5758 send_lisp_locator_details (lisp_cp_main_t * lcm,
5759                            locator_t * loc,
5760                            unix_shared_memory_queue_t * q, u32 context)
5761 {
5762   vl_api_lisp_locator_details_t *rmp;
5763
5764   rmp = vl_msg_api_alloc (sizeof (*rmp));
5765   memset (rmp, 0, sizeof (*rmp));
5766   rmp->_vl_msg_id = ntohs (VL_API_LISP_LOCATOR_DETAILS);
5767   rmp->context = context;
5768
5769   rmp->local = loc->local;
5770   if (loc->local)
5771     {
5772       rmp->sw_if_index = ntohl (loc->sw_if_index);
5773     }
5774   else
5775     {
5776       rmp->is_ipv6 = gid_address_ip_version (&loc->address);
5777       ip_address_copy_addr (rmp->ip_address, &gid_address_ip (&loc->address));
5778     }
5779   rmp->priority = loc->priority;
5780   rmp->weight = loc->weight;
5781
5782   vl_msg_api_send_shmem (q, (u8 *) & rmp);
5783 }
5784
5785 static void
5786 vl_api_lisp_locator_dump_t_handler (vl_api_lisp_locator_dump_t * mp)
5787 {
5788   u8 *ls_name = 0;
5789   unix_shared_memory_queue_t *q = 0;
5790   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
5791   locator_set_t *lsit = 0;
5792   locator_t *loc = 0;
5793   u32 ls_index = ~0, *locit = 0;
5794   uword *p = 0;
5795
5796   q = vl_api_client_index_to_input_queue (mp->client_index);
5797   if (q == 0)
5798     {
5799       return;
5800     }
5801
5802   if (mp->is_index_set)
5803     ls_index = htonl (mp->ls_index);
5804   else
5805     {
5806       /* make sure we get a proper C-string */
5807       mp->ls_name[sizeof (mp->ls_name) - 1] = 0;
5808       ls_name = format (0, "%s", mp->ls_name);
5809       p = hash_get_mem (lcm->locator_set_index_by_name, ls_name);
5810       if (!p)
5811         goto out;
5812       ls_index = p[0];
5813     }
5814
5815   if (pool_is_free_index (lcm->locator_set_pool, ls_index))
5816     return;
5817
5818   lsit = pool_elt_at_index (lcm->locator_set_pool, ls_index);
5819
5820   vec_foreach (locit, lsit->locator_indices)
5821   {
5822     loc = pool_elt_at_index (lcm->locator_pool, locit[0]);
5823     send_lisp_locator_details (lcm, loc, q, mp->context);
5824   };
5825 out:
5826   vec_free (ls_name);
5827 }
5828
5829 static void
5830 send_lisp_locator_set_details (lisp_cp_main_t * lcm,
5831                                locator_set_t * lsit,
5832                                unix_shared_memory_queue_t * q,
5833                                u32 context, u32 ls_index)
5834 {
5835   vl_api_lisp_locator_set_details_t *rmp;
5836   u8 *str = 0;
5837
5838   rmp = vl_msg_api_alloc (sizeof (*rmp));
5839   memset (rmp, 0, sizeof (*rmp));
5840   rmp->_vl_msg_id = ntohs (VL_API_LISP_LOCATOR_SET_DETAILS);
5841   rmp->context = context;
5842
5843   rmp->ls_index = htonl (ls_index);
5844   if (lsit->local)
5845     {
5846       ASSERT (lsit->name != NULL);
5847       strncpy ((char *) rmp->ls_name, (char *) lsit->name,
5848                vec_len (lsit->name));
5849     }
5850   else
5851     {
5852       str = format (0, "<remote-%d>", ls_index);
5853       strncpy ((char *) rmp->ls_name, (char *) str, vec_len (str));
5854       vec_free (str);
5855     }
5856
5857   vl_msg_api_send_shmem (q, (u8 *) & rmp);
5858 }
5859
5860 static void
5861 vl_api_lisp_locator_set_dump_t_handler (vl_api_lisp_locator_set_dump_t * mp)
5862 {
5863   unix_shared_memory_queue_t *q = NULL;
5864   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
5865   locator_set_t *lsit = NULL;
5866   u8 filter;
5867
5868   q = vl_api_client_index_to_input_queue (mp->client_index);
5869   if (q == 0)
5870     {
5871       return;
5872     }
5873
5874   filter = mp->filter;
5875   /* *INDENT-OFF* */
5876   pool_foreach (lsit, lcm->locator_set_pool,
5877   ({
5878     if (filter && !((1 == filter && lsit->local) ||
5879                     (2 == filter && !lsit->local)))
5880       {
5881         continue;
5882       }
5883     send_lisp_locator_set_details (lcm, lsit, q, mp->context,
5884                                    lsit - lcm->locator_set_pool);
5885   }));
5886   /* *INDENT-ON* */
5887 }
5888
5889 static void
5890 lisp_fid_put_api (u8 * dst, fid_address_t * src, u8 * prefix_length)
5891 {
5892   ASSERT (prefix_length);
5893   ip_prefix_t *ippref = &fid_addr_ippref (src);
5894
5895   switch (fid_addr_type (src))
5896     {
5897     case FID_ADDR_IP_PREF:
5898       if (ip_prefix_version (ippref) == IP4)
5899         clib_memcpy (dst, &ip_prefix_v4 (ippref), 4);
5900       else
5901         clib_memcpy (dst, &ip_prefix_v6 (ippref), 16);
5902       prefix_length[0] = ip_prefix_len (ippref);
5903       break;
5904
5905     case FID_ADDR_MAC:
5906       prefix_length[0] = 0;
5907       clib_memcpy (dst, fid_addr_mac (src), 6);
5908       break;
5909
5910     default:
5911       clib_warning ("Unknown FID type %d!", fid_addr_type (src));
5912       break;
5913     }
5914 }
5915
5916 static u8
5917 fid_type_to_api_type (fid_address_t * fid)
5918 {
5919   ip_prefix_t *ippref;
5920
5921   switch (fid_addr_type (fid))
5922     {
5923     case FID_ADDR_IP_PREF:
5924       ippref = &fid_addr_ippref (fid);
5925       if (ip_prefix_version (ippref) == IP4)
5926         return 0;
5927       else if (ip_prefix_version (ippref) == IP6)
5928         return 1;
5929       else
5930         return ~0;
5931
5932     case FID_ADDR_MAC:
5933       return 2;
5934     }
5935
5936   return ~0;
5937 }
5938
5939 static void
5940 send_lisp_eid_table_details (mapping_t * mapit,
5941                              unix_shared_memory_queue_t * q,
5942                              u32 context, u8 filter)
5943 {
5944   fid_address_t *fid;
5945   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
5946   locator_set_t *ls = 0;
5947   vl_api_lisp_eid_table_details_t *rmp = NULL;
5948   gid_address_t *gid = NULL;
5949   u8 *mac = 0;
5950   ip_prefix_t *ip_prefix = NULL;
5951
5952   switch (filter)
5953     {
5954     case 0:                     /* all mappings */
5955       break;
5956
5957     case 1:                     /* local only */
5958       if (!mapit->local)
5959         return;
5960       break;
5961     case 2:                     /* remote only */
5962       if (mapit->local)
5963         return;
5964       break;
5965     default:
5966       clib_warning ("Filter error, unknown filter: %d", filter);
5967       return;
5968     }
5969
5970   gid = &mapit->eid;
5971   ip_prefix = &gid_address_ippref (gid);
5972   mac = gid_address_mac (gid);
5973
5974   rmp = vl_msg_api_alloc (sizeof (*rmp));
5975   memset (rmp, 0, sizeof (*rmp));
5976   rmp->_vl_msg_id = ntohs (VL_API_LISP_EID_TABLE_DETAILS);
5977
5978   ls = pool_elt_at_index (lcm->locator_set_pool, mapit->locator_set_index);
5979   if (vec_len (ls->locator_indices) == 0)
5980     rmp->locator_set_index = ~0;
5981   else
5982     rmp->locator_set_index = clib_host_to_net_u32 (mapit->locator_set_index);
5983
5984   rmp->is_local = mapit->local;
5985   rmp->ttl = clib_host_to_net_u32 (mapit->ttl);
5986   rmp->action = mapit->action;
5987   rmp->authoritative = mapit->authoritative;
5988
5989   switch (gid_address_type (gid))
5990     {
5991     case GID_ADDR_SRC_DST:
5992       rmp->is_src_dst = 1;
5993       fid = &gid_address_sd_src (gid);
5994       rmp->eid_type = fid_type_to_api_type (fid);
5995       lisp_fid_put_api (rmp->seid, &gid_address_sd_src (gid),
5996                         &rmp->seid_prefix_len);
5997       lisp_fid_put_api (rmp->eid, &gid_address_sd_dst (gid),
5998                         &rmp->eid_prefix_len);
5999       break;
6000     case GID_ADDR_IP_PREFIX:
6001       rmp->eid_prefix_len = ip_prefix_len (ip_prefix);
6002       if (ip_prefix_version (ip_prefix) == IP4)
6003         {
6004           rmp->eid_type = 0;    /* ipv4 type */
6005           clib_memcpy (rmp->eid, &ip_prefix_v4 (ip_prefix),
6006                        sizeof (ip_prefix_v4 (ip_prefix)));
6007         }
6008       else
6009         {
6010           rmp->eid_type = 1;    /* ipv6 type */
6011           clib_memcpy (rmp->eid, &ip_prefix_v6 (ip_prefix),
6012                        sizeof (ip_prefix_v6 (ip_prefix)));
6013         }
6014       break;
6015     case GID_ADDR_MAC:
6016       rmp->eid_type = 2;        /* l2 mac type */
6017       clib_memcpy (rmp->eid, mac, 6);
6018       break;
6019     default:
6020       ASSERT (0);
6021     }
6022   rmp->context = context;
6023   rmp->vni = clib_host_to_net_u32 (gid_address_vni (gid));
6024   vl_msg_api_send_shmem (q, (u8 *) & rmp);
6025 }
6026
6027 static void
6028 vl_api_lisp_eid_table_dump_t_handler (vl_api_lisp_eid_table_dump_t * mp)
6029 {
6030   u32 mi;
6031   unix_shared_memory_queue_t *q = NULL;
6032   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
6033   mapping_t *mapit = NULL;
6034   gid_address_t _eid, *eid = &_eid;
6035
6036   q = vl_api_client_index_to_input_queue (mp->client_index);
6037   if (q == 0)
6038     {
6039       return;
6040     }
6041
6042   if (mp->eid_set)
6043     {
6044       memset (eid, 0, sizeof (*eid));
6045
6046       unformat_lisp_eid_api (eid, clib_net_to_host_u32 (mp->vni),
6047                              mp->eid_type, mp->eid, mp->prefix_length);
6048
6049       mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, eid);
6050       if ((u32) ~ 0 == mi)
6051         return;
6052
6053       mapit = pool_elt_at_index (lcm->mapping_pool, mi);
6054       send_lisp_eid_table_details (mapit, q, mp->context,
6055                                    0 /* ignore filter */ );
6056     }
6057   else
6058     {
6059       /* *INDENT-OFF* */
6060       pool_foreach (mapit, lcm->mapping_pool,
6061       ({
6062         send_lisp_eid_table_details(mapit, q, mp->context,
6063                                     mp->filter);
6064       }));
6065       /* *INDENT-ON* */
6066     }
6067 }
6068
6069 static void
6070 send_lisp_gpe_fwd_entry_details (lisp_gpe_fwd_entry_t * lfe,
6071                                  unix_shared_memory_queue_t * q, u32 context)
6072 {
6073   vl_api_lisp_gpe_tunnel_details_t *rmp;
6074   lisp_gpe_main_t *lgm = &lisp_gpe_main;
6075
6076   rmp = vl_msg_api_alloc (sizeof (*rmp));
6077   memset (rmp, 0, sizeof (*rmp));
6078   rmp->_vl_msg_id = ntohs (VL_API_LISP_GPE_TUNNEL_DETAILS);
6079
6080   rmp->tunnels = lfe - lgm->lisp_fwd_entry_pool;
6081
6082   rmp->is_ipv6 = ip_prefix_version (&(lfe->key->rmt.ippref)) == IP6 ? 1 : 0;
6083   ip_address_copy_addr (rmp->source_ip,
6084                         &ip_prefix_addr (&(lfe->key->rmt.ippref)));
6085   ip_address_copy_addr (rmp->destination_ip,
6086                         &ip_prefix_addr (&(lfe->key->rmt.ippref)));
6087
6088   rmp->encap_fib_id = htonl (0);
6089   rmp->decap_fib_id = htonl (lfe->eid_fib_index);
6090   rmp->iid = htonl (lfe->key->vni);
6091   rmp->context = context;
6092
6093   vl_msg_api_send_shmem (q, (u8 *) & rmp);
6094 }
6095
6096 static void
6097 vl_api_lisp_gpe_tunnel_dump_t_handler (vl_api_lisp_gpe_tunnel_dump_t * mp)
6098 {
6099   unix_shared_memory_queue_t *q = NULL;
6100   lisp_gpe_main_t *lgm = &lisp_gpe_main;
6101   lisp_gpe_fwd_entry_t *lfe = NULL;
6102
6103   if (pool_elts (lgm->lisp_fwd_entry_pool) == 0)
6104     {
6105       return;
6106     }
6107
6108   q = vl_api_client_index_to_input_queue (mp->client_index);
6109   if (q == 0)
6110     {
6111       return;
6112     }
6113
6114   /* *INDENT-OFF* */
6115   pool_foreach(lfe, lgm->lisp_fwd_entry_pool,
6116   ({
6117     send_lisp_gpe_fwd_entry_details(lfe, q, mp->context);
6118   }));
6119   /* *INDENT-ON* */
6120 }
6121
6122 static void
6123 send_lisp_map_resolver_details (ip_address_t * ip,
6124                                 unix_shared_memory_queue_t * q, u32 context)
6125 {
6126   vl_api_lisp_map_resolver_details_t *rmp = NULL;
6127
6128   rmp = vl_msg_api_alloc (sizeof (*rmp));
6129   memset (rmp, 0, sizeof (*rmp));
6130   rmp->_vl_msg_id = ntohs (VL_API_LISP_MAP_RESOLVER_DETAILS);
6131
6132   switch (ip_addr_version (ip))
6133     {
6134     case IP4:
6135       rmp->is_ipv6 = 0;
6136       clib_memcpy (rmp->ip_address, &ip_addr_v4 (ip),
6137                    sizeof (ip_addr_v4 (ip)));
6138       break;
6139
6140     case IP6:
6141       rmp->is_ipv6 = 1;
6142       clib_memcpy (rmp->ip_address, &ip_addr_v6 (ip),
6143                    sizeof (ip_addr_v6 (ip)));
6144       break;
6145
6146     default:
6147       ASSERT (0);
6148     }
6149   rmp->context = context;
6150
6151   vl_msg_api_send_shmem (q, (u8 *) & rmp);
6152 }
6153
6154 static void
6155 vl_api_lisp_map_resolver_dump_t_handler (vl_api_lisp_map_resolver_dump_t * mp)
6156 {
6157   unix_shared_memory_queue_t *q = NULL;
6158   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
6159   map_resolver_t *mr;
6160
6161   q = vl_api_client_index_to_input_queue (mp->client_index);
6162   if (q == 0)
6163     {
6164       return;
6165     }
6166
6167   vec_foreach (mr, lcm->map_resolvers)
6168   {
6169     send_lisp_map_resolver_details (&mr->address, q, mp->context);
6170   }
6171 }
6172
6173 static void
6174 send_eid_table_map_pair (hash_pair_t * p,
6175                          unix_shared_memory_queue_t * q, u32 context)
6176 {
6177   vl_api_lisp_eid_table_map_details_t *rmp = NULL;
6178
6179   rmp = vl_msg_api_alloc (sizeof (*rmp));
6180   memset (rmp, 0, sizeof (*rmp));
6181   rmp->_vl_msg_id = ntohs (VL_API_LISP_EID_TABLE_MAP_DETAILS);
6182
6183   rmp->vni = clib_host_to_net_u32 (p->key);
6184   rmp->dp_table = clib_host_to_net_u32 (p->value[0]);
6185   rmp->context = context;
6186   vl_msg_api_send_shmem (q, (u8 *) & rmp);
6187 }
6188
6189 static void
6190 vl_api_lisp_eid_table_map_dump_t_handler (vl_api_lisp_eid_table_map_dump_t *
6191                                           mp)
6192 {
6193   unix_shared_memory_queue_t *q = NULL;
6194   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
6195   hash_pair_t *p;
6196   uword *vni_table = 0;
6197
6198   q = vl_api_client_index_to_input_queue (mp->client_index);
6199   if (q == 0)
6200     {
6201       return;
6202     }
6203
6204   if (mp->is_l2)
6205     {
6206       vni_table = lcm->bd_id_by_vni;
6207     }
6208   else
6209     {
6210       vni_table = lcm->table_id_by_vni;
6211     }
6212
6213   /* *INDENT-OFF* */
6214   hash_foreach_pair (p, vni_table,
6215   ({
6216     send_eid_table_map_pair (p, q, mp->context);
6217   }));
6218   /* *INDENT-ON* */
6219 }
6220
6221 static void
6222 send_eid_table_vni (u32 vni, unix_shared_memory_queue_t * q, u32 context)
6223 {
6224   vl_api_lisp_eid_table_vni_details_t *rmp = 0;
6225
6226   rmp = vl_msg_api_alloc (sizeof (*rmp));
6227   memset (rmp, 0, sizeof (*rmp));
6228   rmp->_vl_msg_id = ntohs (VL_API_LISP_EID_TABLE_VNI_DETAILS);
6229   rmp->context = context;
6230   rmp->vni = clib_host_to_net_u32 (vni);
6231   vl_msg_api_send_shmem (q, (u8 *) & rmp);
6232 }
6233
6234 static void
6235 lisp_adjacency_copy (vl_api_lisp_adjacency_t * dst, lisp_adjacency_t * adjs)
6236 {
6237   lisp_adjacency_t *adj;
6238   vl_api_lisp_adjacency_t a;
6239   u32 i, n = vec_len (adjs);
6240
6241   for (i = 0; i < n; i++)
6242     {
6243       adj = vec_elt_at_index (adjs, i);
6244       memset (&a, 0, sizeof (a));
6245
6246       switch (gid_address_type (&adj->reid))
6247         {
6248         case GID_ADDR_IP_PREFIX:
6249           a.reid_prefix_len = gid_address_ippref_len (&adj->reid);
6250           a.leid_prefix_len = gid_address_ippref_len (&adj->leid);
6251           if (gid_address_ip_version (&adj->reid) == IP4)
6252             {
6253               a.eid_type = 0;   /* ipv4 type */
6254               clib_memcpy (a.reid, &gid_address_ip (&adj->reid), 4);
6255               clib_memcpy (a.leid, &gid_address_ip (&adj->leid), 4);
6256             }
6257           else
6258             {
6259               a.eid_type = 1;   /* ipv6 type */
6260               clib_memcpy (a.reid, &gid_address_ip (&adj->reid), 16);
6261               clib_memcpy (a.leid, &gid_address_ip (&adj->leid), 16);
6262             }
6263           break;
6264         case GID_ADDR_MAC:
6265           a.eid_type = 2;       /* l2 mac type */
6266           mac_copy (a.reid, gid_address_mac (&adj->reid));
6267           mac_copy (a.leid, gid_address_mac (&adj->leid));
6268           break;
6269         default:
6270           ASSERT (0);
6271         }
6272       dst[i] = a;
6273     }
6274 }
6275
6276 static void
6277 vl_api_lisp_adjacencies_get_t_handler (vl_api_lisp_adjacencies_get_t * mp)
6278 {
6279   vl_api_lisp_adjacencies_get_reply_t *rmp = 0;
6280   lisp_adjacency_t *adjs = 0;
6281   int rv = 0;
6282   vl_api_lisp_adjacency_t a;
6283   u32 size = ~0;
6284   u32 vni = clib_net_to_host_u32 (mp->vni);
6285
6286   adjs = vnet_lisp_adjacencies_get_by_vni (vni);
6287   size = vec_len (adjs) * sizeof (a);
6288
6289   /* *INDENT-OFF* */
6290   REPLY_MACRO4 (VL_API_LISP_ADJACENCIES_GET_REPLY, size,
6291   {
6292     rmp->count = clib_host_to_net_u32 (vec_len (adjs));
6293     lisp_adjacency_copy (rmp->adjacencies, adjs);
6294   });
6295   /* *INDENT-ON* */
6296
6297   vec_free (adjs);
6298 }
6299
6300 static void
6301 vl_api_lisp_eid_table_vni_dump_t_handler (vl_api_lisp_eid_table_vni_dump_t *
6302                                           mp)
6303 {
6304   hash_pair_t *p;
6305   u32 *vnis = 0;
6306   unix_shared_memory_queue_t *q = 0;
6307   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
6308
6309   q = vl_api_client_index_to_input_queue (mp->client_index);
6310   if (q == 0)
6311     {
6312       return;
6313     }
6314
6315   /* *INDENT-OFF* */
6316   hash_foreach_pair (p, lcm->table_id_by_vni,
6317   ({
6318     hash_set (vnis, p->key, 0);
6319   }));
6320
6321   hash_foreach_pair (p, lcm->bd_id_by_vni,
6322   ({
6323     hash_set (vnis, p->key, 0);
6324   }));
6325
6326   hash_foreach_pair (p, vnis,
6327   ({
6328     send_eid_table_vni (p->key, q, mp->context);
6329   }));
6330   /* *INDENT-ON* */
6331
6332   hash_free (vnis);
6333 }
6334
6335 static void
6336 vl_api_show_lisp_status_t_handler (vl_api_show_lisp_status_t * mp)
6337 {
6338   unix_shared_memory_queue_t *q = NULL;
6339   vl_api_show_lisp_status_reply_t *rmp = NULL;
6340   int rv = 0;
6341
6342   q = vl_api_client_index_to_input_queue (mp->client_index);
6343   if (q == 0)
6344     {
6345       return;
6346     }
6347
6348   /* *INDENT-OFF* */
6349   REPLY_MACRO2(VL_API_SHOW_LISP_STATUS_REPLY,
6350   ({
6351     rmp->gpe_status = vnet_lisp_gpe_enable_disable_status ();
6352     rmp->feature_status = vnet_lisp_enable_disable_status ();
6353   }));
6354   /* *INDENT-ON* */
6355 }
6356
6357 static void
6358   vl_api_lisp_get_map_request_itr_rlocs_t_handler
6359   (vl_api_lisp_get_map_request_itr_rlocs_t * mp)
6360 {
6361   unix_shared_memory_queue_t *q = NULL;
6362   vl_api_lisp_get_map_request_itr_rlocs_reply_t *rmp = NULL;
6363   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
6364   locator_set_t *loc_set = 0;
6365   u8 *tmp_str = 0;
6366   int rv = 0;
6367
6368   q = vl_api_client_index_to_input_queue (mp->client_index);
6369   if (q == 0)
6370     {
6371       return;
6372     }
6373
6374   if (~0 == lcm->mreq_itr_rlocs)
6375     {
6376       tmp_str = format (0, " ");
6377     }
6378   else
6379     {
6380       loc_set =
6381         pool_elt_at_index (lcm->locator_set_pool, lcm->mreq_itr_rlocs);
6382       tmp_str = format (0, "%s", loc_set->name);
6383     }
6384
6385   /* *INDENT-OFF* */
6386   REPLY_MACRO2(VL_API_LISP_GET_MAP_REQUEST_ITR_RLOCS_REPLY,
6387   ({
6388     strncpy((char *) rmp->locator_set_name, (char *) tmp_str,
6389             ARRAY_LEN(rmp->locator_set_name) - 1);
6390   }));
6391   /* *INDENT-ON* */
6392
6393   vec_free (tmp_str);
6394 }
6395
6396 static void
6397 vl_api_show_lisp_pitr_t_handler (vl_api_show_lisp_pitr_t * mp)
6398 {
6399   unix_shared_memory_queue_t *q = NULL;
6400   vl_api_show_lisp_pitr_reply_t *rmp = NULL;
6401   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
6402   mapping_t *m;
6403   locator_set_t *ls = 0;
6404   u8 *tmp_str = 0;
6405   int rv = 0;
6406
6407   q = vl_api_client_index_to_input_queue (mp->client_index);
6408   if (q == 0)
6409     {
6410       return;
6411     }
6412
6413   if (!lcm->lisp_pitr)
6414     {
6415       tmp_str = format (0, "N/A");
6416     }
6417   else
6418     {
6419       m = pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index);
6420       if (~0 != m->locator_set_index)
6421         {
6422           ls =
6423             pool_elt_at_index (lcm->locator_set_pool, m->locator_set_index);
6424           tmp_str = format (0, "%s", ls->name);
6425         }
6426       else
6427         {
6428           tmp_str = format (0, "N/A");
6429         }
6430     }
6431   vec_add1 (tmp_str, 0);
6432
6433   /* *INDENT-OFF* */
6434   REPLY_MACRO2(VL_API_SHOW_LISP_PITR_REPLY,
6435   ({
6436     rmp->status = lcm->lisp_pitr;
6437     strncpy((char *) rmp->locator_set_name, (char *) tmp_str,
6438             ARRAY_LEN(rmp->locator_set_name) - 1);
6439   }));
6440   /* *INDENT-ON* */
6441 }
6442
6443 static void
6444 vl_api_interface_name_renumber_t_handler (vl_api_interface_name_renumber_t *
6445                                           mp)
6446 {
6447   vl_api_interface_name_renumber_reply_t *rmp;
6448   int rv = 0;
6449
6450   VALIDATE_SW_IF_INDEX (mp);
6451
6452   rv = vnet_interface_name_renumber
6453     (ntohl (mp->sw_if_index), ntohl (mp->new_show_dev_instance));
6454
6455   BAD_SW_IF_INDEX_LABEL;
6456
6457   REPLY_MACRO (VL_API_INTERFACE_NAME_RENUMBER_REPLY);
6458 }
6459
6460 static int
6461 arp_change_data_callback (u32 pool_index, u8 * new_mac,
6462                           u32 sw_if_index, u32 address)
6463 {
6464   vpe_api_main_t *am = &vpe_api_main;
6465   vlib_main_t *vm = am->vlib_main;
6466   vl_api_ip4_arp_event_t *event;
6467   static f64 arp_event_last_time;
6468   f64 now = vlib_time_now (vm);
6469
6470   if (pool_is_free_index (am->arp_events, pool_index))
6471     return 1;
6472
6473   event = pool_elt_at_index (am->arp_events, pool_index);
6474   /* *INDENT-OFF* */
6475   if (memcmp (&event->new_mac, new_mac, sizeof (event->new_mac)))
6476     {
6477       clib_memcpy (event->new_mac, new_mac, sizeof (event->new_mac));
6478     }
6479   else
6480     {                           /* same mac */
6481       if (sw_if_index == event->sw_if_index &&
6482           (!event->mac_ip ||
6483            /* for BD case, also check IP address with 10 sec timeout */
6484            (address == event->address &&
6485             (now - arp_event_last_time) < 10.0)))
6486         return 1;
6487     }
6488   /* *INDENT-ON* */
6489
6490   arp_event_last_time = now;
6491   event->sw_if_index = sw_if_index;
6492   if (event->mac_ip)
6493     event->address = address;
6494   return 0;
6495 }
6496
6497 static int
6498 nd_change_data_callback (u32 pool_index, u8 * new_mac,
6499                          u32 sw_if_index, ip6_address_t * address)
6500 {
6501   vpe_api_main_t *am = &vpe_api_main;
6502   vlib_main_t *vm = am->vlib_main;
6503   vl_api_ip6_nd_event_t *event;
6504   static f64 nd_event_last_time;
6505   f64 now = vlib_time_now (vm);
6506
6507   if (pool_is_free_index (am->nd_events, pool_index))
6508     return 1;
6509
6510   event = pool_elt_at_index (am->nd_events, pool_index);
6511
6512   /* *INDENT-OFF* */
6513   if (memcmp (&event->new_mac, new_mac, sizeof (event->new_mac)))
6514     {
6515       clib_memcpy (event->new_mac, new_mac, sizeof (event->new_mac));
6516     }
6517   else
6518     {                           /* same mac */
6519       if (sw_if_index == event->sw_if_index &&
6520           (!event->mac_ip ||
6521            /* for BD case, also check IP address with 10 sec timeout */
6522            (ip6_address_is_equal (address,
6523                                   (ip6_address_t *) event->address) &&
6524             (now - nd_event_last_time) < 10.0)))
6525         return 1;
6526     }
6527   /* *INDENT-ON* */
6528
6529   nd_event_last_time = now;
6530   event->sw_if_index = sw_if_index;
6531   if (event->mac_ip)
6532     clib_memcpy (event->address, address, sizeof (event->address));
6533   return 0;
6534 }
6535
6536 static int
6537 arp_change_delete_callback (u32 pool_index, u8 * notused)
6538 {
6539   vpe_api_main_t *am = &vpe_api_main;
6540
6541   if (pool_is_free_index (am->arp_events, pool_index))
6542     return 1;
6543
6544   pool_put_index (am->arp_events, pool_index);
6545   return 0;
6546 }
6547
6548 static int
6549 nd_change_delete_callback (u32 pool_index, u8 * notused)
6550 {
6551   vpe_api_main_t *am = &vpe_api_main;
6552
6553   if (pool_is_free_index (am->nd_events, pool_index))
6554     return 1;
6555
6556   pool_put_index (am->nd_events, pool_index);
6557   return 0;
6558 }
6559
6560 static void
6561 vl_api_want_ip4_arp_events_t_handler (vl_api_want_ip4_arp_events_t * mp)
6562 {
6563   vpe_api_main_t *am = &vpe_api_main;
6564   vnet_main_t *vnm = vnet_get_main ();
6565   vl_api_want_ip4_arp_events_reply_t *rmp;
6566   vl_api_ip4_arp_event_t *event;
6567   int rv;
6568
6569   if (mp->enable_disable)
6570     {
6571       pool_get (am->arp_events, event);
6572       memset (event, 0, sizeof (*event));
6573
6574       event->_vl_msg_id = ntohs (VL_API_IP4_ARP_EVENT);
6575       event->client_index = mp->client_index;
6576       event->context = mp->context;
6577       event->address = mp->address;
6578       event->pid = mp->pid;
6579       if (mp->address == 0)
6580         event->mac_ip = 1;
6581
6582       rv = vnet_add_del_ip4_arp_change_event
6583         (vnm, arp_change_data_callback,
6584          mp->pid, &mp->address /* addr, in net byte order */ ,
6585          vpe_resolver_process_node.index,
6586          IP4_ARP_EVENT, event - am->arp_events, 1 /* is_add */ );
6587     }
6588   else
6589     {
6590       rv = vnet_add_del_ip4_arp_change_event
6591         (vnm, arp_change_delete_callback,
6592          mp->pid, &mp->address /* addr, in net byte order */ ,
6593          vpe_resolver_process_node.index,
6594          IP4_ARP_EVENT, ~0 /* pool index */ , 0 /* is_add */ );
6595     }
6596   REPLY_MACRO (VL_API_WANT_IP4_ARP_EVENTS_REPLY);
6597 }
6598
6599 static void
6600 vl_api_want_ip6_nd_events_t_handler (vl_api_want_ip6_nd_events_t * mp)
6601 {
6602   vpe_api_main_t *am = &vpe_api_main;
6603   vnet_main_t *vnm = vnet_get_main ();
6604   vl_api_want_ip6_nd_events_reply_t *rmp;
6605   vl_api_ip6_nd_event_t *event;
6606   int rv;
6607
6608   if (mp->enable_disable)
6609     {
6610       pool_get (am->nd_events, event);
6611       memset (event, 0, sizeof (*event));
6612
6613       event->_vl_msg_id = ntohs (VL_API_IP6_ND_EVENT);
6614       event->client_index = mp->client_index;
6615       event->context = mp->context;
6616       clib_memcpy (event->address, mp->address, 16);
6617       event->pid = mp->pid;
6618       if (ip6_address_is_zero ((ip6_address_t *) mp->address))
6619         event->mac_ip = 1;
6620
6621       rv = vnet_add_del_ip6_nd_change_event
6622         (vnm, nd_change_data_callback,
6623          mp->pid, mp->address /* addr, in net byte order */ ,
6624          vpe_resolver_process_node.index,
6625          IP6_ND_EVENT, event - am->nd_events, 1 /* is_add */ );
6626     }
6627   else
6628     {
6629       rv = vnet_add_del_ip6_nd_change_event
6630         (vnm, nd_change_delete_callback,
6631          mp->pid, mp->address /* addr, in net byte order */ ,
6632          vpe_resolver_process_node.index,
6633          IP6_ND_EVENT, ~0 /* pool index */ , 0 /* is_add */ );
6634     }
6635   REPLY_MACRO (VL_API_WANT_IP6_ND_EVENTS_REPLY);
6636 }
6637
6638 static void vl_api_input_acl_set_interface_t_handler
6639   (vl_api_input_acl_set_interface_t * mp)
6640 {
6641   vlib_main_t *vm = vlib_get_main ();
6642   vl_api_input_acl_set_interface_reply_t *rmp;
6643   int rv;
6644   u32 sw_if_index, ip4_table_index, ip6_table_index, l2_table_index;
6645
6646   ip4_table_index = ntohl (mp->ip4_table_index);
6647   ip6_table_index = ntohl (mp->ip6_table_index);
6648   l2_table_index = ntohl (mp->l2_table_index);
6649   sw_if_index = ntohl (mp->sw_if_index);
6650
6651   VALIDATE_SW_IF_INDEX (mp);
6652
6653   rv = vnet_set_input_acl_intfc (vm, sw_if_index, ip4_table_index,
6654                                  ip6_table_index, l2_table_index, mp->is_add);
6655
6656   BAD_SW_IF_INDEX_LABEL;
6657
6658   REPLY_MACRO (VL_API_INPUT_ACL_SET_INTERFACE_REPLY);
6659 }
6660
6661 static void vl_api_ipsec_spd_add_del_t_handler
6662   (vl_api_ipsec_spd_add_del_t * mp)
6663 {
6664 #if IPSEC == 0
6665   clib_warning ("unimplemented");
6666 #else
6667
6668   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
6669   vl_api_ipsec_spd_add_del_reply_t *rmp;
6670   int rv;
6671
6672 #if DPDK > 0
6673   rv = ipsec_add_del_spd (vm, ntohl (mp->spd_id), mp->is_add);
6674 #else
6675   rv = VNET_API_ERROR_UNIMPLEMENTED;
6676 #endif
6677
6678   REPLY_MACRO (VL_API_IPSEC_SPD_ADD_DEL_REPLY);
6679 #endif
6680 }
6681
6682 static void vl_api_ipsec_interface_add_del_spd_t_handler
6683   (vl_api_ipsec_interface_add_del_spd_t * mp)
6684 {
6685   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
6686   vl_api_ipsec_interface_add_del_spd_reply_t *rmp;
6687   int rv;
6688   u32 sw_if_index __attribute__ ((unused));
6689   u32 spd_id __attribute__ ((unused));
6690
6691   sw_if_index = ntohl (mp->sw_if_index);
6692   spd_id = ntohl (mp->spd_id);
6693
6694   VALIDATE_SW_IF_INDEX (mp);
6695
6696 #if IPSEC > 0
6697   rv = ipsec_set_interface_spd (vm, sw_if_index, spd_id, mp->is_add);
6698 #else
6699   rv = VNET_API_ERROR_UNIMPLEMENTED;
6700 #endif
6701
6702   BAD_SW_IF_INDEX_LABEL;
6703
6704   REPLY_MACRO (VL_API_IPSEC_INTERFACE_ADD_DEL_SPD_REPLY);
6705 }
6706
6707 static void vl_api_ipsec_spd_add_del_entry_t_handler
6708   (vl_api_ipsec_spd_add_del_entry_t * mp)
6709 {
6710   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
6711   vl_api_ipsec_spd_add_del_entry_reply_t *rmp;
6712   int rv;
6713
6714 #if IPSEC > 0
6715   ipsec_policy_t p;
6716
6717   memset (&p, 0, sizeof (p));
6718
6719   p.id = ntohl (mp->spd_id);
6720   p.priority = ntohl (mp->priority);
6721   p.is_outbound = mp->is_outbound;
6722   p.is_ipv6 = mp->is_ipv6;
6723
6724   if (mp->is_ipv6 || mp->is_ip_any)
6725     {
6726       clib_memcpy (&p.raddr.start, mp->remote_address_start, 16);
6727       clib_memcpy (&p.raddr.stop, mp->remote_address_stop, 16);
6728       clib_memcpy (&p.laddr.start, mp->local_address_start, 16);
6729       clib_memcpy (&p.laddr.stop, mp->local_address_stop, 16);
6730     }
6731   else
6732     {
6733       clib_memcpy (&p.raddr.start.ip4.data, mp->remote_address_start, 4);
6734       clib_memcpy (&p.raddr.stop.ip4.data, mp->remote_address_stop, 4);
6735       clib_memcpy (&p.laddr.start.ip4.data, mp->local_address_start, 4);
6736       clib_memcpy (&p.laddr.stop.ip4.data, mp->local_address_stop, 4);
6737     }
6738   p.protocol = mp->protocol;
6739   p.rport.start = ntohs (mp->remote_port_start);
6740   p.rport.stop = ntohs (mp->remote_port_stop);
6741   p.lport.start = ntohs (mp->local_port_start);
6742   p.lport.stop = ntohs (mp->local_port_stop);
6743   /* policy action resolve unsupported */
6744   if (mp->policy == IPSEC_POLICY_ACTION_RESOLVE)
6745     {
6746       clib_warning ("unsupported action: 'resolve'");
6747       rv = VNET_API_ERROR_UNIMPLEMENTED;
6748       goto out;
6749     }
6750   p.policy = mp->policy;
6751   p.sa_id = ntohl (mp->sa_id);
6752
6753   rv = ipsec_add_del_policy (vm, &p, mp->is_add);
6754   if (rv)
6755     goto out;
6756
6757   if (mp->is_ip_any)
6758     {
6759       p.is_ipv6 = 1;
6760       rv = ipsec_add_del_policy (vm, &p, mp->is_add);
6761     }
6762 #else
6763   rv = VNET_API_ERROR_UNIMPLEMENTED;
6764   goto out;
6765 #endif
6766
6767 out:
6768   REPLY_MACRO (VL_API_IPSEC_SPD_ADD_DEL_ENTRY_REPLY);
6769 }
6770
6771 static void vl_api_ipsec_sad_add_del_entry_t_handler
6772   (vl_api_ipsec_sad_add_del_entry_t * mp)
6773 {
6774   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
6775   vl_api_ipsec_sad_add_del_entry_reply_t *rmp;
6776   int rv;
6777 #if IPSEC > 0
6778   ipsec_sa_t sa;
6779
6780   memset (&sa, 0, sizeof (sa));
6781
6782   sa.id = ntohl (mp->sad_id);
6783   sa.spi = ntohl (mp->spi);
6784   /* security protocol AH unsupported */
6785   if (mp->protocol == IPSEC_PROTOCOL_AH)
6786     {
6787       clib_warning ("unsupported security protocol 'AH'");
6788       rv = VNET_API_ERROR_UNIMPLEMENTED;
6789       goto out;
6790     }
6791   sa.protocol = mp->protocol;
6792   /* check for unsupported crypto-alg */
6793   if (mp->crypto_algorithm < IPSEC_CRYPTO_ALG_AES_CBC_128 ||
6794       mp->crypto_algorithm > IPSEC_CRYPTO_ALG_AES_CBC_256)
6795     {
6796       clib_warning ("unsupported crypto-alg: '%U'", format_ipsec_crypto_alg,
6797                     mp->crypto_algorithm);
6798       rv = VNET_API_ERROR_UNIMPLEMENTED;
6799       goto out;
6800     }
6801   sa.crypto_alg = mp->crypto_algorithm;
6802   sa.crypto_key_len = mp->crypto_key_length;
6803   clib_memcpy (&sa.crypto_key, mp->crypto_key, sizeof (sa.crypto_key));
6804   /* check for unsupported integ-alg */
6805   if (mp->integrity_algorithm < IPSEC_INTEG_ALG_SHA1_96 ||
6806       mp->integrity_algorithm > IPSEC_INTEG_ALG_SHA_512_256)
6807     {
6808       clib_warning ("unsupported integ-alg: '%U'", format_ipsec_integ_alg,
6809                     mp->integrity_algorithm);
6810       rv = VNET_API_ERROR_UNIMPLEMENTED;
6811       goto out;
6812     }
6813   sa.integ_alg = mp->integrity_algorithm;
6814   sa.integ_key_len = mp->integrity_key_length;
6815   clib_memcpy (&sa.integ_key, mp->integrity_key, sizeof (sa.integ_key));
6816   sa.use_esn = mp->use_extended_sequence_number;
6817   sa.is_tunnel = mp->is_tunnel;
6818   sa.is_tunnel_ip6 = mp->is_tunnel_ipv6;
6819   if (sa.is_tunnel_ip6)
6820     {
6821       clib_memcpy (&sa.tunnel_src_addr, mp->tunnel_src_address, 16);
6822       clib_memcpy (&sa.tunnel_dst_addr, mp->tunnel_dst_address, 16);
6823     }
6824   else
6825     {
6826       clib_memcpy (&sa.tunnel_src_addr.ip4.data, mp->tunnel_src_address, 4);
6827       clib_memcpy (&sa.tunnel_dst_addr.ip4.data, mp->tunnel_dst_address, 4);
6828     }
6829
6830   rv = ipsec_add_del_sa (vm, &sa, mp->is_add);
6831 #else
6832   rv = VNET_API_ERROR_UNIMPLEMENTED;
6833   goto out;
6834 #endif
6835
6836 out:
6837   REPLY_MACRO (VL_API_IPSEC_SAD_ADD_DEL_ENTRY_REPLY);
6838 }
6839
6840 static void
6841 vl_api_ikev2_profile_add_del_t_handler (vl_api_ikev2_profile_add_del_t * mp)
6842 {
6843   vl_api_ikev2_profile_add_del_reply_t *rmp;
6844   int rv = 0;
6845
6846 #if IPSEC > 0
6847   vlib_main_t *vm = vlib_get_main ();
6848   clib_error_t *error;
6849   u8 *tmp = format (0, "%s", mp->name);
6850   error = ikev2_add_del_profile (vm, tmp, mp->is_add);
6851   vec_free (tmp);
6852   if (error)
6853     rv = VNET_API_ERROR_UNSPECIFIED;
6854 #else
6855   rv = VNET_API_ERROR_UNIMPLEMENTED;
6856 #endif
6857
6858   REPLY_MACRO (VL_API_IKEV2_PROFILE_ADD_DEL_REPLY);
6859 }
6860
6861 static void
6862   vl_api_ikev2_profile_set_auth_t_handler
6863   (vl_api_ikev2_profile_set_auth_t * mp)
6864 {
6865   vl_api_ikev2_profile_set_auth_reply_t *rmp;
6866   int rv = 0;
6867
6868 #if IPSEC > 0
6869   vlib_main_t *vm = vlib_get_main ();
6870   clib_error_t *error;
6871   u8 *tmp = format (0, "%s", mp->name);
6872   u8 *data = vec_new (u8, mp->data_len);
6873   clib_memcpy (data, mp->data, mp->data_len);
6874   error = ikev2_set_profile_auth (vm, tmp, mp->auth_method, data, mp->is_hex);
6875   vec_free (tmp);
6876   vec_free (data);
6877   if (error)
6878     rv = VNET_API_ERROR_UNSPECIFIED;
6879 #else
6880   rv = VNET_API_ERROR_UNIMPLEMENTED;
6881 #endif
6882
6883   REPLY_MACRO (VL_API_IKEV2_PROFILE_SET_AUTH_REPLY);
6884 }
6885
6886 static void
6887 vl_api_ikev2_profile_set_id_t_handler (vl_api_ikev2_profile_set_id_t * mp)
6888 {
6889   vl_api_ikev2_profile_add_del_reply_t *rmp;
6890   int rv = 0;
6891
6892 #if IPSEC > 0
6893   vlib_main_t *vm = vlib_get_main ();
6894   clib_error_t *error;
6895   u8 *tmp = format (0, "%s", mp->name);
6896   u8 *data = vec_new (u8, mp->data_len);
6897   clib_memcpy (data, mp->data, mp->data_len);
6898   error = ikev2_set_profile_id (vm, tmp, mp->id_type, data, mp->is_local);
6899   vec_free (tmp);
6900   vec_free (data);
6901   if (error)
6902     rv = VNET_API_ERROR_UNSPECIFIED;
6903 #else
6904   rv = VNET_API_ERROR_UNIMPLEMENTED;
6905 #endif
6906
6907   REPLY_MACRO (VL_API_IKEV2_PROFILE_SET_ID_REPLY);
6908 }
6909
6910 static void
6911 vl_api_ikev2_profile_set_ts_t_handler (vl_api_ikev2_profile_set_ts_t * mp)
6912 {
6913   vl_api_ikev2_profile_set_ts_reply_t *rmp;
6914   int rv = 0;
6915
6916 #if IPSEC > 0
6917   vlib_main_t *vm = vlib_get_main ();
6918   clib_error_t *error;
6919   u8 *tmp = format (0, "%s", mp->name);
6920   error = ikev2_set_profile_ts (vm, tmp, mp->proto, mp->start_port,
6921                                 mp->end_port, (ip4_address_t) mp->start_addr,
6922                                 (ip4_address_t) mp->end_addr, mp->is_local);
6923   vec_free (tmp);
6924   if (error)
6925     rv = VNET_API_ERROR_UNSPECIFIED;
6926 #else
6927   rv = VNET_API_ERROR_UNIMPLEMENTED;
6928 #endif
6929
6930   REPLY_MACRO (VL_API_IKEV2_PROFILE_SET_TS_REPLY);
6931 }
6932
6933 static void
6934 vl_api_ikev2_set_local_key_t_handler (vl_api_ikev2_set_local_key_t * mp)
6935 {
6936   vl_api_ikev2_profile_set_ts_reply_t *rmp;
6937   int rv = 0;
6938
6939 #if IPSEC > 0
6940   vlib_main_t *vm = vlib_get_main ();
6941   clib_error_t *error;
6942
6943   error = ikev2_set_local_key (vm, mp->key_file);
6944   if (error)
6945     rv = VNET_API_ERROR_UNSPECIFIED;
6946 #else
6947   rv = VNET_API_ERROR_UNIMPLEMENTED;
6948 #endif
6949
6950   REPLY_MACRO (VL_API_IKEV2_SET_LOCAL_KEY_REPLY);
6951 }
6952
6953 static void
6954 vl_api_map_add_domain_t_handler (vl_api_map_add_domain_t * mp)
6955 {
6956   vl_api_map_add_domain_reply_t *rmp;
6957   int rv = 0;
6958   u32 index;
6959   u8 flags = mp->is_translation ? MAP_DOMAIN_TRANSLATION : 0;
6960   rv =
6961     map_create_domain ((ip4_address_t *) & mp->ip4_prefix, mp->ip4_prefix_len,
6962                        (ip6_address_t *) & mp->ip6_prefix, mp->ip6_prefix_len,
6963                        (ip6_address_t *) & mp->ip6_src,
6964                        mp->ip6_src_prefix_len, mp->ea_bits_len,
6965                        mp->psid_offset, mp->psid_length, &index,
6966                        ntohs (mp->mtu), flags);
6967
6968   /* *INDENT-OFF* */
6969   REPLY_MACRO2(VL_API_MAP_ADD_DOMAIN_REPLY,
6970   ({
6971     rmp->index = ntohl(index);
6972   }));
6973   /* *INDENT-ON* */
6974 }
6975
6976 static void
6977 vl_api_map_del_domain_t_handler (vl_api_map_del_domain_t * mp)
6978 {
6979   vl_api_map_del_domain_reply_t *rmp;
6980   int rv = 0;
6981
6982   rv = map_delete_domain (ntohl (mp->index));
6983
6984   REPLY_MACRO (VL_API_MAP_DEL_DOMAIN_REPLY);
6985 }
6986
6987 static void
6988 vl_api_map_add_del_rule_t_handler (vl_api_map_add_del_rule_t * mp)
6989 {
6990   vl_api_map_del_domain_reply_t *rmp;
6991   int rv = 0;
6992
6993   rv =
6994     map_add_del_psid (ntohl (mp->index), ntohs (mp->psid),
6995                       (ip6_address_t *) mp->ip6_dst, mp->is_add);
6996
6997   REPLY_MACRO (VL_API_MAP_ADD_DEL_RULE_REPLY);
6998 }
6999
7000 static void
7001 vl_api_map_domain_dump_t_handler (vl_api_map_domain_dump_t * mp)
7002 {
7003   vl_api_map_domain_details_t *rmp;
7004   map_main_t *mm = &map_main;
7005   map_domain_t *d;
7006   unix_shared_memory_queue_t *q;
7007
7008   if (pool_elts (mm->domains) == 0)
7009     return;
7010
7011   q = vl_api_client_index_to_input_queue (mp->client_index);
7012   if (q == 0)
7013     {
7014       return;
7015     }
7016
7017   /* *INDENT-OFF* */
7018   pool_foreach(d, mm->domains,
7019   ({
7020     /* Make sure every field is initiated (or don't skip the memset()) */
7021     rmp = vl_msg_api_alloc (sizeof (*rmp));
7022     rmp->_vl_msg_id = ntohs(VL_API_MAP_DOMAIN_DETAILS);
7023     rmp->domain_index = htonl(d - mm->domains);
7024     rmp->ea_bits_len = d->ea_bits_len;
7025     rmp->psid_offset = d->psid_offset;
7026     rmp->psid_length = d->psid_length;
7027     clib_memcpy(rmp->ip4_prefix, &d->ip4_prefix, sizeof(rmp->ip4_prefix));
7028     rmp->ip4_prefix_len = d->ip4_prefix_len;
7029     clib_memcpy(rmp->ip6_prefix, &d->ip6_prefix, sizeof(rmp->ip6_prefix));
7030     rmp->ip6_prefix_len = d->ip6_prefix_len;
7031     clib_memcpy(rmp->ip6_src, &d->ip6_src, sizeof(rmp->ip6_src));
7032     rmp->ip6_src_len = d->ip6_src_len;
7033     rmp->mtu = htons(d->mtu);
7034     rmp->is_translation = (d->flags & MAP_DOMAIN_TRANSLATION);
7035     rmp->context = mp->context;
7036
7037     vl_msg_api_send_shmem (q, (u8 *)&rmp);
7038   }));
7039   /* *INDENT-ON* */
7040 }
7041
7042 static void
7043 vl_api_map_rule_dump_t_handler (vl_api_map_rule_dump_t * mp)
7044 {
7045   unix_shared_memory_queue_t *q;
7046   u16 i;
7047   ip6_address_t dst;
7048   vl_api_map_rule_details_t *rmp;
7049   map_main_t *mm = &map_main;
7050   u32 domain_index = ntohl (mp->domain_index);
7051   map_domain_t *d;
7052
7053   if (pool_elts (mm->domains) == 0)
7054     return;
7055
7056   d = pool_elt_at_index (mm->domains, domain_index);
7057   if (!d || !d->rules)
7058     {
7059       return;
7060     }
7061
7062   q = vl_api_client_index_to_input_queue (mp->client_index);
7063   if (q == 0)
7064     {
7065       return;
7066     }
7067
7068   for (i = 0; i < (0x1 << d->psid_length); i++)
7069     {
7070       dst = d->rules[i];
7071       if (dst.as_u64[0] == 0 && dst.as_u64[1] == 0)
7072         {
7073           continue;
7074         }
7075       rmp = vl_msg_api_alloc (sizeof (*rmp));
7076       memset (rmp, 0, sizeof (*rmp));
7077       rmp->_vl_msg_id = ntohs (VL_API_MAP_RULE_DETAILS);
7078       rmp->psid = htons (i);
7079       clib_memcpy (rmp->ip6_dst, &dst, sizeof (rmp->ip6_dst));
7080       rmp->context = mp->context;
7081       vl_msg_api_send_shmem (q, (u8 *) & rmp);
7082     }
7083 }
7084
7085 static void
7086 vl_api_map_summary_stats_t_handler (vl_api_map_summary_stats_t * mp)
7087 {
7088   vl_api_map_summary_stats_reply_t *rmp;
7089   vlib_combined_counter_main_t *cm;
7090   vlib_counter_t v;
7091   int i, which;
7092   u64 total_pkts[VLIB_N_RX_TX];
7093   u64 total_bytes[VLIB_N_RX_TX];
7094   map_main_t *mm = &map_main;
7095   unix_shared_memory_queue_t *q =
7096     vl_api_client_index_to_input_queue (mp->client_index);
7097
7098   if (!q)
7099     return;
7100
7101   rmp = vl_msg_api_alloc (sizeof (*rmp));
7102   rmp->_vl_msg_id = ntohs (VL_API_MAP_SUMMARY_STATS_REPLY);
7103   rmp->context = mp->context;
7104   rmp->retval = 0;
7105
7106   memset (total_pkts, 0, sizeof (total_pkts));
7107   memset (total_bytes, 0, sizeof (total_bytes));
7108
7109   map_domain_counter_lock (mm);
7110   vec_foreach (cm, mm->domain_counters)
7111   {
7112     which = cm - mm->domain_counters;
7113
7114     for (i = 0; i < vec_len (cm->maxi); i++)
7115       {
7116         vlib_get_combined_counter (cm, i, &v);
7117         total_pkts[which] += v.packets;
7118         total_bytes[which] += v.bytes;
7119       }
7120   }
7121
7122   map_domain_counter_unlock (mm);
7123
7124   /* Note: in network byte order! */
7125   rmp->total_pkts[MAP_DOMAIN_COUNTER_RX] =
7126     clib_host_to_net_u64 (total_pkts[MAP_DOMAIN_COUNTER_RX]);
7127   rmp->total_bytes[MAP_DOMAIN_COUNTER_RX] =
7128     clib_host_to_net_u64 (total_bytes[MAP_DOMAIN_COUNTER_RX]);
7129   rmp->total_pkts[MAP_DOMAIN_COUNTER_TX] =
7130     clib_host_to_net_u64 (total_pkts[MAP_DOMAIN_COUNTER_TX]);
7131   rmp->total_bytes[MAP_DOMAIN_COUNTER_TX] =
7132     clib_host_to_net_u64 (total_bytes[MAP_DOMAIN_COUNTER_TX]);
7133   rmp->total_bindings = clib_host_to_net_u64 (pool_elts (mm->domains));
7134   rmp->total_ip4_fragments = 0; // Not yet implemented. Should be a simple counter.
7135   rmp->total_security_check[MAP_DOMAIN_COUNTER_TX] =
7136     clib_host_to_net_u64 (map_error_counter_get
7137                           (ip4_map_node.index, MAP_ERROR_ENCAP_SEC_CHECK));
7138   rmp->total_security_check[MAP_DOMAIN_COUNTER_RX] =
7139     clib_host_to_net_u64 (map_error_counter_get
7140                           (ip4_map_node.index, MAP_ERROR_DECAP_SEC_CHECK));
7141
7142   vl_msg_api_send_shmem (q, (u8 *) & rmp);
7143 }
7144
7145 static void
7146 vl_api_ipsec_sa_set_key_t_handler (vl_api_ipsec_sa_set_key_t * mp)
7147 {
7148   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
7149   vl_api_ipsec_sa_set_key_reply_t *rmp;
7150   int rv;
7151 #if IPSEC > 0
7152   ipsec_sa_t sa;
7153   sa.id = ntohl (mp->sa_id);
7154   sa.crypto_key_len = mp->crypto_key_length;
7155   clib_memcpy (&sa.crypto_key, mp->crypto_key, sizeof (sa.crypto_key));
7156   sa.integ_key_len = mp->integrity_key_length;
7157   clib_memcpy (&sa.integ_key, mp->integrity_key, sizeof (sa.integ_key));
7158
7159   rv = ipsec_set_sa_key (vm, &sa);
7160 #else
7161   rv = VNET_API_ERROR_UNIMPLEMENTED;
7162 #endif
7163
7164   REPLY_MACRO (VL_API_IPSEC_SA_SET_KEY_REPLY);
7165 }
7166
7167 static void vl_api_cop_interface_enable_disable_t_handler
7168   (vl_api_cop_interface_enable_disable_t * mp)
7169 {
7170   vl_api_cop_interface_enable_disable_reply_t *rmp;
7171   int rv;
7172   u32 sw_if_index = ntohl (mp->sw_if_index);
7173   int enable_disable;
7174
7175   VALIDATE_SW_IF_INDEX (mp);
7176
7177   enable_disable = (int) mp->enable_disable;
7178
7179   rv = cop_interface_enable_disable (sw_if_index, enable_disable);
7180
7181   BAD_SW_IF_INDEX_LABEL;
7182
7183   REPLY_MACRO (VL_API_COP_INTERFACE_ENABLE_DISABLE_REPLY);
7184 }
7185
7186 static void vl_api_cop_whitelist_enable_disable_t_handler
7187   (vl_api_cop_whitelist_enable_disable_t * mp)
7188 {
7189   vl_api_cop_whitelist_enable_disable_reply_t *rmp;
7190   cop_whitelist_enable_disable_args_t _a, *a = &_a;
7191   u32 sw_if_index = ntohl (mp->sw_if_index);
7192   int rv;
7193
7194   VALIDATE_SW_IF_INDEX (mp);
7195
7196   a->sw_if_index = sw_if_index;
7197   a->ip4 = mp->ip4;
7198   a->ip6 = mp->ip6;
7199   a->default_cop = mp->default_cop;
7200   a->fib_id = ntohl (mp->fib_id);
7201
7202   rv = cop_whitelist_enable_disable (a);
7203
7204   BAD_SW_IF_INDEX_LABEL;
7205
7206   REPLY_MACRO (VL_API_COP_WHITELIST_ENABLE_DISABLE_REPLY);
7207 }
7208
7209 static void
7210 vl_api_get_node_graph_t_handler (vl_api_get_node_graph_t * mp)
7211 {
7212   int rv = 0;
7213   u8 *vector = 0;
7214   api_main_t *am = &api_main;
7215   vlib_main_t *vm = vlib_get_main ();
7216   void *oldheap;
7217   vl_api_get_node_graph_reply_t *rmp;
7218
7219   pthread_mutex_lock (&am->vlib_rp->mutex);
7220   oldheap = svm_push_data_heap (am->vlib_rp);
7221
7222   /*
7223    * Keep the number of memcpy ops to a minimum (e.g. 1).
7224    */
7225   vec_validate (vector, 16384);
7226   vec_reset_length (vector);
7227
7228   /* $$$$ FIXME */
7229   vector = vlib_node_serialize (&vm->node_main, vector,
7230                                 (u32) ~ 0 /* all threads */ ,
7231                                 1 /* include nexts */ ,
7232                                 1 /* include stats */ );
7233
7234   svm_pop_heap (oldheap);
7235   pthread_mutex_unlock (&am->vlib_rp->mutex);
7236
7237   /* *INDENT-OFF* */
7238   REPLY_MACRO2(VL_API_GET_NODE_GRAPH_REPLY,
7239   ({
7240     rmp->reply_in_shmem = (uword) vector;
7241   }));
7242   /* *INDENT-ON* */
7243 }
7244
7245 static void
7246 vl_api_ioam_enable_t_handler (vl_api_ioam_enable_t * mp)
7247 {
7248   int rv = 0;
7249   vl_api_ioam_enable_reply_t *rmp;
7250   clib_error_t *error;
7251
7252   /* Ignoring the profile id as currently a single profile
7253    * is supported */
7254   error = ip6_ioam_enable (mp->trace_enable, mp->pow_enable, mp->trace_ppc);
7255   if (error)
7256     {
7257       clib_error_report (error);
7258       rv = clib_error_get_code (error);
7259     }
7260
7261   REPLY_MACRO (VL_API_IOAM_ENABLE_REPLY);
7262 }
7263
7264 static void
7265 vl_api_ioam_disable_t_handler (vl_api_ioam_disable_t * mp)
7266 {
7267   int rv = 0;
7268   vl_api_ioam_disable_reply_t *rmp;
7269   clib_error_t *error;
7270
7271   error = clear_ioam_rewrite_fn ();
7272   if (error)
7273     {
7274       clib_error_report (error);
7275       rv = clib_error_get_code (error);
7276     }
7277
7278   REPLY_MACRO (VL_API_IOAM_DISABLE_REPLY);
7279 }
7280
7281 static void
7282 vl_api_af_packet_create_t_handler (vl_api_af_packet_create_t * mp)
7283 {
7284   vlib_main_t *vm = vlib_get_main ();
7285   vl_api_af_packet_create_reply_t *rmp;
7286   int rv = 0;
7287   u8 *host_if_name = NULL;
7288   u32 sw_if_index;
7289
7290   host_if_name = format (0, "%s", mp->host_if_name);
7291   vec_add1 (host_if_name, 0);
7292
7293   rv = af_packet_create_if (vm, host_if_name,
7294                             mp->use_random_hw_addr ? 0 : mp->hw_addr,
7295                             &sw_if_index);
7296
7297   vec_free (host_if_name);
7298
7299   /* *INDENT-OFF* */
7300   REPLY_MACRO2(VL_API_AF_PACKET_CREATE_REPLY,
7301   ({
7302     rmp->sw_if_index = clib_host_to_net_u32(sw_if_index);
7303   }));
7304   /* *INDENT-ON* */
7305 }
7306
7307 static void
7308 vl_api_af_packet_delete_t_handler (vl_api_af_packet_delete_t * mp)
7309 {
7310   vlib_main_t *vm = vlib_get_main ();
7311   vl_api_af_packet_delete_reply_t *rmp;
7312   int rv = 0;
7313   u8 *host_if_name = NULL;
7314
7315   host_if_name = format (0, "%s", mp->host_if_name);
7316   vec_add1 (host_if_name, 0);
7317
7318   rv = af_packet_delete_if (vm, host_if_name);
7319
7320   vec_free (host_if_name);
7321
7322   REPLY_MACRO (VL_API_AF_PACKET_DELETE_REPLY);
7323 }
7324
7325 static void
7326 vl_api_policer_add_del_t_handler (vl_api_policer_add_del_t * mp)
7327 {
7328   vlib_main_t *vm = vlib_get_main ();
7329   vl_api_policer_add_del_reply_t *rmp;
7330   int rv = 0;
7331   u8 *name = NULL;
7332   sse2_qos_pol_cfg_params_st cfg;
7333   clib_error_t *error;
7334   u32 policer_index;
7335
7336   name = format (0, "%s", mp->name);
7337
7338   memset (&cfg, 0, sizeof (cfg));
7339   cfg.rfc = mp->type;
7340   cfg.rnd_type = mp->round_type;
7341   cfg.rate_type = mp->rate_type;
7342   cfg.rb.kbps.cir_kbps = mp->cir;
7343   cfg.rb.kbps.eir_kbps = mp->eir;
7344   cfg.rb.kbps.cb_bytes = mp->cb;
7345   cfg.rb.kbps.eb_bytes = mp->eb;
7346   cfg.conform_action.action_type = mp->conform_action_type;
7347   cfg.conform_action.dscp = mp->conform_dscp;
7348   cfg.exceed_action.action_type = mp->exceed_action_type;
7349   cfg.exceed_action.dscp = mp->exceed_dscp;
7350   cfg.violate_action.action_type = mp->violate_action_type;
7351   cfg.violate_action.dscp = mp->violate_dscp;
7352   cfg.color_aware = mp->color_aware;
7353
7354   error = policer_add_del (vm, name, &cfg, &policer_index, mp->is_add);
7355
7356   if (error)
7357     rv = VNET_API_ERROR_UNSPECIFIED;
7358
7359   /* *INDENT-OFF* */
7360   REPLY_MACRO2(VL_API_POLICER_ADD_DEL_REPLY,
7361   ({
7362     if (rv == 0 &&  mp->is_add)
7363       rmp->policer_index = ntohl(policer_index);
7364     else
7365       rmp->policer_index = ~0;
7366   }));
7367   /* *INDENT-ON* */
7368 }
7369
7370 static void
7371 send_policer_details (u8 * name,
7372                       sse2_qos_pol_cfg_params_st * config,
7373                       policer_read_response_type_st * templ,
7374                       unix_shared_memory_queue_t * q, u32 context)
7375 {
7376   vl_api_policer_details_t *mp;
7377
7378   mp = vl_msg_api_alloc (sizeof (*mp));
7379   memset (mp, 0, sizeof (*mp));
7380   mp->_vl_msg_id = ntohs (VL_API_POLICER_DETAILS);
7381   mp->context = context;
7382   mp->cir = htonl (config->rb.kbps.cir_kbps);
7383   mp->eir = htonl (config->rb.kbps.eir_kbps);
7384   mp->cb = htonl (config->rb.kbps.cb_bytes);
7385   mp->eb = htonl (config->rb.kbps.eb_bytes);
7386   mp->rate_type = config->rate_type;
7387   mp->round_type = config->rnd_type;
7388   mp->type = config->rfc;
7389   mp->conform_action_type = config->conform_action.action_type;
7390   mp->conform_dscp = config->conform_action.dscp;
7391   mp->exceed_action_type = config->exceed_action.action_type;
7392   mp->exceed_dscp = config->exceed_action.dscp;
7393   mp->violate_action_type = config->violate_action.action_type;
7394   mp->violate_dscp = config->violate_action.dscp;
7395   mp->single_rate = templ->single_rate ? 1 : 0;
7396   mp->color_aware = templ->color_aware ? 1 : 0;
7397   mp->scale = htonl (templ->scale);
7398   mp->cir_tokens_per_period = htonl (templ->cir_tokens_per_period);
7399   mp->pir_tokens_per_period = htonl (templ->pir_tokens_per_period);
7400   mp->current_limit = htonl (templ->current_limit);
7401   mp->current_bucket = htonl (templ->current_bucket);
7402   mp->extended_limit = htonl (templ->extended_limit);
7403   mp->extended_bucket = htonl (templ->extended_bucket);
7404   mp->last_update_time = clib_host_to_net_u64 (templ->last_update_time);
7405
7406   strncpy ((char *) mp->name, (char *) name, ARRAY_LEN (mp->name) - 1);
7407
7408   vl_msg_api_send_shmem (q, (u8 *) & mp);
7409 }
7410
7411 static void
7412 vl_api_policer_dump_t_handler (vl_api_policer_dump_t * mp)
7413 {
7414   unix_shared_memory_queue_t *q;
7415   vnet_policer_main_t *pm = &vnet_policer_main;
7416   hash_pair_t *hp;
7417   uword *p;
7418   u32 pool_index;
7419   u8 *match_name = 0;
7420   u8 *name;
7421   sse2_qos_pol_cfg_params_st *config;
7422   policer_read_response_type_st *templ;
7423
7424   q = vl_api_client_index_to_input_queue (mp->client_index);
7425   if (q == 0)
7426     return;
7427
7428   if (mp->match_name_valid)
7429     {
7430       match_name = format (0, "%s%c", mp->match_name, 0);
7431     }
7432
7433   if (mp->match_name_valid)
7434     {
7435       p = hash_get_mem (pm->policer_config_by_name, match_name);
7436       if (p)
7437         {
7438           pool_index = p[0];
7439           config = pool_elt_at_index (pm->configs, pool_index);
7440           templ = pool_elt_at_index (pm->policer_templates, pool_index);
7441           send_policer_details (match_name, config, templ, q, mp->context);
7442         }
7443     }
7444   else
7445     {
7446       /* *INDENT-OFF* */
7447       hash_foreach_pair (hp, pm->policer_config_by_name,
7448       ({
7449         name = (u8 *) hp->key;
7450         pool_index = hp->value[0];
7451         config = pool_elt_at_index (pm->configs, pool_index);
7452         templ = pool_elt_at_index (pm->policer_templates, pool_index);
7453         send_policer_details(name, config, templ, q, mp->context);
7454       }));
7455       /* *INDENT-ON* */
7456     }
7457 }
7458
7459 static void
7460   vl_api_policer_classify_set_interface_t_handler
7461   (vl_api_policer_classify_set_interface_t * mp)
7462 {
7463   vlib_main_t *vm = vlib_get_main ();
7464   vl_api_policer_classify_set_interface_reply_t *rmp;
7465   int rv;
7466   u32 sw_if_index, ip4_table_index, ip6_table_index, l2_table_index;
7467
7468   ip4_table_index = ntohl (mp->ip4_table_index);
7469   ip6_table_index = ntohl (mp->ip6_table_index);
7470   l2_table_index = ntohl (mp->l2_table_index);
7471   sw_if_index = ntohl (mp->sw_if_index);
7472
7473   VALIDATE_SW_IF_INDEX (mp);
7474
7475   rv = vnet_set_policer_classify_intfc (vm, sw_if_index, ip4_table_index,
7476                                         ip6_table_index, l2_table_index,
7477                                         mp->is_add);
7478
7479   BAD_SW_IF_INDEX_LABEL;
7480
7481   REPLY_MACRO (VL_API_POLICER_CLASSIFY_SET_INTERFACE_REPLY);
7482 }
7483
7484 static void
7485 send_policer_classify_details (u32 sw_if_index,
7486                                u32 table_index,
7487                                unix_shared_memory_queue_t * q, u32 context)
7488 {
7489   vl_api_policer_classify_details_t *mp;
7490
7491   mp = vl_msg_api_alloc (sizeof (*mp));
7492   memset (mp, 0, sizeof (*mp));
7493   mp->_vl_msg_id = ntohs (VL_API_POLICER_CLASSIFY_DETAILS);
7494   mp->context = context;
7495   mp->sw_if_index = htonl (sw_if_index);
7496   mp->table_index = htonl (table_index);
7497
7498   vl_msg_api_send_shmem (q, (u8 *) & mp);
7499 }
7500
7501 static void
7502 vl_api_policer_classify_dump_t_handler (vl_api_policer_classify_dump_t * mp)
7503 {
7504   unix_shared_memory_queue_t *q;
7505   policer_classify_main_t *pcm = &policer_classify_main;
7506   u32 *vec_tbl;
7507   int i;
7508
7509   q = vl_api_client_index_to_input_queue (mp->client_index);
7510   if (q == 0)
7511     return;
7512
7513   vec_tbl = pcm->classify_table_index_by_sw_if_index[mp->type];
7514
7515   if (vec_len (vec_tbl))
7516     {
7517       for (i = 0; i < vec_len (vec_tbl); i++)
7518         {
7519           if (vec_elt (vec_tbl, i) == ~0)
7520             continue;
7521
7522           send_policer_classify_details (i, vec_elt (vec_tbl, i), q,
7523                                          mp->context);
7524         }
7525     }
7526 }
7527
7528 static void
7529 vl_api_netmap_create_t_handler (vl_api_netmap_create_t * mp)
7530 {
7531   vlib_main_t *vm = vlib_get_main ();
7532   vl_api_netmap_create_reply_t *rmp;
7533   int rv = 0;
7534   u8 *if_name = NULL;
7535
7536   if_name = format (0, "%s", mp->netmap_if_name);
7537   vec_add1 (if_name, 0);
7538
7539   rv =
7540     netmap_create_if (vm, if_name, mp->use_random_hw_addr ? 0 : mp->hw_addr,
7541                       mp->is_pipe, mp->is_master, 0);
7542
7543   vec_free (if_name);
7544
7545   REPLY_MACRO (VL_API_NETMAP_CREATE_REPLY);
7546 }
7547
7548 static void
7549 vl_api_netmap_delete_t_handler (vl_api_netmap_delete_t * mp)
7550 {
7551   vlib_main_t *vm = vlib_get_main ();
7552   vl_api_netmap_delete_reply_t *rmp;
7553   int rv = 0;
7554   u8 *if_name = NULL;
7555
7556   if_name = format (0, "%s", mp->netmap_if_name);
7557   vec_add1 (if_name, 0);
7558
7559   rv = netmap_delete_if (vm, if_name);
7560
7561   vec_free (if_name);
7562
7563   REPLY_MACRO (VL_API_NETMAP_DELETE_REPLY);
7564 }
7565
7566 static void
7567 vl_api_mpls_eth_tunnel_details_t_handler (vl_api_mpls_eth_tunnel_details_t *
7568                                           mp)
7569 {
7570   clib_warning ("BUG");
7571 }
7572
7573 static void
7574 send_mpls_eth_tunnel_entry (vpe_api_main_t * am,
7575                             unix_shared_memory_queue_t * q,
7576                             mpls_eth_tunnel_t * et, u32 index, u32 context)
7577 {
7578   mpls_main_t *mm = &mpls_main;
7579   mpls_encap_t *e;
7580   int i;
7581   u32 nlabels;
7582   vl_api_mpls_eth_tunnel_details_t *mp;
7583
7584   e = pool_elt_at_index (mm->encaps, et->encap_index);
7585   nlabels = vec_len (e->labels);
7586
7587   mp = vl_msg_api_alloc (sizeof (*mp) + nlabels * sizeof (u32));
7588   memset (mp, 0, sizeof (*mp));
7589   mp->_vl_msg_id = ntohs (VL_API_MPLS_ETH_TUNNEL_DETAILS);
7590   mp->context = context;
7591
7592   mp->tunnel_index = htonl (index);
7593   memcpy (mp->tunnel_dst_mac, et->tunnel_dst, 6);
7594   mp->intfc_address = et->intfc_address.as_u32;
7595   mp->tx_sw_if_index = htonl (et->tx_sw_if_index);
7596   mp->inner_fib_index = htonl (et->inner_fib_index);
7597   mp->mask_width = htonl (et->mask_width);
7598   mp->encap_index = htonl (et->encap_index);
7599   mp->hw_if_index = htonl (et->hw_if_index);
7600   mp->l2_only = htonl (et->l2_only);
7601   mp->nlabels = htonl (nlabels);
7602
7603   for (i = 0; i < nlabels; i++)
7604     {
7605       mp->labels[i] =
7606         htonl (vnet_mpls_uc_get_label
7607                (clib_host_to_net_u32 (e->labels[i].label_exp_s_ttl)));
7608     }
7609
7610   vl_msg_api_send_shmem (q, (u8 *) & mp);
7611 }
7612
7613 static void
7614 vl_api_mpls_eth_tunnel_dump_t_handler (vl_api_mpls_eth_tunnel_dump_t * mp)
7615 {
7616   vpe_api_main_t *am = &vpe_api_main;
7617   unix_shared_memory_queue_t *q;
7618   mpls_main_t *mm = &mpls_main;
7619   mpls_eth_tunnel_t *et;
7620   u32 index = ntohl (mp->tunnel_index);
7621
7622   q = vl_api_client_index_to_input_queue (mp->client_index);
7623   if (q == 0)
7624     return;
7625
7626   if (index != ~0)
7627     {
7628       if (!pool_is_free_index (mm->eth_tunnels, index))
7629         {
7630           et = pool_elt_at_index (mm->eth_tunnels, index);
7631           send_mpls_eth_tunnel_entry (am, q, et, et - mm->eth_tunnels,
7632                                       mp->context);
7633         }
7634     }
7635   else
7636     {
7637       /* *INDENT-OFF* */
7638       pool_foreach (et, mm->eth_tunnels,
7639       ({
7640         send_mpls_eth_tunnel_entry (am, q, et, et - mm->eth_tunnels,
7641                                     mp->context);
7642       }));
7643       /* *INDENT-ON* */
7644     }
7645 }
7646
7647 static void
7648 vl_api_mpls_fib_details_t_handler (vl_api_mpls_fib_details_t * mp)
7649 {
7650   clib_warning ("BUG");
7651 }
7652
7653 static void
7654 send_mpls_fib_details (vpe_api_main_t * am,
7655                        unix_shared_memory_queue_t * q,
7656                        u32 table_id, u32 label, u32 eos, u32 context)
7657 {
7658   vl_api_mpls_fib_details_t *mp;
7659
7660   mp = vl_msg_api_alloc (sizeof (*mp));
7661   memset (mp, 0, sizeof (*mp));
7662   mp->_vl_msg_id = ntohs (VL_API_MPLS_FIB_DETAILS);
7663   mp->context = context;
7664
7665   mp->table_id = htonl (table_id);
7666   mp->eos_bit = eos;
7667   mp->label = htonl (label);
7668
7669   vl_msg_api_send_shmem (q, (u8 *) & mp);
7670 }
7671
7672 static void
7673 vl_api_mpls_fib_dump_t_handler (vl_api_mpls_fib_dump_t * mp)
7674 {
7675   vpe_api_main_t *am = &vpe_api_main;
7676   unix_shared_memory_queue_t *q;
7677   mpls_main_t *mm = &mpls_main;
7678   fib_table_t *fib_table;
7679   fib_node_index_t lfei, *lfeip, *lfeis = NULL;
7680   mpls_label_t key;
7681   fib_prefix_t pfx;
7682   u32 fib_index;
7683
7684   q = vl_api_client_index_to_input_queue (mp->client_index);
7685   if (q == 0)
7686     return;
7687
7688   /* *INDENT-OFF* */
7689   pool_foreach (fib_table, mm->fibs,
7690   ({
7691     hash_foreach(key, lfei, fib_table->mpls.mf_entries,
7692     ({
7693         vec_add1(lfeis, lfei);
7694     }));
7695   }));
7696   vec_sort_with_function(lfeis, fib_entry_cmp_for_sort);
7697
7698   vec_foreach(lfeip, lfeis)
7699   {
7700     fib_entry_get_prefix(*lfeip, &pfx);
7701     fib_index = fib_entry_get_fib_index(*lfeip);
7702
7703     fib_table = fib_table_get(fib_index, pfx.fp_proto);
7704
7705     send_mpls_fib_details (am, q,
7706                            fib_table->ft_table_id,
7707                            pfx.fp_label,
7708                            pfx.fp_eos,
7709                            mp->context);
7710   }
7711
7712   vec_free (lfeis);
7713 }
7714
7715 static void
7716 vl_api_mpls_fib_encap_details_t_handler (vl_api_mpls_fib_encap_details_t * mp)
7717 {
7718   clib_warning ("BUG");
7719 }
7720
7721 static void
7722 send_mpls_fib_encap_details (vpe_api_main_t * am,
7723                              unix_shared_memory_queue_t * q,
7724                              show_mpls_fib_t * s, u32 context)
7725 {
7726   vl_api_mpls_fib_encap_details_t *mp;
7727   mpls_main_t *mm = &mpls_main;
7728   mpls_encap_t *e;
7729   int i;
7730   u32 nlabels;
7731
7732   e = pool_elt_at_index (mm->encaps, s->entry_index);
7733   nlabels = vec_len (e->labels);
7734
7735   mp = vl_msg_api_alloc (sizeof (*mp) + nlabels * sizeof (u32));
7736   memset (mp, 0, sizeof (*mp));
7737   mp->_vl_msg_id = ntohs (VL_API_MPLS_FIB_ENCAP_DETAILS);
7738   mp->context = context;
7739
7740   mp->fib_index = htonl (s->fib_index);
7741   mp->entry_index = htonl (s->entry_index);
7742   mp->dest = s->dest;
7743   mp->s_bit = htonl (s->s_bit);
7744
7745   mp->nlabels = htonl (nlabels);
7746
7747   for (i = 0; i < nlabels; i++)
7748     {
7749       mp->labels[i] =
7750         htonl (vnet_mpls_uc_get_label
7751                (clib_host_to_net_u32 (e->labels[i].label_exp_s_ttl)));
7752     }
7753
7754   vl_msg_api_send_shmem (q, (u8 *) & mp);
7755 }
7756
7757 static void
7758 vl_api_mpls_fib_encap_dump_t_handler (vl_api_mpls_fib_encap_dump_t * mp)
7759 {
7760   vpe_api_main_t *am = &vpe_api_main;
7761   unix_shared_memory_queue_t *q;
7762   vlib_main_t *vm = &vlib_global_main;
7763   u64 key;
7764   u32 value;
7765   show_mpls_fib_t *records = 0;
7766   show_mpls_fib_t *s;
7767   mpls_main_t *mm = &mpls_main;
7768   ip4_fib_t *rx_fib;
7769
7770   q = vl_api_client_index_to_input_queue (mp->client_index);
7771   if (q == 0)
7772     return;
7773
7774   /* *INDENT-OFF* */
7775   hash_foreach (key, value, mm->mpls_encap_by_fib_and_dest,
7776   ({
7777     vec_add2 (records, s, 1);
7778     s->fib_index = (u32)(key>>32);
7779     s->dest = (u32)(key & 0xFFFFFFFF);
7780     s->entry_index = (u32) value;
7781   }));
7782   /* *INDENT-ON* */
7783
7784   if (0 == vec_len (records))
7785     {
7786       vlib_cli_output (vm, "MPLS encap table empty");
7787       goto out;
7788     }
7789
7790   /* sort output by dst address within fib */
7791   vec_sort_with_function (records, mpls_dest_cmp);
7792   vec_sort_with_function (records, mpls_fib_index_cmp);
7793   vlib_cli_output (vm, "MPLS encap table");
7794   vlib_cli_output (vm, "%=6s%=16s%=16s", "Table", "Dest address", "Labels");
7795   vec_foreach (s, records)
7796   {
7797     rx_fib = ip4_fib_get (s->fib_index);
7798     vlib_cli_output (vm, "%=6d%=16U%=16U", rx_fib->table_id,
7799                      format_ip4_address, &s->dest, format_mpls_encap_index,
7800                      mm, s->entry_index);
7801     send_mpls_fib_encap_details (am, q, s, mp->context);
7802   }
7803
7804 out:
7805   vec_free (records);
7806 }
7807
7808 static void
7809 vl_api_classify_table_ids_t_handler (vl_api_classify_table_ids_t * mp)
7810 {
7811   unix_shared_memory_queue_t *q;
7812
7813   q = vl_api_client_index_to_input_queue (mp->client_index);
7814   if (q == 0)
7815     return;
7816
7817   vnet_classify_main_t *cm = &vnet_classify_main;
7818   vnet_classify_table_t *t;
7819   u32 *table_ids = 0;
7820   u32 count;
7821
7822   /* *INDENT-OFF* */
7823   pool_foreach (t, cm->tables,
7824   ({
7825     vec_add1 (table_ids, ntohl(t - cm->tables));
7826   }));
7827   /* *INDENT-ON* */
7828   count = vec_len (table_ids);
7829
7830   vl_api_classify_table_ids_reply_t *rmp;
7831   rmp = vl_msg_api_alloc_as_if_client (sizeof (*rmp) + count * sizeof (u32));
7832   rmp->_vl_msg_id = ntohs (VL_API_CLASSIFY_TABLE_IDS_REPLY);
7833   rmp->context = mp->context;
7834   rmp->count = ntohl (count);
7835   clib_memcpy (rmp->ids, table_ids, count * sizeof (u32));
7836   rmp->retval = 0;
7837
7838   vl_msg_api_send_shmem (q, (u8 *) & rmp);
7839
7840   vec_free (table_ids);
7841 }
7842
7843 static void
7844   vl_api_classify_table_by_interface_t_handler
7845   (vl_api_classify_table_by_interface_t * mp)
7846 {
7847   vl_api_classify_table_by_interface_reply_t *rmp;
7848   int rv = 0;
7849
7850   u32 sw_if_index = ntohl (mp->sw_if_index);
7851   u32 *acl = 0;
7852
7853   vec_validate (acl, INPUT_ACL_N_TABLES - 1);
7854   vec_set (acl, ~0);
7855
7856   VALIDATE_SW_IF_INDEX (mp);
7857
7858   input_acl_main_t *am = &input_acl_main;
7859
7860   int if_idx;
7861   u32 type;
7862
7863   for (type = 0; type < INPUT_ACL_N_TABLES; type++)
7864     {
7865       u32 *vec_tbl = am->classify_table_index_by_sw_if_index[type];
7866       if (vec_len (vec_tbl))
7867         {
7868           for (if_idx = 0; if_idx < vec_len (vec_tbl); if_idx++)
7869             {
7870               if (vec_elt (vec_tbl, if_idx) == ~0 || sw_if_index != if_idx)
7871                 {
7872                   continue;
7873                 }
7874               acl[type] = vec_elt (vec_tbl, if_idx);
7875             }
7876         }
7877     }
7878
7879   BAD_SW_IF_INDEX_LABEL;
7880
7881   /* *INDENT-OFF* */
7882   REPLY_MACRO2(VL_API_CLASSIFY_TABLE_BY_INTERFACE_REPLY,
7883   ({
7884     rmp->sw_if_index = ntohl(sw_if_index);
7885     rmp->l2_table_id = ntohl(acl[INPUT_ACL_TABLE_L2]);
7886     rmp->ip4_table_id = ntohl(acl[INPUT_ACL_TABLE_IP4]);
7887     rmp->ip6_table_id = ntohl(acl[INPUT_ACL_TABLE_IP6]);
7888   }));
7889   /* *INDENT-ON* */
7890   vec_free (acl);
7891 }
7892
7893 static void
7894 vl_api_classify_table_info_t_handler (vl_api_classify_table_info_t * mp)
7895 {
7896   unix_shared_memory_queue_t *q;
7897
7898   q = vl_api_client_index_to_input_queue (mp->client_index);
7899   if (q == 0)
7900     return;
7901
7902   vl_api_classify_table_info_reply_t *rmp = 0;
7903
7904   vnet_classify_main_t *cm = &vnet_classify_main;
7905   u32 table_id = ntohl (mp->table_id);
7906   vnet_classify_table_t *t;
7907
7908   /* *INDENT-OFF* */
7909   pool_foreach (t, cm->tables,
7910   ({
7911     if (table_id == t - cm->tables)
7912       {
7913         rmp = vl_msg_api_alloc_as_if_client
7914           (sizeof (*rmp) + t->match_n_vectors * sizeof (u32x4));
7915         rmp->_vl_msg_id = ntohs (VL_API_CLASSIFY_TABLE_INFO_REPLY);
7916         rmp->context = mp->context;
7917         rmp->table_id = ntohl(table_id);
7918         rmp->nbuckets = ntohl(t->nbuckets);
7919         rmp->match_n_vectors = ntohl(t->match_n_vectors);
7920         rmp->skip_n_vectors = ntohl(t->skip_n_vectors);
7921         rmp->active_sessions = ntohl(t->active_elements);
7922         rmp->next_table_index = ntohl(t->next_table_index);
7923         rmp->miss_next_index = ntohl(t->miss_next_index);
7924         rmp->mask_length = ntohl(t->match_n_vectors * sizeof (u32x4));
7925         clib_memcpy(rmp->mask, t->mask, t->match_n_vectors * sizeof(u32x4));
7926         rmp->retval = 0;
7927         break;
7928       }
7929   }));
7930   /* *INDENT-ON* */
7931
7932   if (rmp == 0)
7933     {
7934       rmp = vl_msg_api_alloc (sizeof (*rmp));
7935       rmp->_vl_msg_id = ntohs ((VL_API_CLASSIFY_TABLE_INFO_REPLY));
7936       rmp->context = mp->context;
7937       rmp->retval = ntohl (VNET_API_ERROR_CLASSIFY_TABLE_NOT_FOUND);
7938     }
7939
7940   vl_msg_api_send_shmem (q, (u8 *) & rmp);
7941 }
7942
7943 static void
7944 vl_api_classify_session_details_t_handler (vl_api_classify_session_details_t *
7945                                            mp)
7946 {
7947   clib_warning ("BUG");
7948 }
7949
7950 static void
7951 send_classify_session_details (unix_shared_memory_queue_t * q,
7952                                u32 table_id,
7953                                u32 match_length,
7954                                vnet_classify_entry_t * e, u32 context)
7955 {
7956   vl_api_classify_session_details_t *rmp;
7957
7958   rmp = vl_msg_api_alloc (sizeof (*rmp));
7959   memset (rmp, 0, sizeof (*rmp));
7960   rmp->_vl_msg_id = ntohs (VL_API_CLASSIFY_SESSION_DETAILS);
7961   rmp->context = context;
7962   rmp->table_id = ntohl (table_id);
7963   rmp->hit_next_index = ntohl (e->next_index);
7964   rmp->advance = ntohl (e->advance);
7965   rmp->opaque_index = ntohl (e->opaque_index);
7966   rmp->match_length = ntohl (match_length);
7967   clib_memcpy (rmp->match, e->key, match_length);
7968
7969   vl_msg_api_send_shmem (q, (u8 *) & rmp);
7970 }
7971
7972 static void
7973 vl_api_classify_session_dump_t_handler (vl_api_classify_session_dump_t * mp)
7974 {
7975   vnet_classify_main_t *cm = &vnet_classify_main;
7976   unix_shared_memory_queue_t *q;
7977
7978   u32 table_id = ntohl (mp->table_id);
7979   vnet_classify_table_t *t;
7980
7981   q = vl_api_client_index_to_input_queue (mp->client_index);
7982   if (!q)
7983     return;
7984
7985   /* *INDENT-OFF* */
7986   pool_foreach (t, cm->tables,
7987   ({
7988     if (table_id == t - cm->tables)
7989       {
7990         vnet_classify_bucket_t * b;
7991         vnet_classify_entry_t * v, * save_v;
7992         int i, j, k;
7993
7994         for (i = 0; i < t->nbuckets; i++)
7995           {
7996             b = &t->buckets [i];
7997             if (b->offset == 0)
7998               continue;
7999
8000             save_v = vnet_classify_get_entry (t, b->offset);
8001             for (j = 0; j < (1<<b->log2_pages); j++)
8002               {
8003                 for (k = 0; k < t->entries_per_page; k++)
8004                   {
8005                     v = vnet_classify_entry_at_index
8006                       (t, save_v, j*t->entries_per_page + k);
8007                     if (vnet_classify_entry_is_free (v))
8008                       continue;
8009
8010                     send_classify_session_details
8011                       (q, table_id, t->match_n_vectors * sizeof (u32x4),
8012                        v, mp->context);
8013                   }
8014               }
8015           }
8016         break;
8017       }
8018   }));
8019   /* *INDENT-ON* */
8020 }
8021
8022 static void
8023 vl_api_set_ipfix_exporter_t_handler (vl_api_set_ipfix_exporter_t * mp)
8024 {
8025   vlib_main_t *vm = vlib_get_main ();
8026   flow_report_main_t *frm = &flow_report_main;
8027   vl_api_set_ipfix_exporter_reply_t *rmp;
8028   ip4_address_t collector, src;
8029   u16 collector_port = UDP_DST_PORT_ipfix;
8030   u32 path_mtu;
8031   u32 template_interval;
8032   u8 udp_checksum;
8033   u32 fib_id;
8034   u32 fib_index = ~0;
8035   int rv = 0;
8036
8037   memcpy (collector.data, mp->collector_address, sizeof (collector.data));
8038   collector_port = ntohs (mp->collector_port);
8039   if (collector_port == (u16) ~ 0)
8040     collector_port = UDP_DST_PORT_ipfix;
8041   memcpy (src.data, mp->src_address, sizeof (src.data));
8042   fib_id = ntohl (mp->vrf_id);
8043
8044   ip4_main_t *im = &ip4_main;
8045   if (fib_id == ~0)
8046     {
8047       fib_index = ~0;
8048     }
8049   else
8050     {
8051       uword *p = hash_get (im->fib_index_by_table_id, fib_id);
8052       if (!p)
8053         {
8054           rv = VNET_API_ERROR_NO_SUCH_FIB;
8055           goto out;
8056         }
8057       fib_index = p[0];
8058     }
8059
8060   path_mtu = ntohl (mp->path_mtu);
8061   if (path_mtu == ~0)
8062     path_mtu = 512;             // RFC 7011 section 10.3.3.
8063   template_interval = ntohl (mp->template_interval);
8064   if (template_interval == ~0)
8065     template_interval = 20;
8066   udp_checksum = mp->udp_checksum;
8067
8068   if (collector.as_u32 == 0)
8069     {
8070       rv = VNET_API_ERROR_INVALID_VALUE;
8071       goto out;
8072     }
8073
8074   if (src.as_u32 == 0)
8075     {
8076       rv = VNET_API_ERROR_INVALID_VALUE;
8077       goto out;
8078     }
8079
8080   if (path_mtu > 1450 /* vpp does not support fragmentation */ )
8081     {
8082       rv = VNET_API_ERROR_INVALID_VALUE;
8083       goto out;
8084     }
8085
8086   if (path_mtu < 68)
8087     {
8088       rv = VNET_API_ERROR_INVALID_VALUE;
8089       goto out;
8090     }
8091
8092   /* Reset report streams if we are reconfiguring IP addresses */
8093   if (frm->ipfix_collector.as_u32 != collector.as_u32 ||
8094       frm->src_address.as_u32 != src.as_u32 ||
8095       frm->collector_port != collector_port)
8096     vnet_flow_reports_reset (frm);
8097
8098   frm->ipfix_collector.as_u32 = collector.as_u32;
8099   frm->collector_port = collector_port;
8100   frm->src_address.as_u32 = src.as_u32;
8101   frm->fib_index = fib_index;
8102   frm->path_mtu = path_mtu;
8103   frm->template_interval = template_interval;
8104   frm->udp_checksum = udp_checksum;
8105
8106   /* Turn on the flow reporting process */
8107   vlib_process_signal_event (vm, flow_report_process_node.index, 1, 0);
8108
8109 out:
8110   REPLY_MACRO (VL_API_SET_IPFIX_EXPORTER_REPLY);
8111 }
8112
8113 static void
8114 vl_api_ipfix_exporter_dump_t_handler (vl_api_ipfix_exporter_dump_t * mp)
8115 {
8116   flow_report_main_t *frm = &flow_report_main;
8117   unix_shared_memory_queue_t *q;
8118   vl_api_ipfix_exporter_details_t *rmp;
8119   ip4_main_t *im = &ip4_main;
8120   u32 vrf_id;
8121
8122   q = vl_api_client_index_to_input_queue (mp->client_index);
8123   if (!q)
8124     return;
8125
8126   rmp = vl_msg_api_alloc (sizeof (*rmp));
8127   memset (rmp, 0, sizeof (*rmp));
8128   rmp->_vl_msg_id = ntohs (VL_API_IPFIX_EXPORTER_DETAILS);
8129   rmp->context = mp->context;
8130   memcpy (rmp->collector_address, frm->ipfix_collector.data,
8131           sizeof (frm->ipfix_collector.data));
8132   rmp->collector_port = htons (frm->collector_port);
8133   memcpy (rmp->src_address, frm->src_address.data,
8134           sizeof (frm->src_address.data));
8135   if (frm->fib_index == ~0)
8136     vrf_id = ~0;
8137   else
8138     vrf_id = im->fibs[frm->fib_index].ft_table_id;
8139   rmp->vrf_id = htonl (vrf_id);
8140   rmp->path_mtu = htonl (frm->path_mtu);
8141   rmp->template_interval = htonl (frm->template_interval);
8142   rmp->udp_checksum = (frm->udp_checksum != 0);
8143
8144   vl_msg_api_send_shmem (q, (u8 *) & rmp);
8145 }
8146
8147 static void
8148   vl_api_set_ipfix_classify_stream_t_handler
8149   (vl_api_set_ipfix_classify_stream_t * mp)
8150 {
8151   vl_api_set_ipfix_classify_stream_reply_t *rmp;
8152   flow_report_classify_main_t *fcm = &flow_report_classify_main;
8153   flow_report_main_t *frm = &flow_report_main;
8154   u32 domain_id = 0;
8155   u32 src_port = UDP_DST_PORT_ipfix;
8156   int rv = 0;
8157
8158   domain_id = ntohl (mp->domain_id);
8159   src_port = ntohs (mp->src_port);
8160
8161   if (fcm->src_port != 0 &&
8162       (fcm->domain_id != domain_id || fcm->src_port != (u16) src_port))
8163     {
8164       int rv = vnet_stream_change (frm, fcm->domain_id, fcm->src_port,
8165                                    domain_id, (u16) src_port);
8166       ASSERT (rv == 0);
8167     }
8168
8169   fcm->domain_id = domain_id;
8170   fcm->src_port = (u16) src_port;
8171
8172   REPLY_MACRO (VL_API_SET_IPFIX_CLASSIFY_STREAM_REPLY);
8173 }
8174
8175 static void
8176   vl_api_ipfix_classify_stream_dump_t_handler
8177   (vl_api_ipfix_classify_stream_dump_t * mp)
8178 {
8179   flow_report_classify_main_t *fcm = &flow_report_classify_main;
8180   unix_shared_memory_queue_t *q;
8181   vl_api_ipfix_classify_stream_details_t *rmp;
8182
8183   q = vl_api_client_index_to_input_queue (mp->client_index);
8184   if (!q)
8185     return;
8186
8187   rmp = vl_msg_api_alloc (sizeof (*rmp));
8188   memset (rmp, 0, sizeof (*rmp));
8189   rmp->_vl_msg_id = ntohs (VL_API_IPFIX_CLASSIFY_STREAM_DETAILS);
8190   rmp->context = mp->context;
8191   rmp->domain_id = htonl (fcm->domain_id);
8192   rmp->src_port = htons (fcm->src_port);
8193
8194   vl_msg_api_send_shmem (q, (u8 *) & rmp);
8195 }
8196
8197 static void
8198   vl_api_ipfix_classify_table_add_del_t_handler
8199   (vl_api_ipfix_classify_table_add_del_t * mp)
8200 {
8201   vl_api_ipfix_classify_table_add_del_reply_t *rmp;
8202   flow_report_classify_main_t *fcm = &flow_report_classify_main;
8203   flow_report_main_t *frm = &flow_report_main;
8204   vnet_flow_report_add_del_args_t args;
8205   ipfix_classify_table_t *table;
8206   int is_add;
8207   u32 classify_table_index;
8208   u8 ip_version;
8209   u8 transport_protocol;
8210   int rv = 0;
8211
8212   classify_table_index = ntohl (mp->table_id);
8213   ip_version = mp->ip_version;
8214   transport_protocol = mp->transport_protocol;
8215   is_add = mp->is_add;
8216
8217   if (fcm->src_port == 0)
8218     {
8219       /* call set_ipfix_classify_stream first */
8220       rv = VNET_API_ERROR_UNSPECIFIED;
8221       goto out;
8222     }
8223
8224   memset (&args, 0, sizeof (args));
8225
8226   table = 0;
8227   int i;
8228   for (i = 0; i < vec_len (fcm->tables); i++)
8229     if (ipfix_classify_table_index_valid (i))
8230       if (fcm->tables[i].classify_table_index == classify_table_index)
8231         {
8232           table = &fcm->tables[i];
8233           break;
8234         }
8235
8236   if (is_add)
8237     {
8238       if (table)
8239         {
8240           rv = VNET_API_ERROR_VALUE_EXIST;
8241           goto out;
8242         }
8243       table = ipfix_classify_add_table ();
8244       table->classify_table_index = classify_table_index;
8245     }
8246   else
8247     {
8248       if (!table)
8249         {
8250           rv = VNET_API_ERROR_NO_SUCH_ENTRY;
8251           goto out;
8252         }
8253     }
8254
8255   table->ip_version = ip_version;
8256   table->transport_protocol = transport_protocol;
8257
8258   args.opaque.as_uword = table - fcm->tables;
8259   args.rewrite_callback = ipfix_classify_template_rewrite;
8260   args.flow_data_callback = ipfix_classify_send_flows;
8261   args.is_add = is_add;
8262   args.domain_id = fcm->domain_id;
8263   args.src_port = fcm->src_port;
8264
8265   rv = vnet_flow_report_add_del (frm, &args);
8266
8267   /* If deleting, or add failed */
8268   if (is_add == 0 || (rv && is_add))
8269     ipfix_classify_delete_table (table - fcm->tables);
8270
8271 out:
8272   REPLY_MACRO (VL_API_SET_IPFIX_CLASSIFY_STREAM_REPLY);
8273 }
8274
8275 static void
8276 send_ipfix_classify_table_details (u32 table_index,
8277                                    unix_shared_memory_queue_t * q,
8278                                    u32 context)
8279 {
8280   flow_report_classify_main_t *fcm = &flow_report_classify_main;
8281   vl_api_ipfix_classify_table_details_t *mp;
8282
8283   ipfix_classify_table_t *table = &fcm->tables[table_index];
8284
8285   mp = vl_msg_api_alloc (sizeof (*mp));
8286   memset (mp, 0, sizeof (*mp));
8287   mp->_vl_msg_id = ntohs (VL_API_IPFIX_CLASSIFY_TABLE_DETAILS);
8288   mp->context = context;
8289   mp->table_id = htonl (table->classify_table_index);
8290   mp->ip_version = table->ip_version;
8291   mp->transport_protocol = table->transport_protocol;
8292
8293   vl_msg_api_send_shmem (q, (u8 *) & mp);
8294 }
8295
8296 static void
8297   vl_api_ipfix_classify_table_dump_t_handler
8298   (vl_api_ipfix_classify_table_dump_t * mp)
8299 {
8300   flow_report_classify_main_t *fcm = &flow_report_classify_main;
8301   unix_shared_memory_queue_t *q;
8302   u32 i;
8303
8304   q = vl_api_client_index_to_input_queue (mp->client_index);
8305   if (!q)
8306     return;
8307
8308   for (i = 0; i < vec_len (fcm->tables); i++)
8309     if (ipfix_classify_table_index_valid (i))
8310       send_ipfix_classify_table_details (i, q, mp->context);
8311 }
8312
8313 static void
8314 vl_api_pg_create_interface_t_handler (vl_api_pg_create_interface_t * mp)
8315 {
8316   vl_api_pg_create_interface_reply_t *rmp;
8317   int rv = 0;
8318
8319   pg_main_t *pg = &pg_main;
8320   u32 pg_if_id = pg_interface_add_or_get (pg, ntohl (mp->interface_id));
8321   pg_interface_t *pi = pool_elt_at_index (pg->interfaces, pg_if_id);
8322
8323   /* *INDENT-OFF* */
8324   REPLY_MACRO2(VL_API_PG_CREATE_INTERFACE_REPLY,
8325   ({
8326     rmp->sw_if_index = ntohl(pi->sw_if_index);
8327   }));
8328   /* *INDENT-ON* */
8329 }
8330
8331 static void
8332 vl_api_pg_capture_t_handler (vl_api_pg_capture_t * mp)
8333 {
8334   vl_api_pg_capture_reply_t *rmp;
8335   int rv = 0;
8336
8337   vnet_main_t *vnm = vnet_get_main ();
8338   vnet_interface_main_t *im = &vnm->interface_main;
8339   vnet_hw_interface_t *hi = 0;
8340
8341   u8 *intf_name = format (0, "pg%d", ntohl (mp->interface_id), 0);
8342   u32 hw_if_index = ~0;
8343   uword *p = hash_get_mem (im->hw_interface_by_name, intf_name);
8344   if (p)
8345     hw_if_index = *p;
8346   vec_free (intf_name);
8347
8348   if (hw_if_index != ~0)
8349     {
8350       pg_capture_args_t _a, *a = &_a;
8351
8352       u32 len = ntohl (mp->pcap_name_length);
8353       u8 *pcap_file_name = vec_new (u8, len);
8354       clib_memcpy (pcap_file_name, mp->pcap_file_name, len);
8355
8356       hi = vnet_get_sup_hw_interface (vnm, hw_if_index);
8357       a->hw_if_index = hw_if_index;
8358       a->dev_instance = hi->dev_instance;
8359       a->is_enabled = mp->is_enabled;
8360       a->pcap_file_name = pcap_file_name;
8361       a->count = ntohl (mp->count);
8362
8363       clib_error_t *e = pg_capture (a);
8364       if (e)
8365         {
8366           clib_error_report (e);
8367           rv = VNET_API_ERROR_CANNOT_CREATE_PCAP_FILE;
8368         }
8369
8370       vec_free (pcap_file_name);
8371     }
8372   REPLY_MACRO (VL_API_PG_CAPTURE_REPLY);
8373 }
8374
8375 static void
8376 vl_api_pg_enable_disable_t_handler (vl_api_pg_enable_disable_t * mp)
8377 {
8378   vl_api_pg_enable_disable_reply_t *rmp;
8379   int rv = 0;
8380
8381   pg_main_t *pg = &pg_main;
8382   u32 stream_index = ~0;
8383
8384   int is_enable = mp->is_enabled != 0;
8385   u32 len = ntohl (mp->stream_name_length) - 1;
8386
8387   if (len > 0)
8388     {
8389       u8 *stream_name = vec_new (u8, len);
8390       clib_memcpy (stream_name, mp->stream_name, len);
8391       uword *p = hash_get_mem (pg->stream_index_by_name, stream_name);
8392       if (p)
8393         stream_index = *p;
8394       vec_free (stream_name);
8395     }
8396
8397   pg_enable_disable (stream_index, is_enable);
8398
8399   REPLY_MACRO (VL_API_PG_ENABLE_DISABLE_REPLY);
8400 }
8401
8402 static void
8403   vl_api_ip_source_and_port_range_check_add_del_t_handler
8404   (vl_api_ip_source_and_port_range_check_add_del_t * mp)
8405 {
8406   vl_api_ip_source_and_port_range_check_add_del_reply_t *rmp;
8407   int rv = 0;
8408
8409   u8 is_ipv6 = mp->is_ipv6;
8410   u8 is_add = mp->is_add;
8411   u8 mask_length = mp->mask_length;
8412   ip4_address_t ip4_addr;
8413   ip6_address_t ip6_addr;
8414   u16 *low_ports = 0;
8415   u16 *high_ports = 0;
8416   u32 vrf_id;
8417   u16 tmp_low, tmp_high;
8418   u8 num_ranges;
8419   int i;
8420
8421   // Validate port range
8422   num_ranges = mp->number_of_ranges;
8423   if (num_ranges > 32)
8424     {                           // This is size of array in VPE.API
8425       rv = VNET_API_ERROR_EXCEEDED_NUMBER_OF_RANGES_CAPACITY;
8426       goto reply;
8427     }
8428
8429   vec_reset_length (low_ports);
8430   vec_reset_length (high_ports);
8431
8432   for (i = 0; i < num_ranges; i++)
8433     {
8434       tmp_low = mp->low_ports[i];
8435       tmp_high = mp->high_ports[i];
8436       // If tmp_low <= tmp_high then only need to check tmp_low = 0
8437       // If tmp_low <= tmp_high then only need to check tmp_high > 65535
8438       if (tmp_low > tmp_high || tmp_low == 0 || tmp_high > 65535)
8439         {
8440           rv = VNET_API_ERROR_INVALID_VALUE;
8441           goto reply;
8442         }
8443       vec_add1 (low_ports, tmp_low);
8444       vec_add1 (high_ports, tmp_high + 1);
8445     }
8446
8447   // Validate mask_length
8448   if ((is_ipv6 && mask_length > 128) || (!is_ipv6 && mask_length > 32))
8449     {
8450       rv = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
8451       goto reply;
8452     }
8453
8454   vrf_id = ntohl (mp->vrf_id);
8455
8456   if (vrf_id < 1)
8457     {
8458       rv = VNET_API_ERROR_INVALID_VALUE;
8459       goto reply;
8460     }
8461
8462
8463   if (is_ipv6)
8464     {
8465       clib_memcpy (ip6_addr.as_u8, mp->address, sizeof (ip6_addr.as_u8));
8466       rv = ip6_source_and_port_range_check_add_del (&ip6_addr,
8467                                                     mask_length,
8468                                                     vrf_id,
8469                                                     low_ports,
8470                                                     high_ports, is_add);
8471     }
8472   else
8473     {
8474       clib_memcpy (ip4_addr.data, mp->address, sizeof (ip4_addr));
8475       rv = ip4_source_and_port_range_check_add_del (&ip4_addr,
8476                                                     mask_length,
8477                                                     vrf_id,
8478                                                     low_ports,
8479                                                     high_ports, is_add);
8480     }
8481
8482 reply:
8483   vec_free (low_ports);
8484   vec_free (high_ports);
8485   REPLY_MACRO (VL_API_IP_SOURCE_AND_PORT_RANGE_CHECK_ADD_DEL_REPLY);
8486 }
8487
8488 static void
8489   vl_api_ip_source_and_port_range_check_interface_add_del_t_handler
8490   (vl_api_ip_source_and_port_range_check_interface_add_del_t * mp)
8491 {
8492   vlib_main_t *vm = vlib_get_main ();
8493   vl_api_ip_source_and_port_range_check_interface_add_del_reply_t *rmp;
8494   ip4_main_t *im = &ip4_main;
8495   int rv;
8496   u32 sw_if_index;
8497   u32 fib_index[IP_SOURCE_AND_PORT_RANGE_CHECK_N_PROTOCOLS];
8498   u32 vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_N_PROTOCOLS];
8499   uword *p = 0;
8500   int i;
8501
8502   vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_TCP_OUT] =
8503     ntohl (mp->tcp_out_vrf_id);
8504   vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_UDP_OUT] =
8505     ntohl (mp->udp_out_vrf_id);
8506   vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_TCP_IN] =
8507     ntohl (mp->tcp_in_vrf_id);
8508   vrf_id[IP_SOURCE_AND_PORT_RANGE_CHECK_PROTOCOL_UDP_IN] =
8509     ntohl (mp->udp_in_vrf_id);
8510
8511
8512   for (i = 0; i < IP_SOURCE_AND_PORT_RANGE_CHECK_N_PROTOCOLS; i++)
8513     {
8514       if (vrf_id[i] != 0 && vrf_id[i] != ~0)
8515         {
8516           p = hash_get (im->fib_index_by_table_id, vrf_id[i]);
8517
8518           if (p == 0)
8519             {
8520               rv = VNET_API_ERROR_INVALID_VALUE;
8521               goto reply;
8522             }
8523
8524           fib_index[i] = p[0];
8525         }
8526       else
8527         fib_index[i] = ~0;
8528     }
8529   sw_if_index = ntohl (mp->sw_if_index);
8530
8531   VALIDATE_SW_IF_INDEX (mp);
8532
8533   rv =
8534     set_ip_source_and_port_range_check (vm, fib_index, sw_if_index,
8535                                         mp->is_add);
8536
8537   BAD_SW_IF_INDEX_LABEL;
8538 reply:
8539
8540   REPLY_MACRO (VL_API_IP_SOURCE_AND_PORT_RANGE_CHECK_INTERFACE_ADD_DEL_REPLY);
8541 }
8542
8543 static void
8544 vl_api_ipsec_gre_add_del_tunnel_t_handler (vl_api_ipsec_gre_add_del_tunnel_t *
8545                                            mp)
8546 {
8547   vl_api_ipsec_gre_add_del_tunnel_reply_t *rmp;
8548   int rv = 0;
8549   vnet_ipsec_gre_add_del_tunnel_args_t _a, *a = &_a;
8550   u32 sw_if_index = ~0;
8551
8552   /* Check src & dst are different */
8553   if (memcmp (mp->src_address, mp->dst_address, 4) == 0)
8554     {
8555       rv = VNET_API_ERROR_SAME_SRC_DST;
8556       goto out;
8557     }
8558
8559   memset (a, 0, sizeof (*a));
8560
8561   /* ip addresses sent in network byte order */
8562   clib_memcpy (&(a->src), mp->src_address, 4);
8563   clib_memcpy (&(a->dst), mp->dst_address, 4);
8564   a->is_add = mp->is_add;
8565   a->lsa = ntohl (mp->local_sa_id);
8566   a->rsa = ntohl (mp->remote_sa_id);
8567
8568   rv = vnet_ipsec_gre_add_del_tunnel (a, &sw_if_index);
8569
8570 out:
8571     /* *INDENT-OFF* */
8572     REPLY_MACRO2(VL_API_GRE_ADD_DEL_TUNNEL_REPLY,
8573     ({
8574         rmp->sw_if_index = ntohl (sw_if_index);
8575     }));
8576     /* *INDENT-ON* */
8577 }
8578
8579 static void send_ipsec_gre_tunnel_details
8580   (ipsec_gre_tunnel_t * t, unix_shared_memory_queue_t * q, u32 context)
8581 {
8582   vl_api_ipsec_gre_tunnel_details_t *rmp;
8583
8584   rmp = vl_msg_api_alloc (sizeof (*rmp));
8585   memset (rmp, 0, sizeof (*rmp));
8586   rmp->_vl_msg_id = ntohs (VL_API_IPSEC_GRE_TUNNEL_DETAILS);
8587   clib_memcpy (rmp->src_address, &(t->tunnel_src), 4);
8588   clib_memcpy (rmp->dst_address, &(t->tunnel_dst), 4);
8589   rmp->sw_if_index = htonl (t->sw_if_index);
8590   rmp->local_sa_id = htonl (t->local_sa_id);
8591   rmp->remote_sa_id = htonl (t->remote_sa_id);
8592   rmp->context = context;
8593
8594   vl_msg_api_send_shmem (q, (u8 *) & rmp);
8595 }
8596
8597 static void vl_api_ipsec_gre_tunnel_dump_t_handler
8598   (vl_api_ipsec_gre_tunnel_dump_t * mp)
8599 {
8600   unix_shared_memory_queue_t *q;
8601   ipsec_gre_main_t *igm = &ipsec_gre_main;
8602   ipsec_gre_tunnel_t *t;
8603   u32 sw_if_index;
8604
8605   q = vl_api_client_index_to_input_queue (mp->client_index);
8606   if (q == 0)
8607     {
8608       return;
8609     }
8610
8611   sw_if_index = ntohl (mp->sw_if_index);
8612
8613   if (~0 == sw_if_index)
8614     {
8615         /* *INDENT-OFF* */
8616         pool_foreach (t, igm->tunnels,
8617         ({
8618             send_ipsec_gre_tunnel_details(t, q, mp->context);
8619         }));
8620         /* *INDENT-ON* */
8621     }
8622   else
8623     {
8624       if ((sw_if_index >= vec_len (igm->tunnel_index_by_sw_if_index)) ||
8625           (~0 == igm->tunnel_index_by_sw_if_index[sw_if_index]))
8626         {
8627           return;
8628         }
8629       t = &igm->tunnels[igm->tunnel_index_by_sw_if_index[sw_if_index]];
8630       send_ipsec_gre_tunnel_details (t, q, mp->context);
8631     }
8632 }
8633
8634 static void
8635 vl_api_delete_subif_t_handler (vl_api_delete_subif_t * mp)
8636 {
8637   vl_api_delete_subif_reply_t *rmp;
8638   int rv;
8639
8640   rv = vnet_delete_sub_interface (ntohl (mp->sw_if_index));
8641
8642   REPLY_MACRO (VL_API_DELETE_SUBIF_REPLY);
8643 }
8644
8645 static void
8646   vl_api_l2_interface_pbb_tag_rewrite_t_handler
8647   (vl_api_l2_interface_pbb_tag_rewrite_t * mp)
8648 {
8649   vl_api_l2_interface_pbb_tag_rewrite_reply_t *rmp;
8650   vnet_main_t *vnm = vnet_get_main ();
8651   vlib_main_t *vm = vlib_get_main ();
8652   u32 vtr_op;
8653   int rv = 0;
8654
8655   VALIDATE_SW_IF_INDEX (mp);
8656
8657   vtr_op = ntohl (mp->vtr_op);
8658
8659   switch (vtr_op)
8660     {
8661     case L2_VTR_DISABLED:
8662     case L2_VTR_PUSH_2:
8663     case L2_VTR_POP_2:
8664     case L2_VTR_TRANSLATE_2_1:
8665       break;
8666
8667     default:
8668       rv = VNET_API_ERROR_INVALID_VALUE;
8669       goto bad_sw_if_index;
8670     }
8671
8672   rv = l2pbb_configure (vm, vnm, ntohl (mp->sw_if_index), vtr_op,
8673                         mp->b_dmac, mp->b_smac, ntohs (mp->b_vlanid),
8674                         ntohl (mp->i_sid), ntohs (mp->outer_tag));
8675
8676   BAD_SW_IF_INDEX_LABEL;
8677
8678   REPLY_MACRO (VL_API_L2_INTERFACE_PBB_TAG_REWRITE_REPLY);
8679 }
8680
8681 static void
8682 vl_api_punt_t_handler (vl_api_punt_t * mp)
8683 {
8684   vl_api_punt_reply_t *rmp;
8685   vlib_main_t *vm = vlib_get_main ();
8686   int rv = 0;
8687   clib_error_t *error;
8688
8689   error = vnet_punt_add_del (vm, mp->ipv, mp->l4_protocol,
8690                              ntohs (mp->l4_port), mp->is_add);
8691   if (error)
8692     {
8693       rv = -1;
8694       clib_error_report (error);
8695     }
8696
8697   REPLY_MACRO (VL_API_PUNT_REPLY);
8698 }
8699
8700 static void
8701   vl_api_flow_classify_set_interface_t_handler
8702   (vl_api_flow_classify_set_interface_t * mp)
8703 {
8704   vlib_main_t *vm = vlib_get_main ();
8705   vl_api_flow_classify_set_interface_reply_t *rmp;
8706   int rv;
8707   u32 sw_if_index, ip4_table_index, ip6_table_index;
8708
8709   ip4_table_index = ntohl (mp->ip4_table_index);
8710   ip6_table_index = ntohl (mp->ip6_table_index);
8711   sw_if_index = ntohl (mp->sw_if_index);
8712
8713   VALIDATE_SW_IF_INDEX (mp);
8714
8715   rv = vnet_set_flow_classify_intfc (vm, sw_if_index, ip4_table_index,
8716                                      ip6_table_index, mp->is_add);
8717
8718   BAD_SW_IF_INDEX_LABEL;
8719
8720   REPLY_MACRO (VL_API_FLOW_CLASSIFY_SET_INTERFACE_REPLY);
8721 }
8722
8723 static void
8724 send_flow_classify_details (u32 sw_if_index,
8725                             u32 table_index,
8726                             unix_shared_memory_queue_t * q, u32 context)
8727 {
8728   vl_api_flow_classify_details_t *mp;
8729
8730   mp = vl_msg_api_alloc (sizeof (*mp));
8731   memset (mp, 0, sizeof (*mp));
8732   mp->_vl_msg_id = ntohs (VL_API_FLOW_CLASSIFY_DETAILS);
8733   mp->context = context;
8734   mp->sw_if_index = htonl (sw_if_index);
8735   mp->table_index = htonl (table_index);
8736
8737   vl_msg_api_send_shmem (q, (u8 *) & mp);
8738 }
8739
8740 static void
8741 vl_api_flow_classify_dump_t_handler (vl_api_flow_classify_dump_t * mp)
8742 {
8743   unix_shared_memory_queue_t *q;
8744   flow_classify_main_t *pcm = &flow_classify_main;
8745   u32 *vec_tbl;
8746   int i;
8747
8748   q = vl_api_client_index_to_input_queue (mp->client_index);
8749   if (q == 0)
8750     return;
8751
8752   vec_tbl = pcm->classify_table_index_by_sw_if_index[mp->type];
8753
8754   if (vec_len (vec_tbl))
8755     {
8756       for (i = 0; i < vec_len (vec_tbl); i++)
8757         {
8758           if (vec_elt (vec_tbl, i) == ~0)
8759             continue;
8760
8761           send_flow_classify_details (i, vec_elt (vec_tbl, i), q,
8762                                       mp->context);
8763         }
8764     }
8765 }
8766
8767 #define BOUNCE_HANDLER(nn)                                              \
8768 static void vl_api_##nn##_t_handler (                                   \
8769     vl_api_##nn##_t *mp)                                                \
8770 {                                                                       \
8771     vpe_client_registration_t *reg;                                     \
8772     vpe_api_main_t * vam = &vpe_api_main;                               \
8773     unix_shared_memory_queue_t * q;                                     \
8774                                                                         \
8775     /* One registration only... */                                      \
8776     pool_foreach(reg, vam->nn##_registrations,                          \
8777     ({                                                                  \
8778         q = vl_api_client_index_to_input_queue (reg->client_index);     \
8779         if (q) {                                                        \
8780             /*                                                          \
8781              * If the queue is stuffed, turf the msg and complain       \
8782              * It's unlikely that the intended recipient is             \
8783              * alive; avoid deadlock at all costs.                      \
8784              */                                                         \
8785             if (q->cursize == q->maxsize) {                             \
8786                 clib_warning ("ERROR: receiver queue full, drop msg");  \
8787                 vl_msg_api_free (mp);                                   \
8788                 return;                                                 \
8789             }                                                           \
8790             vl_msg_api_send_shmem (q, (u8 *)&mp);                       \
8791             return;                                                     \
8792         }                                                               \
8793     }));                                                                \
8794     vl_msg_api_free (mp);                                               \
8795 }
8796
8797 /*
8798  * vpe_api_hookup
8799  * Add vpe's API message handlers to the table.
8800  * vlib has alread mapped shared memory and
8801  * added the client registration handlers.
8802  * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
8803  */
8804
8805 static clib_error_t *
8806 vpe_api_hookup (vlib_main_t * vm)
8807 {
8808   api_main_t *am = &api_main;
8809
8810 #define _(N,n)                                                  \
8811     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
8812                            vl_api_##n##_t_handler,              \
8813                            vl_noop_handler,                     \
8814                            vl_api_##n##_t_endian,               \
8815                            vl_api_##n##_t_print,                \
8816                            sizeof(vl_api_##n##_t), 1);
8817   foreach_vpe_api_msg;
8818 #undef _
8819
8820   /*
8821    * Manually register the sr tunnel add del msg, so we trace
8822    * enough bytes to capture a typical segment list
8823    */
8824   vl_msg_api_set_handlers (VL_API_SR_TUNNEL_ADD_DEL,
8825                            "sr_tunnel_add_del",
8826                            vl_api_sr_tunnel_add_del_t_handler,
8827                            vl_noop_handler,
8828                            vl_api_sr_tunnel_add_del_t_endian,
8829                            vl_api_sr_tunnel_add_del_t_print, 256, 1);
8830
8831
8832   /*
8833    * Manually register the sr policy add del msg, so we trace
8834    * enough bytes to capture a typical tunnel name list
8835    */
8836   vl_msg_api_set_handlers (VL_API_SR_POLICY_ADD_DEL,
8837                            "sr_policy_add_del",
8838                            vl_api_sr_policy_add_del_t_handler,
8839                            vl_noop_handler,
8840                            vl_api_sr_policy_add_del_t_endian,
8841                            vl_api_sr_policy_add_del_t_print, 256, 1);
8842
8843   /*
8844    * Trace space for 8 MPLS encap labels, classifier mask+match
8845    */
8846   am->api_trace_cfg[VL_API_MPLS_ADD_DEL_ENCAP].size += 8 * sizeof (u32);
8847   am->api_trace_cfg[VL_API_CLASSIFY_ADD_DEL_TABLE].size += 5 * sizeof (u32x4);
8848   am->api_trace_cfg[VL_API_CLASSIFY_ADD_DEL_SESSION].size
8849     += 5 * sizeof (u32x4);
8850   am->api_trace_cfg[VL_API_VXLAN_ADD_DEL_TUNNEL].size += 16 * sizeof (u32);
8851
8852   /*
8853    * Thread-safe API messages
8854    */
8855   am->is_mp_safe[VL_API_IP_ADD_DEL_ROUTE] = 1;
8856   am->is_mp_safe[VL_API_GET_NODE_GRAPH] = 1;
8857
8858   return 0;
8859 }
8860
8861 VLIB_API_INIT_FUNCTION (vpe_api_hookup);
8862
8863 static clib_error_t *
8864 vpe_api_init (vlib_main_t * vm)
8865 {
8866   vpe_api_main_t *am = &vpe_api_main;
8867
8868   am->vlib_main = vm;
8869   am->vnet_main = vnet_get_main ();
8870   am->interface_events_registration_hash = hash_create (0, sizeof (uword));
8871   am->to_netconf_server_registration_hash = hash_create (0, sizeof (uword));
8872   am->from_netconf_server_registration_hash = hash_create (0, sizeof (uword));
8873   am->to_netconf_client_registration_hash = hash_create (0, sizeof (uword));
8874   am->from_netconf_client_registration_hash = hash_create (0, sizeof (uword));
8875   am->oam_events_registration_hash = hash_create (0, sizeof (uword));
8876
8877   vl_api_init (vm);
8878   vl_set_memory_region_name ("/vpe-api");
8879   vl_enable_disable_memory_api (vm, 1 /* enable it */ );
8880
8881   return 0;
8882 }
8883
8884 VLIB_INIT_FUNCTION (vpe_api_init);
8885
8886
8887 static clib_error_t *
8888 api_segment_config (vlib_main_t * vm, unformat_input_t * input)
8889 {
8890   u8 *chroot_path;
8891   u64 baseva, size, pvt_heap_size;
8892   int uid, gid, rv;
8893   const int max_buf_size = 4096;
8894   char *s, *buf;
8895   struct passwd _pw, *pw;
8896   struct group _grp, *grp;
8897   clib_error_t *e;
8898   buf = vec_new (char, 128);
8899   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
8900     {
8901       if (unformat (input, "prefix %s", &chroot_path))
8902         {
8903           vec_add1 (chroot_path, 0);
8904           vl_set_memory_root_path ((char *) chroot_path);
8905         }
8906       else if (unformat (input, "uid %d", &uid))
8907         vl_set_memory_uid (uid);
8908       else if (unformat (input, "gid %d", &gid))
8909         vl_set_memory_gid (gid);
8910       else if (unformat (input, "baseva %llx", &baseva))
8911         vl_set_global_memory_baseva (baseva);
8912       else if (unformat (input, "global-size %lldM", &size))
8913         vl_set_global_memory_size (size * (1ULL << 20));
8914       else if (unformat (input, "global-size %lldG", &size))
8915         vl_set_global_memory_size (size * (1ULL << 30));
8916       else if (unformat (input, "global-size %lld", &size))
8917         vl_set_global_memory_size (size);
8918       else if (unformat (input, "global-pvt-heap-size %lldM", &pvt_heap_size))
8919         vl_set_global_pvt_heap_size (pvt_heap_size * (1ULL << 20));
8920       else if (unformat (input, "global-pvt-heap-size size %lld",
8921                          &pvt_heap_size))
8922         vl_set_global_pvt_heap_size (pvt_heap_size);
8923       else if (unformat (input, "api-pvt-heap-size %lldM", &pvt_heap_size))
8924         vl_set_api_pvt_heap_size (pvt_heap_size * (1ULL << 20));
8925       else if (unformat (input, "api-pvt-heap-size size %lld",
8926                          &pvt_heap_size))
8927         vl_set_api_pvt_heap_size (pvt_heap_size);
8928       else if (unformat (input, "api-size %lldM", &size))
8929         vl_set_api_memory_size (size * (1ULL << 20));
8930       else if (unformat (input, "api-size %lldG", &size))
8931         vl_set_api_memory_size (size * (1ULL << 30));
8932       else if (unformat (input, "api-size %lld", &size))
8933         vl_set_api_memory_size (size);
8934       else if (unformat (input, "uid %s", &s))
8935         {
8936           /* lookup the username */
8937           pw = NULL;
8938           while (((rv =
8939                    getpwnam_r (s, &_pw, buf, vec_len (buf), &pw)) == ERANGE)
8940                  && (vec_len (buf) <= max_buf_size))
8941             {
8942               vec_resize (buf, vec_len (buf) * 2);
8943             }
8944           if (rv < 0)
8945             {
8946               e = clib_error_return_code (0, rv,
8947                                           CLIB_ERROR_ERRNO_VALID |
8948                                           CLIB_ERROR_FATAL,
8949                                           "cannot fetch username %s", s);
8950               vec_free (s);
8951               vec_free (buf);
8952               return e;
8953             }
8954           if (pw == NULL)
8955             {
8956               e =
8957                 clib_error_return_fatal (0, "username %s does not exist", s);
8958               vec_free (s);
8959               vec_free (buf);
8960               return e;
8961             }
8962           vec_free (s);
8963           vl_set_memory_uid (pw->pw_uid);
8964         }
8965       else if (unformat (input, "gid %s", &s))
8966         {
8967           /* lookup the group name */
8968           grp = NULL;
8969           while (((rv =
8970                    getgrnam_r (s, &_grp, buf, vec_len (buf), &grp)) == ERANGE)
8971                  && (vec_len (buf) <= max_buf_size))
8972             {
8973               vec_resize (buf, vec_len (buf) * 2);
8974             }
8975           if (rv != 0)
8976             {
8977               e = clib_error_return_code (0, rv,
8978                                           CLIB_ERROR_ERRNO_VALID |
8979                                           CLIB_ERROR_FATAL,
8980                                           "cannot fetch group %s", s);
8981               vec_free (s);
8982               vec_free (buf);
8983               return e;
8984             }
8985           if (grp == NULL)
8986             {
8987               e = clib_error_return_fatal (0, "group %s does not exist", s);
8988               vec_free (s);
8989               vec_free (buf);
8990               return e;
8991             }
8992           vec_free (s);
8993           vec_free (buf);
8994           vl_set_memory_gid (grp->gr_gid);
8995         }
8996       else
8997         return clib_error_return (0, "unknown input `%U'",
8998                                   format_unformat_error, input);
8999     }
9000   return 0;
9001 }
9002
9003 VLIB_EARLY_CONFIG_FUNCTION (api_segment_config, "api-segment");
9004
9005 void *
9006 get_unformat_vnet_sw_interface (void)
9007 {
9008   return (void *) &unformat_vnet_sw_interface;
9009 }
9010
9011 #undef vl_api_version
9012 #define vl_api_version(n,v) static u32 vpe_api_version = v;
9013 #include <vpp-api/vpe.api.h>
9014 #undef vl_api_version
9015
9016 int
9017 vl_msg_api_version_check (vl_api_memclnt_create_t * mp)
9018 {
9019   if (clib_host_to_net_u32 (mp->api_versions[0]) != vpe_api_version)
9020     {
9021       clib_warning ("vpe API mismatch: 0x%08x instead of 0x%08x",
9022                     clib_host_to_net_u32 (mp->api_versions[0]),
9023                     vpe_api_version);
9024       return -1;
9025     }
9026   return 0;
9027 }
9028
9029 static u8 *
9030 format_arp_event (u8 * s, va_list * args)
9031 {
9032   vl_api_ip4_arp_event_t *event = va_arg (*args, vl_api_ip4_arp_event_t *);
9033
9034   s = format (s, "pid %d: ", event->pid);
9035   if (event->mac_ip)
9036     s = format (s, "bd mac/ip4 binding events");
9037   else
9038     s = format (s, "resolution for %U", format_ip4_address, &event->address);
9039   return s;
9040 }
9041
9042 static u8 *
9043 format_nd_event (u8 * s, va_list * args)
9044 {
9045   vl_api_ip6_nd_event_t *event = va_arg (*args, vl_api_ip6_nd_event_t *);
9046
9047   s = format (s, "pid %d: ", event->pid);
9048   if (event->mac_ip)
9049     s = format (s, "bd mac/ip6 binding events");
9050   else
9051     s = format (s, "resolution for %U", format_ip6_address, event->address);
9052   return s;
9053 }
9054
9055 static clib_error_t *
9056 show_ip_arp_nd_events_fn (vlib_main_t * vm,
9057                           unformat_input_t * input, vlib_cli_command_t * cmd)
9058 {
9059   vpe_api_main_t *am = &vpe_api_main;
9060   vl_api_ip4_arp_event_t *arp_event;
9061   vl_api_ip6_nd_event_t *nd_event;
9062
9063   if ((pool_elts (am->arp_events) == 0) && (pool_elts (am->nd_events) == 0))
9064     {
9065       vlib_cli_output (vm, "No active arp or nd event registrations");
9066       return 0;
9067     }
9068
9069   /* *INDENT-OFF* */
9070   pool_foreach (arp_event, am->arp_events,
9071   ({
9072     vlib_cli_output (vm, "%U", format_arp_event, arp_event);
9073   }));
9074
9075   pool_foreach (nd_event, am->nd_events,
9076   ({
9077     vlib_cli_output (vm, "%U", format_nd_event, nd_event);
9078   }));
9079   /* *INDENT-ON* */
9080
9081   return 0;
9082 }
9083
9084 /* *INDENT-OFF* */
9085 VLIB_CLI_COMMAND (show_ip_arp_nd_events, static) = {
9086   .path = "show arp-nd-event registrations",
9087   .function = show_ip_arp_nd_events_fn,
9088   .short_help = "Show ip4 arp and ip6 nd event registrations",
9089 };
9090 /* *INDENT-ON* */
9091
9092 /*
9093  * fd.io coding-style-patch-verification: ON
9094  *
9095  * Local Variables:
9096  * eval: (c-set-style "gnu")
9097  * End:
9098  */