4cbee1fcf7a45679ed7eeb6874812a3614236759
[vpp.git] / src / plugins / wireguard / wireguard.h
1 /*
2  * Copyright (c) 2020 Doc.ai 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 #ifndef __included_wg_h__
16 #define __included_wg_h__
17
18 #include <wireguard/wireguard_index_table.h>
19 #include <wireguard/wireguard_messages.h>
20 #include <wireguard/wireguard_timer.h>
21
22 #define WG_DEFAULT_DATA_SIZE 2048
23
24 extern vlib_node_registration_t wg4_input_node;
25 extern vlib_node_registration_t wg6_input_node;
26 extern vlib_node_registration_t wg4_output_tun_node;
27 extern vlib_node_registration_t wg6_output_tun_node;
28
29 typedef struct wg_per_thread_data_t_
30 {
31   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
32   vnet_crypto_op_t *crypto_ops;
33   u8 data[WG_DEFAULT_DATA_SIZE];
34 } wg_per_thread_data_t;
35 typedef struct
36 {
37   /* convenience */
38   vlib_main_t *vlib_main;
39
40   u16 msg_id_base;
41
42   wg_index_table_t index_table;
43
44   u32 in4_fq_index;
45   u32 in6_fq_index;
46   u32 out4_fq_index;
47   u32 out6_fq_index;
48
49   wg_per_thread_data_t *per_thread_data;
50   u8 feature_init;
51
52   tw_timer_wheel_16t_2w_512sl_t timer_wheel;
53 } wg_main_t;
54
55 extern wg_main_t wg_main;
56
57 #define WG_START_EVENT  1
58 void wg_feature_init (wg_main_t * wmp);
59
60 #endif /* __included_wg_h__ */
61
62 /*
63  * fd.io coding-style-patch-verification: ON
64  *
65  * Local Variables:
66  * eval: (c-set-style "gnu")
67  * End:
68  */