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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
|
#include <errno.h>
#include <event2/event.h>
#include <event2/listener.h>
#include <event2/buffer.h>
#include <event2/bufferevent.h>
#include <event2/event-config.h>
#include <fcntl.h>
#include <netdb.h>
#include <netinet/in.h>
#include <signal.h>
#include <sodium.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
#include "common-event2.h"
#include "common-sodium.h"
#include "logging.h"
#include "protocol.h"
#include "utils.h"
static struct cmd_options opts = {.key_string = NULL, .key_length = 0, .host = NULL, .port = 0, .filepath = NULL};
static int data_fd = -1;
static void send_data(struct connection * const state)
{
uint8_t buf[WINDOW_SIZE];
ssize_t bytes_read;
if (data_fd >= 0) {
bytes_read = read(data_fd, buf, sizeof(buf));
if (bytes_read <= 0 || ev_protocol_data(state, buf, bytes_read) != 0) {
if (bytes_read == 0) {
LOG(WARNING, "EoF: Closing file descriptor %d aka %s", data_fd, opts.filepath);
} else {
LOG(WARNING, "Closing file descriptor %d aka %s: %s", data_fd, opts.filepath, strerror(errno));
}
close(data_fd);
data_fd = -1;
} else {
LOG(NOTICE, "Send DATA: %zd bytes, buffer capacity %0.2f%% unused", bytes_read,
100.0f - ((float)bytes_read / sizeof(buf)) * 100.0f);
}
}
}
enum recv_return protocol_request_client_auth(struct connection * const state,
struct protocol_header const * const buffer,
size_t * const processed)
{
(void)state;
(void)buffer;
(void)processed;
return RECV_CALLBACK_NOT_IMPLEMENTED;
}
enum recv_return protocol_request_server_helo(struct connection * const state,
struct protocol_header const * const buffer,
size_t * const processed)
{
struct protocol_server_helo const * const helo_pkt = (struct protocol_server_helo *)buffer;
(void)processed;
LOG(NOTICE, "Server HELLO with message: %.*s", sizeof(helo_pkt->server_message), helo_pkt->server_message);
if (init_crypto_client(state, helo_pkt->client_rx_header, sizeof(helo_pkt->client_rx_header)) != 0) {
LOG(ERROR, "Client session keypair generation failed");
return RECV_FATAL;
}
if (ev_setup_generic_timer((struct ev_user_data *)state->user_data, PING_INTERVAL) != 0) {
LOG(ERROR, "Timer init failed");
return RECV_FATAL;
}
send_data(state);
state->state = CONNECTION_AUTH_SUCCESS;
return RECV_SUCCESS;
}
enum recv_return protocol_request_data(struct connection * const state,
struct protocol_header const * const buffer,
size_t * const processed)
{
struct protocol_data const * const data_pkt = (struct protocol_data *)buffer;
(void)state;
(void)processed;
LOG(LP_DEBUG, "Received DATA with size: %u", data_pkt->header.body_size);
LOG(NOTICE, "Remote answered: %.*s", (int)data_pkt->header.body_size, data_pkt->payload);
send_data(state);
return RECV_SUCCESS;
}
enum recv_return protocol_request_ping(struct connection * const state,
struct protocol_header const * const buffer,
size_t * const processed)
{
struct protocol_ping const * const ping_pkt = (struct protocol_ping *)buffer;
(void)processed;
LOG(NOTICE,
"Received PING with timestamp: %.*s / %lluus",
sizeof(ping_pkt->timestamp),
ping_pkt->timestamp,
state->last_ping_recv_usec);
if (state->latency_usec > 0.0) {
LOG(NOTICE, "PING-PONG latency: %.02lfms", state->latency_usec / 1000.0);
}
if (ev_protocol_pong(state) != 0) {
return RECV_FATAL;
} else {
return RECV_SUCCESS;
}
}
enum recv_return protocol_request_pong(struct connection * const state,
struct protocol_header const * const buffer,
size_t * const processed)
{
struct protocol_pong const * const pong_pkt = (struct protocol_pong *)buffer;
(void)processed;
LOG(NOTICE,
"Received PONG with timestamp: %.*s / %lluus / %zu outstanding PONG's",
sizeof(pong_pkt->timestamp),
pong_pkt->timestamp,
state->last_pong_recv_usec,
state->awaiting_pong);
return RECV_SUCCESS;
}
void on_disconnect(struct connection * const state)
{
struct ev_user_data * const user_data = (struct ev_user_data *)state->user_data;
if (user_data != NULL) {
event_base_loopexit(bufferevent_get_base(user_data->bev), NULL);
}
}
static void event_cb(struct bufferevent * bev, short events, void * con)
{
struct connection * const c = (struct connection *)con;
char events_string[64] = {0};
ev_events_to_string(events, events_string, sizeof(events_string));
LOG(LP_DEBUG, "Event(s): 0x%02X (%s)", events, events_string);
if (events & BEV_EVENT_ERROR) {
LOG(ERROR, "Error from bufferevent: %s", strerror(errno));
on_disconnect(c);
return;
}
if (events & (BEV_EVENT_EOF | BEV_EVENT_ERROR)) {
LOG(NOTICE, "Remote end closed the connection");
on_disconnect(c);
return;
}
if (events & BEV_EVENT_CONNECTED) {
if (c->state != CONNECTION_NEW) {
LOG(ERROR, "Remote authenticated again?!");
return;
}
LOG(NOTICE, "Connected, sending AUTH");
if (generate_session_keypair_sodium(c) != 0) {
LOG(ERROR, "Client session keypair generation failed");
on_disconnect(c);
return;
}
if (ev_protocol_client_auth(c, "username", "passphrase") != 0) {
LOG(ERROR, "Client AUTH failed");
on_disconnect(c);
return;
}
}
if (events & EV_TIMEOUT) {
LOG(NOTICE, "Timeout");
bufferevent_enable(bev, EV_READ | EV_WRITE);
on_disconnect(c);
return;
}
}
static void cleanup(struct event_base ** const ev_base,
struct event ** const ev_sig,
struct longterm_keypair ** const my_keypair)
{
if (*my_keypair != NULL) {
sodium_memzero((*my_keypair)->secretkey, crypto_kx_SECRETKEYBYTES);
free(*my_keypair);
}
if (*ev_sig != NULL) {
event_free(*ev_sig);
}
if (*ev_base != NULL) {
event_base_free(*ev_base);
}
*my_keypair = NULL;
*ev_sig = NULL;
*ev_base = NULL;
}
__attribute__((noreturn)) static void cleanup_and_exit(struct event_base ** const ev_base,
struct event ** const ev_sig,
struct longterm_keypair ** const my_keypair,
struct connection ** const state,
int exit_code)
{
char pretty_bytes_rx[16];
char pretty_bytes_tx[16];
LOG(LP_DEBUG, "Cleanup and exit with exit code: %d", exit_code);
if (*state != NULL) {
LOG(NOTICE, "Closed connection; received %s; sent %s",
prettify_bytes_with_units(pretty_bytes_rx, sizeof(pretty_bytes_rx), (*state)->total_bytes_recv),
prettify_bytes_with_units(pretty_bytes_tx, sizeof(pretty_bytes_tx), (*state)->total_bytes_sent));
}
*state = NULL;
cleanup(ev_base, ev_sig, my_keypair);
exit(exit_code);
}
int main(int argc, char ** argv)
{
struct event_base * ev_base = NULL;
struct event * ev_sig = NULL;
struct bufferevent * bev;
struct sockaddr_in sin;
struct longterm_keypair * my_keypair = NULL;
struct connection * c = NULL;
char ip_str[INET6_ADDRSTRLEN + 1];
parse_cmdline(&opts, argc, argv);
if (opts.key_string == NULL) {
usage(argv[0]);
}
if (opts.key_length != crypto_kx_PUBLICKEYBYTES * 2 /* hex string */) {
LOG(ERROR, "Invalid server public key length: %zu", opts.key_length);
return 1;
}
if (opts.filepath != NULL) {
data_fd = open(opts.filepath, O_RDONLY, 0);
if (data_fd < 0) {
LOG(ERROR, "File '%s' open() error: %s", opts.filepath, strerror(errno));
return 1;
}
}
if (opts.port <= 0 || opts.port > 65535) {
LOG(ERROR, "Invalid port: %d", opts.port);
return 2;
}
srandom(time(NULL));
if (sodium_init() != 0) {
LOG(ERROR, "Sodium init failed");
return 3;
}
if (init_sockaddr_inet(&sin, opts.host, opts.port, ip_str) != 0) {
return 4;
}
LOG(NOTICE, "Connecting to %s:%u", ip_str, opts.port);
/* generate client keypair */
my_keypair = generate_keypair_sodium();
if (my_keypair == NULL) {
LOG(ERROR, "Sodium keypair generation failed");
cleanup_and_exit(&ev_base, &ev_sig, &my_keypair, &c, 5);
}
log_bin2hex_sodium(NOTICE, "Client public key", my_keypair->publickey, sizeof(my_keypair->publickey));
/* create global connection state */
c = new_connection_to_server(my_keypair);
if (c == NULL) {
LOG(ERROR, "Could not create connection state");
cleanup_and_exit(&ev_base, &ev_sig, &my_keypair, &c, 6);
}
/* parse server public key into global connection state */
if (sodium_hex2bin(
c->peer_publickey, sizeof(c->peer_publickey), opts.key_string, opts.key_length, NULL, NULL, NULL) != 0) {
LOG(ERROR, "Could not parse server public key: %s", opts.key_string);
cleanup_and_exit(&ev_base, &ev_sig, &my_keypair, &c, 7);
}
log_bin2hex_sodium(NOTICE, "Server public key", c->peer_publickey, sizeof(c->peer_publickey));
ev_base = event_base_new();
if (ev_base == NULL) {
LOG(ERROR, "Couldn't open event base");
cleanup_and_exit(&ev_base, &ev_sig, &my_keypair, &c, 8);
}
ev_sig = evsignal_new(ev_base, SIGINT, ev_sighandler, event_self_cbarg());
if (ev_sig == NULL) {
cleanup_and_exit(&ev_base, &ev_sig, &my_keypair, &c, 9);
}
if (event_add(ev_sig, NULL) != 0) {
cleanup_and_exit(&ev_base, &ev_sig, &my_keypair, &c, 10);
}
bev =
bufferevent_socket_new(ev_base, -1, BEV_OPT_CLOSE_ON_FREE | BEV_OPT_DEFER_CALLBACKS | BEV_OPT_UNLOCK_CALLBACKS);
if (bev == NULL) {
cleanup_and_exit(&ev_base, &ev_sig, &my_keypair, &c, 11);
}
if (ev_setup_user_data(bev, c) != 0) {
cleanup_and_exit(&ev_base, &ev_sig, &my_keypair, &c, 12);
}
bufferevent_setcb(bev, ev_read_cb, ev_write_cb, event_cb, c);
if (bufferevent_enable(bev, EV_READ | EV_WRITE) != 0) {
cleanup_and_exit(&ev_base, &ev_sig, &my_keypair, &c, 13);
}
ev_set_io_timeouts(bev);
if (bufferevent_socket_connect(bev, (struct sockaddr *)&sin, sizeof(sin)) != 0) {
cleanup_and_exit(&ev_base, &ev_sig, &my_keypair, &c, 14);
}
LOG(LP_DEBUG, "Event loop");
if (event_base_dispatch(ev_base) != 0) {
cleanup_and_exit(&ev_base, &ev_sig, &my_keypair, &c, 15);
}
cleanup_and_exit(&ev_base, &ev_sig, &my_keypair, &c, 0);
}
|