wireguard: add async mode for encryption packets
[vpp.git] / src / plugins / wireguard / wireguard.api
1 /* Hey Emacs use -*- mode: C -*- */
2 /*
3  * Copyright (c) 2020 Doc.ai and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 option version = "0.1.0";
18
19 import "vnet/interface_types.api";
20 import "vnet/ip/ip_types.api";
21
22 /** \brief Create wireguard interface
23     @param client_index - opaque cookie to identify the sender
24     @param context - sender context, to match reply w/ request
25     @param private_key - private key in binary format of this device
26     @param public_key - public key in binary format of this device
27     @param port - port of this device
28     @param src_ip - packet sent through this interface us this
29                     address as the IP source.
30 */
31 typedef wireguard_interface
32 {
33   u32 user_instance [default=0xffffffff];
34   vl_api_interface_index_t sw_if_index;
35   u8 private_key[32];
36   u8 public_key[32];
37   u16 port;
38   vl_api_address_t src_ip;
39 };
40
41 /** \brief Create an Wireguard interface
42  */
43 define wireguard_interface_create {
44   u32 client_index;
45   u32 context;
46   vl_api_wireguard_interface_t interface;
47   bool generate_key;
48 };
49
50 /** \brief Add Wireguard interface interface response
51     @param context - sender context, to match reply w/ request
52     @param retval - return status
53     @param sw_if_index - sw_if_index of new interface (for successful add)
54 */
55 define wireguard_interface_create_reply
56 {
57   u32 context;
58   i32 retval;
59   vl_api_interface_index_t sw_if_index;
60 };
61
62 autoreply define wireguard_interface_delete
63 {
64   u32 client_index;
65   u32 context;
66   vl_api_interface_index_t sw_if_index;
67 };
68
69 define wireguard_interface_dump
70 {
71   u32 client_index;
72   u32 context;
73   bool show_private_key;
74   vl_api_interface_index_t sw_if_index;
75 };
76
77 define wireguard_interface_details
78 {
79   u32 context;
80   vl_api_wireguard_interface_t interface;
81 };
82
83 enum wireguard_peer_flags : u8
84 {
85   WIREGUARD_PEER_STATUS_DEAD = 0x1,
86   WIREGUARD_PEER_ESTABLISHED = 0x2,
87 };
88
89 /** \brief Create new peer
90     @param public_key - public key (in binary format) of destination peer
91     @param port - destination port
92     @param table_id - The IP table in which 'endpoint' is reachable
93     @param endpoint - destination ip
94     @param allowed_ip - allowed incoming ip tunnel
95     @param tun_sw_if_index - tunnel interface
96     @param persistent_keepalive - keepalive packet timeout
97 */
98 typedef wireguard_peer
99 {
100   u8 public_key[32];
101   u16 port;
102   u16 persistent_keepalive;
103   u32 table_id;
104   vl_api_address_t endpoint;
105   vl_api_interface_index_t sw_if_index;
106   vl_api_wireguard_peer_flags_t flags;
107   u8 n_allowed_ips;
108   vl_api_prefix_t allowed_ips[n_allowed_ips];
109 };
110
111 service {
112   rpc want_wireguard_peer_events returns want_wireguard_peer_events_reply
113     events wireguard_peer_event;
114 };
115 /** \brief Register for wireguard peer events
116     @param client_index - opaque cookie to identify the sender
117     @param context - sender context, to match reply w/ request
118     @param sw_if_index - index of the interface to dump peer info on, ~0 if on all
119     @param peer_index - index of the peer to dump info on, ~0 if on all
120     @param enable_disable - 1 => register for events, 0 => cancel registration
121     @param pid - sender's pid
122 */
123 autoreply define want_wireguard_peer_events
124 {
125   u32 client_index;
126   u32 context;
127   vl_api_interface_index_t sw_if_index [default=0xFFFFFFFF];
128   u32 peer_index [default=0xFFFFFFFF];
129   u32 enable_disable;
130   u32 pid;
131 };
132 /** \brief Interface Event generated by want_wireguard_peer_events
133     @param client_index - opaque cookie to identify the sender
134     @param pid - client pid registered to receive notification
135     @param peer_index - index of the peer for this event
136     @param deleted - interface was deleted
137 */
138 define wireguard_peer_event
139 {
140   u32 client_index;
141   u32 pid;
142   u32 peer_index;
143   vl_api_wireguard_peer_flags_t flags;
144 };
145
146 /** \brief Create new peer
147     @param client_index - opaque cookie to identify the sender
148     @param context - sender context, to match reply w/ request
149     @param peer - peer to create
150 */
151 define wireguard_peer_add
152 {
153   u32 client_index;
154   u32 context;
155   vl_api_wireguard_peer_t peer;
156 };
157 define wireguard_peer_add_reply
158 {
159   u32 context;
160   i32 retval;
161   u32 peer_index;
162 };
163
164 /** \brief Remove peer by public_key
165     @param client_index - opaque cookie to identify the sender
166     @param context - sender context, to match reply w/ request
167     @param public_key
168 */
169 autoreply define wireguard_peer_remove
170 {
171   u32 client_index;
172   u32 context;
173   u32 peer_index;
174 };
175
176 /** \brief Dump all peers
177     @param client_index - opaque cookie to identify the sender
178     @param context - sender context, to match reply w/ request
179     @param peer_index - peer index to be dumped.  If 0xFFFFFFFF dumps all peers
180 */
181 define wireguard_peers_dump {
182   u32 client_index;
183   u32 context;
184   u32 peer_index [default=0xFFFFFFFF];
185 };
186
187 /** \brief Dump peers response
188     @param context - sender context, to match reply w/ request
189     @param is_dead - is peer valid yet
190     @param public_key - peer public_key
191     @param ip4_address - ip4 endpoint address
192 */
193 define wireguard_peers_details {
194   u32 context;
195   vl_api_wireguard_peer_t peer;
196 };
197
198 /** \brief Wireguard Set Async mode
199     @param client_index - opaque cookie to identify the sender
200     @param context - sender context, to match reply w/ request
201     @param async_enable - wireguard async mode on or off
202 */
203 autoreply define wg_set_async_mode {
204   u32 client_index;
205   u32 context;
206   bool async_enable;
207 };
208
209 /*
210  * Local Variables:
211  * eval: (c-set-style "gnu")
212  * End:
213  */