-
Notifications
You must be signed in to change notification settings - Fork 3
/
derpnet_proxy.c
377 lines (314 loc) · 8.14 KB
/
derpnet_proxy.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
#define _CRT_SECURE_NO_DEPRECATE
#define DERPNET_STATIC
#include "derpnet.h"
#include <stdio.h>
#include <string.h>
static void PrintHelpAndExit(char* argv0)
{
printf(
"USAGE: %s s PORT\n"
"Serves local port PORT to remote peer\n"
"\n"
"USAGE: %s c other_key LISTEN \n"
"Connects to remote peer and forwards all incoming traffic to local LISTEN port\n"
" - other_key = PUBLIC key of user to connect to\n"
"\n"
, argv0, argv0);
exit(0);
}
static void PrintKey(const DerpKey* Key)
{
for (size_t i=0; i<32; i++)
{
printf("%02hhx", Key->Bytes[i]);
}
}
static DerpKey HexToKey(const char* Hex)
{
DERPNET_ASSERT(strlen(Hex) == 64);
DerpKey Key;
for (size_t i=0; i<32; i++)
{
sscanf(&Hex[2*i], "%02hhx", &Key.Bytes[i]);
}
return Key;
}
// choose any hostname from https://login.tailscale.com/derpmap/default
// both peers do not need to be connected to the same server
// but they must be connected to the same region
#define DERP_SERVER_HOST "derp1f.tailscale.com"
int main(int argc, char* argv[])
{
if (argc < 2)
{
PrintHelpAndExit(argv[0]);
}
if (strcmp(argv[1], "s") == 0)
{
if (argc != 3)
{
PrintHelpAndExit(argv[0]);
}
int ConnectPort = atoi(argv[2]);
DerpKey MySecretKey;
DerpNet_CreateNewKey(&MySecretKey);
DerpKey MyPublicKey;
DerpNet_GetPublicKey(&MySecretKey, &MyPublicKey);
printf("My PUBLIC key is: ");
PrintKey(&MyPublicKey);
printf("\n");
DerpNet Net;
printf("Connecting to DERP server... ");
if (!DerpNet_Open(&Net, DERP_SERVER_HOST, &MySecretKey))
{
printf("ERROR!\n");
exit(1);
}
printf("OK!\n");
DerpKey RemotePublicKey;
SOCKET LocalSocket = INVALID_SOCKET;
printf("Waiting for remote connection...\n");
for (;;)
{
fd_set ReadSet;
FD_ZERO(&ReadSet);
FD_SET(Net.Socket, &ReadSet);
if (LocalSocket != INVALID_SOCKET)
{
FD_SET(LocalSocket, &ReadSet);
}
int SelectOk = select(0, &ReadSet, NULL, NULL, NULL);
DERPNET_ASSERT(SelectOk != SOCKET_ERROR);
// forward all incoming traffic to local socket
if (FD_ISSET(Net.Socket, &ReadSet))
{
if (LocalSocket == INVALID_SOCKET)
{
printf("Connecting to '127.0.0.1:%d' ... ", ConnectPort);
LocalSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
DERPNET_ASSERT(LocalSocket != INVALID_SOCKET);
struct sockaddr_in ConnectedAddress =
{
.sin_family = AF_INET,
.sin_addr.s_addr = inet_addr("127.0.0.1"),
.sin_port = htons(ConnectPort),
};
int ConnectOk = connect(LocalSocket, (struct sockaddr*)&ConnectedAddress, sizeof(ConnectedAddress));
if (ConnectOk != 0)
{
printf("ERROR: cannot connect\n");
closesocket(LocalSocket);
LocalSocket = INVALID_SOCKET;
DerpKey OtherPublicKey;
uint8_t* OtherData;
uint32_t OtherSize;
while (DerpNet_Recv(&Net, &OtherPublicKey, &OtherData, &OtherSize, false) > 0)
{
}
printf("Waiting for remote connection...\n");
continue;
}
printf("OK! Connected!\n");
}
for (;;)
{
DerpKey OtherPublicKey;
uint8_t* OtherData;
uint32_t OtherSize;
int Recv = DerpNet_Recv(&Net, &OtherPublicKey, &OtherData, &OtherSize, false);
if (Recv < 0)
{
printf("ERROR: DERP server disconnected!\n");
return 1;
}
else if (Recv == 0)
{
break;
}
RemotePublicKey = OtherPublicKey;
while (OtherSize)
{
int Send = send(LocalSocket, (char*)OtherData, OtherSize, 0);
if (Send < 0)
{
printf("Local socket disconnected!\n");
closesocket(LocalSocket);
LocalSocket = INVALID_SOCKET;
while (DerpNet_Recv(&Net, &OtherPublicKey, &OtherData, &OtherSize, false) > 0)
{
}
printf("Waiting for remote connection...\n");
continue;
}
OtherData += Send;
OtherSize -= Send;
}
}
}
// forward all outgoing traffic from local socket
if (LocalSocket != INVALID_SOCKET && FD_ISSET(LocalSocket, &ReadSet))
{
char Buffer[8192];
int Size = recv(LocalSocket, Buffer, sizeof(Buffer), 0);
if (Size <= 0)
{
printf("Local socket closed!\n");
closesocket(LocalSocket);
LocalSocket = INVALID_SOCKET;
DerpNet_Send(&Net, &RemotePublicKey, NULL, 0);
continue;
}
if (!DerpNet_Send(&Net, &RemotePublicKey, Buffer, Size))
{
printf("ERROR: DERP server disconnected!\n");
return 1;
}
}
}
}
else if (strcmp(argv[1], "c") == 0)
{
if (argc != 4)
{
PrintHelpAndExit(argv[0]);
}
DerpKey RemoteUserKey = HexToKey(argv[2]);
int ListenPort = atoi(argv[3]);
DerpKey MySecretKey;
DerpNet_CreateNewKey(&MySecretKey);
DerpKey MyPublicKey;
DerpNet_GetPublicKey(&MySecretKey, &MyPublicKey);
DerpNet Net;
printf("Connecting to DERP server... ");
if (!DerpNet_Open(&Net, DERP_SERVER_HOST, &MySecretKey))
{
printf("ERROR!\n");
exit(1);
}
printf("OK!\n");
printf("Listening on '127.0.0.1:%d' ... ", ListenPort);
SOCKET ListenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
DERPNET_ASSERT(ListenSocket != INVALID_SOCKET);
struct sockaddr_in LocalAddress =
{
.sin_family = AF_INET,
.sin_addr.s_addr = inet_addr("127.0.0.1"),
.sin_port = htons(ListenPort),
};
int BindOk = bind(ListenSocket, (struct sockaddr*)&LocalAddress, sizeof(LocalAddress));
if (BindOk != 0)
{
printf("ERROR: cannot bind socket!\n");
return 1;
}
int ListenOk = listen(ListenSocket, 1);
DERPNET_ASSERT(ListenOk == 0);
printf("OK!\n");
printf("Waiting for local connection... ");
SOCKET LocalSocket = INVALID_SOCKET;
for (;;)
{
fd_set ReadSet;
FD_ZERO(&ReadSet);
FD_SET(Net.Socket, &ReadSet);
if (LocalSocket == INVALID_SOCKET)
{
FD_SET(ListenSocket, &ReadSet);
}
else
{
FD_SET(LocalSocket, &ReadSet);
}
int SelectOk = select(0, &ReadSet, NULL, NULL, NULL);
DERPNET_ASSERT(SelectOk != SOCKET_ERROR);
// forward all incoming traffic to local socket
if (FD_ISSET(Net.Socket, &ReadSet))
{
bool Disconnect = false;
for (;;)
{
DerpKey OtherPublicKey;
uint8_t* OtherData;
uint32_t OtherSize;
int Recv = DerpNet_Recv(&Net, &OtherPublicKey, &OtherData, &OtherSize, false);
if (Recv < 0)
{
printf("ERROR: DERP server disconnected!\n");
return 1;
}
else if (Recv == 0)
{
break;
}
if (LocalSocket != INVALID_SOCKET && memcmp(&OtherPublicKey, &RemoteUserKey, sizeof(RemoteUserKey)) == 0)
{
if (OtherSize == 0)
{
printf("Remote disconnected!\n");
Disconnect = true;
break;
}
while (OtherSize)
{
int Send = send(LocalSocket, (char*)OtherData, OtherSize, 0);
if (Send <= 0)
{
printf("Local socket closed!\n");
Disconnect = true;
break;
}
OtherData += Send;
OtherSize -= Send;
}
}
}
if (Disconnect)
{
closesocket(LocalSocket);
LocalSocket = INVALID_SOCKET;
DerpKey OtherPublicKey;
uint8_t* OtherData;
uint32_t OtherSize;
while (DerpNet_Recv(&Net, &OtherPublicKey, &OtherData, &OtherSize, false) > 0)
{
}
printf("Waiting for local connection... ");
continue;
}
}
// forward all outgoing traffic from local socket
if (LocalSocket != INVALID_SOCKET && FD_ISSET(LocalSocket, &ReadSet))
{
char Buffer[8192];
int Size = recv(LocalSocket, Buffer, sizeof(Buffer), 0);
if (Size <= 0)
{
printf("Local socket closed!\n");
shutdown(LocalSocket, SD_BOTH);
closesocket(LocalSocket);
LocalSocket = INVALID_SOCKET;
printf("Waiting for local connection... ");
continue;
}
if (!DerpNet_Send(&Net, &RemoteUserKey, Buffer, Size))
{
printf("ERROR: DERP server disconnected!\n");
return 1;
}
}
// accept new connection for local socket
if (LocalSocket == INVALID_SOCKET && FD_ISSET(ListenSocket, &ReadSet))
{
struct sockaddr Address;
int AddressLen = sizeof(Address);
LocalSocket = accept(ListenSocket, &Address, &AddressLen);
DERPNET_ASSERT(LocalSocket != INVALID_SOCKET);
printf("OK! Connected!\n");
}
}
}
else
{
PrintHelpAndExit(argv[0]);
}
}