forked from xelerance/xl2tpd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xl2tpd-control.c
469 lines (411 loc) · 13.3 KB
/
xl2tpd-control.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
/*
* xl2tpd-control - the xl2tpd control utility
*
* Copyright (C) 2011 Alexander Dorokhov <[email protected]>
*
* 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 (see the file LICENSE); if not, see
* https://www.gnu.org/licenses/, or contact Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
****************************************************************
*/
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
#include <errno.h>
#include "l2tp.h"
/* Paul: Alex: can we change this to use stdout, and let applications using
* xl2tpd-control capture the output, instead of creating tmp files?
*/
/* result filename format including absolute path and formatting %i for pid */
#define RESULT_FILENAME_FORMAT "/var/run/xl2tpd/xl2tpd-control-%i.out"
#define ERROR_LEVEL 1
#define DEBUG_LEVEL 2
#define TUNNEL_REQUIRED 1
#define TUNNEL_NOT_REQUIRED 0
#define TIMEOUT 1000000 //timeout is 1s
char result_filename[128];
int result_fd = -1;
int log_level = ERROR_LEVEL;
void print_error (int level, const char *fmt, ...);
int read_result(int result_fd, char* buf, ssize_t size);
/* Definition of a command */
struct command_t
{
char *name;
int (*handler) (FILE*, char* tunnel, int optc, char *optv[]);
int requires_tunnel;
};
int command_add_lac (FILE*, char* tunnel, int optc, char *optv[]);
int command_connect_lac (FILE*, char* tunnel, int optc, char *optv[]);
int command_disconnect_lac(FILE*, char* tunnel, int optc, char *optv[]);
int command_status_lac (FILE*, char* tunnel, int optc, char *optv[]);
int command_remove_lac (FILE*, char* tunnel, int optc, char *optv[]);
int command_available (FILE*, char* tunnel, int optc, char *optv[]);
int command_add_lns (FILE*, char* tunnel, int optc, char *optv[]);
int command_status_lns (FILE*, char* tunnel, int optc, char *optv[]);
int command_remove_lns (FILE*, char* tunnel, int optc, char *optv[]);
struct command_t commands[] = {
{"add-lac", &command_add_lac, TUNNEL_REQUIRED},
{"connect-lac", &command_connect_lac, TUNNEL_REQUIRED},
{"disconnect-lac",&command_disconnect_lac,TUNNEL_REQUIRED},
{"status-lac", &command_status_lac, TUNNEL_REQUIRED},
{"remove-lac", &command_remove_lac, TUNNEL_REQUIRED},
{"available", &command_available, TUNNEL_NOT_REQUIRED},
{"add-lns", &command_add_lns, TUNNEL_REQUIRED},
{"status-lns", &command_status_lns, TUNNEL_REQUIRED},
{"remove-lns", &command_remove_lns, TUNNEL_REQUIRED}
};
void usage()
{
printf ("Usage: xl2tpd-control [-c <PATH>] <COMMAND> <TUNNEL_NAME> [<OPTIONS>]\n\n"
" -c set xl2tpd control file\n"
" -d enable debugging mode\n"
"--version show version\n"
" --help show this help message\n\n"
"List of supported commands:\n"
"add-lac, status-lac, remove-lac, connect-lac, disconnect-lac\n"
"add-lns, status-lns, remove-lns, available\n\n"
"See xl2tpd-control(8) man page for more details.\n");
}
void cleanup(void)
{
/* cleaning up */
unlink (result_filename);
if (result_fd >= 0)
close (result_fd);
}
int main (int argc, char *argv[])
{
char* control_filename = NULL;
char* tunnel_name = NULL;
struct command_t* command = NULL;
int i; /* argv iterator */
if (argv[1] && !strncmp (argv[1], "--help", 6)) {
usage();
return 0;
}
if (argv[1] && !strncmp (argv[1], "--version", 9)) {
printf ("Version: %s\n", SERVER_VERSION);
return 0;
}
/* parse global options */
for (i = 1; i < argc; i++) {
if (!strncmp (argv[i], "-c", 2)) {
control_filename = argv[++i];
} else if (!strncmp (argv[i], "-d", 2)) {
log_level = DEBUG_LEVEL;
} else {
break;
}
}
if (i >= argc) {
print_error (ERROR_LEVEL, "error: command not specified\n");
usage();
return -1;
}
if (!control_filename) {
control_filename = strdup (CONTROL_PIPE);
}
/* parse command name */
for (command = commands; command->name; command++)
{
if (!strcasecmp (argv[i], command->name))
{
i++;
break;
}
}
if (!command->name) {
print_error (ERROR_LEVEL, "error: no such command\n");
free(control_filename);
usage();
return -1;
}
/* get tunnel name */
if(command->requires_tunnel){
if (i >= argc) {
print_error (ERROR_LEVEL, "error: tunnel name not specified\n");
usage();
free(control_filename);
return -1;
}
tunnel_name = argv[i++];
/* check tunnel name for whitespaces */
if (strstr (tunnel_name, " ")) {
print_error (ERROR_LEVEL, "error: tunnel name shouldn't include spaces\n");
usage();
free(control_filename);
return -1;
}
}
char buf[CONTROL_PIPE_MESSAGE_SIZE] = "";
FILE* mesf = fmemopen (buf, CONTROL_PIPE_MESSAGE_SIZE, "w");
/* create result pipe for reading */
snprintf (result_filename, 128, RESULT_FILENAME_FORMAT, getpid());
unlink (result_filename);
mkfifo (result_filename, 0600);
atexit(cleanup);
result_fd = open (result_filename, O_RDONLY | O_NONBLOCK, 0600);
if (result_fd < 0)
{
print_error (ERROR_LEVEL,
"error: unable to open %s for reading.\n", result_filename);
return -2;
}
/* turn off O_NONBLOCK */
if (fcntl (result_fd, F_SETFL, O_RDONLY) == -1) {
print_error (ERROR_LEVEL,
"Can not turn off nonblocking mode for result_fd: %s\n",
strerror(errno));
return -2;
}
/* pass result filename to command */
fprintf (mesf, "@%s ", result_filename);
if (ferror (mesf)) {
print_error (ERROR_LEVEL, "internal error: message buffer to short");
return -2;
}
/* format command with remaining arguments */
int command_res = command->handler (
mesf, tunnel_name, argc - i, argv + i
);
if (command_res < 0) {
print_error (ERROR_LEVEL, "error: command parse error\n");
return -1;
}
fflush (mesf);
if (ferror (mesf)) {
print_error (ERROR_LEVEL,
"error: message too long (max = %i ch.)\n",
CONTROL_PIPE_MESSAGE_SIZE - 1);
return -1;
}
print_error (DEBUG_LEVEL, "command to be passed:\n%s\n", buf);
/* try to open control file for writing */
int control_fd = open (control_filename, O_WRONLY | O_NONBLOCK, 0600);
if (control_fd < 0) {
int errorno = errno;
switch (errorno)
{
case EACCES:
print_error (ERROR_LEVEL,
"Unable to open %s for writing."
" Is xl2tpd running and you have appropriate permissions?\n",
control_filename);
break;
default:
print_error (ERROR_LEVEL,
"Unable to open %s for writing: %s\n",
control_filename, strerror (errorno));
}
return -1;
}
/* turn off O_NONBLOCK */
if (fcntl (control_fd, F_SETFL, O_WRONLY) == -1) {
print_error (ERROR_LEVEL,
"Can not turn off nonblocking mode for control_fd: %s\n",
strerror(errno));
return -2;
}
/* pass command to control pipe */
if (write (control_fd, buf, ftell (mesf)) < 0) {
int errorno = errno;
print_error (ERROR_LEVEL,
"Unable to write to %s: %s\n",
control_filename, strerror (errorno));
close (control_fd);
return -1;
}
close (control_fd);
/* read result from pipe */
char rbuf[CONTROL_PIPE_MESSAGE_SIZE] = "";
int command_result_code = read_result (
result_fd, rbuf, CONTROL_PIPE_MESSAGE_SIZE
);
/* rbuf contains a newline, make it double to form a boundary. */
print_error (DEBUG_LEVEL, "command response: \n%s\n", rbuf);
return command_result_code;
}
void print_error (int level, const char *fmt, ...)
{
if (level > log_level) return;
va_list args;
va_start (args, fmt);
fprintf (stderr, "xl2tpd-control: ");
vfprintf (stderr, fmt, args);
va_end (args);
}
int read_result(int result_fd, char* buf, ssize_t size)
{
/* read result from result_fd */
/*FIXME: there is a chance to hang up reading.
Should I create watching thread with timeout?
*/
ssize_t readed = 0;
ssize_t len;
int write_pipe = 0;
struct timeval tvs;
struct timeval tve;
unsigned long diff;
gettimeofday(&tvs, NULL);
do
{
len = read (result_fd, buf + readed, size - readed);
if (len < 0)
{
if (errno == EINTR)
continue;
print_error (ERROR_LEVEL,
"error: can't read command result: %s\n", strerror (errno));
break;
}
else if (len == 0) {
if(!write_pipe) {
gettimeofday(&tve, NULL);
diff = (tve.tv_sec - tvs.tv_sec) * 1000000 + (tve.tv_usec - tvs.tv_usec);
if (diff >= TIMEOUT) {
print_error (DEBUG_LEVEL, "error: read timout\n");
break;
} else {
usleep(10);
continue;
}
}
break;
}
else {
write_pipe = 1;
readed += len;
if ((size - readed) <= 0)
break;
}
} while (1);
buf[readed] = '\0';
/* scan result code */
int command_result_code = -3;
sscanf (buf, "%i", &command_result_code);
return command_result_code;
}
int command_add
(FILE* mesf, char* tunnel, int optc, char *optv[], int reqopt)
{
if (optc <= 0) {
print_error (ERROR_LEVEL, "error: tunnel configuration expected\n");
return -1;
}
fprintf (mesf, "%c %s ", reqopt, tunnel);
int i;
int wait_key = 1;
for (i = 0; i < optc; i++)
{
fprintf (mesf, "%s", optv[i]);
if (wait_key)
{
/* try to find '=' */
char* eqv = strstr (optv[i], "=");
if (eqv) {
/* check is it not last symbol */
if (eqv != (optv[i] + strlen(optv[i]) - 1)) {
fprintf (mesf, ";"); /* end up option */
} else {
wait_key = 0; /* now we waiting for value */
}
} else { /* two-word key */
fprintf (mesf, " "); /* restore space */
}
} else {
fprintf (mesf, ";"); /* end up option */
wait_key = 1; /* now we again waiting for key */
}
}
return 0;
}
int command_add_lac
(FILE* mesf, char* tunnel, int optc, char *optv[])
{
return command_add(mesf, tunnel, optc, optv, CONTROL_PIPE_REQ_LAC_ADD_MODIFY);
}
int command_add_lns
(FILE* mesf, char* tunnel, int optc, char *optv[])
{
return command_add(mesf, tunnel, optc, optv, CONTROL_PIPE_REQ_LNS_ADD_MODIFY);
}
int command_connect_lac
(FILE* mesf, char* tunnel, int optc, char *optv[])
{
fprintf (mesf, "%c %s", CONTROL_PIPE_REQ_LAC_CONNECT, tunnel);
/* try to read authname and password from opts */
if (optc > 0) {
if (optc == 1)
fprintf (mesf, " %s", optv[0]);
else // optc >= 2
fprintf (mesf, " %s %s", optv[0], optv[1]);
}
return 0;
}
int command_disconnect_lac
(FILE* mesf, char* tunnel, int optc, char *optv[])
{
UNUSED(optc);
UNUSED(optv);
fprintf (mesf, "%c %s", CONTROL_PIPE_REQ_LAC_DISCONNECT, tunnel);
return 0;
}
int command_remove_lac
(FILE* mesf, char* tunnel, int optc, char *optv[])
{
UNUSED(optc);
UNUSED(optv);
fprintf (mesf, "%c %s", CONTROL_PIPE_REQ_LAC_REMOVE, tunnel);
return 0;
}
int command_status_lns
(FILE* mesf, char* tunnel, int optc, char *optv[])
{
UNUSED(optc);
UNUSED(optv);
fprintf (mesf, "%c %s", CONTROL_PIPE_REQ_LNS_STATUS, tunnel);
return 0;
}
int command_status_lac
(FILE* mesf, char* tunnel, int optc, char *optv[])
{
UNUSED(optc);
UNUSED(optv);
fprintf (mesf, "%c %s", CONTROL_PIPE_REQ_LAC_STATUS, tunnel);
return 0;
}
int command_available
(FILE* mesf, char* tunnel, int optc, char *optv[])
{
UNUSED(optc);
UNUSED(optv);
fprintf (mesf, "%c %s", CONTROL_PIPE_REQ_AVAILABLE, tunnel);
return 0;
}
int command_remove_lns
(FILE* mesf, char* tunnel, int optc, char *optv[])
{
UNUSED(optc);
UNUSED(optv);
fprintf (mesf, "%c %s", CONTROL_PIPE_REQ_LNS_REMOVE, tunnel);
return 0;
}