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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
|
#ifndef PROTOCOL_H
#define PROTOCOL_H 1
#include <arpa/inet.h>
#include <sodium.h>
#include <stdint.h>
#include <string.h>
#include <time.h>
#define PROTOCOL_ATTRIBUTES __attribute__((packed))
#define PROTOCOL_MAGIC 0xBAADC0DE
#define PROTOCOL_VERSION 0xDEADCAFE
#define PROTOCOL_TIME_STRLEN 32
#define WINDOW_SIZE 65535
#if WINDOW_SIZE > 65535
#error "Window size is limited by sizeof(header.body_size)"
#endif
#define CRYPTO_BYTES_PREAUTH crypto_box_SEALBYTES
#define CRYPTO_BYTES_POSTAUTH crypto_secretstream_xchacha20poly1305_ABYTES
#define PLAIN_PACKET_HEADER_SIZE ((size_t)sizeof(struct protocol_header))
#define CRYPT_PACKET_HEADER_SIZE (PLAIN_PACKET_HEADER_SIZE + CRYPTO_BYTES_POSTAUTH)
#define PLAIN_PACKET_BODY_SIZE(protocol_type) ((size_t)(sizeof(protocol_type) - PLAIN_PACKET_HEADER_SIZE))
#define CRYPT_PACKET_BODY_SIZE(protocol_type) ((size_t)(PLAIN_PACKET_BODY_SIZE(protocol_type) + CRYPTO_BYTES_POSTAUTH))
#define PLAIN_PACKET_SIZE_TOTAL(protocol_type) \
((size_t)(PLAIN_PACKET_HEADER_SIZE + PLAIN_PACKET_BODY_SIZE(protocol_type)))
#define CRYPT_PACKET_SIZE_TOTAL(protocol_type) \
((size_t)(CRYPT_PACKET_HEADER_SIZE + CRYPT_PACKET_BODY_SIZE(protocol_type)))
#define CRYPT_PACKET_SIZE_CLIENT_AUTH \
((size_t)(CRYPTO_BYTES_PREAUTH + PLAIN_PACKET_SIZE_TOTAL(struct protocol_client_auth)))
#define CRYPT_PACKET_SIZE_SERVER_HELO \
((size_t)(CRYPTO_BYTES_PREAUTH + PLAIN_PACKET_SIZE_TOTAL(struct protocol_server_helo)))
/* special-case: CRYPT_PACKET_SIZE_DATA is a dynamic sized packet */
#define CRYPT_PACKET_SIZE_DATA CRYPT_PACKET_SIZE_TOTAL(struct protocol_data)
#define CRYPT_PACKET_SIZE_PING CRYPT_PACKET_SIZE_TOTAL(struct protocol_ping)
#define CRYPT_PACKET_SIZE_PONG CRYPT_PACKET_SIZE_TOTAL(struct protocol_pong)
enum header_types {
TYPE_INVALID = 0,
TYPE_CLIENT_AUTH,
TYPE_SERVER_HELO,
TYPE_DATA,
TYPE_PING,
TYPE_PONG,
TYPE_COUNT
};
struct protocol_header {
uint32_t magic;
uint16_t pdu_type;
uint16_t body_size;
} PROTOCOL_ATTRIBUTES;
struct protocol_client_auth {
struct protocol_header header;
uint32_t protocol_version;
uint8_t nonce[crypto_box_NONCEBYTES];
unsigned char server_rx_header[crypto_secretstream_xchacha20poly1305_HEADERBYTES];
/*
* REMEMBER that sending the public key alone without any shared secret (e.g. user/pass)
* makes your application vulnerable to Man-In-The-Middle if an attacker knows the server's public key.
* However the auth packet must be encrypted using the servers public key to
* prevent tampering of the client publickey and of course a login and passphrase
* should never be sent in plaintext over an insecure network.
*/
uint8_t client_publickey[crypto_kx_PUBLICKEYBYTES];
char login[128];
char passphrase[128]; /* passphase is not hashed, so authentication APIs like PAM can still used */
} PROTOCOL_ATTRIBUTES;
struct protocol_server_helo {
struct protocol_header header;
uint8_t nonce_increment[crypto_box_NONCEBYTES];
unsigned char client_rx_header[crypto_secretstream_xchacha20poly1305_HEADERBYTES];
char server_message[128];
} PROTOCOL_ATTRIBUTES;
struct protocol_data {
struct protocol_header header;
/* pointer to the dynamic sized packet payload with size header.body_size */
uint8_t payload[0];
} PROTOCOL_ATTRIBUTES;
struct protocol_ping {
struct protocol_header header;
char timestamp[PROTOCOL_TIME_STRLEN];
uint64_t timestamp_usec;
} PROTOCOL_ATTRIBUTES;
struct protocol_pong {
struct protocol_header header;
char timestamp[PROTOCOL_TIME_STRLEN];
uint64_t timestamp_usec;
} PROTOCOL_ATTRIBUTES;
enum state { CONNECTION_INVALID = 0, CONNECTION_NEW, CONNECTION_AUTH_SUCCESS };
struct longterm_keypair {
uint8_t publickey[crypto_kx_PUBLICKEYBYTES];
uint8_t secretkey[crypto_kx_SECRETKEYBYTES];
};
struct session_keys {
uint8_t rx[crypto_kx_SESSIONKEYBYTES]; /* key required to read data from remote `pull' */
uint8_t tx[crypto_kx_SESSIONKEYBYTES]; /* key required to send data to remote `push' */
};
struct connection {
enum state state;
int is_server_side;
size_t awaiting_pong;
uint32_t used_protocol_version;
/* header received and decrypted, but not yet enough data for body received */
int partial_packet_received;
/* decrypted header form a partial received PDU */
struct protocol_header partial_packet_header;
/* state required when reading data from remote aka `pull' */
crypto_secretstream_xchacha20poly1305_state crypto_rx_state;
/* state required when sending data to remote aka `push' */
crypto_secretstream_xchacha20poly1305_state crypto_tx_state;
/* nonce must be incremented before sending or comparing a remote received one */
uint8_t last_nonce[crypto_box_NONCEBYTES];
struct tm last_ping_recv;
struct tm last_ping_send;
struct tm last_pong_recv;
struct tm last_pong_send;
suseconds_t last_ping_recv_usec;
suseconds_t last_ping_send_usec;
suseconds_t last_pong_recv_usec;
suseconds_t last_pong_send_usec;
double latency_usec;
/* generated symmetric session keys used by server and client */
struct session_keys * session_keys;
/* used by server and client to store the respective peer public key */
uint8_t peer_publickey[crypto_kx_PUBLICKEYBYTES];
struct longterm_keypair const * my_keypair;
/* reserved for the underlying network io system e.g. libevent */
void * user_data;
};
enum recv_return {
RECV_SUCCESS,
RECV_FATAL,
RECV_FATAL_UNAUTH,
RECV_FATAL_CRYPTO_ERROR,
RECV_CORRUPT_PACKET,
RECV_BUFFER_NEED_MORE_DATA,
RECV_CALLBACK_NOT_IMPLEMENTED
};
/*****************************
* PDU receive functionality *
*****************************/
enum recv_return process_received(struct connection * const state,
uint8_t const * const buffer,
size_t * const buffer_size);
/* The following functions have to be implemented in your application e.g. client/server. */
extern enum recv_return protocol_request_client_auth(struct connection * const state,
struct protocol_header const * const buffer,
size_t * const processed);
extern enum recv_return protocol_request_server_helo(struct connection * const,
struct protocol_header const * const buffer,
size_t * const processed);
extern enum recv_return protocol_request_data(struct connection * const state,
struct protocol_header const * const buffer,
size_t * const processed);
extern enum recv_return protocol_request_ping(struct connection * const state,
struct protocol_header const * const buffer,
size_t * const processed);
extern enum recv_return protocol_request_pong(struct connection * const state,
struct protocol_header const * const buffer,
size_t * const processed);
/*******************************
* PDU send functionality *
*******************************/
void protocol_response_client_auth(unsigned char out[CRYPT_PACKET_SIZE_CLIENT_AUTH],
struct connection * const state,
const char * const user,
const char * const pass);
void protocol_response_server_helo(unsigned char out[CRYPT_PACKET_SIZE_SERVER_HELO],
struct connection * const state,
const char * const welcome_message);
void protocol_response_data(uint8_t * const out,
size_t out_size,
struct connection * const state,
uint8_t const * const payload,
size_t payload_size);
void protocol_response_ping(unsigned char out[CRYPT_PACKET_SIZE_PING], struct connection * const state);
void protocol_response_pong(unsigned char out[CRYPT_PACKET_SIZE_PONG], struct connection * const state);
/**********************************
* connection state functionality *
**********************************/
struct connection * new_connection_from_client(struct longterm_keypair const * const my_keypair);
struct connection * new_connection_to_server(struct longterm_keypair const * const my_keypair);
#endif
|