session: fix severity info
[vpp.git] / src / plugins / wireguard / wireguard_input.c
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 #include <wireguard/wireguard.h>
21
22 #include <wireguard/wireguard_send.h>
23 #include <wireguard/wireguard_if.h>
24
25 #define foreach_wg_input_error                                                \
26   _ (NONE, "No error")                                                        \
27   _ (HANDSHAKE_MAC, "Invalid MAC handshake")                                  \
28   _ (PEER, "Peer error")                                                      \
29   _ (INTERFACE, "Interface error")                                            \
30   _ (DECRYPTION, "Failed during decryption")                                  \
31   _ (KEEPALIVE_SEND, "Failed while sending Keepalive")                        \
32   _ (HANDSHAKE_SEND, "Failed while sending Handshake")                        \
33   _ (HANDSHAKE_RECEIVE, "Failed while receiving Handshake")                   \
34   _ (TOO_BIG, "Packet too big")                                               \
35   _ (UNDEFINED, "Undefined error")
36
37 typedef enum
38 {
39 #define _(sym,str) WG_INPUT_ERROR_##sym,
40   foreach_wg_input_error
41 #undef _
42     WG_INPUT_N_ERROR,
43 } wg_input_error_t;
44
45 static char *wg_input_error_strings[] = {
46 #define _(sym,string) string,
47   foreach_wg_input_error
48 #undef _
49 };
50
51 typedef struct
52 {
53   message_type_t type;
54   u16 current_length;
55   bool is_keepalive;
56   index_t peer;
57 } wg_input_trace_t;
58
59 u8 *
60 format_wg_message_type (u8 * s, va_list * args)
61 {
62   message_type_t type = va_arg (*args, message_type_t);
63
64   switch (type)
65     {
66 #define _(v,a) case MESSAGE_##v: return (format (s, "%s", a));
67       foreach_wg_message_type
68 #undef _
69     }
70   return (format (s, "unknown"));
71 }
72
73 /* packet trace format function */
74 static u8 *
75 format_wg_input_trace (u8 * s, va_list * args)
76 {
77   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
78   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
79
80   wg_input_trace_t *t = va_arg (*args, wg_input_trace_t *);
81
82   s = format (s, "Wireguard input: \n");
83   s = format (s, "    Type: %U\n", format_wg_message_type, t->type);
84   s = format (s, "    Peer: %d\n", t->peer);
85   s = format (s, "    Length: %d\n", t->current_length);
86   s = format (s, "    Keepalive: %s", t->is_keepalive ? "true" : "false");
87
88   return s;
89 }
90
91 typedef enum
92 {
93   WG_INPUT_NEXT_HANDOFF_HANDSHAKE,
94   WG_INPUT_NEXT_HANDOFF_DATA,
95   WG_INPUT_NEXT_IP4_INPUT,
96   WG_INPUT_NEXT_IP6_INPUT,
97   WG_INPUT_NEXT_PUNT,
98   WG_INPUT_NEXT_ERROR,
99   WG_INPUT_N_NEXT,
100 } wg_input_next_t;
101
102 /* static void */
103 /* set_peer_address (wg_peer_t * peer, ip4_address_t ip4, u16 udp_port) */
104 /* { */
105 /*   if (peer) */
106 /*     { */
107 /*       ip46_address_set_ip4 (&peer->dst.addr, &ip4); */
108 /*       peer->dst.port = udp_port; */
109 /*     } */
110 /* } */
111
112 static u8
113 is_ip4_header (u8 *data)
114 {
115   return (data[0] >> 4) == 0x4;
116 }
117
118 static wg_input_error_t
119 wg_handshake_process (vlib_main_t *vm, wg_main_t *wmp, vlib_buffer_t *b,
120                       u32 node_idx, u8 is_ip4)
121 {
122   ASSERT (vm->thread_index == 0);
123
124   enum cookie_mac_state mac_state;
125   bool packet_needs_cookie;
126   bool under_load;
127   index_t *wg_ifs;
128   wg_if_t *wg_if;
129   wg_peer_t *peer = NULL;
130
131   void *current_b_data = vlib_buffer_get_current (b);
132
133   ip46_address_t src_ip;
134   if (is_ip4)
135     {
136       ip4_header_t *iph4 =
137         current_b_data - sizeof (udp_header_t) - sizeof (ip4_header_t);
138       ip46_address_set_ip4 (&src_ip, &iph4->src_address);
139     }
140   else
141     {
142       ip6_header_t *iph6 =
143         current_b_data - sizeof (udp_header_t) - sizeof (ip6_header_t);
144       ip46_address_set_ip6 (&src_ip, &iph6->src_address);
145     }
146
147   udp_header_t *uhd = current_b_data - sizeof (udp_header_t);
148   u16 udp_src_port = clib_host_to_net_u16 (uhd->src_port);;
149   u16 udp_dst_port = clib_host_to_net_u16 (uhd->dst_port);;
150
151   message_header_t *header = current_b_data;
152   under_load = false;
153
154   if (PREDICT_FALSE (header->type == MESSAGE_HANDSHAKE_COOKIE))
155     {
156       message_handshake_cookie_t *packet =
157         (message_handshake_cookie_t *) current_b_data;
158       u32 *entry =
159         wg_index_table_lookup (&wmp->index_table, packet->receiver_index);
160       if (entry)
161         peer = wg_peer_get (*entry);
162       else
163         return WG_INPUT_ERROR_PEER;
164
165       // TODO: Implement cookie_maker_consume_payload
166
167       return WG_INPUT_ERROR_NONE;
168     }
169
170   u32 len = (header->type == MESSAGE_HANDSHAKE_INITIATION ?
171              sizeof (message_handshake_initiation_t) :
172              sizeof (message_handshake_response_t));
173
174   message_macs_t *macs = (message_macs_t *)
175     ((u8 *) current_b_data + len - sizeof (*macs));
176
177   index_t *ii;
178   wg_ifs = wg_if_indexes_get_by_port (udp_dst_port);
179   if (NULL == wg_ifs)
180     return WG_INPUT_ERROR_INTERFACE;
181
182   vec_foreach (ii, wg_ifs)
183     {
184       wg_if = wg_if_get (*ii);
185       if (NULL == wg_if)
186         continue;
187
188       mac_state = cookie_checker_validate_macs (
189         vm, &wg_if->cookie_checker, macs, current_b_data, len, under_load,
190         &src_ip, udp_src_port);
191       if (mac_state == INVALID_MAC)
192         {
193           wg_if = NULL;
194           continue;
195         }
196       break;
197     }
198
199   if (NULL == wg_if)
200     return WG_INPUT_ERROR_HANDSHAKE_MAC;
201
202   if ((under_load && mac_state == VALID_MAC_WITH_COOKIE)
203       || (!under_load && mac_state == VALID_MAC_BUT_NO_COOKIE))
204     packet_needs_cookie = false;
205   else if (under_load && mac_state == VALID_MAC_BUT_NO_COOKIE)
206     packet_needs_cookie = true;
207   else
208     return WG_INPUT_ERROR_HANDSHAKE_MAC;
209
210   switch (header->type)
211     {
212     case MESSAGE_HANDSHAKE_INITIATION:
213       {
214         message_handshake_initiation_t *message = current_b_data;
215
216         if (packet_needs_cookie)
217           {
218             // TODO: Add processing
219           }
220         noise_remote_t *rp;
221         if (noise_consume_initiation
222             (vm, noise_local_get (wg_if->local_idx), &rp,
223              message->sender_index, message->unencrypted_ephemeral,
224              message->encrypted_static, message->encrypted_timestamp))
225           {
226             peer = wg_peer_get (rp->r_peer_idx);
227           }
228         else
229           {
230             return WG_INPUT_ERROR_PEER;
231           }
232
233         // set_peer_address (peer, ip4_src, udp_src_port);
234         if (PREDICT_FALSE (!wg_send_handshake_response (vm, peer)))
235           {
236             vlib_node_increment_counter (vm, node_idx,
237                                          WG_INPUT_ERROR_HANDSHAKE_SEND, 1);
238           }
239         break;
240       }
241     case MESSAGE_HANDSHAKE_RESPONSE:
242       {
243         message_handshake_response_t *resp = current_b_data;
244         u32 *entry =
245           wg_index_table_lookup (&wmp->index_table, resp->receiver_index);
246
247         if (PREDICT_TRUE (entry != NULL))
248           {
249             peer = wg_peer_get (*entry);
250             if (peer->is_dead)
251               return WG_INPUT_ERROR_PEER;
252           }
253         else
254           return WG_INPUT_ERROR_PEER;
255
256         if (!noise_consume_response
257             (vm, &peer->remote, resp->sender_index,
258              resp->receiver_index, resp->unencrypted_ephemeral,
259              resp->encrypted_nothing))
260           {
261             return WG_INPUT_ERROR_PEER;
262           }
263         if (packet_needs_cookie)
264           {
265             // TODO: Add processing
266           }
267
268         // set_peer_address (peer, ip4_src, udp_src_port);
269         if (noise_remote_begin_session (vm, &peer->remote))
270           {
271
272             wg_timers_session_derived (peer);
273             wg_timers_handshake_complete (peer);
274             if (PREDICT_FALSE (!wg_send_keepalive (vm, peer)))
275               {
276                 vlib_node_increment_counter (vm, node_idx,
277                                              WG_INPUT_ERROR_KEEPALIVE_SEND, 1);
278               }
279           }
280         break;
281       }
282     default:
283       return WG_INPUT_ERROR_HANDSHAKE_RECEIVE;
284     }
285
286   wg_timers_any_authenticated_packet_received (peer);
287   wg_timers_any_authenticated_packet_traversal (peer);
288   return WG_INPUT_ERROR_NONE;
289 }
290
291 always_inline uword
292 wg_input_inline (vlib_main_t *vm, vlib_node_runtime_t *node,
293                  vlib_frame_t *frame, u8 is_ip4)
294 {
295   message_type_t header_type;
296   u32 n_left_from;
297   u32 *from;
298   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
299   u16 nexts[VLIB_FRAME_SIZE], *next;
300   u32 thread_index = vm->thread_index;
301
302   from = vlib_frame_vector_args (frame);
303   n_left_from = frame->n_vectors;
304   b = bufs;
305   next = nexts;
306
307   vlib_get_buffers (vm, from, bufs, n_left_from);
308
309   wg_main_t *wmp = &wg_main;
310   wg_peer_t *peer = NULL;
311
312   while (n_left_from > 0)
313     {
314       bool is_keepalive = false;
315       next[0] = WG_INPUT_NEXT_PUNT;
316       header_type =
317         ((message_header_t *) vlib_buffer_get_current (b[0]))->type;
318       u32 *peer_idx;
319
320       if (PREDICT_TRUE (header_type == MESSAGE_DATA))
321         {
322           message_data_t *data = vlib_buffer_get_current (b[0]);
323
324           peer_idx = wg_index_table_lookup (&wmp->index_table,
325                                             data->receiver_index);
326
327           if (peer_idx)
328             {
329               peer = wg_peer_get (*peer_idx);
330             }
331           else
332             {
333               next[0] = WG_INPUT_NEXT_ERROR;
334               b[0]->error = node->errors[WG_INPUT_ERROR_PEER];
335               goto out;
336             }
337
338           if (PREDICT_FALSE (~0 == peer->input_thread_index))
339             {
340               /* this is the first packet to use this peer, claim the peer
341                * for this thread.
342                */
343               clib_atomic_cmp_and_swap (&peer->input_thread_index, ~0,
344                                         wg_peer_assign_thread (thread_index));
345             }
346
347           if (PREDICT_TRUE (thread_index != peer->input_thread_index))
348             {
349               next[0] = WG_INPUT_NEXT_HANDOFF_DATA;
350               goto next;
351             }
352
353           u16 encr_len = b[0]->current_length - sizeof (message_data_t);
354           u16 decr_len = encr_len - NOISE_AUTHTAG_LEN;
355           if (PREDICT_FALSE (decr_len >= WG_DEFAULT_DATA_SIZE))
356             {
357               b[0]->error = node->errors[WG_INPUT_ERROR_TOO_BIG];
358               goto out;
359             }
360
361           u8 *decr_data = wmp->per_thread_data[thread_index].data;
362
363           enum noise_state_crypt state_cr = noise_remote_decrypt (vm,
364                                                                   &peer->remote,
365                                                                   data->receiver_index,
366                                                                   data->counter,
367                                                                   data->encrypted_data,
368                                                                   encr_len,
369                                                                   decr_data);
370
371           if (PREDICT_FALSE (state_cr == SC_CONN_RESET))
372             {
373               wg_timers_handshake_complete (peer);
374             }
375           else if (PREDICT_FALSE (state_cr == SC_KEEP_KEY_FRESH))
376             {
377               wg_send_handshake_from_mt (*peer_idx, false);
378             }
379           else if (PREDICT_FALSE (state_cr == SC_FAILED))
380             {
381               next[0] = WG_INPUT_NEXT_ERROR;
382               b[0]->error = node->errors[WG_INPUT_ERROR_DECRYPTION];
383               goto out;
384             }
385
386           clib_memcpy (vlib_buffer_get_current (b[0]), decr_data, decr_len);
387           b[0]->current_length = decr_len;
388           vnet_buffer_offload_flags_clear (b[0],
389                                            VNET_BUFFER_OFFLOAD_F_UDP_CKSUM);
390
391           wg_timers_any_authenticated_packet_received (peer);
392           wg_timers_any_authenticated_packet_traversal (peer);
393
394           /* Keepalive packet has zero length */
395           if (decr_len == 0)
396             {
397               is_keepalive = true;
398               goto out;
399             }
400
401           wg_timers_data_received (peer);
402
403           ip46_address_t src_ip;
404           u8 is_ip4_inner = is_ip4_header (vlib_buffer_get_current (b[0]));
405           if (is_ip4_inner)
406             {
407               ip46_address_set_ip4 (
408                 &src_ip, &((ip4_header_t *) vlib_buffer_get_current (b[0]))
409                             ->src_address);
410             }
411           else
412             {
413               ip46_address_set_ip6 (
414                 &src_ip, &((ip6_header_t *) vlib_buffer_get_current (b[0]))
415                             ->src_address);
416             }
417
418           const fib_prefix_t *allowed_ip;
419           bool allowed = false;
420
421           /*
422            * we could make this into an ACL, but the expectation
423            * is that there aren't many allowed IPs and thus a linear
424            * walk is fater than an ACL
425            */
426
427           vec_foreach (allowed_ip, peer->allowed_ips)
428           {
429             if (fib_prefix_is_cover_addr_46 (allowed_ip, &src_ip))
430               {
431                 allowed = true;
432                 break;
433               }
434           }
435           if (allowed)
436             {
437               vnet_buffer (b[0])->sw_if_index[VLIB_RX] = peer->wg_sw_if_index;
438               next[0] = is_ip4_inner ? WG_INPUT_NEXT_IP4_INPUT :
439                                        WG_INPUT_NEXT_IP6_INPUT;
440             }
441         }
442       else
443         {
444           peer_idx = NULL;
445
446           /* Handshake packets should be processed in main thread */
447           if (thread_index != 0)
448             {
449               next[0] = WG_INPUT_NEXT_HANDOFF_HANDSHAKE;
450               goto next;
451             }
452
453           wg_input_error_t ret =
454             wg_handshake_process (vm, wmp, b[0], node->node_index, is_ip4);
455           if (ret != WG_INPUT_ERROR_NONE)
456             {
457               next[0] = WG_INPUT_NEXT_ERROR;
458               b[0]->error = node->errors[ret];
459             }
460         }
461
462     out:
463       if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)
464                          && (b[0]->flags & VLIB_BUFFER_IS_TRACED)))
465         {
466           wg_input_trace_t *t = vlib_add_trace (vm, node, b[0], sizeof (*t));
467           t->type = header_type;
468           t->current_length = b[0]->current_length;
469           t->is_keepalive = is_keepalive;
470           t->peer = peer_idx ? *peer_idx : INDEX_INVALID;
471         }
472     next:
473       n_left_from -= 1;
474       next += 1;
475       b += 1;
476     }
477   vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
478
479   return frame->n_vectors;
480 }
481
482 VLIB_NODE_FN (wg4_input_node)
483 (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
484 {
485   return wg_input_inline (vm, node, frame, /* is_ip4 */ 1);
486 }
487
488 VLIB_NODE_FN (wg6_input_node)
489 (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
490 {
491   return wg_input_inline (vm, node, frame, /* is_ip4 */ 0);
492 }
493
494 /* *INDENT-OFF* */
495 VLIB_REGISTER_NODE (wg4_input_node) =
496 {
497   .name = "wg4-input",
498   .vector_size = sizeof (u32),
499   .format_trace = format_wg_input_trace,
500   .type = VLIB_NODE_TYPE_INTERNAL,
501   .n_errors = ARRAY_LEN (wg_input_error_strings),
502   .error_strings = wg_input_error_strings,
503   .n_next_nodes = WG_INPUT_N_NEXT,
504   /* edit / add dispositions here */
505   .next_nodes = {
506         [WG_INPUT_NEXT_HANDOFF_HANDSHAKE] = "wg4-handshake-handoff",
507         [WG_INPUT_NEXT_HANDOFF_DATA] = "wg4-input-data-handoff",
508         [WG_INPUT_NEXT_IP4_INPUT] = "ip4-input-no-checksum",
509         [WG_INPUT_NEXT_IP6_INPUT] = "ip6-input",
510         [WG_INPUT_NEXT_PUNT] = "error-punt",
511         [WG_INPUT_NEXT_ERROR] = "error-drop",
512   },
513 };
514
515 VLIB_REGISTER_NODE (wg6_input_node) =
516 {
517   .name = "wg6-input",
518   .vector_size = sizeof (u32),
519   .format_trace = format_wg_input_trace,
520   .type = VLIB_NODE_TYPE_INTERNAL,
521   .n_errors = ARRAY_LEN (wg_input_error_strings),
522   .error_strings = wg_input_error_strings,
523   .n_next_nodes = WG_INPUT_N_NEXT,
524   /* edit / add dispositions here */
525   .next_nodes = {
526         [WG_INPUT_NEXT_HANDOFF_HANDSHAKE] = "wg6-handshake-handoff",
527         [WG_INPUT_NEXT_HANDOFF_DATA] = "wg6-input-data-handoff",
528         [WG_INPUT_NEXT_IP4_INPUT] = "ip4-input-no-checksum",
529         [WG_INPUT_NEXT_IP6_INPUT] = "ip6-input",
530         [WG_INPUT_NEXT_PUNT] = "error-punt",
531         [WG_INPUT_NEXT_ERROR] = "error-drop",
532   },
533 };
534 /* *INDENT-ON* */
535
536 /*
537  * fd.io coding-style-patch-verification: ON
538  *
539  * Local Variables:
540  * eval: (c-set-style "gnu")
541  * End:
542  */