summaryrefslogtreecommitdiffstats
path: root/src/types.h
blob: 1d287814f9b97ed072316d358074f58ed66dc3b3 (plain)
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
/*
  Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
  All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions are met:

    1. Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

/**
  \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 defined packet types */
typedef enum fastd_packet_type {
	PACKET_HANDSHAKE = 1,	/**< Packet type \em handshake (used to negotiate a session) */
	PACKET_DATA = 2,	/**< Packet type \em data (used for payload data) */
} fastd_packet_type_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 */
} 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


typedef struct fastd_buffer fastd_buffer_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_handshake_buffer fastd_handshake_buffer_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;


/** 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;