forked from neilalexander/sigmavpn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
528 lines (425 loc) · 14 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
//
// main.c
// Sigma main code
//
// Copyright (c) 2011, Neil Alexander T.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with
// or without modification, are permitted provided that the following
// conditions are met:
//
// - Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// - Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/select.h>
#include <errno.h>
#include <pthread.h>
#include <signal.h>
#include <unistd.h>
#include <assert.h>
#include "types.h"
#include "modules.h"
#include "dep/ini.h"
#define THREAD_STACK_SIZE 131072
sigma_session* sessions = NULL;
static int handler(void* user, const char* section, const char* name, const char* value)
{
if (section[0] == '!')
return 0;
(void) user;
if (name == NULL && value == NULL)
{
sigma_session** newobject = &sessions;
while (*newobject)
{
if (strncmp((*newobject)->sessionname, section, 32) == 0)
return 0;
newobject = &((*newobject)->next);
}
*newobject = calloc(1, sizeof(sigma_session));
strncpy((*newobject)->sessionname, section, 32);
}
else
{
sigma_session* pointer = sessions;
while (pointer)
{
if (strncmp(pointer->sessionname, section, 32) == 0)
break;
pointer = pointer->next;
}
if (pointer == NULL)
{
fprintf(stderr, "Session %s not found (this should never happen)\n", section);
return -1;
}
if (strcmp(name, "proto") == 0)
{
if (!pointer->proto)
pointer->proto = loadproto((char*) value);
}
else
if (strncmp(name, "proto_", 6) == 0)
{
if (pointer->proto == NULL)
{
fprintf(stderr, "%s: Parameter '%s' ignored; 'proto=' should appear before '%s=' in the config\n", pointer->sessionname, name, name);
return -1;
}
pointer->proto->set(pointer->proto, name + 6, value);
}
if (strcmp(name, "peer") == 0)
{
if (!pointer->remote)
pointer->remote = loadinterface((char*) value);
}
else
if (strncmp(name, "peer_", 5) == 0)
{
if (pointer->remote == NULL)
{
fprintf(stderr, "%s: Parameter '%s' ignored; 'peer=' should appear before '%s=' in the config\n", pointer->sessionname, name, name);
return -1;
}
pointer->remote->set(pointer->remote, name + 5, value);
}
if (strcmp(name, "local") == 0)
{
if (!pointer->local)
pointer->local = loadinterface((char*) value);
}
else if (strncmp(name, "local_", 6) == 0)
{
if (pointer->local == NULL)
{
fprintf(stderr, "%s: Parameter '%s' ignored; 'local=' should appear before '%s=' in the config\n", pointer->sessionname, name, name);
return -1;
}
pointer->local->set(pointer->local, name + 6, value);
}
}
return 0;
}
void reload()
{
printf("Reloading configuration...\n");
if (ini_parse(conf->configfile, handler, (void*) NULL) < 0)
{
printf("Configuration file '%s' could not be parsed.\n", conf->configfile);
return;
}
sigma_session* pointer = sessions;
char buffer = 'R';
while (pointer)
{
if (write(pointer->controlpipe[1], &buffer, 1) < 0)
perror("write");
pointer = pointer->next;
}
printf("Configuration reloaded.\n");
}
int main(int argc, const char** argv)
{
printf("SigmaVPN.\nCopyright (c) 2011 Neil Alexander T. All rights reserved.\n");
conf = malloc(sizeof(sigma_conf));
strncpy(conf->modulepath, "/usr/local/lib/sigmavpn/", 128);
strncpy(conf->configfile, "/usr/local/etc/sigmavpn.conf", 128);
int arg;
for (arg = 1; arg < argc; arg ++)
{
if (argv[arg][0] != '-')
continue;
switch ((int) argv[arg][1])
{
case '?':
{
printf("Possible arguments:\n\t-c 'path/to/config.conf'\n\t-m 'path/to/module/folder'\n");
return -1;
}
case 'c':
{
if (argv[arg + 1] == NULL)
{
fprintf(stderr, "Expected configuration path after '-c'\n");
continue;
}
strncpy(conf->configfile, argv[arg + 1], 128);
printf("Using configuration file '%s'\n", argv[arg + 1]);
arg ++;
break;
}
case 'm':
{
if (argv[arg + 1] == NULL)
{
fprintf(stderr, "Expected module path after '-m'\n");
continue;
}
strncpy(conf->modulepath, argv[arg + 1], 128);
printf("Using module path '%s'\n", argv[arg + 1]);
arg ++;
break;
}
default:
fprintf(stderr, "Unknown argument '%s'\n", argv[arg]);
}
}
if (ini_parse(conf->configfile, handler, (void*) NULL) < 0)
{
printf("Configuration file '%s' could not be parsed\n", conf->configfile);
return 1;
}
//pthread_attr_t attr;
//pthread_attr_init(&attr);
//pthread_attr_setstacksize(&attr, THREAD_STACK_SIZE);
sigma_session* pointer = sessions;
if (pointer == NULL)
{
fprintf(stderr, "No session data found; please check the configuration.\n");
return -1;
}
while (pointer)
{
int rc = pipe(pointer->controlpipe);
if (rc)
{
fprintf(stderr, "pipe() returned %d\n", rc);
return -1;
}
rc = pthread_create(&(pointer->thread), 0, sessionwrapper, pointer);
if (rc)
{
fprintf(stderr, "Thread returned %d\n", rc);
return -1;
}
pointer = pointer->next;
}
struct sigaction act;
memset(&act, '\0', sizeof(struct sigaction));
act.sa_sigaction = &reload;
act.sa_flags = SA_SIGINFO | SA_RESTART;
if (sigaction(SIGHUP, &act, NULL) < 0)
perror("sigaction");
pointer = sessions;
while (pointer)
{
pthread_join(pointer->thread, NULL);
pointer = pointer->next;
}
return 0;
}
void* sessionwrapper(void* param)
{
int status = runsession((sigma_session*) param);
pthread_exit(&status);
}
int max(int a, int b)
{
return a > b ? a : b;
}
int reloadsession(sigma_session* session, char operation)
{
switch (operation)
{
default:
if (session->proto->reload != NULL)
{
printf("Restarting protocol...");
if (session->proto->reload(session->proto) == 0) printf(" done.\n"); else printf(" failed.\n");
}
if (session->local->reload != NULL)
{
printf("Restarting local interface...");
if (session->local->reload(session->local) == 0) printf(" done.\n"); else printf(" failed.\n");
}
if (session->remote->reload != NULL)
{
printf("Restarting remote interface...");
if (session->remote->reload(session->remote) == 0) printf(" done.\n"); else printf(" failed.\n");
}
break;
}
return 0;
}
#include <termios.h>
struct termios orig_termios;
void reset_terminal_mode()
{
tcsetattr(0, TCSANOW, &orig_termios);
}
void set_conio_terminal_mode()
{
struct termios new_termios;
/* take two copies - one for now, one for later */
tcgetattr(0, &orig_termios);
memcpy(&new_termios, &orig_termios, sizeof(new_termios));
/* register cleanup handler, and set the new terminal mode */
atexit(reset_terminal_mode);
cfmakeraw(&new_termios);
tcsetattr(0, TCSANOW, &new_termios);
}
int runsession(sigma_session* session)
{
fd_set sockets;
set_conio_terminal_mode();
if (session->proto == NULL)
{
fprintf(stderr, "%s: Protocol not loaded, configuration error?\n", session->sessionname);
return -1;
}
if (session->local == NULL)
{
fprintf(stderr, "%s: Local interface not loaded, configuration error?\n", session->sessionname);
return -1;
}
if (session->remote == NULL)
{
fprintf(stderr, "%s: Peer interface not loaded, configuration error?\n", session->sessionname);
return -1;
}
if (session->proto->init(session->proto) == -1)
{
fprintf(stderr, "%s: Protocol initalisation failed, session not loaded\n", session->sessionname);
return -1;
}
if (session->local->init(session->local) == -1)
{
fprintf(stderr, "%s: Local interface initialisation failed, session not loaded\n", session->sessionname);
return -1;
}
if (session->remote->init(session->remote) == -1)
{
fprintf(stderr, "%s: Peer interface initialisation failed, session not loaded\n", session->sessionname);
return -1;
}
printf("%s: Session active\n", session->sessionname);
struct timeval st;
while (1)
{
FD_ZERO(&sockets);
FD_SET(session->local->filedesc, &sockets);
FD_SET(session->remote->filedesc, &sockets);
FD_SET(session->controlpipe[0], &sockets);
FD_SET(0, &sockets);
int nfds = max(session->local->filedesc, session->remote->filedesc);
nfds = max(nfds, session->controlpipe[0]);
nfds++;
st.tv_sec = 0;
st.tv_usec = 100; /* 1000 = 1 second */
int len = select(nfds, &sockets, NULL, NULL, &st);
if (len < 0)
{
//fprintf(stderr, "Poll error");
//return -1;
continue;
}
else if(len == 0)
{
//printf(".");
continue;
}
if (FD_ISSET(session->controlpipe[0], &sockets) != 0)
{
char buffer;
long readvalue = read(session->controlpipe[0], &buffer, 1);
if (readvalue < 0)
{
fprintf(stderr, "%s: Control read error %ld: %s\n", session->sessionname, readvalue, strerror(errno));
return -1;
}
readvalue = reloadsession(session, buffer);
if (readvalue < 0) return readvalue;
continue;
}
if (FD_ISSET(session->local->filedesc, &sockets) != 0)
{
char tuntapbuf[MAX_BUFFER_SIZE], tuntapbufenc[MAX_BUFFER_SIZE];
long readvalue = session->local->read(session->local, tuntapbuf, MAX_BUFFER_SIZE);
if(readvalue == 0)
continue;
if (readvalue < 0)
{
fprintf(stderr, "%s: Local read error %ld: %s\n", session->sessionname, readvalue, strerror(errno));
return -1;
}
readvalue = session->proto->encode(session->proto, tuntapbuf, tuntapbufenc, readvalue);
if (readvalue < 0)
{
fprintf(stderr, "%s: Local encode error %ld: %s\n", session->sessionname, readvalue, strerror(errno));
return -1;
}
long writevalue = session->remote->write(session->remote, tuntapbufenc, readvalue);
if (writevalue < 0)
{
if (errno != EINVAL)
{
fprintf(stderr, "%s: Local write error %ld: %s\n", session->sessionname, writevalue, strerror(errno));
return -1;
}
fprintf(stderr, "%s: Could not send packet with length %u on remote interface\n", session->sessionname, (unsigned) readvalue);
}
continue;
}
if (FD_ISSET(session->remote->filedesc, &sockets) != 0)
{
char udpbuf[MAX_BUFFER_SIZE], udpbufenc[MAX_BUFFER_SIZE];
long readvalue = session->remote->read(session->remote, udpbufenc, MAX_BUFFER_SIZE);
if (readvalue < 0)
{
fprintf(stderr, "%s: Remote read error %ld: %s\n", session->sessionname, readvalue, strerror(errno));
return -1;
}
readvalue = session->proto->decode(session->proto, udpbufenc, udpbuf, readvalue);
if (readvalue < 0)
{
if (errno != EINVAL)
{
fprintf(stderr, "%s: Fatal remote decode error %ld: %s\n", session->sessionname, readvalue, strerror(errno));
return -1;
}
fprintf(stderr, "%s: Received invalid packet\n", session->sessionname);
}
else
{
long writevalue = session->local->write(session->local, udpbuf, readvalue);
if (writevalue < 0)
{
if (errno != EINVAL)
{
fprintf(stderr, "%s: Remote write error %ld: %s\n", session->sessionname, writevalue, strerror(errno));
return -1;
}
fprintf(stderr, "%s: Could not send packet with length %u on local interface\n", session->sessionname, (unsigned) readvalue);
}
if (session->remote->updateremote != NULL)
{
session->remote->updateremote(session->remote);
}
}
continue;
}
return -1;
}
return 0;
}