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