-
Notifications
You must be signed in to change notification settings - Fork 58
/
main.c
1768 lines (1500 loc) · 52.3 KB
/
main.c
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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "main.h"
#include "client.h"
#include "tox_bootstrap.h"
#include "tox_bootstrap_json.h"
#include "log.h"
#ifdef __MACH__
#include "mach.h"
#endif
static struct Tox_Options tox_options;
Tox *tox;
int client_socket = 0;
TOX_CONNECTION connection_status = TOX_CONNECTION_NONE;
/** CONFIGURATION OPTIONS **/
/* Whether we're a client */
int client_mode = 0;
/* Just send a ping and exit */
int ping_mode = 0;
/* Open a local port and forward it */
int client_local_port_mode = 0;
/* Forward stdin/stdout to remote machine - SSH ProxyCommand mode */
int client_pipe_mode = 0;
/* Remote Tox ID in client mode */
uint8_t *remote_tox_id = NULL;
/* Tox TCP relay port */
long int tcp_relay_port = 0;
/* UDP listen ports */
long int udp_start_port = 0;
long int udp_end_port = 0;
/* Directory with config and tox save */
char config_path[500] = "/etc/tuntox/";
/* Limit hostname and port in server */
int nrules = 0;
char rules_file[500] = "/etc/tuntox/rules";
enum rules_policy_enum rules_policy = NONE;
rule *rules = NULL;
/* Bootstrap json file */
char boot_json[500] = "/etc/tuntox/nodes.json";
/* Ports and hostname for port forwarding */
local_port_forward *local_port_forwards = NULL;
uint32_t last_forward_id;
/* Whether to daemonize/fork after startup */
int daemonize = 0;
/* Path to the pidfile */
char *pidfile = NULL;
/* Username to which we suid() in daemon mode */
char *daemon_username = NULL;
/* Shared secret used for authentication */
int use_shared_secret = 0;
char shared_secret[TOX_MAX_FRIEND_REQUEST_LENGTH];
/* Only let in a whitelisted client */
int server_whitelist_mode = 0;
allowed_toxid *allowed_toxids = NULL;
int load_saved_toxid_in_client_mode = 0;
fd_set master_server_fds;
/* We keep two hash tables: one indexed by sockfd and another by "connection id" */
tunnel *by_id = NULL;
/* Tunnels need to be delete safely, outside FD_ISSET polling */
/* See: tunnel_queue_delete() */
tunnel_list *tunnels_to_delete = NULL;
/* Highest used fd + 1 for select() */
int select_nfds = 4;
/* Generate an unique tunnel ID. To be used in a server. */
uint16_t get_random_tunnel_id()
{
while(1)
{
int key;
uint16_t tunnel_id;
tunnel *tun;
tunnel_id = (uint16_t)rand();
key = tunnel_id;
HASH_FIND_INT(by_id, &key, tun);
if(!tun)
{
return tunnel_id;
}
log_printf(L_WARNING, "[i] Found duplicated tunnel ID %d\n", key);
}
}
/* Comparison function for allowed_toxid objects */
int allowed_toxid_cmp(allowed_toxid *a, allowed_toxid *b)
{
return memcmp(a->toxid, b->toxid, TOX_PUBLIC_KEY_SIZE);
}
/* Match rule r against candidate host, port. Returns 0 for match. */
int rule_match(rule *r, rule *candidate)
{
bool host_match = !strcmp(r->host, "*") || !strcmp(r->host, candidate->host);
bool port_match = r->port == 0 || r->port == candidate->port;
return port_match && host_match ? 0 : -1;
}
/* When a file descriptor has been added to or removed from select() fdset,
* we need to update select_nfds. */
void update_select_nfds(int fd)
{
int new_select_nfds = 0;
if(fd + 1 > select_nfds)
{
select_nfds = fd + 1;
}
for(int i = 0; i < select_nfds; i++)
{
if(FD_ISSET(i, &master_server_fds))
{
if(i + 1 > new_select_nfds)
{
new_select_nfds = i + 1;
}
}
}
select_nfds = new_select_nfds;
}
/* Constructor. Returns NULL on failure. */
tunnel *tunnel_create(int sockfd, int connid, uint32_t friendnumber)
{
tunnel *t = NULL;
t = calloc(1, sizeof(tunnel));
if(!t)
{
return NULL;
}
t->sockfd = sockfd;
t->connid = connid;
t->friendnumber = friendnumber;
log_printf(L_INFO, "Created a new tunnel object connid=%d sockfd=%d\n", connid, sockfd);
update_select_nfds(t->sockfd);
HASH_ADD_INT( by_id, connid, t );
return t;
}
/* Please use tunnel_queue_delete() instead */
void tunnel_delete(tunnel *t)
{
log_printf(L_INFO, "Deleting tunnel #%d ptr %p\n", t->connid, t);
if(t->sockfd)
{
close(t->sockfd);
FD_CLR(t->sockfd, &master_server_fds);
update_select_nfds(0);
}
HASH_DEL( by_id, t );
free(t);
}
int tunnel_in_delete_queue(tunnel *t)
{
tunnel_list *element;
LL_FOREACH(tunnels_to_delete, element)
{
if(element->tun == t)
{
return 1;
}
}
return 0;
}
/* Delete the tunnel at the end of main loop */
void tunnel_queue_delete(tunnel *t)
{
tunnel_list *tunnel_list_entry = NULL;
if(tunnel_in_delete_queue(t))
{
log_printf(L_DEBUG2, "Did not queue deleting tunnel #%d ptr %p - already queued\n", t->connid, t);
return;
}
log_printf(L_DEBUG2, "Queued deleting tunnel #%d ptr %p\n", t->connid, t);
tunnel_list_entry = calloc(sizeof(tunnel_list), 1);
tunnel_list_entry->tun = t;
LL_APPEND(tunnels_to_delete, tunnel_list_entry);
}
local_port_forward *local_port_forward_create()
{
local_port_forward *forward = calloc(sizeof(local_port_forward), 1);
if(!forward)
{
return NULL;
}
forward->forward_id = ++last_forward_id;
forward->created = time(NULL);
return forward;
}
local_port_forward *find_pending_forward_by_id(uint32_t local_forward_id)
{
local_port_forward *forward;
LL_FOREACH(local_port_forwards, forward)
{
if(forward->forward_id == local_forward_id)
{
return forward;
}
}
return NULL;
}
/* bootstrap to dht with bootstrap_nodes */
/* From uTox/tox.c */
static void do_bootstrap(Tox *tox)
{
static unsigned int j = 0;
if (j == 0)
j = rand();
int i = 0;
while(i < 8) {
struct bootstrap_node *d = &bootstrap_nodes[j % countof(bootstrap_nodes)];
struct bootstrap_node *r = &tcp_relays[(4*j) % countof(tcp_relays)];
tox_bootstrap(tox, d->address, d->port, d->key, 0);
tox_add_tcp_relay(tox, r->address, r->port, r->key, 0);
i++;
j++;
}
}
/* Set username to the machine's FQDN */
void set_tox_username(Tox *tox)
{
char hostname[1024];
TOX_ERR_SET_INFO error;
gethostname((char*)hostname, 1024);
hostname[1023] = '\0';
tox_self_set_name(tox, (uint8_t *)hostname, strlen(hostname), &error);
if(error != TOX_ERR_SET_INFO_OK)
{
log_printf(L_DEBUG, "tox_self_set_name() failed (%u)", error);
}
}
/* Get sockaddr, IPv4 or IPv6 */
void *get_in_addr(struct sockaddr *sa)
{
if (sa->sa_family == AF_INET)
{
return &(((struct sockaddr_in*)sa)->sin_addr);
}
return &(((struct sockaddr_in6*)sa)->sin6_addr);
}
/* Connect to an endpoint, return sockfd */
int get_client_socket(char *hostname, int port)
{
int sockfd;
struct addrinfo hints, *servinfo, *p;
int rv;
char s[INET6_ADDRSTRLEN];
char port_str[6];
snprintf(port_str, 6, "%d", port);
memset(&hints, 0, sizeof hints);
hints.ai_family = AF_INET;
hints.ai_socktype = SOCK_STREAM;
if ((rv = getaddrinfo(hostname, port_str, &hints, &servinfo)) != 0)
{
/* Add a special case for "localhost" when name resolution is broken */
if(!strncmp("localhost", hostname, 256))
{
const char localhostname[] = "127.0.0.1";
if ((rv = getaddrinfo(localhostname, port_str, &hints, &servinfo)) != 0) {
log_printf(L_WARNING, "getaddrinfo failed for 127.0.0.1: %s\n", gai_strerror(rv));
return -1;
}
}
else
{
log_printf(L_WARNING, "getaddrinfo: %s\n", gai_strerror(rv));
return -1;
}
}
// loop through all the results and connect to the first we can
for(p = servinfo; p != NULL; p = p->ai_next)
{
if (p->ai_family != AF_INET && p->ai_family != AF_INET6)
continue;
if ((sockfd = socket(p->ai_family, p->ai_socktype,
p->ai_protocol)) == -1) {
perror("client: socket");
continue;
}
if (connect(sockfd, p->ai_addr, p->ai_addrlen) == -1) {
close(sockfd);
perror("client: connect");
continue;
}
break;
}
if (p == NULL) {
log_printf(L_WARNING, "failed to connect to %s:%d\n", hostname, port);
freeaddrinfo(servinfo);
return -1;
}
inet_ntop(p->ai_family, get_in_addr((struct sockaddr *)p->ai_addr), s, sizeof s);
log_printf(L_DEBUG, "connecting to %s\n", s);
freeaddrinfo(servinfo); // all done with this structure
log_printf(L_DEBUG, "Connected to %s:%d\n", hostname, port);
return sockfd;
}
/* Proto - our protocol handling */
/*
* send_frame: (almost) zero-copy. Overwrites first PROTOCOL_BUFFER_OFFSET bytes of data
* so actual data should start at position PROTOCOL_BUFFER_OFFSET
*/
int send_frame(protocol_frame *frame, uint8_t *data)
{
int rv = -1;
int try = 0;
int i;
TOX_ERR_FRIEND_CUSTOM_PACKET custom_packet_error;
data[0] = PROTOCOL_MAGIC_HIGH;
data[1] = PROTOCOL_MAGIC_LOW;
data[2] = BYTE2(frame->packet_type);
data[3] = BYTE1(frame->packet_type);
data[4] = BYTE2(frame->connid);
data[5] = BYTE1(frame->connid);
data[6] = BYTE2(frame->data_length);
data[7] = BYTE1(frame->data_length);
for(i = 0; i < 33;) /* 2.667 seconds per packet max */
{
int j;
try++;
rv = tox_friend_send_lossless_packet(
tox,
frame->friendnumber,
data,
frame->data_length + PROTOCOL_BUFFER_OFFSET,
&custom_packet_error
);
if(custom_packet_error == TOX_ERR_FRIEND_CUSTOM_PACKET_OK)
{
break;
}
else
{
/* If this branch is ran, most likely we've hit congestion control. */
if(custom_packet_error == TOX_ERR_FRIEND_CUSTOM_PACKET_SENDQ)
{
log_printf(L_DEBUG, "[%d] Failed to send packet to friend %d (Packet queue is full)\n", i, frame->friendnumber);
}
else if(custom_packet_error == TOX_ERR_FRIEND_CUSTOM_PACKET_FRIEND_NOT_CONNECTED)
{
log_printf(L_DEBUG, "[%d] Failed to send packet to friend %d (Friend gone)\n", i, frame->friendnumber);
break;
}
else
{
log_printf(L_DEBUG, "[%d] Failed to send packet to friend %d (err: %u)\n", i, frame->friendnumber, custom_packet_error);
}
}
if(i == 0) i = 2;
else i = i * 2;
for(j = 0; j < i; j++)
{
tox_iterate(tox, NULL);
usleep(j * 1000);
}
}
if(i > 0 && rv >= 0)
{
log_printf(L_DEBUG, "Packet succeeded at try %d (friend %d tunnel %d)\n", try, frame->friendnumber, frame->connid);
}
return rv;
}
int send_tunnel_ack_frame(tunnel *tun, uint32_t remote_forward_id)
{
protocol_frame frame_st;
protocol_frame *frame;
uint8_t *data = NULL;
frame = &frame_st;
memset(frame, 0, sizeof(protocol_frame));
frame->packet_type = PACKET_TYPE_ACKTUNNEL;
frame->connid = tun->connid;
frame->data_length = 4;
frame->friendnumber = tun->friendnumber;
data = calloc(PROTOCOL_BUFFER_OFFSET + frame->data_length, 1);
data[PROTOCOL_BUFFER_OFFSET+3] = BYTE1(remote_forward_id);
data[PROTOCOL_BUFFER_OFFSET+2] = BYTE2(remote_forward_id);
data[PROTOCOL_BUFFER_OFFSET+1] = BYTE3(remote_forward_id);
data[PROTOCOL_BUFFER_OFFSET] = BYTE4(remote_forward_id);
return send_frame(frame, data);
}
int handle_ping_frame(protocol_frame *rcvd_frame)
{
uint8_t data[TOX_MAX_CUSTOM_PACKET_SIZE];
protocol_frame frame_s;
protocol_frame *frame = &frame_s;
frame->data = data + PROTOCOL_BUFFER_OFFSET;
memcpy(frame->data, rcvd_frame->data, rcvd_frame->data_length);
frame->friendnumber = rcvd_frame->friendnumber;
frame->packet_type = PACKET_TYPE_PONG;
frame->data_length = rcvd_frame->data_length;
send_frame(frame, data);
return 0;
}
int handle_request_tunnel_frame(protocol_frame *rcvd_frame)
{
char *hostname = NULL;
tunnel *tun;
int port = -1;
int sockfd = 0;
uint16_t tunnel_id;
/* Client-side ID of the tunnel */
uint32_t remote_forward_id;
if(client_mode)
{
log_printf(L_WARNING, "Got tunnel request frame from friend #%d when in client mode\n", rcvd_frame->friendnumber);
return -1;
}
port = rcvd_frame->connid;
hostname = calloc(1, rcvd_frame->data_length + 1);
if(!hostname)
{
log_printf(L_ERROR, "Could not allocate memory for tunnel request hostname\n");
return -1;
}
remote_forward_id = INT32_AT(rcvd_frame->data, 0);
strncpy(hostname, ((char *)rcvd_frame->data) + 4, rcvd_frame->data_length - 4);
hostname[rcvd_frame->data_length] = '\0';
log_printf(L_INFO, "Got a request to forward data from %s:%d\n", hostname, port);
// check rules
if (rules_policy == VALIDATE && nrules > 0 ) {
rule temp_rule, *found = NULL;
temp_rule.host = hostname;
temp_rule.port = port;
LL_SEARCH(rules, found, &temp_rule, rule_match);
if(!found)
{
log_printf(L_WARNING, "Rejected, request not in rules\n");
if(hostname)
{
free(hostname);
}
return -1;
}
} else if (rules_policy != NONE) {
log_printf(L_WARNING, "Filter option active but no allowed host/port. All requests will be dropped.\n");
if(hostname)
{
free(hostname);
}
return -1;
}
tunnel_id = get_random_tunnel_id();
log_printf(L_DEBUG, "Tunnel ID: %d\n", tunnel_id);
sockfd = get_client_socket(hostname, port);
if(sockfd >= 0)
{
tun = tunnel_create(sockfd, tunnel_id, rcvd_frame->friendnumber);
if(tun)
{
FD_SET(sockfd, &master_server_fds);
update_select_nfds(sockfd);
log_printf(L_DEBUG, "Created tunnel, yay!\n");
send_tunnel_ack_frame(tun, remote_forward_id);
}
else
{
log_printf(L_ERROR, "Couldn't allocate memory for tunnel\n");
close(sockfd);
}
}
else
{
log_printf(L_WARNING, "Could not connect to %s:%d\n", hostname, port);
/* TODO send PACKET_TYPE_REQUESTTUNNEL */
}
free(hostname);
return 0;
}
/* Handle a TCP frame received from client */
int handle_client_tcp_frame(protocol_frame *rcvd_frame)
{
tunnel *tun=NULL;
int offset = 0;
int connid = rcvd_frame->connid;
HASH_FIND_INT(by_id, &connid, tun);
if(!tun)
{
log_printf(L_WARNING, "Got TCP frame with unknown tunnel ID %d\n", rcvd_frame->connid);
return -1;
}
if(tun->friendnumber != rcvd_frame->friendnumber)
{
log_printf(L_WARNING, "Friend #%d tried to send packet to a tunnel which belongs to #%d\n", rcvd_frame->friendnumber, tun->friendnumber);
return -1;
}
while(offset < rcvd_frame->data_length)
{
int sent_bytes;
sent_bytes = send(
tun->sockfd,
rcvd_frame->data + offset,
rcvd_frame->data_length - offset,
MSG_NOSIGNAL
);
if(sent_bytes < 0)
{
log_printf(L_WARNING, "Could not write to socket %d: %s\n", tun->sockfd, strerror(errno));
return -1;
}
offset += sent_bytes;
}
return 0;
}
/* Handle close-tunnel frame received from the client */
int handle_client_tcp_fin_frame(protocol_frame *rcvd_frame)
{
tunnel *tun=NULL;
int connid = rcvd_frame->connid;
HASH_FIND_INT(by_id, &connid, tun);
if(!tun)
{
log_printf(L_WARNING, "Got TCP FIN frame with unknown tunnel ID %d\n", rcvd_frame->connid);
return -1;
}
if(tun->friendnumber != rcvd_frame->friendnumber)
{
log_printf(L_WARNING, "Friend #%d tried to close tunnel which belongs to #%d\n", rcvd_frame->friendnumber, tun->friendnumber);
return -1;
}
log_printf(L_DEBUG2, "Deleting tunnel #%d (%p) in handle_client_tcp_fin_frame(), socket %d", rcvd_frame->connid, tun, tun->sockfd);
tunnel_queue_delete(tun);
return 0;
}
/* This is a dispatcher for our encapsulated protocol */
int handle_frame(protocol_frame *frame)
{
switch(frame->packet_type)
{
case PACKET_TYPE_PING:
return handle_ping_frame(frame);
break;
case PACKET_TYPE_PONG:
return handle_pong_frame(frame);
break;
case PACKET_TYPE_TCP:
if(client_mode)
{
return handle_server_tcp_frame(frame);
}
else
{
return handle_client_tcp_frame(frame);
}
break;
case PACKET_TYPE_REQUESTTUNNEL:
handle_request_tunnel_frame(frame);
break;
case PACKET_TYPE_ACKTUNNEL:
handle_acktunnel_frame(frame);
break;
case PACKET_TYPE_TCP_FIN:
if(client_mode)
{
return handle_server_tcp_fin_frame(frame);
}
else
{
return handle_client_tcp_fin_frame(frame);
}
break;
default:
log_printf(L_DEBUG, "Got unknown packet type 0x%x from friend %d\n",
frame->packet_type,
frame->friendnumber
);
}
return 0;
}
/*
* This is a callback which gets a packet from Tox core.
* It checks for basic inconsistiencies and allocates the
* protocol_frame structure.
*/
void parse_lossless_packet(Tox *tox, uint32_t friendnumber, const uint8_t *data, size_t len, void *tmp)
{
protocol_frame *frame = NULL;
if(len < PROTOCOL_BUFFER_OFFSET)
{
log_printf(L_WARNING, "Received too short data frame - only %d bytes, at least %d expected\n", len, PROTOCOL_BUFFER_OFFSET);
return;
}
if(!data)
{
log_printf(L_ERROR, "Got NULL pointer from toxcore - WTF?\n");
return;
}
if(data[0] != PROTOCOL_MAGIC_HIGH || data[1] != PROTOCOL_MAGIC_LOW)
{
log_printf(L_WARNING, "Received data frame with invalid protocol magic number 0x%x%x\n", data[0], data[1]);
if(data[0] == (PROTOCOL_MAGIC_V1 >> 8) && data[1] == (PROTOCOL_MAGIC_V1 & 0xff))
{
log_printf(L_ERROR, "Tuntox on the other end uses old protocol version 1. Please upgrade it.");
}
return;
}
frame = calloc(1, sizeof(protocol_frame));
if(!frame)
{
log_printf(L_ERROR, "Could not allocate memory for protocol_frame_t\n");
return;
}
/* TODO check if friendnumber is the same in sender and connid tunnel*/
frame->magic = INT16_AT(data, 0);
frame->packet_type = INT16_AT(data, 2);
frame->connid = INT16_AT(data, 4);
frame->data_length = INT16_AT(data, 6);
frame->data = (uint8_t *)(data + PROTOCOL_BUFFER_OFFSET);
frame->friendnumber = friendnumber;
log_printf(L_DEBUG, "Got protocol frame magic 0x%x type 0x%x from friend %d\n", frame->magic, frame->packet_type, frame->friendnumber);
if(len < (size_t)frame->data_length + PROTOCOL_BUFFER_OFFSET)
{
log_printf(L_WARNING, "Received frame too small (attempted buffer overflow?): %d bytes, excepted at least %d bytes\n", len, frame->data_length + PROTOCOL_BUFFER_OFFSET);
free(frame);
return;
}
if(frame->data_length > (TOX_MAX_CUSTOM_PACKET_SIZE - PROTOCOL_BUFFER_OFFSET))
{
log_printf(L_WARNING, "Declared data length too big (attempted buffer overflow?): %d bytes, excepted at most %d bytes\n", frame->data_length, (TOX_MAX_CUSTOM_PACKET_SIZE - PROTOCOL_BUFFER_OFFSET));
free(frame);
return;
}
handle_frame(frame);
free(frame);
}
int send_tunnel_request_packet(char *remote_host, int remote_port, uint32_t local_forward_id, int friend_number)
{
int packet_length = 0;
protocol_frame frame_i, *frame;
uint8_t *data = NULL;
log_printf(L_INFO, "Sending packet to friend #%d to forward %s:%d\n", friend_number, remote_host, remote_port);
packet_length = PROTOCOL_BUFFER_OFFSET + strlen(remote_host) + 4;
if(packet_length > TOX_MAX_CUSTOM_PACKET_SIZE)
{
log_printf(L_WARNING, "Not requesting port forward - host name %s is too long", remote_host);
}
frame = &frame_i;
data = calloc(1, packet_length);
if(!data)
{
log_printf(L_ERROR, "Could not allocate memory for tunnel request packet\n");
exit(1);
}
data[PROTOCOL_BUFFER_OFFSET+3] = BYTE1(local_forward_id);
data[PROTOCOL_BUFFER_OFFSET+2] = BYTE2(local_forward_id);
data[PROTOCOL_BUFFER_OFFSET+1] = BYTE3(local_forward_id);
data[PROTOCOL_BUFFER_OFFSET] = BYTE4(local_forward_id);
memcpy((char *)data+PROTOCOL_BUFFER_OFFSET+4, remote_host, strlen(remote_host));
frame->friendnumber = friend_number;
frame->packet_type = PACKET_TYPE_REQUESTTUNNEL;
frame->connid = remote_port;
frame->data_length = strlen(remote_host) + 4;
send_frame(frame, data);
free(data);
return 0;
}
/* End proto */
/* Save tox identity to a file */
static void write_save(Tox *tox)
{
void *data;
uint32_t size;
uint8_t path_tmp[512], path_real[512], *p;
FILE *file;
size = tox_get_savedata_size(tox);
data = malloc(size);
tox_get_savedata(tox, data);
strncpy((char *)path_real, config_path, sizeof(path_real));
p = path_real + strlen((char *)path_real);
memcpy(p, "tox_save", sizeof("tox_save"));
unsigned int path_len = (p - path_real) + sizeof("tox_save");
memcpy(path_tmp, path_real, path_len);
memcpy(path_tmp + (path_len - 1), ".tmp", sizeof(".tmp"));
file = fopen((char*)path_tmp, "wb");
if(file) {
fwrite(data, size, 1, file);
fflush(file);
fclose(file);
if (rename((char*)path_tmp, (char*)path_real) != 0) {
log_printf(L_WARNING, "Failed to rename file. %s to %s deleting and trying again\n", path_tmp, path_real);
if(remove((const char *)path_real) < 0) {
log_printf(L_WARNING, "Failed to remove old save file %s\n", path_real);
}
if (rename((char*)path_tmp, (char*)path_real) != 0) {
log_printf(L_WARNING, "Saving Failed\n");
} else {
log_printf(L_DEBUG, "Saved data\n");
}
} else {
log_printf(L_DEBUG, "Saved data\n");
}
}
else
{
log_printf(L_WARNING, "Could not open save file\n");
}
free(data);
}
/* Load tox identity from a file */
static size_t load_save(uint8_t **out_data)
{
void *data;
uint32_t size;
uint8_t path_real[512], *p;
strncpy((char *)path_real, config_path, sizeof(path_real));
p = path_real + strlen((char *)path_real);
memcpy(p, "tox_save", sizeof("tox_save"));
data = file_raw((char *)path_real, &size);
if(data)
{
*out_data = data;
return size;
}
else
{
log_printf(L_WARNING, "Could not open save file\n");
return 0;
}
}
/* Loads a list of allowed hostnames and ports from file. Format is hostname:port*/
void load_rules()
{
char *ahost=NULL;
int aport=0;
char line[100 + 1] = "";
FILE *file = NULL;
rule *rule_obj = NULL;
int valid_rules = 0;
file = fopen(rules_file, "r");
if (file == NULL) {
log_printf(L_WARNING, "Could not open rules file (%s)\n", rules_file);
return;
}
while (fgets(line, sizeof(line), file)) {
/* allow comments & white lines */
if (line[0]=='#'||line[0]=='\n') {
continue;
}
if (parse_pipe_port_forward(line, &ahost, &aport) >= 0) {
if (aport > 0 && aport < 65535) {
rule_obj = (rule *)calloc(sizeof(rule), 1);
if(!rule_obj)
{
log_printf(L_ERROR, "Could not allocate memory for rule");
exit(1);
}
rule_obj->port = aport;
rule_obj->host = strdup(ahost);
LL_APPEND(rules, rule_obj);
valid_rules++;
} else {
log_printf(L_WARNING, "Invalid port in line: %s\n", line);
}
} else {
log_printf(L_WARNING, "Could not parse line: %s\n", line);
}
}
fclose(file);
/* save valid rules in global variable */
nrules = valid_rules;
log_printf(L_INFO, "Loaded %d rules\n", nrules);
if (nrules==0 && rules_policy != NONE){
log_printf(L_WARNING, "No rules loaded! NO CONNECTIONS WILL BE ALLOWED!\n");
}
}
/* Clear rules loaded into memory */
void clear_rules()
{
rule * elt, *tmp;
/* delete each elemen using the safe iterator */
LL_FOREACH_SAFE(rules,elt,tmp) {
LL_DELETE(rules,elt);
free(elt->host);
free(elt);
}
}
void accept_friend_request(Tox *tox, const uint8_t *public_key, const uint8_t *message, size_t length, void *userdata)
{
unsigned char tox_printable_id[TOX_ADDRESS_SIZE * 2 + 1];
uint32_t friendnumber;
TOX_ERR_FRIEND_ADD friend_add_error;
log_printf(L_DEBUG, "Got friend request\n");
if(use_shared_secret)
{
if(!message)
{
log_printf(L_WARNING, "Friend sent NULL message - not accepting request");
return;
}
if(message[length - 1] != '\0')
{
log_printf(L_WARNING, "Message of size %u is not NULL terminated - not accepting request", length);
return;
}
if(strncmp((char *)message, shared_secret, TOX_MAX_FRIEND_REQUEST_LENGTH-1))
{
log_printf(L_WARNING, "Received shared secret \"%s\" differs from our shared secret - not accepting request", message);
return;
}
}
memset(tox_printable_id, '\0', sizeof(tox_printable_id));
id_to_string(tox_printable_id, public_key);
if(server_whitelist_mode)
{
allowed_toxid etmp, *found = NULL;
memcpy(etmp.toxid, public_key, TOX_PUBLIC_KEY_SIZE);
LL_SEARCH(allowed_toxids, found, &etmp, allowed_toxid_cmp);
if(!found)
{
log_printf(L_WARNING, "Rejected friend request from non-whitelisted friend %s", tox_printable_id);
return;
}
log_printf(L_DEBUG, "Friend %s passed whitelist check", tox_printable_id);
}
friendnumber = tox_friend_add_norequest(tox, public_key, &friend_add_error);
if(friend_add_error != TOX_ERR_FRIEND_ADD_OK)
{
log_printf(L_WARNING, "Could not add friend: err %u", friend_add_error);
return;
}
log_printf(L_INFO, "Accepted friend request from %s as %d\n", tox_printable_id, friendnumber);
}
/* Callback for tox_callback_self_connection_status() */
void handle_connection_status_change(Tox *tox, TOX_CONNECTION p_connection_status, void *user_data)
{
const char *status = NULL;
connection_status = p_connection_status;
status = readable_connection_status(connection_status);
log_printf(L_INFO, "Connection status changed: %s", status);
}
void cleanup()
{
log_printf(L_DEBUG, "kthxbye\n");
fflush(stdout);
tox_kill(tox);
if(client_socket)