FD.io VPP  v21.10.1-2-g0a485f517
Vector Packet Processing
wireguard_peer.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Doc.ai and/or its affiliates.
3  * Copyright (c) 2020 Cisco 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 #include <vnet/adj/adj_midchain.h>
18 #include <vnet/fib/fib_table.h>
20 #include <wireguard/wireguard_if.h>
24 #include <wireguard/wireguard.h>
25 
28 
30 
31 static void
33 {
34  ip46_address_reset (&ep->addr);
35  ep->port = 0;
36 }
37 
38 static void
40  const ip46_address_t * addr, u16 port)
41 {
42  ip46_address_copy (&ep->addr, addr);
43  ep->port = port;
44 }
45 
46 static void
48 {
49  wg_peer_allowed_ip_t *allowed_ip;
50 
51  vec_foreach (allowed_ip, peer->allowed_ips)
52  {
55  }
56 }
57 
58 static void
60 {
61  wg_peer_allowed_ip_t *allowed_ip;
62 
63  vec_foreach (allowed_ip, peer->allowed_ips)
64  {
65  allowed_ip->fib_entry_index =
66  fib_table_entry_path_add (fib_index,
67  &allowed_ip->prefix,
70  fib_proto_to_dpo (allowed_ip->
71  prefix.fp_proto),
72  &peer->dst.addr, peer->wg_sw_if_index, ~0, 1,
74  }
75 }
76 
77 static void
79 {
81  for (int i = 0; i < WG_N_TIMERS; i++)
82  {
83  peer->timers[i] = ~0;
84  peer->timers_dispatched[i] = 0;
85  }
86 
87  peer->last_sent_handshake = vlib_time_now (vm) - (REKEY_TIMEOUT + 1);
88 
89  clib_memset (&peer->cookie_maker, 0, sizeof (peer->cookie_maker));
90 
93 
94  if (INDEX_INVALID != peer->adj_index)
95  {
96  adj_unlock (peer->adj_index);
98  }
100 
101  peer->input_thread_index = ~0;
102  peer->output_thread_index = ~0;
103  peer->adj_index = INDEX_INVALID;
104  peer->timer_wheel = 0;
105  peer->persistent_keepalive_interval = 0;
106  peer->timer_handshake_attempts = 0;
107  peer->last_sent_packet = 0;
108  peer->last_received_packet = 0;
109  peer->session_derived = 0;
110  peer->rehandshake_started = 0;
111  peer->new_handshake_interval_tick = 0;
112  peer->rehandshake_interval_tick = 0;
113  peer->timer_need_another_keepalive = false;
114  peer->is_dead = true;
115  vec_free (peer->allowed_ips);
116 }
117 
118 static void
120 {
121  peer->adj_index = INDEX_INVALID;
122  wg_peer_clear (vm, peer);
123 }
124 
125 static u8 *
127 {
128  // v4 only for now
129  ip4_udp_header_t *hdr;
130  u8 *rewrite = NULL;
131 
132  vec_validate (rewrite, sizeof (*hdr) - 1);
133  hdr = (ip4_udp_header_t *) rewrite;
134 
135  hdr->ip4.ip_version_and_header_length = 0x45;
136  hdr->ip4.ttl = 64;
137  hdr->ip4.src_address = peer->src.addr.ip4;
138  hdr->ip4.dst_address = peer->dst.addr.ip4;
139  hdr->ip4.protocol = IP_PROTOCOL_UDP;
140  hdr->ip4.checksum = ip4_header_checksum (&hdr->ip4);
141 
142  hdr->udp.src_port = clib_host_to_net_u16 (peer->src.port);
143  hdr->udp.dst_port = clib_host_to_net_u16 (peer->dst.port);
144  hdr->udp.checksum = 0;
145 
146  return (rewrite);
147 }
148 
149 static void
151 {
152  ip_adjacency_t *adj;
154  wg_if_t *wgi;
155 
156  adj = adj_get (peer->adj_index);
157  sw_if_index = adj->rewrite_header.sw_if_index;
158 
160 
161  if (!wgi)
162  return;
163 
165  {
166  adj_midchain_delegate_unstack (peer->adj_index);
167  }
168  else
169  {
170  /* *INDENT-OFF* */
171  fib_prefix_t dst = {
172  .fp_len = 32,
173  .fp_proto = FIB_PROTOCOL_IP4,
174  .fp_addr = peer->dst.addr,
175  };
176  /* *INDENT-ON* */
177  u32 fib_index;
178 
179  fib_index = fib_table_find (FIB_PROTOCOL_IP4, peer->table_id);
180 
181  adj_midchain_delegate_stack (peer->adj_index, fib_index, &dst);
182  }
183 }
184 
185 walk_rc_t
187 {
188  wg_peer_adj_stack (wg_peer_get (peeri));
189 
190  return (WALK_CONTINUE);
191 }
192 
193 walk_rc_t
195 {
197  wg_peer_t *peer;
198 
199  peer = wg_peer_get (peeri);
200 
202  wg_peer_fib_populate (peer, ctx->new_fib_index);
203 
204  return (WALK_CONTINUE);
205 }
206 
207 static int
209  u32 table_id,
210  const ip46_address_t * dst,
211  u16 port,
212  u16 persistent_keepalive_interval,
213  const fib_prefix_t * allowed_ips, u32 wg_sw_if_index)
214 {
216 
217  peer->table_id = table_id;
218  peer->wg_sw_if_index = wg_sw_if_index;
219  peer->timer_wheel = &wg_main.timer_wheel;
220  peer->persistent_keepalive_interval = persistent_keepalive_interval;
221  peer->last_sent_handshake = vlib_time_now (vm) - (REKEY_TIMEOUT + 1);
222  peer->is_dead = false;
223 
224  const wg_if_t *wgi = wg_if_get (wg_if_find_by_sw_if_index (wg_sw_if_index));
225 
226  if (NULL == wgi)
227  return (VNET_API_ERROR_INVALID_INTERFACE);
228 
229  ip_address_to_46 (&wgi->src_ip, &peer->src.addr);
230  peer->src.port = wgi->port;
231 
232  /*
233  * and an adjacency for the endpoint address in the overlay
234  * on the wg interface
235  */
236  peer->rewrite = wg_peer_build_rewrite (peer);
237 
240  &peer->dst.addr, wgi->sw_if_index);
241 
243  peer->adj_index, INDEX_INVALID);
244  wg_peer_by_adj_index[peer->adj_index] = peer - wg_peer_pool;
245 
247  NULL,
248  NULL,
250  vec_dup (peer->rewrite));
252 
253  /*
254  * add a route in the overlay to each of the allowed-ips
255  */
256  u32 ii;
257 
258  vec_validate (peer->allowed_ips, vec_len (allowed_ips) - 1);
259 
261  {
262  peer->allowed_ips[ii].prefix = allowed_ips[ii];
263  }
264 
267  (FIB_PROTOCOL_IP4, peer->wg_sw_if_index));
268 
269  return (0);
270 }
271 
272 int
273 wg_peer_add (u32 tun_sw_if_index,
275  u32 table_id,
276  const ip46_address_t * endpoint,
277  const fib_prefix_t * allowed_ips,
278  u16 port, u16 persistent_keepalive, u32 * peer_index)
279 {
280  wg_if_t *wg_if;
281  wg_peer_t *peer;
282  int rv;
283 
285 
286  if (tun_sw_if_index == ~0)
287  return (VNET_API_ERROR_INVALID_SW_IF_INDEX);
288 
289  wg_if = wg_if_get (wg_if_find_by_sw_if_index (tun_sw_if_index));
290  if (!wg_if)
291  return (VNET_API_ERROR_INVALID_SW_IF_INDEX);
292 
293  /* *INDENT-OFF* */
295  {
296  if (!memcmp (peer->remote.r_public, public_key, NOISE_PUBLIC_KEY_LEN))
297  {
298  return (VNET_API_ERROR_ENTRY_ALREADY_EXISTS);
299  }
300  }
301  /* *INDENT-ON* */
302 
304  return (VNET_API_ERROR_LIMIT_EXCEEDED);
305 
307 
308  wg_peer_init (vm, peer);
309 
311  persistent_keepalive, allowed_ips, tun_sw_if_index);
312 
313  if (rv)
314  {
315  wg_peer_clear (vm, peer);
317  return (rv);
318  }
319 
321  wg_if->local_idx);
322  cookie_maker_init (&peer->cookie_maker, public_key);
323 
324  if (peer->persistent_keepalive_interval != 0)
325  {
327  }
328 
329  *peer_index = peer - wg_peer_pool;
330  wg_if_peer_add (wg_if, *peer_index);
331 
332  return (0);
333 }
334 
335 int
337 {
338  wg_main_t *wmp = &wg_main;
339  wg_peer_t *peer = NULL;
340  wg_if_t *wgi;
341 
342  if (pool_is_free_index (wg_peer_pool, peeri))
343  return VNET_API_ERROR_NO_SUCH_ENTRY;
344 
346 
347  wgi = wg_if_get (wg_if_find_by_sw_if_index (peer->wg_sw_if_index));
348  wg_if_peer_remove (wgi, peeri);
349 
350  noise_remote_clear (wmp->vlib_main, &peer->remote);
351  wg_peer_clear (wmp->vlib_main, peer);
353 
354  return (0);
355 }
356 
357 index_t
359 {
360  index_t peeri;
361 
362  /* *INDENT-OFF* */
364  {
365  if (WALK_STOP == fn(peeri, data))
366  return peeri;
367  }
368  /* *INDENT-ON* */
369  return INDEX_INVALID;
370 }
371 
372 static u8 *
373 format_wg_peer_endpoint (u8 * s, va_list * args)
374 {
375  wg_peer_endpoint_t *ep = va_arg (*args, wg_peer_endpoint_t *);
376 
377  s = format (s, "%U:%d",
379 
380  return (s);
381 }
382 
383 u8 *
384 format_wg_peer (u8 * s, va_list * va)
385 {
386  index_t peeri = va_arg (*va, index_t);
387  wg_peer_allowed_ip_t *allowed_ip;
389  wg_peer_t *peer;
390 
391  peer = wg_peer_get (peeri);
392  key_to_base64 (peer->remote.r_public, NOISE_PUBLIC_KEY_LEN, key);
393 
394  s = format (s, "[%d] endpoint:[%U->%U] %U keep-alive:%d adj:%d",
395  peeri,
399  peer->wg_sw_if_index,
400  peer->persistent_keepalive_interval, peer->adj_index);
401  s = format (s, "\n key:%=s %U",
402  key, format_hex_bytes, peer->remote.r_public,
404  s = format (s, "\n allowed-ips:");
405  vec_foreach (allowed_ip, peer->allowed_ips)
406  {
407  s = format (s, " %U", format_fib_prefix, &allowed_ip->prefix);
408  }
409 
410  return s;
411 }
412 
413 static clib_error_t *
415 {
416  /*
417  * use a priority better than interface source, so that
418  * if the same subnet is added to the wg interface and is
419  * used as an allowed IP, then the wireguard soueced prefix
420  * wins and traffic is routed to the endpoint rather than dropped
421  */
423 
424  return (NULL);
425 }
426 
428 
429 /*
430  * fd.io coding-style-patch-verification: ON
431  *
432  * Local Variables:
433  * eval: (c-set-style "gnu")
434  * End:
435  */
wg_peer_fib_populate
static void wg_peer_fib_populate(wg_peer_t *peer, u32 fib_index)
Definition: wireguard_peer.c:59
fib_table_entry_path_add
fib_node_index_t fib_table_entry_path_add(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_entry_flag_t flags, dpo_proto_t next_hop_proto, const ip46_address_t *next_hop, u32 next_hop_sw_if_index, u32 next_hop_fib_index, u32 next_hop_weight, fib_mpls_label_t *next_hop_labels, fib_route_path_flags_t path_flags)
Add one path to an entry (aka route) in the FIB.
Definition: fib_table.c:563
wg_peer_if_table_change
walk_rc_t wg_peer_if_table_change(wg_if_t *wgi, index_t peeri, void *data)
Definition: wireguard_peer.c:194
adj_midchain.h
udp_header_t::src_port
u16 src_port
Definition: udp_packet.h:48
wg_if_get
static_always_inline wg_if_t * wg_if_get(index_t wgii)
Definition: wireguard_if.h:68
wg_if_t_::src_ip
ip_address_t src_ip
Definition: wireguard_if.h:37
wireguard_key.h
NOISE_KEY_LEN_BASE64
#define NOISE_KEY_LEN_BASE64
Definition: wireguard_messages.h:26
REKEY_TIMEOUT
@ REKEY_TIMEOUT
Definition: wireguard_messages.h:31
WALK_CONTINUE
@ WALK_CONTINUE
Definition: interface_funcs.h:174
wg_peer_allowed_ip_t_::fib_entry_index
fib_node_index_t fib_entry_index
Definition: wireguard_peer.h:39
wg_peer_endpoint_init
static void wg_peer_endpoint_init(wg_peer_endpoint_t *ep, const ip46_address_t *addr, u16 port)
Definition: wireguard_peer.c:39
wg_peer_init
static void wg_peer_init(vlib_main_t *vm, wg_peer_t *peer)
Definition: wireguard_peer.c:119
adj_nbr_add_or_lock
adj_index_t adj_nbr_add_or_lock(fib_protocol_t nh_proto, vnet_link_t link_type, const ip46_address_t *nh_addr, u32 sw_if_index)
Neighbour Adjacency sub-type.
Definition: adj_nbr.c:257
pool_elt_at_index
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:549
ip46_address_reset
static void ip46_address_reset(ip46_address_t *ip46)
Definition: ip46_address.h:74
wg_peer_remove
int wg_peer_remove(index_t peeri)
Definition: wireguard_peer.c:336
format_hex_bytes
u8 * format_hex_bytes(u8 *s, va_list *va)
Definition: std-formats.c:84
MAX_PEERS
@ MAX_PEERS
Definition: wireguard_messages.h:35
adj_midchain_delegate_stack
void adj_midchain_delegate_stack(adj_index_t ai, u32 fib_index, const fib_prefix_t *pfx)
create/attach a midchain delegate and stack it on the prefix passed
Definition: adj_midchain_delegate.c:101
FIB_NODE_INDEX_INVALID
#define FIB_NODE_INDEX_INVALID
Definition: fib_types.h:30
adj_unlock
void adj_unlock(adj_index_t adj_index)
Release a reference counting lock on the adjacency.
Definition: adj.c:358
fib_table.h
persistent_keepalive
u16 persistent_keepalive
Definition: wireguard.api:101
u16
unsigned short u16
Definition: types.h:57
wg_peer_table_bind_ctx_t_
Definition: wireguard_peer.h:94
wg_peer_fib_flush
static void wg_peer_fib_flush(wg_peer_t *peer)
Definition: wireguard_peer.c:47
wg_peer_build_rewrite
static u8 * wg_peer_build_rewrite(const wg_peer_t *peer)
Definition: wireguard_peer.c:126
pool_put
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:305
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
public_key
u8 public_key[32]
Definition: wireguard.api:36
port
u16 port
Definition: lb_types.api:73
wg_peer_walk_cb_t
walk_rc_t(* wg_peer_walk_cb_t)(index_t peeri, void *arg)
Definition: wireguard_peer.h:109
format_wg_peer_endpoint
static u8 * format_wg_peer_endpoint(u8 *s, va_list *args)
Definition: wireguard_peer.c:373
addr
vhost_vring_addr_t addr
Definition: vhost_user.h:130
wg_peer_pool
wg_peer_t * wg_peer_pool
Definition: wireguard_peer.c:27
wg_peer_if_admin_state_change
walk_rc_t wg_peer_if_admin_state_change(wg_if_t *wgi, index_t peeri, void *data)
Definition: wireguard_peer.c:186
wg_if_peer_remove
void wg_if_peer_remove(wg_if_t *wgi, index_t peeri)
Definition: wireguard_if.c:361
WG_N_TIMERS
@ WG_N_TIMERS
Definition: wireguard_timer.h:36
key
typedef key
Definition: ipsec_types.api:91
pool_is_free_index
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:302
wg_peer_adj_stack
static void wg_peer_adj_stack(wg_peer_t *peer)
Definition: wireguard_peer.c:150
wg_peer_endpoint_t_::addr
ip46_address_t addr
Definition: wireguard_peer.h:44
wg_if_t_::port
u16 port
Definition: wireguard_if.h:32
pool_foreach
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:534
wireguard_peer.h
ip4_udp_header_t_::ip4
ip4_header_t ip4
Definition: wireguard_peer.h:30
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
noise_remote_clear
void noise_remote_clear(vlib_main_t *vm, noise_remote_t *r)
Definition: wireguard_noise.c:450
VNET_LINK_IP4
@ VNET_LINK_IP4
Definition: interface.h:344
vec_dup
#define vec_dup(V)
Return copy of vector (no header, no alignment)
Definition: vec.h:444
vnet_get_main
vnet_main_t * vnet_get_main(void)
Definition: pnat_test_stubs.h:56
wg_if_find_by_sw_if_index
index_t wg_if_find_by_sw_if_index(u32 sw_if_index)
Definition: wireguard_if.c:80
FIB_ENTRY_FLAG_NONE
@ FIB_ENTRY_FLAG_NONE
Definition: fib_entry.h:112
index_t
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:43
peer
vl_api_address_t peer
Definition: teib.api:28
ip4_udp_header_t_
Definition: wireguard_peer.h:28
vec_foreach_index
#define vec_foreach_index(var, v)
Iterate over vector indices.
Definition: vec_bootstrap.h:220
wg_peer
Definition: wireguard_peer.h:48
wg_peer_add
int wg_peer_add(u32 tun_sw_if_index, const u8 public_key[NOISE_PUBLIC_KEY_LEN], u32 table_id, const ip46_address_t *endpoint, const fib_prefix_t *allowed_ips, u16 port, u16 persistent_keepalive, u32 *peer_index)
Definition: wireguard_peer.c:273
pool_get
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:255
wg_main
wg_main_t wg_main
Definition: wireguard.c:26
vec_validate
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment)
Definition: vec.h:523
ip4_header_t::checksum
u16 checksum
Definition: ip4_packet.h:118
wg_if_t_
Definition: wireguard_if.h:23
ip_address_to_46
fib_protocol_t ip_address_to_46(const ip_address_t *addr, ip46_address_t *a)
Definition: ip_types.c:252
ip_adjacency_t_
IP unicast adjacency.
Definition: adj.h:235
FIB_PROTOCOL_IP4
@ FIB_PROTOCOL_IP4
Definition: fib_types.h:36
fib_source_allocate
fib_source_t fib_source_allocate(const char *name, fib_source_priority_t prio, fib_source_behaviour_t bh)
Definition: fib_source.c:118
fib_proto_to_dpo
dpo_proto_t fib_proto_to_dpo(fib_protocol_t fib_proto)
Definition: fib_types.c:343
ip46_address_copy
static_always_inline void ip46_address_copy(ip46_address_t *dst, const ip46_address_t *src)
Definition: ip46_address.h:123
ip4_header_t::dst_address
ip4_address_t dst_address
Definition: ip4_packet.h:125
vnet_sw_interface_is_admin_up
static uword vnet_sw_interface_is_admin_up(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface_funcs.h:265
noise_remote_init
void noise_remote_init(noise_remote_t *r, uint32_t peer_pool_idx, const uint8_t public[NOISE_PUBLIC_KEY_LEN], u32 noise_local_idx)
Definition: wireguard_noise.c:90
wireguard_send.h
adj_midchain_delegate_unstack
void adj_midchain_delegate_unstack(adj_index_t ai)
unstack a midchain delegate (this stacks it on a drop)
Definition: adj_midchain_delegate.c:135
wireguard_messages.h
FIB_SOURCE_BH_API
@ FIB_SOURCE_BH_API
add paths with [mpls] path extensions
Definition: fib_source.h:208
udp_header_t::checksum
u16 checksum
Definition: udp_packet.h:55
data
u8 data[128]
Definition: ipsec_types.api:95
wg_peer_endpoint_t_::port
u16 port
Definition: wireguard_peer.h:45
wg_main_t::vlib_main
vlib_main_t * vlib_main
Definition: wireguard.h:34
wg_main_t
Definition: wireguard.h:31
vec_free
#define vec_free(V)
Free vector's memory (no header).
Definition: vec.h:395
allowed_ips
vl_api_prefix_t allowed_ips[n_allowed_ips]
Definition: wireguard.api:107
key_to_base64
bool key_to_base64(const u8 *src, size_t src_len, u8 *out)
Definition: wireguard_key.c:104
adj_nbr_midchain_update_rewrite
void adj_nbr_midchain_update_rewrite(adj_index_t adj_index, adj_midchain_fixup_t fixup, const void *fixup_data, adj_flags_t flags, u8 *rewrite)
adj_nbr_midchain_update_rewrite
Definition: adj_midchain.c:213
ip4_header_t::src_address
ip4_address_t src_address
Definition: ip4_packet.h:125
pool_foreach_index
#define pool_foreach_index(i, v)
Definition: pool.h:572
format_vnet_sw_if_index_name
format_function_t format_vnet_sw_if_index_name
Definition: interface_funcs.h:458
wg_send_keepalive
bool wg_send_keepalive(vlib_main_t *vm, wg_peer_t *peer)
Definition: wireguard_send.c:155
format
description fragment has unexpected format
Definition: map.api:433
wg_peer_module_init
static clib_error_t * wg_peer_module_init(vlib_main_t *vm)
Definition: wireguard_peer.c:414
endpoint
vl_api_address_t endpoint
Definition: wireguard.api:103
wg_peer_endpoint_reset
static void wg_peer_endpoint_reset(wg_peer_endpoint_t *ep)
Definition: wireguard_peer.c:32
vec_validate_init_empty
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header,...
Definition: vec.h:570
NOISE_PUBLIC_KEY_LEN
#define NOISE_PUBLIC_KEY_LEN
Definition: wireguard_noise.h:26
format_ip46_address
format_function_t format_ip46_address
Definition: ip46_address.h:50
fib_table_get_index_for_sw_if_index
u32 fib_table_get_index_for_sw_if_index(fib_protocol_t proto, u32 sw_if_index)
Get the index of the FIB bound to the interface.
Definition: fib_table.c:1003
FIB_ROUTE_PATH_FLAG_NONE
@ FIB_ROUTE_PATH_FLAG_NONE
Definition: fib_types.h:332
u32
unsigned int u32
Definition: types.h:88
VLIB_INIT_FUNCTION
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:172
udp_header_t::dst_port
u16 dst_port
Definition: udp_packet.h:48
ip4_header_t::ttl
u8 ttl
Definition: ip4_packet.h:112
table_id
u32 table_id
Definition: wireguard.api:102
dst
vl_api_ip4_address_t dst
Definition: pnat.api:41
ctx
long ctx[MAX_CONNS]
Definition: main.c:144
format_fib_prefix
u8 * format_fib_prefix(u8 *s, va_list *args)
Definition: fib_types.c:283
vec_foreach
#define vec_foreach(var, vec)
Vector iterator.
Definition: vec_bootstrap.h:213
wg_peer_endpoint_t_
Definition: wireguard_peer.h:42
pool_elts
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:127
clib_memset
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
vlib_main_t
Definition: main.h:102
ip4_header_t::ip_version_and_header_length
u8 ip_version_and_header_length
Definition: ip4_packet.h:93
vlib_get_main
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:38
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
wireguard.h
ip4_header_checksum
static u16 ip4_header_checksum(ip4_header_t *i)
Definition: ip4_packet.h:314
vlib_init_function_t
clib_error_t *() vlib_init_function_t(struct vlib_main_t *vm)
Definition: init.h:51
wg_peer_get
static wg_peer_t * wg_peer_get(index_t peeri)
Definition: wireguard_peer.h:125
i
int i
Definition: flowhash_template.h:376
fib_source_t
enum fib_source_t_ fib_source_t
The different sources that can create a route.
rv
int __clib_unused rv
Definition: application.c:491
IP46_TYPE_ANY
@ IP46_TYPE_ANY
Definition: ip46_address.h:24
wireguard_if.h
fib_table_entry_delete_index
void fib_table_entry_delete_index(fib_node_index_t fib_entry_index, fib_source_t source)
Delete a FIB entry.
Definition: fib_table.c:924
wg_if_t_::sw_if_index
u32 sw_if_index
Definition: wireguard_if.h:26
format_wg_peer
u8 * format_wg_peer(u8 *s, va_list *va)
Definition: wireguard_peer.c:384
vlib_time_now
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:327
wg_peer_by_adj_index
index_t * wg_peer_by_adj_index
Definition: wireguard_peer.c:29
ip4_udp_header_t_::udp
udp_header_t udp
Definition: wireguard_peer.h:31
wg_peer_fill
static int wg_peer_fill(vlib_main_t *vm, wg_peer_t *peer, u32 table_id, const ip46_address_t *dst, u16 port, u16 persistent_keepalive_interval, const fib_prefix_t *allowed_ips, u32 wg_sw_if_index)
Definition: wireguard_peer.c:208
INDEX_INVALID
#define INDEX_INVALID
Invalid index - used when no index is known blazoned capitals INVALID speak volumes where ~0 does not...
Definition: dpo.h:49
fib_table_find
u32 fib_table_find(fib_protocol_t proto, u32 table_id)
Get the index of the FIB for a Table-ID.
Definition: fib_table.c:1111
wg_peer_clear
static void wg_peer_clear(vlib_main_t *vm, wg_peer_t *peer)
Definition: wireguard_peer.c:78
sw_if_index
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
rewrite
rewrite
Definition: pnat.api:158
wg_fib_source
static fib_source_t wg_fib_source
Definition: wireguard_peer.c:26
wg_peer_allowed_ip_t_::prefix
fib_prefix_t prefix
Definition: wireguard_peer.h:38
wg_peer_allowed_ip_t_
Definition: wireguard_peer.h:36
wg_if_peer_add
void wg_if_peer_add(wg_if_t *wgi, index_t peeri)
Definition: wireguard_if.c:351
walk_rc_t
enum walk_rc_t_ walk_rc_t
Walk return code.
wg_if_t_::local_idx
u32 local_idx
Definition: wireguard_if.h:30
ADJ_FLAG_MIDCHAIN_IP_STACK
@ ADJ_FLAG_MIDCHAIN_IP_STACK
Definition: adj.h:218
adj_get
static ip_adjacency_t * adj_get(adj_index_t adj_index)
Get a pointer to an adjacency object from its index.
Definition: adj.h:470
wg_timers_stop
void wg_timers_stop(wg_peer_t *peer)
Definition: wireguard_timer.c:384
WALK_STOP
@ WALK_STOP
Definition: interface_funcs.h:173
fib_prefix_t_
Aggregate type for a prefix.
Definition: fib_types.h:202
ip4_header_t::protocol
u8 protocol
Definition: ip4_packet.h:115
wg_peer_walk
index_t wg_peer_walk(wg_peer_walk_cb_t fn, void *data)
Definition: wireguard_peer.c:358
prefix
vl_api_prefix_t prefix
Definition: ip.api:175
wg_main_t::timer_wheel
tw_timer_wheel_16t_2w_512sl_t timer_wheel
Definition: wireguard.h:46