Add option --name for naming the process
[src/app-framework-binder.git] / src / afb-config.c
1 /*
2  * Copyright (C) 2015, 2016, 2017 "IoT.bzh"
3  * Author José Bollo <jose.bollo@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #define _GNU_SOURCE
19 #define AFB_BINDING_PRAGMA_NO_VERBOSE_MACRO
20
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include <getopt.h>
25 #include <limits.h>
26 #include <unistd.h>
27
28 #include "verbose.h"
29 #include "afb-config.h"
30 #include "afb-hook.h"
31
32 #include <afb/afb-binding-v1.h>
33
34 #if !defined(BINDING_INSTALL_DIR)
35 #error "you should define BINDING_INSTALL_DIR"
36 #endif
37
38 #define AFB_VERSION    "0.6"
39
40 // default
41 #define DEFLT_CNTX_TIMEOUT  3600        // default Client Connection
42                                         // Timeout
43 #define DEFLT_API_TIMEOUT   20          // default Plugin API Timeout [0=NoLimit
44                                         // for Debug Only]
45 #define DEFLT_CACHE_TIMEOUT 100000      // default Static File Chache
46                                         // [Client Side Cache
47                                         // 100000~=1day]
48 #define CTX_NBCLIENTS       10          // allow a default of 10 authenticated
49                                         // clients
50
51
52 // Define command line option
53 #define SET_BACKGROUND     2
54 #define SET_FORGROUND      3
55
56 #define SET_ROOT_DIR       6
57 #define SET_ROOT_BASE      7
58 #define SET_ROOT_API       8
59 #define SET_ALIAS          9
60
61 #define SET_CACHE_TIMEOUT  10
62 #define SET_SESSION_DIR    11
63
64 #define SET_LDPATH         13
65 #define SET_APITIMEOUT     14
66 #define SET_CNTXTIMEOUT    15
67 #define SET_WEAK_LDPATH    16
68 #define NO_LDPATH          17
69
70 #define SET_MODE           18
71
72 #define DBUS_CLIENT        20
73 #define DBUS_SERVICE       21
74 #define SO_BINDING         22
75
76 #define SET_SESSIONMAX     23
77
78 #define WS_CLIENT          24
79 #define WS_SERVICE         25
80
81 #define SET_ROOT_HTTP      26
82
83 #define SET_NO_HTTPD       28
84
85 #define ADD_CALL           'c'
86 #define SET_TRACEDITF      'D'
87 #define SET_TRACEEVT       'E'
88 #define SET_EXEC           'e'
89 #define DISPLAY_HELP       'h'
90 #if defined(WITH_MONITORING_OPTION)
91 #define SET_MONITORING     'M'
92 #endif
93 #define SET_NAME           'n'
94 #define SET_TCP_PORT       'p'
95 #define SET_QUIET          'q'
96 #define SET_RNDTOKEN       'r'
97 #define SET_TRACESVC       'S'
98 #define SET_TRACEREQ       'T'
99 #define SET_AUTH_TOKEN     't'
100 #define SET_UPLOAD_DIR     'u'
101 #define DISPLAY_VERSION    'V'
102 #define SET_VERBOSE        'v'
103 #define SET_WORK_DIR       'w'
104
105 const char shortopts[] =
106         "c:D:E:ehn:p:qrT:t:u:Vvw:"
107 #if defined(WITH_MONITORING_OPTION)
108         "M"
109 #endif
110 ;
111
112 // Command line structure hold cli --command + help text
113 typedef struct {
114         int val;                // command number within application
115         int has_arg;            // command number within application
116         char *name;             // command as used in --xxxx cli
117         char *help;             // help text
118 } AFB_options;
119
120 // Supported option
121 static AFB_options cliOptions[] = {
122 /* *INDENT-OFF* */
123         {SET_VERBOSE,       0, "verbose",     "Verbose Mode, repeat to increase verbosity"},
124         {SET_QUIET,         0, "quiet",       "Quiet Mode, repeat to decrease verbosity"},
125
126         {SET_FORGROUND,     0, "foreground",  "Get all in foreground mode"},
127         {SET_BACKGROUND,    0, "daemon",      "Get all in background mode"},
128
129         {SET_NAME,          1, "name",        "Set the visible name"},
130
131         {SET_TCP_PORT,      1, "port",        "HTTP listening TCP port  [default 1234]"},
132         {SET_ROOT_HTTP,     1, "roothttp",    "HTTP Root Directory [default no root http (files not served but apis still available)]"},
133         {SET_ROOT_BASE,     1, "rootbase",    "Angular Base Root URL [default /opa]"},
134         {SET_ROOT_API,      1, "rootapi",     "HTML Root API URL [default /api]"},
135         {SET_ALIAS,         1, "alias",       "Multiple url map outside of rootdir [eg: --alias=/icons:/usr/share/icons]"},
136
137         {SET_APITIMEOUT,    1, "apitimeout",  "Binding API timeout in seconds [default 10]"},
138         {SET_CNTXTIMEOUT,   1, "cntxtimeout", "Client Session Context Timeout [default 900]"},
139         {SET_CACHE_TIMEOUT, 1, "cache-eol",   "Client cache end of live [default 3600]"},
140
141         {SET_WORK_DIR,      1, "workdir",     "Set the working directory [default: $PWD or current working directory]"},
142         {SET_UPLOAD_DIR,    1, "uploaddir",   "Directory for uploading files [default: workdir]"},
143         {SET_ROOT_DIR,      1, "rootdir",     "Root Directory of the application [default: workdir]"},
144         {SET_SESSION_DIR,   1, "sessiondir",  "OBSOLETE (was: Sessions file path)"},
145
146         {SET_LDPATH,        1, "ldpaths",     "Load bindings from dir1:dir2:... [default = " BINDING_INSTALL_DIR "]"},
147         {SO_BINDING,        1, "binding",     "Load the binding of path"},
148         {SET_WEAK_LDPATH,   1, "weak-ldpaths","Same as --ldpaths but ignore errors"},
149         {NO_LDPATH,         0, "no-ldpaths",  "Discard default ldpaths loading"},
150
151         {SET_AUTH_TOKEN,    1, "token",       "Initial Secret [default=no-session, --token= for session without authentication]"},
152         {SET_RNDTOKEN,      0, "random-token","Enforce a random token"},
153
154         {DISPLAY_VERSION,   0, "version",     "Display version and copyright"},
155         {DISPLAY_HELP,      0, "help",        "Display this help"},
156
157         {SET_MODE,          1, "mode",        "Set the mode: either local, remote or global"},
158
159         {DBUS_CLIENT,       1, "dbus-client", "Bind to an afb service through dbus"},
160         {DBUS_SERVICE,      1, "dbus-server", "Provides an afb service through dbus"},
161         {WS_CLIENT,         1, "ws-client",   "Bind to an afb service through websocket"},
162         {WS_SERVICE,        1, "ws-server",   "Provides an afb service through websockets"},
163
164         {SET_SESSIONMAX,    1, "session-max", "Max count of session simultaneously [default 10]"},
165
166         {SET_TRACEREQ,      1, "tracereq",    "Log the requests: no, common, extra, all"},
167         {SET_TRACEDITF,     1, "traceditf",   "Log the requests: no, common, extra, all"},
168         {SET_TRACESVC,      1, "tracesvc",    "Log the requests: no, all"},
169         {SET_TRACEEVT,      1, "traceevt",    "Log the requests: no, common, extra, all"},
170
171         {ADD_CALL,          1, "call",        "call at start format of val: API/VERB:json-args"},
172
173         {SET_NO_HTTPD,      0, "no-httpd",    "Forbids HTTP service"},
174         {SET_EXEC,          0, "exec",        "Execute the remaining arguments"},
175
176 #if defined(WITH_MONITORING_OPTION)
177         {SET_MONITORING,    0, "monitoring",  "enable HTTP monitoring at <ROOT>/monitoring/"},
178 #endif
179         {0, 0, NULL, NULL}
180 /* *INDENT-ON* */
181 };
182
183
184 struct enumdesc
185 {
186         const char *name;
187         int value;
188 };
189
190 static struct enumdesc tracereq_desc[] = {
191         { "no",     0 },
192         { "common", afb_hook_flags_req_common },
193         { "extra",  afb_hook_flags_req_extra },
194         { "all",    afb_hook_flags_req_all },
195         { NULL, 0 }
196 };
197
198 static struct enumdesc traceditf_desc[] = {
199         { "no",     0 },
200         { "common", afb_hook_flags_ditf_common },
201         { "extra",  afb_hook_flags_ditf_extra },
202         { "all",    afb_hook_flags_ditf_all },
203         { NULL, 0 }
204 };
205
206 static struct enumdesc tracesvc_desc[] = {
207         { "no",     0 },
208         { "all",    afb_hook_flags_svc_all },
209         { NULL, 0 }
210 };
211
212 static struct enumdesc traceevt_desc[] = {
213         { "no",     0 },
214         { "common", afb_hook_flags_evt_common },
215         { "extra",  afb_hook_flags_evt_extra },
216         { "all",    afb_hook_flags_evt_all },
217         { NULL, 0 }
218 };
219
220 static struct enumdesc mode_desc[] = {
221         { "local",  AFB_MODE_LOCAL },
222         { "remote", AFB_MODE_REMOTE },
223         { "global", AFB_MODE_GLOBAL },
224         { NULL, 0 }
225 };
226
227 /*----------------------------------------------------------
228  | printversion
229  |   print version and copyright
230  +--------------------------------------------------------- */
231 static void printVersion(FILE * file)
232 {
233         fprintf(file, "\n----------------------------------------- \n");
234         fprintf(file, "  AFB [Application Framework Binder] version=%s |\n",
235                 AFB_VERSION);
236         fprintf(file, " \n");
237         fprintf(file,
238                 "  Copyright (C) 2015, 2016, 2017 \"IoT.bzh\" [fulup -at- iot.bzh]\n");
239         fprintf(file, "  AFB comes with ABSOLUTELY NO WARRANTY.\n");
240         fprintf(file, "  Licence Apache 2\n\n");
241 }
242
243 /*----------------------------------------------------------
244  | printHelp
245  |   print information from long option array
246  +--------------------------------------------------------- */
247
248 static void printHelp(FILE * file, const char *name)
249 {
250         int ind;
251         char command[50];
252
253         fprintf(file, "%s:\nallowed options\n", name);
254         for (ind = 0; cliOptions[ind].name != NULL; ind++) {
255                 strcpy(command, cliOptions[ind].name);
256                 if (cliOptions[ind].has_arg)
257                         strcat(command, "=xxxx");
258                 fprintf(file, "  --%-15s %s\n", command, cliOptions[ind].help);
259         }
260         fprintf(file,
261                 "Example:\n  %s  --verbose --port=1234 --token='azerty' --ldpaths=build/bindings:/usr/lib64/agl/bindings\n",
262                 name);
263 }
264
265
266 /*----------------------------------------------------------
267  |   adds a string to the list
268  +--------------------------------------------------------- */
269 static void list_add(struct afb_config_list **head, char *value)
270 {
271         struct afb_config_list *item;
272
273         /*
274          * search tail
275          */
276         item = *head;
277         while (item != NULL) {
278                 head = &item->next;
279                 item = item->next;
280         }
281
282         /*
283          * alloc the item
284          */
285         item = malloc(sizeof *item);
286         if (item == NULL) {
287                 ERROR("out of memory");
288                 exit(1);
289         }
290
291         /*
292          * init the item
293          */
294         *head = item;
295         item->value = value;
296         item->next = NULL;
297 }
298
299 /*---------------------------------------------------------
300  |   helpers for argument scanning
301  +--------------------------------------------------------- */
302
303 static const char *name_of_option(int optc)
304 {
305         AFB_options *o = cliOptions;
306         while (o->name && o->val != optc)
307                 o++;
308         return o->name ? : "<unknown-option-name>";
309 }
310
311 static const char *current_argument(int optc)
312 {
313         if (optarg == 0) {
314                 ERROR("option [--%s] needs a value i.e. --%s=xxx",
315                       name_of_option(optc), name_of_option(optc));
316                 exit(1);
317         }
318         return optarg;
319 }
320
321 static char *argvalstr(int optc)
322 {
323         char *result = strdup(current_argument(optc));
324         if (result == NULL) {
325                 ERROR("can't alloc memory");
326                 exit(1);
327         }
328         return result;
329 }
330
331 static int argvalenum(int optc, struct enumdesc *desc)
332 {
333         int i;
334         size_t len;
335         char *list;
336         const char *name = current_argument(optc);
337
338         i = 0;
339         while(desc[i].name && strcmp(desc[i].name, name))
340                 i++;
341         if (!desc[i].name) {
342                 len = 0;
343                 i = 0;
344                 while(desc[i].name)
345                         len += strlen(desc[i++].name);
346                 list = malloc(len + i + i);
347                 if (!i || !list)
348                         ERROR("option [--%s] bad value (found %s)",
349                                 name_of_option(optc), name);
350                 else {
351                         i = 0;
352                         strcpy(list, desc[i].name ? : "");
353                         while(desc[++i].name)
354                                 strcat(strcat(list, ", "), desc[i].name);
355                         ERROR("option [--%s] bad value, only accepts values %s (found %s)",
356                                 name_of_option(optc), list, name);
357                 }
358                 free(list);
359                 exit(1);
360         }
361         return desc[i].value;
362 }
363
364 static int argvalint(int optc, int mini, int maxi, int base)
365 {
366         const char *beg, *end;
367         long int val;
368         beg = current_argument(optc);
369         val = strtol(beg, (char**)&end, base);
370         if (*end || end == beg) {
371                 ERROR("option [--%s] requires a valid integer (found %s)",
372                         name_of_option(optc), beg);
373                 exit(1);
374         }
375         if (val < (long int)mini || val > (long int)maxi) {
376                 ERROR("option [--%s] value out of bounds (not %d<=%ld<=%d)",
377                         name_of_option(optc), mini, val, maxi);
378                 exit(1);
379         }
380         return (int)val;
381 }
382
383 static int argvalintdec(int optc, int mini, int maxi)
384 {
385         return argvalint(optc, mini, maxi, 10);
386 }
387
388 static void noarg(int optc)
389 {
390         if (optarg != 0) {
391                 ERROR("option [--%s] need no value (found %s)", name_of_option(optc), optarg);
392                 exit(1);
393         }
394 }
395
396 /*---------------------------------------------------------
397  |   Parse option and launch action
398  +--------------------------------------------------------- */
399
400 static void parse_arguments(int argc, char **argv, struct afb_config *config)
401 {
402         char *programName = argv[0];
403         int optc, ind;
404         int nbcmd;
405         struct option *gnuOptions;
406
407         // ------------------ Process Command Line -----------------------
408
409         // build GNU getopt info from cliOptions
410         nbcmd = sizeof(cliOptions) / sizeof(AFB_options);
411         gnuOptions = malloc(sizeof(*gnuOptions) * (unsigned)nbcmd);
412         for (ind = 0; ind < nbcmd; ind++) {
413                 gnuOptions[ind].name = cliOptions[ind].name;
414                 gnuOptions[ind].has_arg = cliOptions[ind].has_arg;
415                 gnuOptions[ind].flag = 0;
416                 gnuOptions[ind].val = cliOptions[ind].val;
417         }
418
419         // get all options from command line
420         while ((optc = getopt_long(argc, argv, shortopts, gnuOptions, NULL)) != EOF) {
421                 switch (optc) {
422                 case SET_VERBOSE:
423                         verbosity++;
424                         break;
425
426                 case SET_QUIET:
427                         verbosity--;
428                         break;
429
430                 case SET_TCP_PORT:
431                         config->httpdPort = argvalintdec(optc, 1024, 32767);
432                         break;
433
434                 case SET_APITIMEOUT:
435                         config->apiTimeout = argvalintdec(optc, 0, INT_MAX);
436                         break;
437
438                 case SET_CNTXTIMEOUT:
439                         config->cntxTimeout = argvalintdec(optc, 0, INT_MAX);
440                         break;
441
442                 case SET_ROOT_DIR:
443                         config->rootdir = argvalstr(optc);
444                         INFO("Forcing Rootdir=%s", config->rootdir);
445                         break;
446
447                 case SET_ROOT_HTTP:
448                         config->roothttp = argvalstr(optc);
449                         INFO("Forcing Root HTTP=%s", config->roothttp);
450                         break;
451
452                 case SET_ROOT_BASE:
453                         config->rootbase = argvalstr(optc);
454                         INFO("Forcing Rootbase=%s", config->rootbase);
455                         break;
456
457                 case SET_ROOT_API:
458                         config->rootapi = argvalstr(optc);
459                         INFO("Forcing Rootapi=%s", config->rootapi);
460                         break;
461
462                 case SET_ALIAS:
463                         list_add(&config->aliases, argvalstr(optc));
464                         break;
465
466                 case SET_AUTH_TOKEN:
467                         config->token = argvalstr(optc);
468                         break;
469
470                 case SET_LDPATH:
471                         list_add(&config->ldpaths, argvalstr(optc));
472                         break;
473
474                 case SET_WEAK_LDPATH:
475                         list_add(&config->weak_ldpaths, argvalstr(optc));
476                         break;
477
478                 case NO_LDPATH:
479                         noarg(optc);
480                         config->no_ldpaths = 1;
481                         break;
482
483                 case ADD_CALL:
484                         list_add(&config->calls, argvalstr(optc));
485                         break;
486
487                 case SET_SESSION_DIR:
488                         /* config->sessiondir = argvalstr(optc); */
489                         WARNING("Obsolete option %s ignored", name_of_option(optc));
490                         break;
491
492                 case SET_UPLOAD_DIR:
493                         config->uploaddir = argvalstr(optc);
494                         break;
495
496                 case SET_WORK_DIR:
497                         config->workdir = argvalstr(optc);
498                         break;
499
500                 case SET_CACHE_TIMEOUT:
501                         config->cacheTimeout = argvalintdec(optc, 0, INT_MAX);
502                         break;
503
504                 case SET_SESSIONMAX:
505                         config->nbSessionMax = argvalintdec(optc, 1, INT_MAX);
506                         break;
507
508                 case SET_FORGROUND:
509                         noarg(optc);
510                         config->background = 0;
511                         break;
512
513                 case SET_BACKGROUND:
514                         noarg(optc);
515                         config->background = 1;
516                         break;
517
518                 case SET_NAME:
519                         config->name = argvalstr(optc);
520                         break;
521
522                 case SET_MODE:
523                         config->mode = argvalenum(optc, mode_desc);
524                         break;
525
526                 case DBUS_CLIENT:
527                         list_add(&config->dbus_clients, argvalstr(optc));
528                         break;
529
530                 case DBUS_SERVICE:
531                         list_add(&config->dbus_servers, argvalstr(optc));
532                         break;
533
534                 case WS_CLIENT:
535                         list_add(&config->ws_clients, argvalstr(optc));
536                         break;
537
538                 case WS_SERVICE:
539                         list_add(&config->ws_servers, argvalstr(optc));
540                         break;
541
542                 case SO_BINDING:
543                         list_add(&config->so_bindings, argvalstr(optc));
544                         break;
545
546                 case SET_TRACEREQ:
547                         config->tracereq = argvalenum(optc, tracereq_desc);
548                         break;
549
550                 case SET_TRACEDITF:
551                         config->traceditf = argvalenum(optc, traceditf_desc);
552                         break;
553
554                 case SET_TRACESVC:
555                         config->tracesvc = argvalenum(optc, tracesvc_desc);
556                         break;
557
558                 case SET_TRACEEVT:
559                         config->traceevt = argvalenum(optc, traceevt_desc);
560                         break;
561
562                 case SET_NO_HTTPD:
563                         noarg(optc);
564                         config->noHttpd = 1;
565                         break;
566
567                 case SET_EXEC:
568                         config->exec = &argv[optind];
569                         optind = argc;
570                         break;
571
572                 case SET_RNDTOKEN:
573                         config->random_token = 1;
574                         break;
575
576 #if defined(WITH_MONITORING_OPTION)
577                 case SET_MONITORING:
578                         config->monitoring = 1;
579                         break;
580 #endif
581
582                 case DISPLAY_VERSION:
583                         noarg(optc);
584                         printVersion(stdout);
585                         exit(0);
586
587                 case DISPLAY_HELP:
588                         printHelp(stdout, programName);
589                         exit(0);
590
591                 default:
592                         exit(1);
593                 }
594         }
595         free(gnuOptions);
596 }
597
598 static void fulfill_config(struct afb_config *config)
599 {
600         // default HTTP port
601         if (config->httpdPort == 0)
602                 config->httpdPort = 1234;
603
604         // default binding API timeout
605         if (config->apiTimeout == 0)
606                 config->apiTimeout = DEFLT_API_TIMEOUT;
607
608         // default AUTH_TOKEN
609         if (config->random_token)
610                 config->token = NULL;
611
612         // cache timeout default one hour
613         if (config->cacheTimeout == 0)
614                 config->cacheTimeout = DEFLT_CACHE_TIMEOUT;
615
616         // cache timeout default one hour
617         if (config->cntxTimeout == 0)
618                 config->cntxTimeout = DEFLT_CNTX_TIMEOUT;
619
620         // max count of sessions
621         if (config->nbSessionMax == 0)
622                 config->nbSessionMax = CTX_NBCLIENTS;
623
624         /* set directories */
625         if (config->workdir == NULL)
626                 config->workdir = ".";
627
628         if (config->rootdir == NULL)
629                 config->rootdir = ".";
630
631         if (config->uploaddir == NULL)
632                 config->uploaddir = ".";
633
634         // if no Angular/HTML5 rootbase let's try '/' as default
635         if (config->rootbase == NULL)
636                 config->rootbase = "/opa";
637
638         if (config->rootapi == NULL)
639                 config->rootapi = "/api";
640
641         if (config->ldpaths == NULL && config->weak_ldpaths == NULL && !config->no_ldpaths)
642                 list_add(&config->ldpaths, BINDING_INSTALL_DIR);
643
644 #if defined(WITH_MONITORING_OPTION)
645         if (config->monitoring)
646                 list_add(&config->aliases, strdup("/monitoring:"BINDING_INSTALL_DIR"/monitoring"));
647 #endif
648
649         // if no config dir create a default path from uploaddir
650         if (config->console == NULL) {
651                 config->console = malloc(512);
652                 strncpy(config->console, config->uploaddir, 512);
653                 strncat(config->console, "/AFB-console.out", 512);
654         }
655 }
656
657 void afb_config_dump(struct afb_config *config)
658 {
659         struct afb_config_list *l;
660         struct enumdesc *e;
661         char **v;
662
663 #define NN(x)   (x)?:""
664 #define P(...)  fprintf(stderr, __VA_ARGS__)
665 #define PF(x)   P("-- %15s: ", #x)
666 #define PE      P("\n")
667 #define S(x)    PF(x);P("%s",NN(config->x));PE;
668 #define D(x)    PF(x);P("%d",config->x);PE;
669 #define H(x)    PF(x);P("%x",config->x);PE;
670 #define B(x)    PF(x);P("%s",config->x?"yes":"no");PE;
671 #define L(x)    PF(x);l=config->x;if(l){P("%s\n",NN(l->value));for(l=l->next;l;l=l->next)P("-- %15s  %s\n","",NN(l->value));}else PE;
672 #define E(x,d)  for(e=d;e->name&&e->value!=config->x;e++);if(e->name){PF(x);P("%s",e->name);PE;}else{D(x);}
673 #define V(x)    P("-- %15s:", #x);for(v=config->x;v&&*v;v++)P(" %s",*v); PE;
674
675         P("---BEGIN-OF-CONFIG---\n");
676         S(console)
677         S(rootdir)
678         S(roothttp)
679         S(rootbase)
680         S(rootapi)
681         S(workdir)
682         S(uploaddir)
683         S(token)
684         S(name)
685
686         L(aliases)
687         L(dbus_clients)
688         L(dbus_servers)
689         L(ws_clients)
690         L(ws_servers)
691         L(so_bindings)
692         L(ldpaths)
693         L(weak_ldpaths)
694         L(calls)
695
696         V(exec)
697
698         D(httpdPort)
699         D(cacheTimeout)
700         D(apiTimeout)
701         D(cntxTimeout)
702         D(nbSessionMax)
703
704         E(mode,mode_desc)
705         E(tracereq,tracereq_desc)
706         E(traceditf,traceditf_desc)
707         E(tracesvc,tracesvc_desc)
708         E(traceevt,traceevt_desc)
709
710         B(no_ldpaths)
711         B(noHttpd)
712         B(background)
713         B(monitoring)
714         B(random_token)
715         P("---END-OF-CONFIG---\n");
716
717 #undef V
718 #undef E
719 #undef L
720 #undef B
721 #undef H
722 #undef D
723 #undef S
724 #undef PE
725 #undef PF
726 #undef P
727 #undef NN
728 }
729
730 struct afb_config *afb_config_parse_arguments(int argc, char **argv)
731 {
732         struct afb_config *result;
733
734         result = calloc(1, sizeof *result);
735
736         parse_arguments(argc, argv, result);
737         fulfill_config(result);
738         if (verbosity >= 3)
739                 afb_config_dump(result);
740         return result;
741 }
742