FD.io VPP  v21.06-1-gbb7418cf9
Vector Packet Processing
wireguard_output_tun.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 <vlib/vlib.h>
18 #include <vnet/vnet.h>
19 #include <vppinfra/error.h>
20 
21 #include <wireguard/wireguard.h>
23 
24 #define foreach_wg_output_error \
25  _(NONE, "No error") \
26  _(PEER, "Peer error") \
27  _(KEYPAIR, "Keypair error") \
28  _(TOO_BIG, "packet too big") \
29 
30 typedef enum
31 {
32 #define _(sym,str) WG_OUTPUT_ERROR_##sym,
34 #undef _
37 
38 static char *wg_output_error_strings[] = {
39 #define _(sym,string) string,
41 #undef _
42 };
43 
44 typedef enum
45 {
51 
52 typedef struct
53 {
57 
58 u8 *
59 format_ip4_udp_header (u8 * s, va_list * args)
60 {
61  ip4_udp_header_t *hdr = va_arg (*args, ip4_udp_header_t *);
62 
63  s = format (s, "%U:$U",
65 
66  return (s);
67 }
68 
69 /* packet trace format function */
70 static u8 *
71 format_wg_output_tun_trace (u8 * s, va_list * args)
72 {
73  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
74  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
75 
76  wg_output_tun_trace_t *t = va_arg (*args, wg_output_tun_trace_t *);
77 
78  s = format (s, "peer: %d\n", t->peer);
79  s = format (s, " Encrypted packet: %U", format_ip4_udp_header, &t->hdr);
80  return s;
81 }
82 
86 {
88  u32 *from;
92 
94  n_left_from = frame->n_vectors;
95  b = bufs;
96  next = nexts;
97 
98  vlib_get_buffers (vm, from, bufs, n_left_from);
99 
100  wg_main_t *wmp = &wg_main;
101  wg_peer_t *peer = NULL;
102 
103  while (n_left_from > 0)
104  {
106  u8 *plain_data = (vlib_buffer_get_current (b[0]) +
107  sizeof (ip4_udp_header_t));
108  u16 plain_data_len =
109  clib_net_to_host_u16 (((ip4_header_t *) plain_data)->length);
110  index_t peeri;
111 
112  next[0] = WG_OUTPUT_NEXT_ERROR;
113  peeri =
114  wg_peer_get_by_adj_index (vnet_buffer (b[0])->ip.adj_index[VLIB_TX]);
115  peer = wg_peer_get (peeri);
116 
117  if (!peer || peer->is_dead)
118  {
119  b[0]->error = node->errors[WG_OUTPUT_ERROR_PEER];
120  goto out;
121  }
122 
123  if (PREDICT_FALSE (~0 == peer->output_thread_index))
124  {
125  /* this is the first packet to use this peer, claim the peer
126  * for this thread.
127  */
129  wg_peer_assign_thread (thread_index));
130  }
131 
132  if (PREDICT_TRUE (thread_index != peer->output_thread_index))
133  {
134  next[0] = WG_OUTPUT_NEXT_HANDOFF;
135  goto next;
136  }
137 
138  if (PREDICT_FALSE (!peer->remote.r_current))
139  {
140  wg_send_handshake_from_mt (peeri, false);
141  b[0]->error = node->errors[WG_OUTPUT_ERROR_KEYPAIR];
142  goto out;
143  }
144  size_t encrypted_packet_len = message_data_len (plain_data_len);
145 
146  /*
147  * Ensure there is enough space to write the encrypted data
148  * into the packet
149  */
150  if (PREDICT_FALSE (encrypted_packet_len >= WG_DEFAULT_DATA_SIZE) ||
151  PREDICT_FALSE ((b[0]->current_data + encrypted_packet_len) >=
153  {
154  b[0]->error = node->errors[WG_OUTPUT_ERROR_TOO_BIG];
155  goto out;
156  }
157 
158  message_data_t *encrypted_packet =
159  (message_data_t *) wmp->per_thread_data[thread_index].data;
160 
162  state =
164  &peer->remote,
165  &encrypted_packet->receiver_index,
166  &encrypted_packet->counter, plain_data,
167  plain_data_len,
168  encrypted_packet->encrypted_data);
169 
171  {
172  wg_send_handshake_from_mt (peeri, false);
173  }
174  else if (PREDICT_FALSE (state == SC_FAILED))
175  {
176  //TODO: Maybe wrong
177  wg_send_handshake_from_mt (peeri, false);
178  goto out;
179  }
180 
181  /* Here we are sure that can send packet to next node */
183  encrypted_packet->header.type = MESSAGE_DATA;
184 
185  clib_memcpy (plain_data, (u8 *) encrypted_packet, encrypted_packet_len);
186 
187  hdr->udp.length = clib_host_to_net_u16 (encrypted_packet_len +
188  sizeof (udp_header_t));
189  b[0]->current_length = (encrypted_packet_len +
190  sizeof (ip4_header_t) + sizeof (udp_header_t));
192  (&hdr->ip4, clib_host_to_net_u16 (b[0]->current_length));
193 
195  wg_timers_data_sent (peer);
197 
198  out:
199  if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)
200  && (b[0]->flags & VLIB_BUFFER_IS_TRACED)))
201  {
203  vlib_add_trace (vm, node, b[0], sizeof (*t));
204  t->hdr = *hdr;
205  t->peer = peeri;
206  }
207  next:
208  n_left_from -= 1;
209  next += 1;
210  b += 1;
211  }
212 
213  vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
214  return frame->n_vectors;
215 }
216 
217 /* *INDENT-OFF* */
219 {
220  .name = "wg-output-tun",
221  .vector_size = sizeof (u32),
222  .format_trace = format_wg_output_tun_trace,
224  .n_errors = ARRAY_LEN (wg_output_error_strings),
225  .error_strings = wg_output_error_strings,
226  .n_next_nodes = WG_OUTPUT_N_NEXT,
227  .next_nodes = {
228  [WG_OUTPUT_NEXT_HANDOFF] = "wg-output-tun-handoff",
229  [WG_OUTPUT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
230  [WG_OUTPUT_NEXT_ERROR] = "error-drop",
231  },
232 };
233 /* *INDENT-ON* */
234 
235 /*
236  * fd.io coding-style-patch-verification: ON
237  *
238  * Local Variables:
239  * eval: (c-set-style "gnu")
240  * End:
241  */
#define WG_DEFAULT_DATA_SIZE
Definition: wireguard.h:22
message_header_t header
wg_per_thread_data_t * per_thread_data
Definition: wireguard.h:43
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:133
wg_output_next_t
#define CLIB_UNUSED(x)
Definition: clib.h:90
enum noise_state_crypt noise_remote_encrypt(vlib_main_t *vm, noise_remote_t *r, uint32_t *r_idx, uint64_t *nonce, uint8_t *src, size_t srclen, uint8_t *dst)
format_function_t format_udp_header
Definition: format.h:100
noise_state_crypt
format_function_t format_ip4_header
Definition: format.h:81
u32 thread_index
#define PREDICT_TRUE(x)
Definition: clib.h:125
u16 nexts[VLIB_FRAME_SIZE]
wg_output_error_t
#define foreach_wg_output_error
u32 thread_index
Definition: main.h:213
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:122
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
Definition: nat44_ei.c:3048
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
void wg_timers_any_authenticated_packet_traversal(wg_peer_t *peer)
static char * wg_output_error_strings[]
#define VLIB_NODE_FN(node)
Definition: node.h:202
unsigned char u8
Definition: types.h:56
vlib_buffer_t ** b
unsigned int u32
Definition: types.h:88
#define clib_memcpy(d, s, n)
Definition: string.h:197
ip4_header_t ip4
noise_remote_t remote
static index_t wg_peer_get_by_adj_index(index_t ai)
vlib_get_buffers(vm, from, b, n_left_from)
description fragment has unexpected format
Definition: map.api:433
void wg_send_handshake_from_mt(u32 peer_idx, bool is_retry)
vlib_buffer_enqueue_to_next(vm, node, from,(u16 *) nexts, frame->n_vectors)
u8 * format_ip4_udp_header(u8 *s, va_list *args)
#define VLIB_FRAME_SIZE
Definition: node.h:369
vl_api_fib_path_type_t type
Definition: fib_types.api:123
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:145
u16 * next
void wg_timers_data_sent(wg_peer_t *peer)
unsigned short u16
Definition: types.h:57
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:257
#define PREDICT_FALSE(x)
Definition: clib.h:124
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
vl_api_address_t peer
Definition: teib.api:28
static u8 * format_wg_output_tun_trace(u8 *s, va_list *args)
static_always_inline u32 vlib_buffer_get_default_data_size(vlib_main_t *vm)
Definition: buffer_funcs.h:122
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
#define message_data_len(plain_len)
void wg_timers_any_authenticated_packet_sent(wg_peer_t *peer)
u8 data[WG_DEFAULT_DATA_SIZE]
Definition: wireguard.h:29
#define ARRAY_LEN(x)
Definition: clib.h:70
#define clib_atomic_cmp_and_swap(addr, old, new)
Definition: atomics.h:37
bool is_dead
wg_main_t wg_main
Definition: wireguard.c:26
char const int length
Definition: cJSON.h:163
Definition: defs.h:47
vl_api_address_t ip
Definition: l2.api:558
vlib_main_t vlib_node_runtime_t * node
Definition: nat44_ei.c:3047
VLIB buffer representation.
Definition: buffer.h:111
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:301
udp_header_t udp
noise_keypair_t * r_current
static u32 wg_peer_assign_thread(u32 thread_id)
#define vnet_buffer(b)
Definition: buffer.h:437
static void ip4_header_set_len_w_chksum(ip4_header_t *ip4, u16 len)
vl_api_dhcp_client_state_t state
Definition: dhcp.api:201
message_type_t type
struct ip4_udp_header_t_ ip4_udp_header_t
void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace.c:628
#define VLIB_NODE_FLAG_TRACE
Definition: node.h:292
static wg_peer_t * wg_peer_get(index_t peeri)
vlib_node_registration_t wg_output_tun_node
(constructor) VLIB_REGISTER_NODE (wg_output_tun_node)
vlib_buffer_t * bufs[VLIB_FRAME_SIZE]
u32 output_thread_index