hs-test: more debug output in http3 test
[vpp.git] / src / plugins / geneve / geneve_api.c
1 /*
2  * Copyright (c) 2017 SUSE LLC.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  *------------------------------------------------------------------
15  */
16
17 #include <vnet/vnet.h>
18 #include <vlibmemory/api.h>
19
20 #include <vnet/interface.h>
21 #include <vnet/api_errno.h>
22 #include <vnet/feature/feature.h>
23 #include <vnet/fib/fib_table.h>
24 #include <vnet/ip/ip_types_api.h>
25
26 #include <geneve/geneve.h>
27
28 /* define message IDs */
29 #include <vnet/format_fns.h>
30 #include <geneve/geneve.api_enum.h>
31 #include <geneve/geneve.api_types.h>
32
33 /**
34  * Base message ID fot the plugin
35  */
36 static u32 geneve_base_msg_id;
37 #define REPLY_MSG_ID_BASE geneve_base_msg_id
38
39 #include <vlibapi/api_helper_macros.h>
40
41 static void
42   vl_api_sw_interface_set_geneve_bypass_t_handler
43   (vl_api_sw_interface_set_geneve_bypass_t * mp)
44 {
45   vl_api_sw_interface_set_geneve_bypass_reply_t *rmp;
46   int rv = 0;
47   u32 sw_if_index = ntohl (mp->sw_if_index);
48
49   VALIDATE_SW_IF_INDEX (mp);
50
51   vnet_int_geneve_bypass_mode (sw_if_index, mp->is_ipv6, mp->enable);
52   BAD_SW_IF_INDEX_LABEL;
53
54   REPLY_MACRO (VL_API_SW_INTERFACE_SET_GENEVE_BYPASS_REPLY);
55 }
56
57 static void vl_api_geneve_add_del_tunnel_t_handler
58   (vl_api_geneve_add_del_tunnel_t * mp)
59 {
60   vl_api_geneve_add_del_tunnel_reply_t *rmp;
61   int rv = 0;
62   ip4_main_t *im = &ip4_main;
63
64   uword *p = hash_get (im->fib_index_by_table_id, ntohl (mp->encap_vrf_id));
65   if (!p)
66     {
67       rv = VNET_API_ERROR_NO_SUCH_FIB;
68       goto out;
69     }
70
71   vnet_geneve_add_del_tunnel_args_t a = {
72     .is_add = mp->is_add,
73     .is_ip6 = mp->remote_address.af,
74     .mcast_sw_if_index = ntohl (mp->mcast_sw_if_index),
75     .encap_fib_index = p[0],
76     .decap_next_index = ntohl (mp->decap_next_index),
77     .vni = ntohl (mp->vni),
78   };
79
80   ip_address_decode (&mp->remote_address, &a.remote);
81   ip_address_decode (&mp->local_address, &a.local);
82
83   /* Check src & dst are different */
84   if (ip46_address_cmp (&a.remote, &a.local) == 0)
85     {
86       rv = VNET_API_ERROR_SAME_SRC_DST;
87       goto out;
88     }
89   if (ip46_address_is_multicast (&a.remote) &&
90       !vnet_sw_if_index_is_api_valid (a.mcast_sw_if_index))
91     {
92       rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
93       goto out;
94     }
95
96   u32 sw_if_index = ~0;
97   rv = vnet_geneve_add_del_tunnel (&a, &sw_if_index);
98
99 out:
100   REPLY_MACRO2(VL_API_GENEVE_ADD_DEL_TUNNEL_REPLY,
101   ({
102     rmp->sw_if_index = ntohl (sw_if_index);
103   }));
104 }
105
106 static void vl_api_geneve_add_del_tunnel2_t_handler
107   (vl_api_geneve_add_del_tunnel2_t * mp)
108 {
109   vl_api_geneve_add_del_tunnel2_reply_t *rmp;
110   int rv = 0;
111   ip4_main_t *im = &ip4_main;
112
113   uword *p = hash_get (im->fib_index_by_table_id, ntohl (mp->encap_vrf_id));
114   if (!p)
115     {
116       rv = VNET_API_ERROR_NO_SUCH_FIB;
117       goto out;
118     }
119
120   vnet_geneve_add_del_tunnel_args_t a = {
121     .is_add = mp->is_add,
122     .is_ip6 = mp->remote_address.af,
123     .mcast_sw_if_index = ntohl (mp->mcast_sw_if_index),
124     .encap_fib_index = p[0],
125     .decap_next_index = ntohl (mp->decap_next_index),
126     .vni = ntohl (mp->vni),
127     .l3_mode = mp->l3_mode,
128   };
129
130   ip_address_decode (&mp->remote_address, &a.remote);
131   ip_address_decode (&mp->local_address, &a.local);
132
133   /* Check src & dst are different */
134   if (ip46_address_cmp (&a.remote, &a.local) == 0)
135     {
136       rv = VNET_API_ERROR_SAME_SRC_DST;
137       goto out;
138     }
139   if (ip46_address_is_multicast (&a.remote) &&
140       !vnet_sw_if_index_is_api_valid (a.mcast_sw_if_index))
141     {
142       rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
143       goto out;
144     }
145
146   u32 sw_if_index = ~0;
147   rv = vnet_geneve_add_del_tunnel (&a, &sw_if_index);
148
149 out:
150   REPLY_MACRO2(VL_API_GENEVE_ADD_DEL_TUNNEL2_REPLY,
151   ({
152     rmp->sw_if_index = ntohl (sw_if_index);
153   }));
154 }
155
156 static void send_geneve_tunnel_details
157   (geneve_tunnel_t * t, vl_api_registration_t * reg, u32 context)
158 {
159   vl_api_geneve_tunnel_details_t *rmp;
160   ip4_main_t *im4 = &ip4_main;
161   ip6_main_t *im6 = &ip6_main;
162   u8 is_ipv6 = !ip46_address_is_ip4 (&t->remote);
163
164   rmp = vl_msg_api_alloc (sizeof (*rmp));
165   clib_memset (rmp, 0, sizeof (*rmp));
166   rmp->_vl_msg_id = ntohs (VL_API_GENEVE_TUNNEL_DETAILS + REPLY_MSG_ID_BASE);
167   ip_address_encode (&t->local, is_ipv6 ? IP46_TYPE_IP6 : IP46_TYPE_IP4,
168                      &rmp->src_address);
169   ip_address_encode (&t->remote, is_ipv6 ? IP46_TYPE_IP6 : IP46_TYPE_IP4,
170                      &rmp->dst_address);
171   rmp->encap_vrf_id =
172     htonl (is_ipv6 ? im6->fibs[t->encap_fib_index].
173            ft_table_id : im4->fibs[t->encap_fib_index].ft_table_id);
174
175   rmp->mcast_sw_if_index = htonl (t->mcast_sw_if_index);
176   rmp->vni = htonl (t->vni);
177   rmp->decap_next_index = htonl (t->decap_next_index);
178   rmp->sw_if_index = htonl (t->sw_if_index);
179   rmp->context = context;
180
181   vl_api_send_msg (reg, (u8 *) rmp);
182 }
183
184 static void vl_api_geneve_tunnel_dump_t_handler
185   (vl_api_geneve_tunnel_dump_t * mp)
186 {
187   vl_api_registration_t *reg;
188   geneve_main_t *vxm = &geneve_main;
189   geneve_tunnel_t *t;
190   u32 sw_if_index;
191
192   reg = vl_api_client_index_to_registration (mp->client_index);
193   if (!reg)
194     return;
195
196   sw_if_index = ntohl (mp->sw_if_index);
197
198   if (~0 == sw_if_index)
199     {
200       pool_foreach (t, vxm->tunnels)
201        {
202         send_geneve_tunnel_details(t, reg, mp->context);
203       }
204     }
205   else
206     {
207       if ((sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index)) ||
208           (~0 == vxm->tunnel_index_by_sw_if_index[sw_if_index]))
209         {
210           return;
211         }
212       t = &vxm->tunnels[vxm->tunnel_index_by_sw_if_index[sw_if_index]];
213       send_geneve_tunnel_details (t, reg, mp->context);
214     }
215 }
216
217 /*
218  * geneve_api_hookup
219  * Add geneve's API message handlers to the table.
220  */
221 /* API definitions */
222 #include <vnet/format_fns.h>
223 #include <geneve/geneve.api.c>
224
225 static clib_error_t *
226 geneve_api_hookup (vlib_main_t * vm)
227 {
228   api_main_t *am = vlibapi_get_main ();
229
230   /*
231    * Set up the (msg_name, crc, message-id) table
232    */
233   geneve_base_msg_id = setup_message_id_table ();
234
235   vl_api_increase_msg_trace_size (
236     am, VL_API_GENEVE_ADD_DEL_TUNNEL + REPLY_MSG_ID_BASE, 16 * sizeof (u32));
237
238   return 0;
239 }
240
241 VLIB_API_INIT_FUNCTION (geneve_api_hookup);
242
243 #include <vlib/unix/plugin.h>
244 #include <vpp/app/version.h>
245
246 VLIB_PLUGIN_REGISTER () = {
247     .version = VPP_BUILD_VER,
248     .description = "GENEVE Tunnels",
249 };
250
251 /*
252  * fd.io coding-style-patch-verification: ON
253  *
254  * Local Variables:
255  * eval: (c-set-style "gnu")
256  * End:
257  */