forked from QW-Group/ezquake-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EX_browser_pathfind.c
850 lines (695 loc) · 21 KB
/
EX_browser_pathfind.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
/*
Copyright (C) 2011 johnnycz
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
\file
\brief
Module for finding best connection to a server, ping-wise.
\author johnnycz
**/
#include "quakedef.h"
#include <limits.h>
#ifndef _WIN32
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <sys/param.h>
#include <sys/ioctl.h>
#include <sys/uio.h>
#include <arpa/inet.h>
#include <errno.h>
#include <unistd.h>
#endif
#include "EX_browser.h"
// declared in EX_browser.c
extern cvar_t sb_proxinfopersec;
extern cvar_t sb_proxretries;
extern cvar_t sb_proxtimeout;
extern cvar_t sb_listcache;
// non-leaf = proxy (or users computer) = has more than 1 neighbour
// at the time of writing this code there were 10 active proxies around the world
#define MAX_NONLEAVES 40
#define PROXY_PINGLIST_QUERY "\xff\xff\xff\xffpingstatus"
#define PROXY_PINGLIST_QUERY_LEN (sizeof(PROXY_PINGLIST_QUERY)-1)
#define PROXY_REPLY_ENTRY_LEN 8
#define PROXY_REPLY_BUFFER_SIZE (PROXY_REPLY_ENTRY_LEN*MAX_SERVERS)
// current amount of qw servers ~ 300... but neighbour count means MAX_SERVERS*MAX_NONLEAVES
#define INVALID_NODE (-1)
typedef int nodeid_t;
// only pings 0-999 are in our interest; and -1 for invalid ping
#define DIST_INFINITY SHRT_MAX
typedef short dist_t;
// trick around language limits - allows to copy 4 bytes with "="
typedef struct ipaddr_t {
byte data[4];
} ipaddr_t;
typedef struct ping_node_t {
ipaddr_t ipaddr;
nodeid_t prev; // previous node on the shortest path
nodeid_t nlist_start; // index of the first neighbour
nodeid_t nlist_end; // index of the last neighbour + 1
dist_t dist; // distance (= ping)
qbool visited;
unsigned short proxport; // if there's a proxy on this address,
// this is the port it's running on
// and it is already in the network format
} ping_node_t;
typedef struct ping_neighbour_t {
nodeid_t id;
dist_t dist;
} ping_neighbour_t;
typedef struct proxy_query_request_t {
socket_t sock;
nodeid_t nodeid;
qbool done;
} proxy_query_request_t;
typedef struct proxy_request_queue_t {
proxy_query_request_t *data;
size_t items;
qbool sending_done; // sending thread ended
qbool allrecved; // all proxies have been successfully scanned
} proxy_request_queue;
static ping_node_t ping_nodes[MAX_SERVERS];
static nodeid_t ping_nodes_count = 0;
static ping_neighbour_t ping_neighbours[MAX_SERVERS*MAX_NONLEAVES];
static nodeid_t ping_neighbours_count = 0;
static nodeid_t startnode_id = 0;
static qbool building_pingtree = false; // when true, the pingtree build thread is still working
static qbool pingtree_built = false;
static sem_t phase2thread_lock;
static void SB_PingTree_Assertions(void)
{
if (ping_nodes_count >= MAX_SERVERS) {
Sys_Error("EX_Browser_pathfind: max nodes count reached");
}
if (ping_neighbours_count >= MAX_SERVERS*MAX_NONLEAVES) {
Sys_Error("EX_Browser_pathfind: max neighbours count reached");
}
if (startnode_id != 0) {
// a bit paranoid check, startnode is always the first node
Sys_Error("EX_browser_pathfind: startnode_id != 0");
}
}
static int SB_PingTree_FindIp(ipaddr_t ipaddr)
{
int i;
// xxx make the lookup faster than linear
for (i = 0; i < ping_nodes_count; i++) {
if (memcmp(&ping_nodes[i].ipaddr, &ipaddr, sizeof(ipaddr_t)) == 0) {
return i;
}
}
return INVALID_NODE;
}
static int SB_PingTree_AddNode(ipaddr_t ipaddr, unsigned short proxport)
{
int id = SB_PingTree_FindIp(ipaddr);
if (id != INVALID_NODE) {
if (proxport && !ping_nodes[id].proxport) {
ping_nodes[id].proxport = proxport;
}
return id;
}
id = ping_nodes_count++;
SB_PingTree_Assertions();
ping_nodes[id].ipaddr = ipaddr;
ping_nodes[id].prev = INVALID_NODE;
ping_nodes[id].nlist_start = INVALID_NODE;
ping_nodes[id].nlist_end = INVALID_NODE;
ping_nodes[id].dist = DIST_INFINITY;
ping_nodes[id].proxport = proxport;
ping_nodes[id].visited = false;
SB_PingTree_Assertions();
return id;
}
static int SB_PingTree_AddNeighbour(nodeid_t neighbour_id, dist_t dist)
{
int id = ping_neighbours_count++;
SB_PingTree_Assertions();
ping_neighbours[id].id = neighbour_id;
ping_neighbours[id].dist = dist;
SB_PingTree_Assertions();
return id;
}
static ipaddr_t SB_DummyIpAddr(void)
{
ipaddr_t dummy = {{0, 0, 0, 0}};
return dummy;
}
static void SB_PingTree_AddSelf(void)
{
startnode_id = SB_PingTree_AddNode(SB_DummyIpAddr(), 0);
}
static void SB_PingTree_Clear(void)
{
ping_nodes_count = 0;
ping_neighbours_count = 0;
SB_PingTree_AddSelf();
}
static ipaddr_t SB_Netaddr2Ipaddr(const netadr_t *netadr)
{
ipaddr_t retval;
memcpy(retval.data, &netadr->ip, 4);
return retval;
}
static qbool SB_PingTree_IsServerDead(const server_data *data)
{
return data->ping < 0;
}
static qbool SB_PingTree_IsProxyFiltered(const server_data *data)
{
if (!data->qwfwd) {
return false;
}
else if (sb_ignore_proxy.string[0] == '\0') {
return false;
}
else {
char ip_str[32];
const byte *ip = data->address.ip;
int port = (int) ntohs(data->address.port);
snprintf(&ip_str[0], sizeof(ip_str), "%d.%d.%d.%d:%d", ip[0], ip[1], ip[2], ip[3], port);
return strstr(sb_ignore_proxy.string, ip_str) != NULL;
}
}
static nodeid_t SB_PingTree_AddServer(const server_data *data)
{
nodeid_t node_id = INVALID_NODE;
if (!SB_PingTree_IsServerDead(data) && !SB_PingTree_IsProxyFiltered(data)) {
node_id = SB_PingTree_AddNode(SB_Netaddr2Ipaddr(&data->address),
data->qwfwd ? data->address.port : 0);
SB_PingTree_AddNeighbour(node_id, data->ping);
}
return node_id;
}
static void SB_PingTree_AddProxyPing(netadr_t adr, dist_t dist)
{
nodeid_t id_neighbour;
ipaddr_t ip = SB_Netaddr2Ipaddr(&adr);
id_neighbour = SB_PingTree_FindIp(ip); // most of the servers should be found
if (id_neighbour == INVALID_NODE) {
// strange - there is no direct route to this server, but a proxy can reach it (!)
id_neighbour = SB_PingTree_AddNode(ip, 0);
}
SB_PingTree_AddNeighbour(id_neighbour, dist);
}
static void SB_Proxy_ParseReply(const byte *buf, int buflen, proxy_ping_report_callback callback)
{
int entries = buflen / PROXY_REPLY_ENTRY_LEN;
int i;
Com_DPrintf("Reading %d entries from a proxy reply\n", entries);
for (i = 0; i < entries; i++) {
netadr_t adr;
dist_t dist = 0;
adr.type = NA_IP;
memcpy(adr.ip, buf, 4);
buf += 4;
adr.port = 0;
adr.port |= 0x00FF & *buf++;
adr.port |= 0xFF00 & (*buf++ << 8);
dist |= 0x00FF & *buf++;
dist |= 0xFF00 & (*buf++ << 8);
if (dist >= 0) {
// "server not reachable" is reported as 65536, in our case -1
callback(adr, dist);
}
}
}
void SB_Proxy_QueryForPingList(const netadr_t *address, proxy_ping_report_callback callback)
{
byte buf[PROXY_REPLY_BUFFER_SIZE];
char packet[] = PROXY_PINGLIST_QUERY;
char adrstr[32];
struct sockaddr_in addr_to, addr_from;
struct timeval timeout;
fd_set fd;
socket_t sock;
int i, ret;
socklen_t inaddrlen;
snprintf(&adrstr[0], sizeof(adrstr), "%d.%d.%d.%d", (int) address->ip[0], (int) address->ip[1], (int) address->ip[2], (int) address->ip[3]);
addr_to.sin_addr.s_addr = inet_addr((const char *)adrstr);
if (addr_to.sin_addr.s_addr == INADDR_NONE) {
return;
}
addr_to.sin_family = AF_INET;
addr_to.sin_port = address->port;
sock = UDP_OpenSocket(PORT_ANY);
for (i = 0; i < sb_proxretries.integer; i++) {
ret = sendto(sock, packet, strlen(packet), 0, (struct sockaddr *)&addr_to, sizeof(struct sockaddr));
if (ret == -1) // failure, try again
continue;
_select:
FD_ZERO(&fd);
FD_SET(sock, &fd);
timeout.tv_sec = 0;
timeout.tv_usec = sb_proxtimeout.integer * 1000;
ret = select(sock+1, &fd, NULL, NULL, &timeout);
if (ret <= 0) { // timed out or error
Com_DPrintf("select() gave errno = %d : %s\n", errno, strerror(errno));
continue;
}
inaddrlen = sizeof(struct sockaddr_in);
ret = recvfrom(sock, (char *) buf, sizeof(buf), 0, (struct sockaddr *)&addr_from, &inaddrlen);
if (ret == -1) // failure, try again
continue;
if (addr_from.sin_addr.s_addr != addr_to.sin_addr.s_addr) // martian, discard and see if a valid response came in after it
goto _select;
if (strncmp("\xff\xff\xff\xffn", (char *) buf, 5) == 0)
SB_Proxy_ParseReply(buf+5, ret-5, callback);
break;
}
closesocket(sock);
}
static void SB_PingTree_AddNodes(void)
{
int i;
// add our neighbours - servers we directly ping
SB_ServerList_Lock();
ping_nodes[startnode_id].nlist_start = ping_neighbours_count;
for (i = 0; i < serversn; i++) {
SB_PingTree_AddServer(servers[i]);
}
ping_nodes[startnode_id].nlist_end = ping_neighbours_count;
SB_ServerList_Unlock();
}
static netadr_t SB_NodeNetadr_Get(nodeid_t id)
{
netadr_t ret;
ret.type = NA_IP;
ret.port = ping_nodes[id].proxport;
memcpy(&ret.ip, ping_nodes[id].ipaddr.data, 4);
return ret;
}
int SB_PingTree_SendQueryThread(void *thread_arg)
{
proxy_request_queue *queue = (proxy_request_queue *) thread_arg;
int i, ret;
double interval_ms = (1.0 / sb_proxinfopersec.value) * 1000.0;
#ifdef _WIN32
timerresolution_session_t timersession = {0, 0};
#endif
Sys_TimerResolution_InitSession(&timersession);
Sys_TimerResolution_RequestMinimum(&timersession);
for (i = 0; i < queue->items; i++) {
if (!queue->data[i].done) {
struct sockaddr_storage addr_to;
netadr_t netadr = SB_NodeNetadr_Get(queue->data[i].nodeid);
NetadrToSockadr(&netadr, &addr_to);
ret = sendto(queue->data[i].sock,
PROXY_PINGLIST_QUERY, PROXY_PINGLIST_QUERY_LEN, 0,
(struct sockaddr *) &addr_to, sizeof (struct sockaddr));
if (ret < 0) {
Com_DPrintf("SB_PingTree_SendQueryThread sendto returned %d\n", ret);
}
Sys_MSleep(interval_ms);
}
if (queue->allrecved) break;
}
Sys_TimerResolution_Clear(&timersession);
queue->sending_done = true;
return 0;
}
#define PROXY_SERIALIZE_FILE_VERSION 1
void SB_Proxylist_Serialize_Start(FILE *f)
{
int version = PROXY_SERIALIZE_FILE_VERSION;
// header
// - version
fwrite(&version, sizeof(int), 1, f);
}
void SB_Proxylist_Serialize_Reply(FILE *f, netadr_t proxy, void *buf, size_t buflen)
{
fwrite(&proxy, sizeof(netadr_t), 1, f);
fwrite(&buflen, sizeof(size_t), 1, f);
fwrite(buf, buflen, 1, f);
}
void SB_Proxylist_Serialize_End(FILE *f)
{
netadr_t invalid;
invalid.type = NA_INVALID;
fwrite(&invalid, sizeof(netadr_t), 1, f);
}
static qbool SB_PingTree_RecvQuery(proxy_request_queue *queue, FILE *f)
{
qbool last_cycle = false;
fd_set recvset;
int maxsock = 0;
int i, ret;
struct timeval timeout;
qbool allrecved = false;
timeout.tv_sec = 0;
timeout.tv_usec = sb_proxtimeout.integer * 1000;
for (;;) {
if (queue->sending_done) {
last_cycle = true;
}
allrecved = true;
FD_ZERO(&recvset);
for (i = 0; i < queue->items; i++) {
if (!queue->data[i].done) {
socket_t sock = queue->data[i].sock;
FD_SET(sock, &recvset);
if ((int) sock > maxsock) {
maxsock = (int) sock;
}
allrecved = false;
}
}
if (allrecved) {
queue->allrecved = true;
break;
}
ret = select((maxsock + 1), &recvset, NULL, NULL, &timeout);
if (ret == 0 && last_cycle == true) {
break; // ret = 0 means we got timeout
}
if (ret == 0) {
continue; // not all proxies were queried yet
}
if (ret < 0) {
Com_DPrintf("select returned %d\n", ret);
break;
}
for (i = 0; i < queue->items; i++) {
if (!queue->data[i].done && FD_ISSET(queue->data[i].sock, &recvset)) {
byte buf[PROXY_REPLY_BUFFER_SIZE];
struct sockaddr_storage addr_from;
socklen_t addr_from_len = sizeof(struct sockaddr_in);
ret = recvfrom(queue->data[i].sock, (char *) buf, PROXY_REPLY_BUFFER_SIZE, 0, (struct sockaddr *) &addr_from, &addr_from_len);
if (ret == -1) {
Com_DPrintf("SB_PingTree_RecvQuery recvfrom failed\n");
continue;
}
if (strncmp("\xff\xff\xff\xffn", (char *) buf, 5) == 0) {
nodeid_t id = queue->data[i].nodeid;
queue->data[i].done = true;
ping_nodes[id].nlist_start = ping_neighbours_count;
if (f && ret > 5)
SB_Proxylist_Serialize_Reply(f, SB_NodeNetadr_Get(id), buf+5, ret-5);
SB_Proxy_ParseReply(buf+5, ret-5, SB_PingTree_AddProxyPing);
ping_nodes[id].nlist_end = ping_neighbours_count;
}
else {
Com_DPrintf("Invalid reply received\n");
}
}
}
}
return allrecved;
}
static void SB_PingTree_ScanProxies(void)
{
int i;
proxy_request_queue queue = { NULL, 0, false };
size_t request = 0;
FILE *f = NULL;
for (i = 0; i < ping_nodes_count; i++) {
if (ping_nodes[i].proxport) {
queue.items++;
}
}
if (!queue.items) return;
queue.data = (proxy_query_request_t *) Q_malloc(sizeof(proxy_query_request_t) * queue.items);
for (i = 0; i < ping_nodes_count; i++) {
if (ping_nodes[i].proxport) {
queue.data[request].done = false;
queue.data[request].nodeid = i;
queue.data[request].sock = UDP_OpenSocket(PORT_ANY);
request++;
}
}
if (sb_listcache.value) {
char prx_data_path[MAX_OSPATH] = {0};
snprintf(&prx_data_path[0], sizeof(prx_data_path), "%s/%s", com_homedir, "proxies_data");
f = fopen(prx_data_path, "wb");
if (f)
SB_Proxylist_Serialize_Start(f);
}
for (i = 0; i < sb_proxretries.integer; i++) {
queue.sending_done = false;
if (Sys_CreateDetachedThread(SB_PingTree_SendQueryThread, (void *) &queue) < 0) {
Com_Printf("Failed to create SB_PingTree_SendQueryThread thread\n");
}
SB_PingTree_RecvQuery(&queue, f);
if (queue.allrecved) {
break;
}
}
if (f) {
SB_Proxylist_Serialize_End(f);
fclose(f);
}
while (!queue.sending_done) {
// XXX: use semaphore instead
Sys_MSleep(100);
}
for (i = 0; i < queue.items; i++) {
closesocket(queue.data[i].sock);
}
Q_free(queue.data);
}
static nodeid_t SB_PingTree_NearestNodeGet(void)
{
// XXX: implement using binary/fibonacci heap...
int i;
nodeid_t ret = INVALID_NODE;
dist_t minimum = DIST_INFINITY;
for (i = 0; i < ping_nodes_count; i++) {
if (!ping_nodes[i].visited && ping_nodes[i].dist < minimum) {
ret = i;
minimum = ping_nodes[i].dist;
}
}
return ret;
}
static void SB_PingTree_Dijkstra(void)
{
int i;
ping_nodes[startnode_id].dist = 0;
for (;;) {
nodeid_t cur = SB_PingTree_NearestNodeGet();
if (cur == INVALID_NODE) break;
ping_nodes[cur].visited = true;
for (i = ping_nodes[cur].nlist_start; i < ping_nodes[cur].nlist_end; i++) {
dist_t altdist = ping_nodes[cur].dist + ping_neighbours[i].dist;
if (altdist < ping_nodes[ping_neighbours[i].id].dist) {
// so-called Relax()
ping_nodes[ping_neighbours[i].id].dist = altdist;
ping_nodes[ping_neighbours[i].id].prev = cur;
}
}
}
}
static void SB_PingTree_Phase1(void)
{
SB_PingTree_Clear();
SB_PingTree_AddNodes();
}
static void SB_PingTree_UpdateServerList(void)
{
int i;
SB_ServerList_Lock();
for (i = 0; i < serversn; i++) {
nodeid_t id = SB_PingTree_FindIp(SB_Netaddr2Ipaddr(&servers[i]->address));
if (id == INVALID_NODE || ping_nodes[id].prev == INVALID_NODE || ping_nodes[id].prev == startnode_id) continue;
SB_Server_SetBestPing(servers[i], ping_nodes[id].dist);
}
SB_ServerList_Unlock();
}
int SB_PingTree_Phase2(void *ignored_arg)
{
SB_PingTree_ScanProxies();
SB_PingTree_Dijkstra();
SB_PingTree_UpdateServerList();
sb_queuedtriggers |= SB_TRIGGER_NOTIFY_PINGTREE;
Sys_SemPost(&phase2thread_lock);
building_pingtree = false;
pingtree_built = true;
return 0;
}
/// Has the Ping Tree been already built?
qbool SB_PingTree_Built(void)
{
return ping_nodes_count > 0;
}
/// Creates whole graph structure for looking up shortest paths to servers (ping-wise).
///
/// Grabs data from the server browser and then from the proxies.
void SB_PingTree_Build(void)
{
if (building_pingtree) {
Com_Printf("Ping Tree is still being built...\n");
return;
}
// no race condition here, as this must always get executed by the main thread
building_pingtree = true;
Com_Printf("Building the Ping Tree...\n");
// first quick phase is initialization + quick read of data from the server browser
SB_PingTree_Phase1();
// second longer phase is querying the proxies for their ping data + dijkstra algo
Sys_SemWait(&phase2thread_lock);
if (Sys_CreateDetachedThread(SB_PingTree_Phase2, NULL) < 0) {
Com_Printf("Failed to create SB_PingTree_Phase2 thread\n");
}
}
/// Prints the shortest path to given IP address
void SB_PingTree_DumpPath(const netadr_t *addr)
{
nodeid_t target = SB_PingTree_FindIp(SB_Netaddr2Ipaddr(addr));
if (target == INVALID_NODE) {
Com_Printf("No route found to given host\n");
}
else {
nodeid_t current = target;
Com_Printf("Shortest path length: %d ms\nRoute: \n", ping_nodes[current].dist);
while (current != startnode_id && current != INVALID_NODE) {
byte *ip = ping_nodes[current].ipaddr.data;
Com_Printf("%4d ms %d.%d.%d.%d:%d\n", ping_nodes[current].dist,
ip[0], ip[1], ip[2], ip[3], ntohs(ping_nodes[current].proxport));
current = ping_nodes[current].prev;
}
Com_Printf("%4d ms localhost (your machine)\n", 0);
}
}
int SB_PingTree_GetPathLen(const netadr_t *addr)
{
nodeid_t target = SB_PingTree_FindIp(SB_Netaddr2Ipaddr(addr));
if (target == INVALID_NODE || ping_nodes[target].prev == INVALID_NODE) {
return -1;
}
else if (ping_nodes[target].prev == startnode_id) {
return 0;
}
else {
nodeid_t current = ping_nodes[target].prev;
int proxies = 0;
while (current != startnode_id && current != INVALID_NODE) {
proxies++;
current = ping_nodes[current].prev;
}
return proxies;
}
}
/// Connects to given QW server using the best available route
void SB_PingTree_ConnectBestPath(const netadr_t *addr)
{
extern cvar_t cl_proxyaddr;
nodeid_t target = SB_PingTree_FindIp(SB_Netaddr2Ipaddr(addr));
if (target == INVALID_NODE || ping_nodes[target].prev == INVALID_NODE) {
Com_Printf("No route found, trying to connect directly...\n");
Cvar_Set(&cl_proxyaddr, "");
}
else if (ping_nodes[target].prev == startnode_id) {
Com_Printf("Direct route is the best route, connecting directly...\n");
Cvar_Set(&cl_proxyaddr, "");
}
else {
char proxylist_buf[32*MAX_NONLEAVES] = "";
nodeid_t current = ping_nodes[target].prev;
int proxies = 0;
while (current != startnode_id && current != INVALID_NODE) {
byte *ip = ping_nodes[current].ipaddr.data;
char newval[2048]; /* va() used 2048b buffer..*/
snprintf(&newval[0], sizeof(newval), "%d.%d.%d.%d:%d%s%s", (int) ip[0], (int) ip[1], (int) ip[2],
(int) ip[3], (int) ntohs(ping_nodes[current].proxport), *proxylist_buf ? "@" : "", proxylist_buf);
strlcpy(proxylist_buf, newval, 32*MAX_NONLEAVES);
proxies++;
current = ping_nodes[current].prev;
}
Com_Printf("Connecting using %d %s with best ping %d ms\n",
proxies, ((proxies == 1) ? "proxy" : "proxies"), ping_nodes[target].dist);
Cvar_Set(&cl_proxyaddr, proxylist_buf);
}
/* FIXME: Create a Cbuf_AddTextFmt? */
Cbuf_AddText("connect ");
Cbuf_AddText(NET_AdrToString(*addr));
Cbuf_AddText("\n");
}
int SB_Proxylist_Unserialize(FILE *f)
{
int version, count = 0;
if (fread(&version, sizeof(int), 1, f) != 1)
return -1;
if (version != PROXY_SERIALIZE_FILE_VERSION)
return -1;
while (!ferror(f) && !feof(f)) {
netadr_t proxy;
size_t buflen;
byte buf[PROXY_REPLY_BUFFER_SIZE];
nodeid_t id;
if (fread(&proxy, sizeof(netadr_t), 1, f) != 1)
return -3;
if (proxy.type == NA_INVALID)
break;
if (fread(&buflen, sizeof(size_t), 1, f) != 1)
return -3;
if (buflen > PROXY_REPLY_BUFFER_SIZE)
return -3;
if (fread(buf, buflen, 1, f) != 1)
return -3;
id = SB_PingTree_FindIp(SB_Netaddr2Ipaddr(&proxy));
if (id == INVALID_NODE)
return -3;
ping_nodes[id].nlist_start = ping_neighbours_count;
SB_Proxy_ParseReply(buf, buflen, SB_PingTree_AddProxyPing);
ping_nodes[id].nlist_end = ping_neighbours_count;
count++;
}
return count;
}
void SB_Proxylist_Unserialize_f(void)
{
char filename[MAX_OSPATH] = {0};
FILE *f;
int err;
snprintf(&filename[0], sizeof(filename), "%s/%s", com_homedir, "proxies_data");
if (!(f = fopen(filename, "rb"))) {
Com_Printf("Couldn't read %s.\n", filename);
return;
}
building_pingtree = true;
SB_PingTree_Phase1();
err = SB_Proxylist_Unserialize(f);
if (err > 0) {
Com_Printf("Successfully read %d proxies\n", err);
SB_PingTree_Dijkstra();
SB_PingTree_UpdateServerList();
pingtree_built = true;
}
else if (err == -1) {
Com_Printf("Format didn't match\n");
}
else if (err == -3) {
Com_Printf("Corrupted data\n");
}
else { // err == 0
Com_Printf("No proxies read\n");
}
building_pingtree = false;
fclose(f);
}
qbool SB_PingTree_IsBuilding(void)
{
return building_pingtree;
}
void SB_PingTree_Init(void)
{
Sys_SemInit(&phase2thread_lock, 1, 1);
}
void SB_PingTree_Shutdown(void)
{
Sys_SemWait(&phase2thread_lock);
Sys_SemDestroy(&phase2thread_lock);
}