-
Notifications
You must be signed in to change notification settings - Fork 1
/
xl2tpd-control.c
358 lines (317 loc) · 9.42 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
/*
* Layer Two Tunnelling Protocol Daemon Control Utility
* Copyright (C) 2011 Alexander Dorokhov
*
* This software is distributed under the terms
* of the GPL, which you should have received
* along with this source.
*
* xl2tpd-control client main file
*
*/
#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
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 command_add (FILE*, char* tunnel, int optc, char *optv[]);
int command_connect (FILE*, char* tunnel, int optc, char *optv[]);
int command_disconnect (FILE*, char* tunnel, int optc, char *optv[]);
int command_remove (FILE*, char* tunnel, int optc, char *optv[]);
struct command_t commands[] = {
{"add", &command_add},
{"connect", &command_connect},
{"disconnect", &command_disconnect},
{"remove", &command_remove},
{NULL, NULL}
};
void usage()
{
printf ("\nxl2tpd server version %s\n", SERVER_VERSION);
printf ("Usage: xl2tpd-control [-c <PATH>] <command> <tunnel name> [<COMMAND OPTIONS>]\n"
"\n"
" -c\tspecifies xl2tpd control file\n"
" -d\tspecify xl2tpd-control to run in debug mode\n"
"--help\tshows extended help\n"
"Available commands: add, connect, disconnect, remove\n"
);
}
void help()
{
usage();
printf (
"\n"
"Commands help:\n"
"\tadd\tadds new or modify existing lac configuration.\n"
"\t\tConfiguration must be specified as command options in\n"
"\t\t<key>=<value> pairs format.\n"
"\t\tSee available options in xl2tpd.conf(5)\n"
"\tconnect\ttries to activate the tunnel.\n"
"\t\tUsername and secret for the tunnel can be passed as\n"
"\t\tcommand options.\n"
"\tdisconnect\tdisconnects the tunnel.\n"
"\tremove\tremoves lac configuration from xl2tpd.\n"
"\t\txl2tpd disconnects the tunnel before removing.\n"
"\n"
"See xl2tpd-control man page for more help\n"
);
}
int main (int argc, char *argv[])
{
char* control_filename = NULL;
char* tunnel_name = NULL;
struct command_t* command = NULL;
int i; /* argv iterator */
if (argc < 2 || !strncmp (argv[1], "--help", 6))
{
help();
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);
}
print_error (DEBUG_LEVEL, "set control filename to %s\n", control_filename);
/* parse command name */
for (command = commands; command->name; command++)
{
if (!strcasecmp (argv[i], command->name))
{
i++;
break;
}
}
if (command->name)
{
print_error (DEBUG_LEVEL, "get command %s\n", command->name);
} else {
print_error (ERROR_LEVEL, "error: no such command %s\n", argv[i]);
return -1;
}
/* get tunnel name */
if (i >= argc)
{
print_error (ERROR_LEVEL, "error: tunnel name not specified\n");
usage();
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();
return -1;
}
char buf[CONTROL_PIPE_MESSAGE_SIZE] = "";
FILE* mesf = fmemopen (buf, CONTROL_PIPE_MESSAGE_SIZE, "w");
/* create result pipe for reading */
char result_filename[128];
snprintf (result_filename, 128, RESULT_FILENAME_FORMAT, getpid());
unlink (result_filename);
mkfifo (result_filename, 0600);
int 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, 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;
}
/* pass command to control pipe */
write (control_fd, buf, ftell (mesf));
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
);
printf ("%s", rbuf);
/* cleaning up */
close (result_fd);
unlink (result_filename);
return command_result_code;
}
void print_error (int level, const char *fmt, ...)
{
if (level > log_level) return;
va_list args;
va_start (args, fmt);
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;
do
{
readed = read (result_fd, buf, size);
if (readed < 0)
{
print_error (ERROR_LEVEL,
"error: can't read command result: %s\n", strerror (errno));
break;
}
} while (readed == 0);
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[])
{
if (optc <= 0)
{
print_error (ERROR_LEVEL, "error: tunnel configuration expected\n");
return -1;
}
fprintf (mesf, "a %s ", 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_connect
(FILE* mesf, char* tunnel, int optc, char *optv[])
{
fprintf (mesf, "c %s", 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
(FILE* mesf, char* tunnel, int optc, char *optv[])
{
fprintf (mesf, "d %s", tunnel);
return 0;
}
int command_remove
(FILE* mesf, char* tunnel, int optc, char *optv[])
{
fprintf (mesf, "r %s", tunnel);
return 0;
}