File: types.h

package info (click to toggle)
fastd 23-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,912 kB
  • sloc: ansic: 11,311; asm: 3,734; yacc: 601; sh: 472; makefile: 160; python: 35; perl: 11
file content (175 lines) | stat: -rw-r--r-- 6,511 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
// SPDX-License-Identifier: BSD-2-Clause
/*
  Copyright (c) Matthias Schiffer <mschiffer@universe-factory.net>
  All rights reserved.
*/

/**
  \file

  Basic enums and typedefs for common types
*/


#pragma once

#include "compat.h"

#include <stdbool.h>
#include <stddef.h>


/** Annotation for unused function parameters */
#define UNUSED __attribute__((unused))


/** A tri-state with the values \em true, \em false and \em undefined */
typedef struct fastd_tristate {
	bool set : 1;   /**< Specifies if the tri-state is set (\em true or \em false) or not (\em undefined) */
	bool state : 1; /**< Specifies if the tri-state is \em true or \em false */
} fastd_tristate_t;

/** A fastd_tristate_t instance representing the value \em true */
#define FASTD_TRISTATE_TRUE ((fastd_tristate_t){ true, true })
/** A fastd_tristate_t instance representing the value \em false */
#define FASTD_TRISTATE_FALSE ((fastd_tristate_t){ true, false })
/** A fastd_tristate_t instance representing the value \em undefined */
#define FASTD_TRISTATE_UNDEF ((fastd_tristate_t){ false, false })

/** The L2TP "T" (control) flag */
#define PACKET_L2TP_T 0x80

/** L2TP-compatible packet type \em control (all packets that don't use PACKET_DATA in L2TP-compatible sessions) */
#define PACKET_CONTROL 0xC8
/** L2TP-compatible packet type \em data (used for payload data) */
#define PACKET_DATA 0x00
/** Packet type \em handshake (used to negotiate a session) */
#define PACKET_HANDSHAKE 0x01
/** Pre-v22 packet type \em data (used for payload data) */
#define PACKET_DATA_COMPAT 0x02


#define PACKET_L2TP_VER_MASK 0x0F /**< Mask of L2TP version number in flags_ver field */
#define PACKET_L2TP_VERSION 3     /**< L2TP version used by fastd */

/** The (L2TP) control packet header */
typedef struct fastd_control_packet {
	uint8_t packet_type; /**< Packet type / flags */
	uint8_t flags_ver;   /**< More flags / L2TP version */
	uint16_t length;     /**< Control packet length */
	uint32_t conn_id;    /**< Control connection ID */
	uint16_t ns;         /**< Send sequence number */
	uint16_t nr;         /**< Receive sequence number */
} fastd_control_packet_t;


/** The supported modes of operation */
typedef enum fastd_mode {
	MODE_TAP,      /**< TAP (Layer 2/Ethernet mode) */
	MODE_MULTITAP, /**< TAP (Layer 2/Ethernet mode, one interface per peer) */
	MODE_TUN,      /**< TUN (Layer 3/IP mode) */
} fastd_mode_t;

/** Specifies when \em fastd drops its capabilities (if supported) */
typedef enum fastd_drop_caps {
	DROP_CAPS_OFF,   /**< The capabilities aren't dropped at all */
	DROP_CAPS_ON,    /**< The capabilities are dropped after executing the on-up command */
	DROP_CAPS_EARLY, /**< The capabilities are dropped before executing the on-up command */
	DROP_CAPS_FORCE, /**< The capabilities are dropped before executing the on-up command; CAP_NET_ADMIN is dropped
			    even when TUN/TAP interfaces need to be opened */
} fastd_drop_caps_t;

/** Types of file descriptors to poll on */
typedef enum fastd_poll_type {
	POLL_TYPE_UNSPEC = 0, /**< Unspecified file descriptor type */
	POLL_TYPE_ASYNC,      /**< The async action socket */
	POLL_TYPE_STATUS,     /**< The status socket */
	POLL_TYPE_IFACE,      /**< A TUN/TAP interface */
	POLL_TYPE_SOCKET,     /**< A network socket */
} fastd_poll_type_t;

/** Task types */
typedef enum fastd_task_type {
	TASK_TYPE_UNSPEC = 0,  /**< Unspecified task type */
	TASK_TYPE_MAINTENANCE, /**< Scheduled maintenance */
	TASK_TYPE_PEER,        /**< Peer maintenance (handshake, reset, keepalive) */
} fastd_task_type_t;


/** A timestamp used as a timeout */
typedef int64_t fastd_timeout_t;

/** Invalid timestamp */
#define FASTD_TIMEOUT_INV INT64_MAX


/** Session flags */
#define FASTD_SESSION_INITIATOR 0x01 /**< We initiated this session */
#define FASTD_SESSION_COMPAT 0x02    /**< Peer uses compat data packet type */


typedef struct fastd_buffer fastd_buffer_t;
typedef struct fastd_buffer_view fastd_buffer_view_t;
typedef struct fastd_poll_fd fastd_poll_fd_t;
typedef struct fastd_pqueue fastd_pqueue_t;
typedef struct fastd_task fastd_task_t;

typedef union fastd_peer_address fastd_peer_address_t;
typedef struct fastd_bind_address fastd_bind_address_t;
typedef struct fastd_iface fastd_iface_t;
typedef struct fastd_socket fastd_socket_t;
typedef struct fastd_peer_group fastd_peer_group_t;
typedef struct fastd_eth_addr fastd_eth_addr_t;
typedef struct fastd_eth_header fastd_eth_header_t;
typedef struct fastd_peer fastd_peer_t;
typedef struct fastd_peer_eth_addr fastd_peer_eth_addr_t;
typedef struct fastd_remote fastd_remote_t;
typedef struct fastd_stats fastd_stats_t;
typedef struct fastd_handshake_timeout fastd_handshake_timeout_t;

typedef struct fastd_config fastd_config_t;
typedef struct fastd_context fastd_context_t;

typedef struct fastd_protocol fastd_protocol_t;
typedef struct fastd_method_info fastd_method_info_t;
typedef struct fastd_method_provider fastd_method_provider_t;

typedef struct fastd_cipher_info fastd_cipher_info_t;
typedef struct fastd_cipher fastd_cipher_t;

typedef struct fastd_mac_info fastd_mac_info_t;
typedef struct fastd_mac fastd_mac_t;

typedef struct fastd_handshake fastd_handshake_t;

typedef struct fastd_lex fastd_lex_t;
typedef struct fastd_parser_state fastd_parser_state_t;
typedef struct fastd_string_stack fastd_string_stack_t;

typedef struct fastd_shell_command fastd_shell_command_t;
typedef struct fastd_shell_env fastd_shell_env_t;

typedef struct fastd_offload_l2tp fastd_offload_l2tp_t;
typedef struct fastd_offload fastd_offload_t;
typedef struct fastd_offload_state fastd_offload_state_t;


/** A 128-bit aligned block of data, primarily used by the cryptographic functions */
typedef union fastd_block128 {
	uint8_t b[16];  /**< Byte-wise access to the data */
	uint32_t dw[4]; /**< Doubleword-wise access to the data */
	uint64_t qw[2]; /**< Quadword-wise access to the data */
} __attribute__((aligned(16))) fastd_block128_t;


/* May be defined by the protocol/method/crypto implementations however they like */
typedef struct fastd_protocol_config fastd_protocol_config_t;
typedef struct fastd_protocol_state fastd_protocol_state_t;
typedef struct fastd_protocol_key fastd_protocol_key_t;
typedef struct fastd_protocol_peer_state fastd_protocol_peer_state_t;

typedef struct fastd_method fastd_method_t;
typedef struct fastd_method_session_state fastd_method_session_state_t;

typedef struct fastd_cipher_state fastd_cipher_state_t;
typedef struct fastd_mac_state fastd_mac_state_t;