vxlan-gbp: Add support for vxlan gbp
[vpp.git] / src / vnet / vxlan-gbp / vxlan_gbp_api.c
1 /*
2  *------------------------------------------------------------------
3  * vxlan_gbp_api.c - vxlan gbp api
4  *
5  * Copyright (c) 2018 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *------------------------------------------------------------------
18  */
19
20 #include <vnet/vnet.h>
21 #include <vlibmemory/api.h>
22
23 #include <vnet/interface.h>
24 #include <vnet/api_errno.h>
25 #include <vnet/feature/feature.h>
26 #include <vnet/vxlan-gbp/vxlan_gbp.h>
27 #include <vnet/fib/fib_table.h>
28
29 #include <vnet/vnet_msg_enum.h>
30
31 #define vl_typedefs             /* define message structures */
32 #include <vnet/vnet_all_api_h.h>
33 #undef vl_typedefs
34
35 #define vl_endianfun            /* define message structures */
36 #include <vnet/vnet_all_api_h.h>
37 #undef vl_endianfun
38
39 /* instantiate all the print functions we know about */
40 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
41 #define vl_printfun
42 #include <vnet/vnet_all_api_h.h>
43 #undef vl_printfun
44
45 #include <vlibapi/api_helper_macros.h>
46
47 #define foreach_vpe_api_msg                             \
48 _(SW_INTERFACE_SET_VXLAN_GBP_BYPASS, sw_interface_set_vxlan_gbp_bypass)         \
49 _(VXLAN_GBP_ADD_DEL_TUNNEL, vxlan_gbp_add_del_tunnel)                           \
50 _(VXLAN_GBP_TUNNEL_DUMP, vxlan_gbp_tunnel_dump)
51
52 static void
53   vl_api_sw_interface_set_vxlan_gbp_bypass_t_handler
54   (vl_api_sw_interface_set_vxlan_gbp_bypass_t * mp)
55 {
56   vl_api_sw_interface_set_vxlan_gbp_bypass_reply_t *rmp;
57   int rv = 0;
58   u32 sw_if_index = ntohl (mp->sw_if_index);
59
60   VALIDATE_SW_IF_INDEX (mp);
61
62   vnet_int_vxlan_gbp_bypass_mode (sw_if_index, mp->is_ipv6, mp->enable);
63   BAD_SW_IF_INDEX_LABEL;
64
65   REPLY_MACRO (VL_API_SW_INTERFACE_SET_VXLAN_GBP_BYPASS_REPLY);
66 }
67
68 static void vl_api_vxlan_gbp_add_del_tunnel_t_handler
69   (vl_api_vxlan_gbp_add_del_tunnel_t * mp)
70 {
71   vl_api_vxlan_gbp_add_del_tunnel_reply_t *rmp;
72   int rv = 0;
73   u32 fib_index;
74
75   fib_index = fib_table_find (fib_ip_proto (mp->is_ipv6),
76                               ntohl (mp->encap_vrf_id));
77   if (fib_index == ~0)
78     {
79       rv = VNET_API_ERROR_NO_SUCH_FIB;
80       goto out;
81     }
82
83   vnet_vxlan_gbp_add_del_tunnel_args_t a = {
84     .is_add = mp->is_add,
85     .is_ip6 = mp->is_ipv6,
86     .instance = ntohl (mp->instance),
87     .mcast_sw_if_index = ntohl (mp->mcast_sw_if_index),
88     .encap_fib_index = fib_index,
89     .decap_next_index = ntohl (mp->decap_next_index),
90     .vni = ntohl (mp->vni),
91     .sclass = ntohs (mp->sclass),
92     .dst = to_ip46 (mp->is_ipv6, mp->dst_address),
93     .src = to_ip46 (mp->is_ipv6, mp->src_address),
94   };
95
96   /* Check src & dst are different */
97   if (ip46_address_cmp (&a.dst, &a.src) == 0)
98     {
99       rv = VNET_API_ERROR_SAME_SRC_DST;
100       goto out;
101     }
102   if (ip46_address_is_multicast (&a.dst) &&
103       !vnet_sw_if_index_is_api_valid (a.mcast_sw_if_index))
104     {
105       rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
106       goto out;
107     }
108
109   u32 sw_if_index = ~0;
110   rv = vnet_vxlan_gbp_add_del_tunnel (&a, &sw_if_index);
111
112 out:
113   /* *INDENT-OFF* */
114   REPLY_MACRO2(VL_API_VXLAN_GBP_ADD_DEL_TUNNEL_REPLY,
115   ({
116     rmp->sw_if_index = ntohl (sw_if_index);
117   }));
118   /* *INDENT-ON* */
119 }
120
121 static void send_vxlan_gbp_tunnel_details
122   (vxlan_gbp_tunnel_t * t, vl_api_registration_t * reg, u32 context)
123 {
124   vl_api_vxlan_gbp_tunnel_details_t *rmp;
125   ip4_main_t *im4 = &ip4_main;
126   ip6_main_t *im6 = &ip6_main;
127   u8 is_ipv6 = !ip46_address_is_ip4 (&t->dst);
128
129   rmp = vl_msg_api_alloc (sizeof (*rmp));
130   memset (rmp, 0, sizeof (*rmp));
131   rmp->_vl_msg_id = ntohs (VL_API_VXLAN_GBP_TUNNEL_DETAILS);
132   if (is_ipv6)
133     {
134       memcpy (rmp->src_address, t->src.ip6.as_u8, 16);
135       memcpy (rmp->dst_address, t->dst.ip6.as_u8, 16);
136       rmp->encap_vrf_id = htonl (im6->fibs[t->encap_fib_index].ft_table_id);
137     }
138   else
139     {
140       memcpy (rmp->src_address, t->src.ip4.as_u8, 4);
141       memcpy (rmp->dst_address, t->dst.ip4.as_u8, 4);
142       rmp->encap_vrf_id = htonl (im4->fibs[t->encap_fib_index].ft_table_id);
143     }
144
145   rmp->instance = htonl (t->user_instance);
146   rmp->mcast_sw_if_index = htonl (t->mcast_sw_if_index);
147   rmp->vni = htonl (t->vni);
148   rmp->sclass = htons (t->sclass);
149   rmp->decap_next_index = htonl (t->decap_next_index);
150   rmp->sw_if_index = htonl (t->sw_if_index);
151   rmp->is_ipv6 = is_ipv6;
152   rmp->context = context;
153
154   vl_api_send_msg (reg, (u8 *) rmp);
155 }
156
157 static void vl_api_vxlan_gbp_tunnel_dump_t_handler
158   (vl_api_vxlan_gbp_tunnel_dump_t * mp)
159 {
160   vl_api_registration_t *reg;
161   vxlan_gbp_main_t *vxm = &vxlan_gbp_main;
162   vxlan_gbp_tunnel_t *t;
163   u32 sw_if_index;
164
165   reg = vl_api_client_index_to_registration (mp->client_index);
166   if (!reg)
167     return;
168
169   sw_if_index = ntohl (mp->sw_if_index);
170
171   if (~0 == sw_if_index)
172     {
173       /* *INDENT-OFF* */
174       pool_foreach (t, vxm->tunnels,
175       ({
176         send_vxlan_gbp_tunnel_details(t, reg, mp->context);
177       }));
178       /* *INDENT-ON* */
179     }
180   else
181     {
182       if ((sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index)) ||
183           (~0 == vxm->tunnel_index_by_sw_if_index[sw_if_index]))
184         {
185           return;
186         }
187       t = &vxm->tunnels[vxm->tunnel_index_by_sw_if_index[sw_if_index]];
188       send_vxlan_gbp_tunnel_details (t, reg, mp->context);
189     }
190 }
191
192 /*
193  * vpe_api_hookup
194  * Add vpe's API message handlers to the table.
195  * vlib has alread mapped shared memory and
196  * added the client registration handlers.
197  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
198  */
199 #define vl_msg_name_crc_list
200 #include <vnet/vnet_all_api_h.h>
201 #undef vl_msg_name_crc_list
202
203 static void
204 setup_message_id_table (api_main_t * am)
205 {
206 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
207   foreach_vl_msg_name_crc_vxlan_gbp;
208 #undef _
209 }
210
211 static clib_error_t *
212 vxlan_gbp_api_hookup (vlib_main_t * vm)
213 {
214   api_main_t *am = &api_main;
215
216 #define _(N,n)                                                  \
217     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
218                            vl_api_##n##_t_handler,              \
219                            vl_noop_handler,                     \
220                            vl_api_##n##_t_endian,               \
221                            vl_api_##n##_t_print,                \
222                            sizeof(vl_api_##n##_t), 1);
223   foreach_vpe_api_msg;
224 #undef _
225
226   /*
227    * Set up the (msg_name, crc, message-id) table
228    */
229   setup_message_id_table (am);
230
231   return 0;
232 }
233
234 VLIB_API_INIT_FUNCTION (vxlan_gbp_api_hookup);
235
236 /*
237  * fd.io coding-style-patch-verification: ON
238  *
239  * Local Variables:
240  * eval: (c-set-style "gnu")
241  * End:
242  */