forked from stripydog/kplex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.c
669 lines (608 loc) · 18.4 KB
/
options.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
/* options.c.
* This flie is part of kplex.
* Copyright Keith Young 2012-2015
* For copying information see the file COPYING distributed with this software
*
* This file deals with option parsing, either from a file or the command
* line
*/
#include "kplex.h"
#include <syslog.h>
#include <ctype.h>
#define ARGDELIM ','
#define FILTERDELIM ':'
#define FILTEROPTDELIM '/'
#define FILTERSRCDELIM '%'
/* This is used before we start multiple threads */
static char configbuf[BUFSIZE];
void lineerror(unsigned int line)
{
fprintf(stderr,"Error parsing config file at line %d\n",line);
exit(1);
}
enum itype name2type(const char *str)
{
struct iftypedef *iftptr;
/* fudge! Special case for bcast/mcast compatibility. This is ugly:
* need to fix */
if (!strcmp(str+1,"cast")) {
if (*str == 'b')
return BCAST;
if (*str == 'm')
return MCAST;
}
for (iftptr=iftypes; iftptr->index != END; iftptr++)
if (!strcmp(str,iftptr->name))
break;
return(iftptr->index);
}
/*
* Get the type of the next [Interface] section
* Args: file pointer to config file, pointer to current line number in the file
* pointer to an itype
* Returns: 0 on successfully finding a valid section or nothing but white space
* being found before end of file, -1 otherwise
* Side effects: On success, itype is set to the type of the interface name
* found or END if the end of file is reached without error. line number is
* incremented as the file is read. If an error other than a syntax error is
* encountered, the line number is set to 0.
*
* Note that this routine reads the *existing* contentes of configbuf and
* refreshes it only if nothing but white space or comments is found before EOL
*/
int get_interface_section(FILE *fp, unsigned int *line, enum itype *type)
{
char *ptr,*sptr;
enum itype ttype;
/* Discard white space and comments until '[' character is found or EOF
* any other char is an error */
for(ptr=configbuf;*ptr != '[';) {
if (*ptr == ' ' || *ptr == '\t') {
++ptr;
continue;
}
if (*ptr == '\n' || *ptr == '#' || *ptr == '\0') {
/* End of line: Read more */
if (!fgets(configbuf,BUFSIZE,fp)) {
if (feof(fp)) {
*type=END;
return (0);
}
line=0;
return(-1);
}
/* Increment line count and start again */
(*line)++;
ptr=configbuf;
continue;
}
return(-1);
}
/* Eat white space */
for (++ptr; *ptr == ' ' || *ptr == '\t'; ptr++);
/* EOL without finding section details is an error */
if (!*ptr || *ptr == '\n')
return(-1);
/* points to start of section name. Find the end of it */
for(sptr=ptr;*ptr != ']' && *ptr != ' ' && *ptr != '\t';ptr++)
if (*ptr == '\0' || *ptr == '\n')
/* End of line before closing ']' */
return(-1);
/* Terminate section name with null, checking for closing ']' */
if (*ptr == ']')
*ptr++='\0';
else {
for (*ptr='\0';*ptr == ' ' || *ptr == '\t';ptr++);
if (*ptr != ']')
return(-1);
}
/* Check nothing else on the line except white space and comments */
for (++ptr; *ptr == ' ' || *ptr == '\t'; ptr++);
if (*ptr && *ptr != '#' && *ptr != '\n')
return(-1);
/* Convert string to itype identifier. Error if string is not known type */
if ((ttype = name2type(sptr)) == END)
return(-1);
/* Set tyoe and return success */
*type = ttype;
return(0);
}
/*
* Get the next config file line
* Args: FILE pointer to config file, pointer to line counter, pointers to
* char pointers which will be set with return var/val pair
* Returns: 0 on success, -1 on error
* EOF or finding a (potential) section header terminating the current section
* is "success", but var will be set to NULL
* Side effects: If error is not a config file syntax error, line count is set
* to 0, otherwise it is incremented as the file is read. var and val are set
* to point to a var/value pair
* Anything after a '#' character is ignored
* Lines containing nothing other than white space are discarded
* White space at the start and end of a config line is discarded
* A config line is valid if it contains a single string not starting with '[',
* optional white space, "=", optional white space, an another string.
* VERY IMPORTANT: var and val are only valid until the next call to next_config
* or get_interface_section. This is NOT multithread safe either.
*/
int next_config(FILE *fp, unsigned int *line, char **var, char **val)
{
char *ptr;
char quote;
while ((ptr=fgets(configbuf,BUFSIZE,fp))) {
/* discard white space */
for (++(*line);*ptr==' '||*ptr=='\t';++ptr);
/* end of line or comment: next line */
if ((*ptr=='#') || (*ptr=='\n') || (*ptr=='\0'))
continue;
if (*ptr == '[') {
/* Section header (terminating this section) */
*var=NULL;
return(0);
}
break;
}
if (!ptr) {
if (feof(fp)) {
*configbuf='\0';
*var=NULL;
return(0);
}
/* Some other error */
(*line)=0;
return(-1);
}
for (*var=ptr;(*ptr != '=') && (*ptr != ' ') && (*ptr != '\t') ;ptr++) {
if (*ptr == '\0') {
return(-1);
}
}
if (*ptr == '=') {
*ptr++='\0';
} else {
*ptr='\0';
for (*ptr++='\0';*ptr == ' ' || *ptr == '\t';ptr++);
if (*ptr++ != '=')
return(-1);
}
for (;(*ptr == ' ') || (*ptr == '\t');ptr++);
if (*ptr == '\'' || *ptr == '"') {
for (quote=*ptr++,*val=ptr;*ptr != quote; ptr++)
if (*ptr == '\0' || *ptr == '\n')
return(-1);
} else {
for (*val=ptr;*ptr != ' ' && *ptr != '\t'; ptr++)
if (*ptr == '\n' || *ptr == '#') {
*ptr='\0';
return (0);
} else if (*ptr == '\0') {
if (feof(fp))
return(0);
else
return(-1);
}
}
*ptr++='\0';
for (;*ptr == ' ' || *ptr == '\t';ptr++)
if (*ptr == '\n' || *ptr == '#' || *ptr == '\0')
return(0);
return(-1);
}
struct kopts *add_option(char *var, char *val)
{
struct kopts *vv;
if (((vv = (struct kopts *)malloc(sizeof(struct kopts))) == NULL) ||
((vv->var = strdup(var)) == NULL) ||
((vv->val = strdup(val)) == NULL)) {
if (vv->var)
free(vv->var);
if (vv)
free(vv);
return (NULL);
}
vv->next = NULL;
return(vv);
}
sfilter_t *getfilter(char *fstring)
{
char *sptr;
sfilter_t *head;
sf_rule_t *filter;
sf_rule_t *tfilter,**fptr;
int i,ok=0;
tfilter=filter=NULL;
fptr=&filter;
for (;*fstring;fstring++) {
ok=0;
if ((tfilter=(sf_rule_t *)malloc(sizeof(sf_rule_t))) == NULL)
break;
tfilter->next=NULL;
if (*fstring == '+')
tfilter->type=ACCEPT;
else if (*fstring == '-')
tfilter->type=DENY;
else if (*fstring == '~') {
if ((tfilter->info.limit = (struct ratelimit *)
malloc(sizeof(struct ratelimit))) == NULL) {
free(tfilter);
break;
}
tfilter->type=LIMIT;
memset(tfilter->info.limit,0,sizeof(struct ratelimit));
} else
break;
if (!strncmp(++fstring,"all",3)) {
memset(tfilter->match,0,5);
fstring+=3;
} else {
for (sptr=tfilter->match,i=0;i<5;i++,fstring++) {
if (*fstring == '\0' || *fstring == FILTERDELIM ||
*fstring == FILTEROPTDELIM ||
*fstring == FILTERSRCDELIM)
break;
*sptr++=(*fstring == '*')?0:*fstring;
}
}
if (*fstring == FILTERSRCDELIM) {
sptr=++fstring;
while (*fstring && *fstring != FILTERDELIM &&
*fstring != FILTEROPTDELIM)
fstring++;
if ((tfilter->src.name = strndup(sptr,fstring-sptr)) == NULL)
break;
}
if (*fstring == FILTEROPTDELIM) {
if (tfilter->type == LIMIT) {
while(*++fstring) {
if (*fstring >= '0' && *fstring <= '9')
tfilter->info.limit->timeout =
tfilter->info.limit->timeout*10 + *fstring - '0';
else
break;
}
} else {
break;
}
}
if ((*fstring == FILTERDELIM) || (*fstring == '\0')) {
(*fptr)=tfilter;
fptr=&tfilter->next;
ok=1;
if (*fstring == '\0')
break;
} else
break;
}
if (ok) {
if ((head=(sfilter_t *)malloc(sizeof(sfilter_t))) != NULL) {
head->type=FILTER;
pthread_mutex_init(&head->lock,NULL);
head->refcount=1;
head->rules=filter;
return(head);
}
}
if (tfilter)
free(tfilter);
for(;filter;filter=tfilter) {
tfilter=filter->next;
free(filter);
}
return(NULL);
}
int add_common_opt(char *var, char *val,iface_t *ifp)
{
char *ptr;
if (!strcasecmp(var,"direction")) {
if (!strcasecmp(val,"in"))
ifp->direction = IN;
else if (!strcasecmp(val,"out"))
ifp->direction = OUT;
else if (!strcasecmp(val,"both"))
ifp->direction = BOTH;
else return(-2);
} else if (!strcmp(var,"ifilter")) {
if (ifp->ifilter)
free_filter(ifp->ifilter);
if ((ifp->ifilter=getfilter(val)) == NULL)
return(-2);
} else if (!strcmp(var,"ofilter")) {
if (ifp->ofilter)
free_filter(ifp->ofilter);
if ((ifp->ofilter=getfilter(val)) == NULL)
return(-2);
} else if (!strcmp(var,"strict")) {
if (!strcasecmp(val,"yes")) {
ifp->strict=1;
} else if (!strcasecmp(val,"no")) {
ifp->strict=0;
} else
return(-2);
} else if (!strcmp(var,"checksum")) {
if (!strcasecmp(val,"yes")) {
ifp->checksum=1;
} else if (!strcasecmp(val,"no")) {
ifp->checksum=0;
} else
return(-2);
} else if (!strcmp(var,"timestamp")) {
if (!strcasecmp(val,"s")) {
ifp->tagflags |= TAG_TS;
ifp->tagflags &= ~TAG_MS;
} else if (!strcasecmp(val,"ms")) {
ifp->tagflags |= (TAG_TS|TAG_MS);
} else
return(-2);
} else if (!strcmp(var,"srctag")) {
if (!strcasecmp(val,"yes")) {
ifp->tagflags |= TAG_SRC;
} else if (!strcasecmp(val,"no")) {
ifp->tagflags &= ~TAG_SRC;
} else if (!strcasecmp(val,"input")) {
ifp->tagflags |= TAG_SRC;
ifp->tagflags |= TAG_ISRC;
} else
return(-2);
} else if (!strcmp(var,"persist")) {
if (!strcasecmp(val,"yes")) {
flag_set(ifp,F_PERSIST);
flag_clear(ifp,F_IPERSIST);
} else if (!strcasecmp(val,"fromstart")) {
flag_set(ifp,F_PERSIST);
flag_set(ifp,F_IPERSIST);
} else if (!strcasecmp(val,"no")) {
flag_clear(ifp,F_PERSIST);
flag_clear(ifp,F_IPERSIST);
} else
return(-2);
} else if (!strcmp(var,"loopback")) {
if (!strcasecmp(val,"yes")) {
flag_set(ifp,F_LOOPBACK);
} else if (!strcasecmp(val,"no")) {
flag_clear(ifp,F_LOOPBACK);
} else
return(-2);
} else if (!strcmp(var,"optional")) {
if (!strcasecmp(val,"yes")) {
flag_set(ifp,F_OPTIONAL);
} else if (!strcasecmp(val,"no")) {
flag_clear(ifp,F_OPTIONAL);
} else
return(-2);
} else if (!strcmp(var,"eol")) {
if (!strcasecmp(val,"n")) {
flag_set(ifp,F_NOCR);
} else if (!strcasecmp(val,"rn")) {
flag_clear(ifp,F_NOCR);
} else
return(-2);
} else if (!strcasecmp(var,"name")) {
if ((ifp->name=(char *)malloc(strlen(val)+1)) == NULL)
return(-1);
for (ptr=ifp->name;*val;)
*ptr++= *val++;
} else
return(1);
return(0);
}
void free_options(struct kopts *options)
{
struct kopts *optr,*nextopt;
for(optr=options;optr;optr=nextopt) {
nextopt=optr->next;
free(optr->var);
free(optr->val);
free(optr);
}
}
iface_t *get_config(FILE *fp, unsigned int *line, enum itype type)
{
char *var,*val;
struct kopts **opt;
iface_t *ifp;
int ret;
if((ifp = (iface_t *) malloc(sizeof(iface_t))) == NULL) {
*line = 0;
return(NULL);
}
memset((void *) ifp,0,sizeof(iface_t));
ifp->direction = BOTH;
ifp->checksum=-1;
ifp->strict=-1;
ifp->type=type;
/* Set defaults */
switch (type) {
case FILEIO:
flag_set(ifp,F_NOCR);
break;
default:
break;
}
for(opt = &ifp->options;next_config(fp,line,&var,&val) == 0;) {
if (!var)
return(ifp);
if ((ret = add_common_opt(var,val,ifp)) == 0)
continue;
if ((ret < 0) || (((*opt) = add_option(var,val)) == NULL && (ret=-1))) {
if (ret == -1)
*line=0;
break;
}
opt=&(*opt)->next;
}
free_options(ifp->options);
free(ifp);
return(NULL);
}
iface_t *parse_file(char *fname)
{
FILE *fp;
unsigned int line=0;
enum itype type;
iface_t *ifp,**ifpp;
iface_t *list = NULL;
struct if_engine *ifg;
if ((fp = fopen(fname,"r")) == NULL) {
fprintf(stderr,"Failed to open config file %s: %s\n",fname,
strerror(errno));
exit(1);
}
for (ifpp=&list;get_interface_section(fp,&line,&type) == 0;) {
if (type == END) {
if (!list || list->type != GLOBAL) {
ifp = get_default_global();
ifp->next = list;
list = ifp;
}
return(list);
} else if (type == GLOBAL && list && list->type == GLOBAL) {
fprintf(stderr,"Error: duplicate global section in config file line %d\n",line);
exit(1);
}
if ((ifp = get_config(fp,&line,type)) == NULL) {
if (line == 0) {
perror("Error creating interface");
exit(1);
} else {
lineerror(line);
}
}
if ((ifp->type) == GLOBAL) {
if ((ifg = (struct if_engine *)malloc(sizeof(struct if_engine)))
== NULL) {
free(ifp);
perror("Error creating interface");
exit(1);
}
ifg->flags=0;
ifg->logto=LOG_DAEMON;
ifp->info = (void *)ifg;
if (ifp->strict <0)
ifp->strict = 1;
if (ifp->checksum <0)
ifp->checksum = 0;
ifp->next=list;
list=ifp;
if (ifpp == &list)
ifpp=&list->next;
} else {
(*ifpp)=ifp;
ifpp=&ifp->next;
}
}
if (line)
lineerror(line);
perror("Error parsing config file");
exit(1);
}
iface_t *parse_arg(char *arg)
{
iface_t *ifp;
char *ptr;
char *var,*val;
int ret,done=0;
struct kopts **opt;
if ((ifp = (iface_t *) malloc(sizeof(iface_t))) == NULL)
return(NULL);
memset((void *) ifp,0,sizeof(iface_t));
ifp->direction = BOTH;
ifp->checksum=-1;
ifp->strict=-1;
for(ptr=arg;*ptr && *ptr != ':';ptr++);
if (!*ptr) {
free(ifp);
return(NULL);
} else
*ptr++='\0';
if (!strcasecmp(arg,"file")) {
ifp->type = FILEIO;
ifp->flags |= F_NOCR;
} else if (!strcasecmp(arg,"serial"))
ifp->type = SERIAL;
else if (!strcasecmp(arg,"tcp"))
ifp->type = TCP;
else if (!strcasecmp(arg,"udp"))
ifp->type = UDP;
else if (!strcasecmp(arg,"broadcast"))
ifp->type = BCAST;
else if (!strcasecmp(arg,"bcast"))
ifp->type = BCAST;
else if (!strcasecmp(arg,"pty"))
ifp->type = PTY;
else if (!strcasecmp(arg,"multicast"))
ifp->type = MCAST;
else if (!strcasecmp(arg,"mcast"))
ifp->type = MCAST;
/*
else if (!strcasecmp(arg,"seatalk"))
ifp->type = ST;
*/
else if (!strcasecmp(arg,"gofree"))
ifp->type = GOFREE;
else {
fprintf(stderr,"Unrecognised interface type %s\n",arg);
free(ifp);
return(NULL);
}
for (opt=&ifp->options,var=ptr,val=NULL;;ptr++) {
if (*ptr == '=') {
if (val)
break;
*ptr='\0';
val=ptr+1;
} else if (*ptr == ARGDELIM || *ptr == '\0') {
if (!val) {
if (ptr == var) {
if (*ptr) {
++var;
continue;
}
done=1;
}
break;
}
if (*ptr)
*ptr='\0';
else
done=1;
if ((ret = add_common_opt(var,val,ifp)) < 0) {
done=0;
break;
}
if (ret) {
if (((*opt) = add_option(var,val)) == NULL) {
done=0;
break;
}
opt=&(*opt)->next;
}
if (done)
break;
var=ptr+1;
val=NULL;
}
}
if (done)
return(ifp);
free_options(ifp->options);
free(ifp);
return(NULL);
}
int cmdlineopt(struct kopts **options, char *arg)
{
char *val,*ptr;
struct kopts *optr;
for (val=arg;*val && *val != '=';val++);
if (*val != '=') {
logerr(0,"Badly formatted option %s\n",arg);
return(-1);
}
for(*val++ = '\0',ptr=val;*ptr;ptr++);
if ((optr=add_option(arg,val)) == NULL) {
logerr(errno,"Failed to add option");
return(-1);
}
optr->next=*options;
*options=optr;
return(0);
}