OpenVPN
ssl_pkt.c
Go to the documentation of this file.
1/*
2 * OpenVPN -- An application to securely tunnel IP networks
3 * over a single TCP/UDP port, with support for SSL/TLS-based
4 * session authentication and key exchange,
5 * packet encryption, packet authentication, and
6 * packet compression.
7 *
8 * Copyright (C) 2002-2026 OpenVPN Inc <sales@openvpn.net>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2
12 * as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, see <https://www.gnu.org/licenses/>.
21 */
22#ifdef HAVE_CONFIG_H
23#include "config.h"
24#endif
25
26#include "syshead.h"
27
28#include "ssl_util.h"
29#include "ssl_pkt.h"
30#include "ssl_common.h"
31#include "crypto.h"
32#include "session_id.h"
33#include "reliable.h"
34#include "siphash.h"
35#include "tls_crypt.h"
36
37/*
38 * Dependent on hmac size, opcode size, and session_id size.
39 * Will assert if too small.
40 */
41#define SWAP_BUF_SIZE 256
42
60static bool
61swap_hmac(struct buffer *buf, const struct crypto_options *co, bool incoming)
62{
63 ASSERT(co);
64
65 const struct key_ctx *ctx = (incoming ? &co->key_ctx_bi.decrypt : &co->key_ctx_bi.encrypt);
66 ASSERT(ctx->hmac);
67
68 {
69 /* hmac + packet_id (8 bytes) */
70 const int hmac_size = hmac_ctx_size(ctx->hmac) + packet_id_size(true);
71
72 /* opcode (1 byte) + session_id (8 bytes) */
73 const int osid_size = 1 + SID_SIZE;
74
75 int e1, e2;
76 uint8_t *b = BPTR(buf);
77 uint8_t buf1[SWAP_BUF_SIZE];
78 uint8_t buf2[SWAP_BUF_SIZE];
79
80 if (incoming)
81 {
82 e1 = osid_size;
83 e2 = hmac_size;
84 }
85 else
86 {
87 e1 = hmac_size;
88 e2 = osid_size;
89 }
90
91 ASSERT(e1 <= SWAP_BUF_SIZE && e2 <= SWAP_BUF_SIZE);
92
93 if (buf->len >= e1 + e2)
94 {
95 memcpy(buf1, b, e1);
96 memcpy(buf2, b + e1, e2);
97 memcpy(b, buf2, e2);
98 memcpy(b + e2, buf1, e1);
99 return true;
100 }
101 else
102 {
103 return false;
104 }
105 }
106}
107
108#undef SWAP_BUF_SIZE
109
119static void
120tls_wrap_control(struct tls_wrap_ctx *ctx, uint8_t header, struct buffer *buf,
121 struct session_id *session_id)
122{
123 if (ctx->mode == TLS_WRAP_AUTH || ctx->mode == TLS_WRAP_NONE)
124 {
126 ASSERT(buf_write_prepend(buf, &header, sizeof(header)));
127 }
128 if (ctx->mode == TLS_WRAP_AUTH)
129 {
130 struct buffer null = clear_buf();
131
132 /* no encryption, only write hmac */
133 openvpn_encrypt(buf, null, &ctx->opt);
134 ASSERT(swap_hmac(buf, &ctx->opt, false));
135 }
136 else if (ctx->mode == TLS_WRAP_CRYPT)
137 {
138 ASSERT(buf_init(&ctx->work, buf->offset));
139 ASSERT(buf_write(&ctx->work, &header, sizeof(header)));
141 if (!tls_crypt_wrap(buf, &ctx->work, &ctx->opt))
142 {
143 buf->len = 0;
144 return;
145 }
146
148 || (header >> P_OPCODE_SHIFT) == P_CONTROL_WKC_V1)
149 {
150 if (!buf_copy(&ctx->work, ctx->tls_crypt_v2_wkc))
151 {
152 msg(D_TLS_ERRORS, "Could not append tls-crypt-v2 client key");
153 buf->len = 0;
154 return;
155 }
156 }
157
158 /* Don't change the original data in buf, it's used by the reliability
159 * layer to resend on failure. */
160 *buf = ctx->work;
161 }
162}
163
164void
165write_control_auth(struct tls_session *session, struct key_state *ks, struct buffer *buf,
166 struct link_socket_actual **to_link_addr, int opcode, int max_ack,
167 bool prepend_ack)
168{
169 ASSERT(ks->key_id >= 0 && ks->key_id <= P_KEY_ID_MASK);
170 ASSERT(opcode >= 0 && opcode <= P_LAST_OPCODE);
171 uint8_t header = (uint8_t)(ks->key_id | (opcode << P_OPCODE_SHIFT));
172
173 /* Workaround for Softether servers. Softether has a bug that it only
174 * allows 4 ACks in packets and drops packets if more ACKs are contained
175 * in a packet (see commit 37aa1ba5 in Softether) */
176 if (session->tls_wrap.mode == TLS_WRAP_NONE && !session->opt->server
177 && !(session->opt->crypto_flags & CO_USE_TLS_KEY_MATERIAL_EXPORT))
178 {
179 max_ack = min_int(max_ack, 4);
180 }
181
184 prepend_ack));
185
186 msg(D_TLS_DEBUG, "%s(): %s", __func__, packet_opcode_name(opcode));
187
189 &session->session_id);
190
191 *to_link_addr = &ks->remote_addr;
192}
193
194bool
195read_control_auth(struct buffer *buf, struct tls_wrap_ctx *ctx,
196 const struct link_socket_actual *from, const struct tls_options *opt)
197{
198 struct gc_arena gc = gc_new();
199 bool ret = false;
200
201 const uint8_t opcode = *(BPTR(buf)) >> P_OPCODE_SHIFT;
202 if ((opcode == P_CONTROL_HARD_RESET_CLIENT_V3 || opcode == P_CONTROL_WKC_V1)
203 && !tls_crypt_v2_extract_client_key(buf, ctx, opt))
204 {
205 msg(D_TLS_ERRORS, "TLS Error: can not extract tls-crypt-v2 client key from %s",
207 goto cleanup;
208 }
209
210 if (ctx->mode == TLS_WRAP_AUTH)
211 {
212 struct buffer null = clear_buf();
213
214 /* move the hmac record to the front of the packet */
215 if (!swap_hmac(buf, &ctx->opt, true))
216 {
217 msg(D_TLS_ERRORS, "TLS Error: cannot locate HMAC in incoming packet from %s",
219 gc_free(&gc);
220 return false;
221 }
222
223 /* authenticate only (no decrypt) and remove the hmac record
224 * from the head of the buffer */
225 openvpn_decrypt(buf, null, &ctx->opt, NULL, BPTR(buf));
226 if (!buf->len)
227 {
228 msg(D_TLS_ERRORS, "TLS Error: incoming packet authentication failed from %s",
230 goto cleanup;
231 }
232 }
233 else if (ctx->mode == TLS_WRAP_CRYPT)
234 {
236 if (!tls_crypt_unwrap(buf, &tmp, &ctx->opt))
237 {
238 msg(D_TLS_ERRORS, "TLS Error: tls-crypt unwrapping failed from %s",
240 goto cleanup;
241 }
242 ASSERT(buf_init(buf, buf->offset));
243 ASSERT(buf_copy(buf, &tmp));
244 buf_clear(&tmp);
245 }
246 else if (ctx->tls_crypt_v2_server_key.cipher)
247 {
248 /* If tls-crypt-v2 is enabled, require *some* wrapping */
249 msg(D_TLS_ERRORS, "TLS Error: could not determine wrapping from %s",
251 /* TODO Do we want to support using tls-crypt-v2 and no control channel
252 * wrapping at all simultaneously? That would allow server admins to
253 * upgrade clients one-by-one without running a second instance, but we
254 * should not enable it by default because it breaks DoS-protection.
255 * So, add something like --tls-crypt-v2-allow-insecure-fallback ? */
256 goto cleanup;
257 }
258
259 if (ctx->mode == TLS_WRAP_NONE || ctx->mode == TLS_WRAP_AUTH)
260 {
261 /* advance buffer pointer past opcode & session_id since our caller
262 * already read it */
263 buf_advance(buf, SID_SIZE + 1);
264 }
265
266 ret = true;
267cleanup:
268 gc_free(&gc);
269 return ret;
270}
271
272void
282
283/*
284 * This function is similar to tls_pre_decrypt, except it is called
285 * when we are in server mode and receive an initial incoming
286 * packet. Note that we don't modify any state in our parameter
287 * objects except state. The purpose is solely to
288 * determine whether we should generate a client instance
289 * object, in which case true is returned.
290 *
291 * This function is essentially the first-line HMAC firewall
292 * on the UDP port listener in --mode server mode.
293 */
296 const struct link_socket_actual *from, const struct buffer *buf)
297{
298 struct gc_arena gc = gc_new();
299 /* A packet needs to have at least an opcode and session id */
300 if (BLENZ(buf) < 1 + SID_SIZE)
301 {
302 dmsg(D_TLS_STATE_ERRORS, "TLS State Error: Too short packet (length %d) received from %s",
303 buf->len, print_link_socket_actual(from, &gc));
304 goto error;
305 }
306
307 /* get opcode and key ID */
308 uint8_t pkt_firstbyte = *BPTR(buf);
309 int op = pkt_firstbyte >> P_OPCODE_SHIFT;
310 int key_id = pkt_firstbyte & P_KEY_ID_MASK;
311
312 /* this packet is from an as-yet untrusted source, so
313 * scrutinize carefully */
314
315 /* Allow only the reset packet or the first packet of the actual handshake. */
317 && op != P_CONTROL_V1 && op != P_CONTROL_WKC_V1 && op != P_ACK_V1)
318 {
319 /*
320 * This can occur due to bogus data or DoS packets.
321 */
322 dmsg(D_TLS_STATE_ERRORS, "TLS State Error: No TLS state for client %s, opcode=%d",
323 print_link_socket_actual(from, &gc), op);
324 goto error;
325 }
326
327 if (key_id != 0)
328 {
330 "TLS State Error: Unknown key ID (%d) received from %s -- 0 was expected", key_id,
332 goto error;
333 }
334
335 /* read peer session id, we do this at this point since
336 * read_control_auth will skip over it */
337 struct buffer tmp = *buf;
338 buf_advance(&tmp, 1);
339 if (!session_id_read(&state->peer_session_id, &tmp)
341 {
342 msg(D_TLS_ERRORS, "TLS Error: session-id not found in packet from %s",
344 goto error;
345 }
346
347 state->newbuf = clone_buf(buf);
348 state->tls_wrap_tmp = tas->tls_wrap;
349
350 /* HMAC test and unwrapping the encrypted part of the control message
351 * into newbuf or just setting newbuf to point to the start of control
352 * message */
353 bool status = read_control_auth(&state->newbuf, &state->tls_wrap_tmp, from, NULL);
354
355 if (!status)
356 {
357 goto error;
358 }
359
360 /*
361 * At this point, if --tls-auth is being used, we know that
362 * the packet has passed the HMAC test, but we don't know if
363 * it is a replay yet. We will attempt to defeat replays
364 * by not advancing to the S_START state until we
365 * receive an ACK from our first reply to the client
366 * that includes an HMAC of our randomly generated 64 bit
367 * session ID.
368 *
369 * On the other hand if --tls-auth is not being used, we
370 * will proceed to begin the TLS authentication
371 * handshake with only cursory integrity checks having
372 * been performed, since we will be leaving the task
373 * of authentication solely up to TLS.
374 */
375 gc_free(&gc);
376 if (op == P_CONTROL_V1)
377 {
379 }
380 else if (op == P_ACK_V1)
381 {
383 }
384 else if (op == P_CONTROL_HARD_RESET_CLIENT_V3)
385 {
387 }
388 else if (op == P_CONTROL_WKC_V1)
389 {
391 }
392 else
393 {
395 }
396
397error:
399 gc_free(&gc);
400 return VERDICT_INVALID;
401}
402
403
404struct buffer
406 struct session_id *own_sid, struct session_id *remote_sid, uint8_t header,
407 bool request_resend_wkc)
408{
409 /* Copy buffer here to point at the same data but allow tls_wrap_control
410 * to potentially change buf to point to another buffer without
411 * modifying the buffer in tas */
412 struct buffer buf = tas->workbuf;
413 ASSERT(buf_init(&buf, tas->frame.buf.headroom));
414
415 /* Reliable ACK structure */
416 /* Length of the ACK structure - 1 ACK */
417 buf_write_u8(&buf, 1);
418
419 /* ACKed packet - first packet's id is always 0 */
420 buf_write_u32(&buf, 0);
421
422 /* Remote session id */
423 buf_write(&buf, remote_sid->id, SID_SIZE);
424
425 /* Packet ID of our own packet: Our reset packet is always using
426 * packet id 0 since it is the first packet */
428
429 ASSERT(buf_write(&buf, &net_pid, sizeof(net_pid)));
430
431 /* Add indication for tls-crypt-v2 to resend the WKc with the reply */
433 {
434 buf_write_u16(&buf, TLV_TYPE_EARLY_NEG_FLAGS); /* TYPE: flags */
435 buf_write_u16(&buf, sizeof(uint16_t));
437 }
438
439 /* Add tls-auth/tls-crypt wrapping, this might replace buf with
440 * ctx->work */
441 tls_wrap_control(ctx, header, &buf, own_sid);
442
443 return buf;
444}
445
446struct session_id
447calculate_session_id_hmac(struct session_id client_sid, const struct openvpn_sockaddr *from,
448 const uint8_t *key, int handwindow, int offset)
449{
450 /* Get the valid time quantisation for our hmac,
451 * we divide time by handwindow/2 and allow the previous
452 * and future session time if specified by offset */
453 uint32_t session_id_time = ntohl((uint32_t)(now / ((handwindow + 1) / 2) + offset));
454
455 uint8_t input[64];
456
457 /* ensure input array is large enough */
458 static_assert(sizeof(input) >= sizeof(struct sockaddr_in6) + sizeof(session_id_time) + sizeof(client_sid.id), "input buffer not sized correctly");
459 static_assert(sizeof(input) >= sizeof(struct sockaddr_in) + sizeof(session_id_time) + sizeof(client_sid.id), "input buffer not sized correctly");
460
461 struct buffer in = { 0 };
462 buf_set_write(&in, input, sizeof(input));
463
464 /* We do not care about endian here since it does not need to be
465 * portable */
466 buf_write(&in, (const uint8_t *)&session_id_time, sizeof(session_id_time));
467
468 /* add client IP and port */
469 switch (from->addr.sa.sa_family)
470 {
471 case AF_INET:
472 buf_write(&in, (const uint8_t *)&from->addr.in4, sizeof(struct sockaddr_in));
473 break;
474
475 case AF_INET6:
476 buf_write(&in, (const uint8_t *)&from->addr.in6, sizeof(struct sockaddr_in6));
477 break;
478 }
479
480 /* add session id of client */
481 buf_write(&in, client_sid.id, SID_SIZE);
482
483 struct session_id sid;
484 siphash(buf_bptr(&in), buf_len(&in), key, sid.id, sizeof(sid.id));
485
486 return sid;
487}
488
489bool
491 const struct openvpn_sockaddr *from,
492 uint8_t *key,
493 int handwindow,
494 bool pkt_is_ack)
495{
496 if (!from)
497 {
498 return false;
499 }
500
501 struct buffer buf = state->newbuf;
502 struct reliable_ack ack;
503
504 if (!reliable_ack_parse(&buf, &ack, &state->server_session_id))
505 {
506 return false;
507 }
508
509 /* Check if the packet ID of the packet or ACKED packet is <= 1 */
510 for (int i = 0; i < ack.len; i++)
511 {
512 /* This packet ACKs a packet that has a higher packet id than the
513 * ones expected in the three-way handshake, consider it as invalid
514 * for the session */
515 if (ack.packet_id[i] > 1)
516 {
517 return false;
518 }
519 }
520
521 if (!pkt_is_ack)
522 {
523 packet_id_type message_id;
524 /* Extract the packet ID from the packet */
525 if (!reliable_ack_read_packet_id(&buf, &message_id))
526 {
527 return false;
528 }
529
530 /* similar check. Anything larger than 1 is not considered part of the
531 * three-way handshake */
532 if (message_id > 1)
533 {
534 return false;
535 }
536 }
537
538
539 /* check adjacent timestamps too, the handwindow is split in 2 for the
540 * offset, so we check the current timeslot and the two before that */
541 for (int offset = -2; offset <= 0; offset++)
542 {
543 struct session_id expected_id =
544 calculate_session_id_hmac(state->peer_session_id, from, key, handwindow, offset);
545
546 if (memcmp_constant_time(&expected_id, &state->server_session_id, SID_SIZE) == 0)
547 {
548 return true;
549 }
550 }
551 return false;
552}
553
554struct buffer
556{
557 /* commands on the control channel are seperated by 0x00 bytes.
558 * cmdlen does not include the 0 byte of the string */
559 int cmdlen = (int)strnlen(BSTR(buf), BLENZ(buf));
560
561 if (cmdlen >= BLEN(buf))
562 {
563 buf_advance(buf, cmdlen);
564 /* Return empty buffer */
565 struct buffer empty = { 0 };
566 return empty;
567 }
568
569 /* include the NUL byte and ensure NUL termination */
570 cmdlen += 1;
571
572 /* Construct a buffer that only holds the current command and
573 * its closing NUL byte */
575 buf_write(&cmdbuf, BPTR(buf), cmdlen);
576
577 /* Remove \r and \n at the end of the buffer to avoid
578 * problems with scripts and other that add extra \r and \n */
580
581 /* check we have only printable characters or null byte in the
582 * command string and no newlines */
584 {
585 msg(D_PUSH_ERRORS, "WARNING: Received control with invalid characters: %s",
586 format_hex(BPTR(&cmdbuf), BLEN(&cmdbuf), 256, gc));
587 cmdbuf.len = 0;
588 }
589
590 buf_advance(buf, cmdlen);
591 return cmdbuf;
592}
void free_buf(struct buffer *buf)
Free the memory allocated for a buffer.
Definition buffer.c:169
void buf_clear(struct buffer *buf)
Zeroise and reset a buffer.
Definition buffer.c:148
struct buffer clone_buf(const struct buffer *buf)
Duplicate a buffer, including its content.
Definition buffer.c:99
bool string_check_buf(struct buffer *buf, const unsigned int inclusive, const unsigned int exclusive)
Check a buffer if it only consists of allowed characters.
Definition buffer.c:1038
struct buffer alloc_buf_gc(size_t size, struct gc_arena *gc)
Allocate a buffer of the given size under garbage collection.
Definition buffer.c:77
void buf_chomp(struct buffer *buf)
Remove trailing newline and carriage-return characters from a buffer.
Definition buffer.c:522
static bool buf_write_u16(struct buffer *dest, uint16_t data)
Append a uint16_t to a buffer in network byte order.
Definition buffer.h:1256
static uint8_t * buf_bptr(const struct buffer *buf)
Return a pointer to the start of the buffer content.
Definition buffer.h:418
#define BSTR(buf)
Return the buffer content pointer cast to char *.
Definition buffer.h:151
static struct buffer clear_buf(void)
Return an empty, undefined struct buffer (all fields zero).
Definition buffer.h:376
static bool buf_copy(struct buffer *dest, const struct buffer *src)
Copy the content of one buffer to the end of another.
Definition buffer.h:1301
#define BPTR(buf)
Return a pointer to the start of the buffer content.
Definition buffer.h:139
static bool buf_write_u32(struct buffer *dest, uint32_t data)
Append a uint32_t to a buffer in network byte order.
Definition buffer.h:1271
static bool buf_write_prepend(struct buffer *dest, const void *src, int size)
Prepend data to a buffer.
Definition buffer.h:1222
#define CC_CRLF
carriage return or newline
Definition buffer.h:1673
static void buf_set_write(struct buffer *buf, uint8_t *data, int size)
Initialise a buffer with an externally provided writable memory region.
Definition buffer.h:594
static int buf_len(const struct buffer *buf)
Return the length of the buffer content.
Definition buffer.h:438
static void secure_memzero(void *data, size_t len)
Securely zeroise memory.
Definition buffer.h:705
static bool buf_advance(struct buffer *buf, ssize_t size)
Advance the content start of a buffer, consuming bytes from the front.
Definition buffer.h:1124
static bool buf_write(struct buffer *dest, const void *src, size_t size)
Append data to a buffer.
Definition buffer.h:1198
static bool buf_write_u8(struct buffer *dest, uint8_t data)
Append a uint8_t to a buffer.
Definition buffer.h:1242
#define BLEN(buf)
Return the length of the buffer content in bytes.
Definition buffer.h:145
static char * format_hex(const uint8_t *data, size_t size, size_t maxoutput, struct gc_arena *gc)
Format a binary buffer as a hex string with spaces every 4 bytes.
Definition buffer.h:919
#define BLENZ(buf)
Return the length of the buffer content as a size_t.
Definition buffer.h:147
#define CC_NULL
null character \0
Definition buffer.h:1637
static void gc_free(struct gc_arena *a)
Free all allocations in a garbage collection arena.
Definition buffer.h:1912
#define CC_PRINT
printable (>= 32, != 127)
Definition buffer.h:1644
#define buf_init(buf, offset)
Definition buffer.h:356
static struct gc_arena gc_new(void)
Allocate and return a new, empty garbage collection arena.
Definition buffer.h:1896
static int buf_forward_capacity_total(const struct buffer *buf)
Return the total number of bytes available from the current offset to the end of the allocated memory...
Definition buffer.h:1026
void free_key_ctx_bi(struct key_ctx_bi *ctx)
Definition crypto.c:1100
Data Channel Cryptography Module.
#define CO_USE_TLS_KEY_MATERIAL_EXPORT
Bit-flag indicating that data channel key derivation is done using TLS keying material export [RFC570...
Definition crypto.h:359
int memcmp_constant_time(const void *a, const void *b, size_t size)
As memcmp(), but constant-time.
int hmac_ctx_size(hmac_ctx_t *ctx)
#define D_TLS_STATE_ERRORS
Definition errlevel.h:133
#define D_PUSH_ERRORS
Definition errlevel.h:66
#define D_TLS_ERRORS
Definition errlevel.h:58
#define D_TLS_DEBUG
Definition errlevel.h:164
enum first_packet_verdict tls_pre_decrypt_lite(const struct tls_auth_standalone *tas, struct tls_pre_decrypt_state *state, const struct link_socket_actual *from, const struct buffer *buf)
Inspect an incoming packet for which no VPN tunnel is active, and determine whether a new VPN tunnel ...
Definition ssl_pkt.c:295
void openvpn_encrypt(struct buffer *buf, struct buffer work, struct crypto_options *opt)
Encrypt and HMAC sign a packet so that it can be sent as a data channel VPN tunnel packet to a remote...
Definition crypto.c:329
bool openvpn_decrypt(struct buffer *buf, struct buffer work, struct crypto_options *opt, const struct frame *frame, const uint8_t *ad_start)
HMAC verify and decrypt a data channel packet received from a remote OpenVPN peer.
Definition crypto.c:779
bool reliable_ack_read_packet_id(struct buffer *buf, packet_id_type *pid)
Read the packet ID of a received packet.
Definition reliable.c:109
bool reliable_ack_parse(struct buffer *buf, struct reliable_ack *ack, struct session_id *session_id_remote)
Parse an acknowledgment record from a received packet.
Definition reliable.c:166
bool reliable_ack_write(struct reliable_ack *ack, struct reliable_ack *ack_mru, struct buffer *buf, const struct session_id *sid, int max, bool prepend)
Write a packet ID acknowledgment record to a buffer.
Definition reliable.c:248
bool tls_crypt_v2_extract_client_key(struct buffer *buf, struct tls_wrap_ctx *ctx, const struct tls_options *opt)
Extract a tls-crypt-v2 client key from a P_CONTROL_HARD_RESET_CLIENT_V3 message, and load the key int...
Definition tls_crypt.c:610
bool tls_crypt_unwrap(const struct buffer *src, struct buffer *dst, struct crypto_options *opt)
Unwrap a control channel packet (decrypts, authenticates and performs replay checks).
Definition tls_crypt.c:211
bool tls_crypt_wrap(const struct buffer *src, struct buffer *dst, struct crypto_options *opt)
Wrap a control channel packet (both authenticates and encrypts the data).
Definition tls_crypt.c:138
static int min_int(int x, int y)
Definition integer.h:105
static SERVICE_STATUS status
Definition interactive.c:52
#define dmsg(flags,...)
Definition error.h:172
#define msg(flags,...)
Definition error.h:152
#define ASSERT(x)
Definition error.h:219
time_t now
Definition otime.c:33
#define htonpid(x)
Definition packet_id.h:61
uint32_t packet_id_type
Definition packet_id.h:45
static int packet_id_size(bool long_form)
Definition packet_id.h:322
Reliability Layer module header file.
static bool session_id_write_prepend(const struct session_id *sid, struct buffer *buf)
Definition session_id.h:65
static bool session_id_write(const struct session_id *sid, struct buffer *buf)
Definition session_id.h:71
static bool session_id_defined(const struct session_id *sid1)
Definition session_id.h:53
static bool session_id_read(struct session_id *sid, struct buffer *buf)
Definition session_id.h:59
#define SID_SIZE
Definition session_id.h:44
static void siphash(const void *in, size_t inlen, const void *k, uint8_t *out, size_t outlen)
Definition siphash.h:70
const char * print_link_socket_actual(const struct link_socket_actual *act, struct gc_arena *gc)
static bool link_socket_actual_defined(const struct link_socket_actual *act)
void tls_clear_error(void)
Clear the underlying SSL library's error state.
Control Channel Common Data Structures.
static void tls_wrap_control(struct tls_wrap_ctx *ctx, uint8_t header, struct buffer *buf, struct session_id *session_id)
Wraps a TLS control packet by adding tls-auth HMAC or tls-crypt(-v2) encryption and opcode header inc...
Definition ssl_pkt.c:120
void free_tls_pre_decrypt_state(struct tls_pre_decrypt_state *state)
Definition ssl_pkt.c:273
void write_control_auth(struct tls_session *session, struct key_state *ks, struct buffer *buf, struct link_socket_actual **to_link_addr, int opcode, int max_ack, bool prepend_ack)
Definition ssl_pkt.c:165
static bool swap_hmac(struct buffer *buf, const struct crypto_options *co, bool incoming)
Move a packet authentication HMAC + related fields to or from the front of the buffer so it can be pr...
Definition ssl_pkt.c:61
struct buffer extract_command_buffer(struct buffer *buf, struct gc_arena *gc)
Extracts a control channel message from buf and adjusts the size of buf after the message has been ex...
Definition ssl_pkt.c:555
#define SWAP_BUF_SIZE
Definition ssl_pkt.c:41
bool read_control_auth(struct buffer *buf, struct tls_wrap_ctx *ctx, const struct link_socket_actual *from, const struct tls_options *opt)
Read a control channel authentication record.
Definition ssl_pkt.c:195
struct buffer tls_reset_standalone(struct tls_wrap_ctx *ctx, struct tls_auth_standalone *tas, struct session_id *own_sid, struct session_id *remote_sid, uint8_t header, bool request_resend_wkc)
This function creates a reset packet using the information from the tls pre decrypt state.
Definition ssl_pkt.c:405
struct session_id calculate_session_id_hmac(struct session_id client_sid, const struct openvpn_sockaddr *from, const uint8_t *key, int handwindow, int offset)
Calculates the HMAC based server session id based on a client session id and socket addr.
Definition ssl_pkt.c:447
bool check_session_hmac_and_pkt_id(struct tls_pre_decrypt_state *state, const struct openvpn_sockaddr *from, uint8_t *key, int handwindow, bool pkt_is_ack)
Checks if a control packet has a correct HMAC server session id.
Definition ssl_pkt.c:490
SSL control channel wrap/unwrap and decode functions.
#define EARLY_NEG_FLAG_RESEND_WKC
Definition ssl_pkt.h:313
#define P_OPCODE_SHIFT
Definition ssl_pkt.h:39
#define TLV_TYPE_EARLY_NEG_FLAGS
Definition ssl_pkt.h:312
#define P_ACK_V1
Definition ssl_pkt.h:46
#define P_CONTROL_WKC_V1
Definition ssl_pkt.h:59
#define P_KEY_ID_MASK
Definition ssl_pkt.h:38
static const char * packet_opcode_name(int op)
Definition ssl_pkt.h:231
#define P_CONTROL_V1
Definition ssl_pkt.h:45
first_packet_verdict
Definition ssl_pkt.h:85
@ VERDICT_VALID_ACK_V1
This packet is a valid ACK control packet from the peer, i.e.
Definition ssl_pkt.h:94
@ VERDICT_VALID_WKC_V1
The packet is a valid control packet with appended wrapped client key.
Definition ssl_pkt.h:96
@ VERDICT_VALID_RESET_V2
This packet is a valid reset packet from the peer (all but tls-crypt-v2)
Definition ssl_pkt.h:87
@ VERDICT_INVALID
the packet failed on of the various checks
Definition ssl_pkt.h:98
@ VERDICT_VALID_RESET_V3
This is a valid v3 reset (tls-crypt-v2)
Definition ssl_pkt.h:89
@ VERDICT_VALID_CONTROL_V1
This packet is a valid control packet from the peer.
Definition ssl_pkt.h:91
#define P_LAST_OPCODE
Definition ssl_pkt.h:65
#define P_CONTROL_HARD_RESET_CLIENT_V2
Definition ssl_pkt.h:51
static struct tls_wrap_ctx * tls_session_get_tls_wrap(struct tls_session *session, int key_id)
Determines if the current session should use the renegotiation tls wrap struct instead the normal one...
Definition ssl_pkt.h:282
#define P_CONTROL_HARD_RESET_CLIENT_V3
Definition ssl_pkt.h:55
SSL utility functions.
Wrapper structure for dynamically allocated memory.
Definition buffer.h:71
int len
Length in bytes of the actual content within the allocated memory.
Definition buffer.h:76
int offset
Offset in bytes of the actual content within the allocated memory.
Definition buffer.h:74
Security parameter state for processing data channel packets.
Definition crypto.h:293
struct key_ctx_bi key_ctx_bi
OpenSSL cipher and HMAC contexts for both sending and receiving directions.
Definition crypto.h:294
Garbage collection arena used to keep track of dynamically allocated memory.
Definition buffer.h:127
struct key_ctx decrypt
cipher and/or HMAC contexts for receiving direction.
Definition crypto.h:283
struct key_ctx encrypt
Cipher and/or HMAC contexts for sending direction.
Definition crypto.h:281
Container for one set of cipher and/or HMAC contexts.
Definition crypto.h:202
cipher_ctx_t * cipher
Generic cipher context.
Definition crypto.h:203
hmac_ctx_t * hmac
Generic HMAC context.
Definition crypto.h:204
Security parameter state of one TLS and data channel key session.
Definition ssl_common.h:208
struct link_socket_actual remote_addr
Definition ssl_common.h:235
struct reliable_ack * rec_ack
Definition ssl_common.h:247
struct session_id session_id_remote
Definition ssl_common.h:234
int key_id
Key id for this key_state, inherited from struct tls_session.
Definition ssl_common.h:217
struct reliable_ack * lru_acks
Definition ssl_common.h:248
Container for unidirectional cipher and HMAC key material.
Definition crypto.h:152
The acknowledgment structure in which packet IDs are stored for later acknowledgment.
Definition reliable.h:64
uint8_t id[8]
Definition session_id.h:39
struct that stores the temporary data for the tls lite decrypt functions
Definition ssl_pkt.h:106
struct session_id peer_session_id
Definition ssl_pkt.h:109
struct session_id server_session_id
Definition ssl_pkt.h:110
struct buffer newbuf
Definition ssl_pkt.h:108
struct tls_wrap_ctx tls_wrap_tmp
Definition ssl_pkt.h:107
Security parameter state of a single session within a VPN tunnel.
Definition ssl_common.h:489
Control channel wrapping (–tls-auth/–tls-crypt) context.
Definition ssl_common.h:276
bool cleanup_key_ctx
opt.key_ctx_bi is owned by this context
Definition ssl_common.h:288
struct crypto_options opt
Crypto state.
Definition ssl_common.h:283
enum tls_wrap_ctx::@28 mode
Control channel wrapping mode.
struct buffer work
Work buffer (only for –tls-crypt)
Definition ssl_common.h:284
struct key_ctx tls_crypt_v2_server_key
Decrypts client keys.
Definition ssl_common.h:285
const struct buffer * tls_crypt_v2_wkc
Wrapped client key, sent to server.
Definition ssl_common.h:286
struct key2 original_wrap_keydata
original key data to be xored in to the key for dynamic tls-crypt.
Definition ssl_common.h:298
static int cleanup(void **state)
struct gc_arena gc
Definition test_ssl.c:122