hs-test: more debug output in http3 test
[vpp.git] / src / plugins / l2tp / l2tp_test.c
1 /*
2  * Copyright (c) 2020 Cisco and/or its affiliates.
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 #include <vat/vat.h>
17 #include <vlibapi/api.h>
18 #include <vlibmemory/api.h>
19 #include <vppinfra/error.h>
20
21 #include <vnet/ip/ip_format_fns.h>
22 #include <vnet/ip/ip.h>
23 #include <vnet/ethernet/ethernet_format_fns.h>
24 #include <l2tp/l2tp.h>
25
26 /* define message IDs */
27 #include <l2tp/l2tp.api_enum.h>
28 #include <l2tp/l2tp.api_types.h>
29 #include <vlibmemory/vlib.api_types.h>
30
31 typedef struct
32 {
33   /* API message ID base */
34   u16 msg_id_base;
35   u32 ping_id;
36   vat_main_t *vat_main;
37 } l2tp_test_main_t;
38
39 l2tp_test_main_t l2tp_test_main;
40
41 #define __plugin_msg_base l2tp_test_main.msg_id_base
42 #include <vlibapi/vat_helper_macros.h>
43
44 #define FINISH                                                                \
45   vec_add1 (s, 0);                                                            \
46   vlib_cli_output (handle, (char *) s);                                       \
47   vec_free (s);                                                               \
48   return handle;
49
50 static void vl_api_l2tpv3_create_tunnel_reply_t_handler
51   (vl_api_l2tpv3_create_tunnel_reply_t * mp)
52 {
53   vat_main_t *vam = &vat_main;
54   i32 retval = ntohl (mp->retval);
55   if (vam->async_mode)
56     {
57       vam->async_errors += (retval < 0);
58     }
59   else
60     {
61       vam->retval = retval;
62       vam->sw_if_index = ntohl (mp->sw_if_index);
63       vam->result_ready = 1;
64     }
65 }
66
67 static int
68 api_l2tpv3_create_tunnel (vat_main_t * vam)
69 {
70   unformat_input_t *i = vam->input;
71   ip6_address_t client_address, our_address;
72   int client_address_set = 0;
73   int our_address_set = 0;
74   u32 local_session_id = 0;
75   u32 remote_session_id = 0;
76   u64 local_cookie = 0;
77   u64 remote_cookie = 0;
78   u8 l2_sublayer_present = 0;
79   vl_api_l2tpv3_create_tunnel_t *mp;
80   int ret;
81
82   while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT)
83     {
84       if (unformat (i, "client_address %U", unformat_ip6_address,
85                     &client_address))
86         client_address_set = 1;
87       else if (unformat (i, "our_address %U", unformat_ip6_address,
88                          &our_address))
89         our_address_set = 1;
90       else if (unformat (i, "local_session_id %d", &local_session_id))
91         ;
92       else if (unformat (i, "remote_session_id %d", &remote_session_id))
93         ;
94       else if (unformat (i, "local_cookie %lld", &local_cookie))
95         ;
96       else if (unformat (i, "remote_cookie %lld", &remote_cookie))
97         ;
98       else if (unformat (i, "l2-sublayer-present"))
99         l2_sublayer_present = 1;
100       else
101         break;
102     }
103
104   if (client_address_set == 0)
105     {
106       errmsg ("client_address required");
107       return -99;
108     }
109
110   if (our_address_set == 0)
111     {
112       errmsg ("our_address required");
113       return -99;
114     }
115
116   M (L2TPV3_CREATE_TUNNEL, mp);
117
118   clib_memcpy (mp->client_address.un.ip6, client_address.as_u8,
119                sizeof (ip6_address_t));
120
121   clib_memcpy (mp->our_address.un.ip6, our_address.as_u8,
122                sizeof (ip6_address_t));
123
124   mp->local_session_id = ntohl (local_session_id);
125   mp->remote_session_id = ntohl (remote_session_id);
126   mp->local_cookie = clib_host_to_net_u64 (local_cookie);
127   mp->remote_cookie = clib_host_to_net_u64 (remote_cookie);
128   mp->l2_sublayer_present = l2_sublayer_present;
129
130   S (mp);
131   W (ret);
132   return ret;
133 }
134
135 static int
136 api_l2tpv3_set_tunnel_cookies (vat_main_t * vam)
137 {
138   unformat_input_t *i = vam->input;
139   u32 sw_if_index;
140   u8 sw_if_index_set = 0;
141   u64 new_local_cookie = 0;
142   u64 new_remote_cookie = 0;
143   vl_api_l2tpv3_set_tunnel_cookies_t *mp;
144   int ret;
145
146   while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT)
147     {
148       if (unformat (i, "%U", unformat_sw_if_index, vam, &sw_if_index))
149         sw_if_index_set = 1;
150       else if (unformat (i, "sw_if_index %d", &sw_if_index))
151         sw_if_index_set = 1;
152       else if (unformat (i, "new_local_cookie %lld", &new_local_cookie))
153         ;
154       else if (unformat (i, "new_remote_cookie %lld", &new_remote_cookie))
155         ;
156       else
157         break;
158     }
159
160   if (sw_if_index_set == 0)
161     {
162       errmsg ("missing interface name or sw_if_index");
163       return -99;
164     }
165
166   M (L2TPV3_SET_TUNNEL_COOKIES, mp);
167
168   mp->sw_if_index = ntohl (sw_if_index);
169   mp->new_local_cookie = clib_host_to_net_u64 (new_local_cookie);
170   mp->new_remote_cookie = clib_host_to_net_u64 (new_remote_cookie);
171
172   S (mp);
173   W (ret);
174   return ret;
175 }
176
177 static int
178 api_l2tpv3_interface_enable_disable (vat_main_t * vam)
179 {
180   unformat_input_t *i = vam->input;
181   vl_api_l2tpv3_interface_enable_disable_t *mp;
182   u32 sw_if_index;
183   u8 sw_if_index_set = 0;
184   u8 enable_disable = 1;
185   int ret;
186
187   while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT)
188     {
189       if (unformat (i, "%U", unformat_sw_if_index, vam, &sw_if_index))
190         sw_if_index_set = 1;
191       else if (unformat (i, "sw_if_index %d", &sw_if_index))
192         sw_if_index_set = 1;
193       else if (unformat (i, "enable"))
194         enable_disable = 1;
195       else if (unformat (i, "disable"))
196         enable_disable = 0;
197       else
198         break;
199     }
200
201   if (sw_if_index_set == 0)
202     {
203       errmsg ("missing interface name or sw_if_index");
204       return -99;
205     }
206
207   M (L2TPV3_INTERFACE_ENABLE_DISABLE, mp);
208
209   mp->sw_if_index = ntohl (sw_if_index);
210   mp->enable_disable = enable_disable;
211
212   S (mp);
213   W (ret);
214   return ret;
215 }
216
217 static int
218 api_l2tpv3_set_lookup_key (vat_main_t * vam)
219 {
220   unformat_input_t *i = vam->input;
221   vl_api_l2tpv3_set_lookup_key_t *mp;
222   u8 key = ~0;
223   int ret;
224
225   while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT)
226     {
227       if (unformat (i, "lookup_v6_src"))
228         key = L2T_LOOKUP_SRC_ADDRESS;
229       else if (unformat (i, "lookup_v6_dst"))
230         key = L2T_LOOKUP_DST_ADDRESS;
231       else if (unformat (i, "lookup_session_id"))
232         key = L2T_LOOKUP_SESSION_ID;
233       else
234         break;
235     }
236
237   if (key == (u8) ~ 0)
238     {
239       errmsg ("l2tp session lookup key unset");
240       return -99;
241     }
242
243   M (L2TPV3_SET_LOOKUP_KEY, mp);
244
245   mp->key = key;
246
247   S (mp);
248   W (ret);
249   return ret;
250 }
251
252 static void vl_api_sw_if_l2tpv3_tunnel_details_t_handler
253   (vl_api_sw_if_l2tpv3_tunnel_details_t * mp)
254 {
255   vat_main_t *vam = &vat_main;
256
257   print (vam->ofp, "* %U (our) %U (client) (sw_if_index %d)",
258          format_ip6_address, mp->our_address,
259          format_ip6_address, mp->client_address,
260          clib_net_to_host_u32 (mp->sw_if_index));
261
262   print (vam->ofp,
263          "   local cookies %016llx %016llx remote cookie %016llx",
264          clib_net_to_host_u64 (mp->local_cookie[0]),
265          clib_net_to_host_u64 (mp->local_cookie[1]),
266          clib_net_to_host_u64 (mp->remote_cookie));
267
268   print (vam->ofp, "   local session-id %d remote session-id %d",
269          clib_net_to_host_u32 (mp->local_session_id),
270          clib_net_to_host_u32 (mp->remote_session_id));
271
272   print (vam->ofp, "   l2 specific sublayer %s\n",
273          mp->l2_sublayer_present ? "preset" : "absent");
274
275 }
276
277 static int
278 api_sw_if_l2tpv3_tunnel_dump (vat_main_t * vam)
279 {
280   vl_api_sw_if_l2tpv3_tunnel_dump_t *mp;
281   vl_api_control_ping_t *mp_ping;
282   int ret;
283
284   /* Get list of l2tpv3-tunnel interfaces */
285   M (SW_IF_L2TPV3_TUNNEL_DUMP, mp);
286   S (mp);
287
288   /* Use a control ping for synchronization */
289   if (!l2tp_test_main.ping_id)
290     l2tp_test_main.ping_id =
291       vl_msg_api_get_msg_index ((u8 *) (VL_API_CONTROL_PING_CRC));
292   mp_ping = vl_msg_api_alloc_as_if_client (sizeof (*mp_ping));
293   mp_ping->_vl_msg_id = htons (l2tp_test_main.ping_id);
294   mp_ping->client_index = vam->my_client_index;
295
296   fformat (vam->ofp, "Sending ping id=%d\n", l2tp_test_main.ping_id);
297
298   vam->result_ready = 0;
299   S (mp_ping);
300
301   W (ret);
302   return ret;
303 }
304
305 #include <l2tp/l2tp.api_test.c>
306
307 /*
308  * fd.io coding-style-patch-verification: ON
309  *
310  * Local Variables:
311  * eval: (c-set-style "gnu")
312  * End:
313  */