OpenVPN
session_id.h
Go to the documentation of this file.
1/*
2 * OpenVPN -- An application to securely tunnel IP networks
3 * over a single 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-2025 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
23/*
24 * Each session is identified by a random 8-byte session identifier.
25 *
26 * For efficiency, the session id is only transmitted over the control
27 * channel (which only sees traffic occasionally when keys are being
28 * negotiated).
29 */
30
31#ifndef SESSION_ID_H
32#define SESSION_ID_H
33
34#include "basic.h"
35#include "buffer.h"
36
38{
39 uint8_t id[8];
40};
41
42extern const struct session_id x_session_id_zero;
43
44#define SID_SIZE (sizeof(x_session_id_zero.id))
45
46static inline bool
47session_id_equal(const struct session_id *sid1, const struct session_id *sid2)
48{
49 return !memcmp(sid1->id, sid2->id, SID_SIZE);
50}
51
52static inline bool
53session_id_defined(const struct session_id *sid1)
54{
55 return memcmp(sid1->id, &x_session_id_zero.id, SID_SIZE) != 0;
56}
57
58static inline bool
59session_id_read(struct session_id *sid, struct buffer *buf)
60{
61 return buf_read(buf, sid->id, SID_SIZE);
62}
63
64static inline bool
65session_id_write_prepend(const struct session_id *sid, struct buffer *buf)
66{
67 return buf_write_prepend(buf, sid->id, SID_SIZE);
68}
69
70static inline bool
71session_id_write(const struct session_id *sid, struct buffer *buf)
72{
73 return buf_write(buf, sid->id, SID_SIZE);
74}
75
76void session_id_random(struct session_id *sid);
77
78const char *session_id_print(const struct session_id *sid, struct gc_arena *gc);
79
80#endif /* SESSION_ID_H */
static bool buf_write_prepend(struct buffer *dest, const void *src, int size)
Definition buffer.h:672
static bool buf_read(struct buffer *src, void *dest, int size)
Definition buffer.h:762
static bool buf_write(struct buffer *dest, const void *src, size_t size)
Definition buffer.h:660
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
void session_id_random(struct session_id *sid)
Definition session_id.c:48
const struct session_id x_session_id_zero
Definition session_id.c:45
static bool session_id_equal(const struct session_id *sid1, const struct session_id *sid2)
Definition session_id.h:47
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
const char * session_id_print(const struct session_id *sid, struct gc_arena *gc)
Definition session_id.c:54
#define SID_SIZE
Definition session_id.h:44
Wrapper structure for dynamically allocated memory.
Definition buffer.h:60
Garbage collection arena used to keep track of dynamically allocated memory.
Definition buffer.h:116
uint8_t id[8]
Definition session_id.h:39
struct gc_arena gc
Definition test_ssl.c:154