Improve setting of options
[src/app-framework-binder.git] / src / afb-args.c
1 /*
2  * Copyright (C) 2015-2019 "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
20 #include <stdlib.h>
21 #include <stdio.h>
22 #include <string.h>
23 #include <getopt.h>
24 #include <limits.h>
25 #include <unistd.h>
26 #include <ctype.h>
27
28 #include <json-c/json.h>
29 #if !defined(JSON_C_TO_STRING_NOSLASHESCAPE)
30 #define JSON_C_TO_STRING_NOSLASHESCAPE 0
31 #endif
32
33 #include "verbose.h"
34 #include "afb-args.h"
35 #include "afb-hook-flags.h"
36 #include "wrap-json.h"
37
38 #define _d2s_(x)  #x
39 #define d2s(x)    _d2s_(x)
40
41 #if !defined(BINDING_INSTALL_DIR)
42 #error "you should define BINDING_INSTALL_DIR"
43 #endif
44 #if !defined(AFB_VERSION)
45 #error "you should define AFB_VERSION"
46 #endif
47
48 /**
49  * The default timeout of sessions in seconds
50  */
51 #define DEFAULT_SESSION_TIMEOUT         32000000
52
53 /**
54  * The default timeout of api calls in seconds
55  */
56 #define DEFAULT_API_TIMEOUT             20
57
58 /**
59  * The default timeout of cache in seconds
60  */
61 #define DEFAULT_CACHE_TIMEOUT           100000
62
63 /**
64  * The default maximum count of sessions
65  */
66 #define DEFAULT_MAX_SESSION_COUNT       200
67
68 /**
69  * The default HTTP port to serve
70  */
71 #define DEFAULT_HTTP_PORT               1234
72
73 // Define command line option
74 #define SET_BACKGROUND       1
75 #define SET_FOREGROUND       2
76 #define SET_ROOT_DIR         3
77 #define SET_ROOT_BASE        4
78 #define SET_ROOT_API         5
79 #define ADD_ALIAS            6
80
81 #define SET_CACHE_TIMEOUT    7
82
83 #define AUTO_WS              8
84 #define AUTO_LINK            9
85
86 #define ADD_LDPATH          10
87 #define SET_API_TIMEOUT     11
88 #define SET_SESSION_TIMEOUT 12
89 #define ADD_WEAK_LDPATH     13
90 #define SET_NO_LDPATH       14
91
92 #define SET_SESSIONMAX      15
93
94 #define ADD_WS_CLIENT       16
95 #define ADD_WS_SERVICE      17
96
97 #define SET_ROOT_HTTP       18
98
99 #define SET_NO_HTTPD        19
100
101 #define SET_TRACEEVT        20
102 #define SET_TRACESES        21
103 #define SET_TRACEREQ        22
104 #define SET_TRACEAPI        23
105 #define SET_TRACEGLOB       24
106 #if !defined(REMOVE_LEGACY_TRACE)
107 #define SET_TRACEDITF       25
108 #define SET_TRACESVC        26
109 #endif
110 #define SET_TRAP_FAULTS     27
111 #define ADD_CALL            28
112 #if WITH_DBUS_TRANSPARENCY
113 #   define ADD_DBUS_CLIENT  30
114 #   define ADD_DBUS_SERVICE 31
115 #endif
116
117 #define ADD_AUTO_API       'A'
118 #define ADD_BINDING        'b'
119 #define SET_CONFIG         'C'
120 #define SET_COLOR          'c'
121 #define SET_DAEMON         'D'
122 #define SET_EXEC           'e'
123 #define GET_HELP           'h'
124 #define SET_LOG            'l'
125 #if defined(WITH_MONITORING_OPTION)
126 #define SET_MONITORING     'M'
127 #endif
128 #define SET_NAME           'n'
129 #define SET_OUTPUT         'o'
130 #define SET_PORT           'p'
131 #define SET_QUIET          'q'
132 #define SET_RANDOM_TOKEN   'r'
133 #define ADD_SET            's'
134 #define SET_TOKEN          't'
135 #define SET_UPLOAD_DIR     'u'
136 #define GET_VERSION        'V'
137 #define SET_VERBOSE        'v'
138 #define SET_WORK_DIR       'w'
139 #define DUMP_CONFIG        'Z'
140
141 /* structure for defining of options */
142 struct option_desc {
143         int id;         /* id of the option         */
144         int has_arg;    /* is a value required      */
145         char *name;     /* long name of the option  */
146         char *help;     /* help text                */
147 };
148
149 /* definition of options */
150 static struct option_desc optdefs[] = {
151 /* *INDENT-OFF* */
152         {SET_VERBOSE,         0, "verbose",     "Verbose Mode, repeat to increase verbosity"},
153         {SET_COLOR,           0, "color",       "Colorize the ouput"},
154         {SET_QUIET,           0, "quiet",       "Quiet Mode, repeat to decrease verbosity"},
155         {SET_LOG,             1, "log",         "Tune log level"},
156
157         {SET_FOREGROUND,      0, "foreground",  "Get all in foreground mode"},
158         {SET_BACKGROUND,      0, "background",  "Get all in background mode"},
159         {SET_DAEMON,          0, "daemon",      "Get all in background mode"},
160
161         {SET_NAME,            1, "name",        "Set the visible name"},
162
163         {SET_PORT,            1, "port",        "HTTP listening TCP port  [default " d2s(DEFAULT_HTTP_PORT) "]"},
164         {SET_ROOT_HTTP,       1, "roothttp",    "HTTP Root Directory [default no root http (files not served but apis still available)]"},
165         {SET_ROOT_BASE,       1, "rootbase",    "Angular Base Root URL [default /opa]"},
166         {SET_ROOT_API,        1, "rootapi",     "HTML Root API URL [default /api]"},
167         {ADD_ALIAS,           1, "alias",       "Multiple url map outside of rootdir [eg: --alias=/icons:/usr/share/icons]"},
168
169         {SET_API_TIMEOUT,     1, "apitimeout",  "Binding API timeout in seconds [default " d2s(DEFAULT_API_TIMEOUT) "]"},
170         {SET_SESSION_TIMEOUT, 1, "cntxtimeout", "Client Session Context Timeout [default " d2s(DEFAULT_SESSION_TIMEOUT) "]"},
171         {SET_CACHE_TIMEOUT,   1, "cache-eol",   "Client cache end of live [default " d2s(DEFAULT_CACHE_TIMEOUT) "]"},
172
173         {SET_WORK_DIR,        1, "workdir",     "Set the working directory [default: $PWD or current working directory]"},
174         {SET_UPLOAD_DIR,      1, "uploaddir",   "Directory for uploading files [default: workdir] relative to workdir"},
175         {SET_ROOT_DIR,        1, "rootdir",     "Root Directory of the application [default: workdir] relative to workdir"},
176
177         {ADD_LDPATH,          1, "ldpaths",     "Load bindings from dir1:dir2:... [default = " BINDING_INSTALL_DIR "]"},
178         {ADD_BINDING,         1, "binding",     "Load the binding of path"},
179         {ADD_WEAK_LDPATH,     1, "weak-ldpaths","Same as --ldpaths but ignore errors"},
180         {SET_NO_LDPATH,       0, "no-ldpaths",  "Discard default ldpaths loading"},
181
182         {SET_TOKEN,           1, "token",       "Initial Secret [default=random, use --token="" to allow any token]"},
183         {SET_RANDOM_TOKEN,    0, "random-token","Enforce a random token"},
184
185         {GET_VERSION,         0, "version",     "Display version and copyright"},
186         {GET_HELP,            0, "help",        "Display this help"},
187
188 #if WITH_DBUS_TRANSPARENCY
189         {ADD_DBUS_CLIENT,     1, "dbus-client", "Bind to an afb service through dbus"},
190         {ADD_DBUS_SERVICE,    1, "dbus-server", "Provide an afb service through dbus"},
191 #endif
192         {ADD_WS_CLIENT,       1, "ws-client",   "Bind to an afb service through websocket"},
193         {ADD_WS_SERVICE,      1, "ws-server",   "Provide an afb service through websockets"},
194
195         {ADD_AUTO_API,        1, "auto-api",    "Automatic load of api of the given directory"},
196
197         {SET_SESSIONMAX,      1, "session-max", "Max count of session simultaneously [default " d2s(DEFAULT_MAX_SESSION_COUNT) "]"},
198
199 #if WITH_AFB_HOOK
200         {SET_TRACEREQ,        1, "tracereq",    "Log the requests: none, common, extra, all"},
201         {SET_TRACEEVT,        1, "traceevt",    "Log the events: none, common, extra, all"},
202         {SET_TRACESES,        1, "traceses",    "Log the sessions: none, all"},
203         {SET_TRACEAPI,        1, "traceapi",    "Log the apis: none, common, api, event, all"},
204         {SET_TRACEGLOB,       1, "traceglob",   "Log the globals: none, all"},
205 #if !defined(REMOVE_LEGACY_TRACE)
206         {SET_TRACEDITF,       1, "traceditf",   "Log the daemons: no, common, all"},
207         {SET_TRACESVC,        1, "tracesvc",    "Log the services: no, all"},
208 #endif
209 #endif
210
211         {ADD_CALL,            1, "call",        "Call at start, format of val: API/VERB:json-args"},
212
213         {SET_NO_HTTPD,        0, "no-httpd",    "Forbid HTTP service"},
214         {SET_EXEC,            0, "exec",        "Execute the remaining arguments"},
215
216 #if defined(WITH_MONITORING_OPTION)
217         {SET_MONITORING,      0, "monitoring",  "Enable HTTP monitoring at <ROOT>/monitoring/"},
218 #endif
219
220         {SET_CONFIG,          1, "config",      "Load options from the given config file"},
221         {DUMP_CONFIG,         0, "dump-config", "Dump the config to stdout and exit"},
222
223         {ADD_SET,             1, "set",         "Set parameters ([API]/[KEY]:JSON or {\"API\":{\"KEY\":JSON}}" },
224         {SET_OUTPUT,          1, "output",      "Redirect stdout and stderr to output file (when --daemon)"},
225
226         {SET_TRAP_FAULTS,     1, "trap-faults", "Trap faults: on, off, yes, no, true, false, 1, 0 (default: true)"},
227
228         {0, 0, NULL, NULL}
229 /* *INDENT-ON* */
230 };
231
232 #if defined(WITH_MONITORING_OPTION)
233 static const char MONITORING_ALIAS[] = "/monitoring:"BINDING_INSTALL_DIR"/monitoring";
234 #endif
235
236 static const struct {
237         int optid;
238         int valdef;
239 } default_optint_values[] = {
240         { SET_PORT,             DEFAULT_HTTP_PORT },
241         { SET_API_TIMEOUT,      DEFAULT_API_TIMEOUT },
242         { SET_CACHE_TIMEOUT,    DEFAULT_CACHE_TIMEOUT },
243         { SET_SESSION_TIMEOUT,  DEFAULT_SESSION_TIMEOUT },
244         { SET_SESSIONMAX,       DEFAULT_MAX_SESSION_COUNT }
245 };
246
247 static const struct {
248         int optid;
249         const char *valdef;
250 } default_optstr_values[] = {
251         { SET_WORK_DIR,         "." },
252         { SET_ROOT_DIR,         "." },
253         { SET_UPLOAD_DIR,       "." },
254         { SET_ROOT_BASE,        "/opa" },
255         { SET_ROOT_API,         "/api" }
256 };
257
258 /**********************************
259 * preparing items
260 ***********************************/
261
262 static char *shortopts = NULL;
263 static int *id2idx = NULL;
264
265 static void *oomchk(void *ptr)
266 {
267         if (!ptr) {
268                 ERROR("Out of memory");
269                 exit(1);
270         }
271         return ptr;
272 }
273
274 static char is_short_option(int val)
275 {
276         return (val >= 'a' && val <= 'z') || (val >= 'A' && val <= 'Z') || (val >= '0' && val <= '9');
277 }
278
279 static void init_options()
280 {
281         int i, ns, mi, id;
282
283         if (!shortopts) {
284                 ns = 2;
285                 mi = -1;
286                 for (i = 0 ; optdefs[i].name ; i++) {
287                         id = optdefs[i].id;
288                         if (id > mi)
289                                 mi = id;
290                         if (is_short_option(id))
291                                 ns += 1 + !!optdefs[i].has_arg;
292                 }
293                 shortopts = oomchk(malloc(2 + ns));
294                 id2idx = oomchk(calloc(1 + mi, sizeof *id2idx));
295                 shortopts[ns = 0] = ':';
296                 for (i = 0 ; optdefs[i].name ; i++) {
297                         id = optdefs[i].id;
298                         id2idx[id] = i;
299                         if (is_short_option(id)) {
300                                 shortopts[++ns] = (char)id;
301                                 if (optdefs[i].has_arg)
302                                         shortopts[++ns] = ':';
303                         }
304                 }
305                 shortopts[++ns] = 0;
306         }
307 }
308
309 static const char *name_of_optid(int optid)
310 {
311         return optdefs[id2idx[optid]].name;
312 }
313
314 static int get_enum_val(const char *name, int optid, int (*func)(const char*))
315 {
316         int i;
317
318         i = func(name);
319         if (i < 0) {
320                 ERROR("option [--%s] bad value (found %s)",
321                         name_of_optid(optid), name);
322                 exit(1);
323         }
324         return i;
325 }
326
327
328 /*----------------------------------------------------------
329  | printversion
330  |   print version and copyright
331  +--------------------------------------------------------- */
332 static void printVersion(FILE * file)
333 {
334         fprintf(file,
335                 "\n"
336                 "  AGL Framework Binder [AFB %s] "
337
338 #if WITH_DBUS_TRANSPARENCY
339                 "+"
340 #else
341                 "-"
342 #endif
343                 "DBUS "
344
345 #if defined(WITH_MONITORING_OPTION)
346                 "+"
347 #else
348                 "-"
349 #endif
350                 "MONITOR "
351 #if WITH_SUPERVISION
352                 "+"
353 #else
354                 "-"
355 #endif
356                 "SUPERVISION "
357
358 #if WITH_AFB_HOOK
359                 "+"
360 #else
361                 "-"
362 #endif
363                 "HOOK "
364
365 #if WITH_TRACE
366                 "+"
367 #else
368                 "-"
369 #endif
370                 "TRACE "
371
372                 "[BINDINGS "
373 #if WITH_LEGACY_BINDING_V1
374                 "+"
375 #else
376                 "-"
377 #endif
378                 "V1 "
379 #if WITH_LEGACY_BINDING_VDYN
380                 "+"
381 #else
382                 "-"
383 #endif
384                 "VDYN +V2 +V3]\n"
385                 "\n",
386                 AFB_VERSION
387         );
388         fprintf(file,
389                 "  Copyright (C) 2015-2019 \"IoT.bzh\"\n"
390                 "  AFB comes with ABSOLUTELY NO WARRANTY.\n"
391                 "  Licence Apache 2\n"
392                 "\n");
393 }
394
395 /*----------------------------------------------------------
396  | printHelp
397  |   print information from long option array
398  +--------------------------------------------------------- */
399
400 static void printHelp(FILE * file, const char *name)
401 {
402         int ind;
403         char command[50], sht[4];
404
405         fprintf(file, "%s:\nallowed options\n", strrchr(name, '/') ? strrchr(name, '/') + 1 : name);
406         sht[3] = 0;
407         for (ind = 0; optdefs[ind].name != NULL; ind++) {
408                 if (is_short_option(optdefs[ind].id)) {
409                         sht[0] = '-';
410                         sht[1] = (char)optdefs[ind].id;
411                         sht[2] = ',';
412                 } else {
413                         sht[0] = sht[1] = sht[2] = ' ';
414                 }
415                 strcpy(command, optdefs[ind].name);
416                 if (optdefs[ind].has_arg)
417                         strcat(command, "=xxxx");
418                 fprintf(file, " %s --%-17s %s\n", sht, command, optdefs[ind].help);
419         }
420         fprintf(file,
421                 "Example:\n  %s  --verbose --port="
422                 d2s(DEFAULT_HTTP_PORT)
423                 " --token='azerty' --ldpaths=build/bindings:/usr/lib64/agl/bindings\n",
424                 name);
425 }
426
427 static void dump(struct json_object *config, FILE *file, const char *prefix, const char *title)
428 {
429         const char *head, *tail;
430
431         if (title)
432                 fprintf(file, "%s----BEGIN OF %s-----\n", prefix ?: "", title);
433
434         head = json_object_to_json_string_ext(config, JSON_C_TO_STRING_PRETTY
435                 |JSON_C_TO_STRING_SPACED|JSON_C_TO_STRING_NOSLASHESCAPE);
436
437         if (!prefix)
438                 fprintf(file, "%s\n", head);
439         else {
440                 while(*head) {
441                         for (tail = head ; *tail && *tail != '\n' ; tail++);
442                         fprintf(file, "%s %.*s\n", prefix, (int)(tail - head), head);
443                         head = tail + !!*tail;
444                 }
445         }
446
447         if (title)
448                 fprintf(file, "%s----END OF %s-----\n", prefix ?: "", title);
449 }
450
451 /**********************************
452 * json helpers
453 ***********************************/
454
455 static struct json_object *joomchk(struct json_object *value)
456 {
457         return oomchk(value);
458 }
459
460 static struct json_object *to_jstr(const char *value)
461 {
462         return joomchk(json_object_new_string(value));
463 }
464
465 static struct json_object *to_jint(int value)
466 {
467         return joomchk(json_object_new_int(value));
468 }
469
470 static struct json_object *to_jbool(int value)
471 {
472         return joomchk(json_object_new_boolean(value));
473 }
474
475 /**********************************
476 * arguments helpers
477 ***********************************/
478
479 static int string_to_bool(const char *value)
480 {
481         static const char true_names[] = "1\0yes\0true\0on";
482         static const char false_names[] = "0\0no\0false\0off";
483         size_t pos;
484
485         pos = 0;
486         while (pos < sizeof true_names)
487                 if (strcasecmp(value, &true_names[pos]))
488                         pos += 1 + strlen(&true_names[pos]);
489                 else
490                         return 1;
491
492         pos = 0;
493         while (pos < sizeof false_names)
494                 if (strcasecmp(value, &false_names[pos]))
495                         pos += 1 + strlen(&false_names[pos]);
496                 else
497                         return 0;
498
499         return -1;
500 }
501
502 static void noarg(int optid)
503 {
504         if (optarg) {
505                 ERROR("option [--%s] need no value (found %s)", name_of_optid(optid), optarg);
506                 exit(1);
507         }
508 }
509
510 static const char *get_arg(int optid)
511 {
512         if (optarg == 0) {
513                 ERROR("option [--%s] needs a value i.e. --%s=xxx",
514                                 name_of_optid(optid), name_of_optid(optid));
515                 exit(1);
516         }
517         return optarg;
518 }
519
520 static int get_arg_bool(int optid)
521 {
522         int value = string_to_bool(get_arg(optid));
523         if (value < 0) {
524                 ERROR("option [--%s] needs a boolean value: yes/no, true/false, on/off, 1/0",
525                                 name_of_optid(optid));
526                 exit(1);
527         }
528         return value;
529 }
530
531 static void config_del(struct json_object *config, int optid)
532 {
533         return json_object_object_del(config, name_of_optid(optid));
534 }
535
536 static int config_has(struct json_object *config, int optid)
537 {
538         return json_object_object_get_ex(config, name_of_optid(optid), NULL);
539 }
540
541 static int config_has_bool(struct json_object *config, int optid)
542 {
543         struct json_object *x;
544         return json_object_object_get_ex(config, name_of_optid(optid), &x)
545                 && json_object_get_boolean(x);
546 }
547
548 static int config_has_str(struct json_object *config, int optid, const char *val)
549 {
550         int i, n;
551         struct json_object *a;
552
553         if (!json_object_object_get_ex(config, name_of_optid(optid), &a))
554                 return 0;
555
556         if (!json_object_is_type(a, json_type_array))
557                 return !strcmp(val, json_object_get_string(a));
558
559         n = (int)json_object_array_length(a);
560         for (i = 0 ; i < n ; i++) {
561                 if (!strcmp(val, json_object_get_string(json_object_array_get_idx(a, i))))
562                         return 1;
563         }
564         return 0;
565 }
566
567 static void config_set(struct json_object *config, int optid, struct json_object *val)
568 {
569         json_object_object_add(config, name_of_optid(optid), val);
570 }
571
572 static void config_set_str(struct json_object *config, int optid, const char *val)
573 {
574         config_set(config, optid, to_jstr(val));
575 }
576
577 static void config_set_optstr(struct json_object *config, int optid)
578 {
579         config_set_str(config, optid, get_arg(optid));
580 }
581
582 static void config_set_int(struct json_object *config, int optid, int value)
583 {
584         config_set(config, optid, to_jint(value));
585 }
586
587 static void config_set_bool(struct json_object *config, int optid, int value)
588 {
589         config_set(config, optid, to_jbool(value));
590 }
591
592 static void config_set_optint_base(struct json_object *config, int optid, int mini, int maxi, int base)
593 {
594         const char *beg, *end;
595         long int val;
596
597         beg = get_arg(optid);
598         val = strtol(beg, (char**)&end, base);
599         if (*end || end == beg) {
600                 ERROR("option [--%s] requires a valid integer (found %s)",
601                         name_of_optid(optid), beg);
602                 exit(1);
603         }
604         if (val < (long int)mini || val > (long int)maxi) {
605                 ERROR("option [--%s] value %ld out of bounds (not in [%d , %d])",
606                         name_of_optid(optid), val, mini, maxi);
607                 exit(1);
608         }
609         config_set_int(config, optid, (int)val);
610 }
611
612 static void config_set_optint(struct json_object *config, int optid, int mini, int maxi)
613 {
614         return config_set_optint_base(config, optid, mini, maxi, 10);
615 }
616
617 __attribute__((unused))
618 static void config_set_optenum(struct json_object *config, int optid, int (*func)(const char*))
619 {
620         const char *name = get_arg(optid);
621         get_enum_val(name, optid, func);
622         config_set_str(config, optid, name);
623 }
624
625 static void config_add(struct json_object *config, int optid, struct json_object *val)
626 {
627         struct json_object *a;
628         if (!json_object_object_get_ex(config, name_of_optid(optid), &a)) {
629                 a = joomchk(json_object_new_array());
630                 json_object_object_add(config, name_of_optid(optid), a);
631         }
632         json_object_array_add(a, val);
633 }
634
635 static void config_add_str(struct json_object *config, int optid, const char *val)
636 {
637         config_add(config, optid, to_jstr(val));
638 }
639
640 static void config_add_optstr(struct json_object *config, int optid)
641 {
642         config_add_str(config, optid, get_arg(optid));
643 }
644
645 static void config_mix2_cb(void *closure, struct json_object *obj, const char *name)
646 {
647         struct json_object *dest, *base = closure;
648
649         if (!name)
650                 name = "";
651
652         if (!json_object_object_get_ex(base, name, &dest)) {
653                 dest = joomchk(json_object_new_object());
654                 json_object_object_add(base, name, dest);
655         }
656         if (json_object_is_type(obj, json_type_object))
657                 wrap_json_object_add(dest, obj);
658         else
659                 json_object_object_add(dest, "", json_object_get(obj));
660 }
661
662 static void config_mix2(struct json_object *config, int optid, struct json_object *val)
663 {
664         struct json_object *obj;
665
666         if (!json_object_object_get_ex(config, name_of_optid(optid), &obj)) {
667                 obj = joomchk(json_object_new_object());
668                 json_object_object_add(config, name_of_optid(optid), obj);
669         }
670         wrap_json_for_all(val, config_mix2_cb, obj);
671 }
672
673 static void config_mix2_str(struct json_object *config, int optid, const char *val)
674 {
675         size_t st1, st2;
676         const char *api, *key;
677         struct json_object *obj, *sub;
678         enum json_tokener_error jerr;
679
680         st1 = strcspn(val, "/:{[\"");
681         st2 = strcspn(&val[st1], ":{[\"");
682         if (val[st1] != '/' || val[st1 + st2] != ':') {
683                 obj = json_tokener_parse_verbose(val, &jerr);
684                 if (jerr != json_tokener_success)
685                         obj = json_object_new_string(val);
686         } else {
687                 api = st1 == 0 ? "*" : strndupa(val, st1);
688                 val += st1 + 1;
689                 key = st2 <= 1 || (st2 == 2 && *val == '*') ? NULL : strndupa(val, st2 - 1);
690                 val += st2;
691                 sub = json_tokener_parse_verbose(val, &jerr);
692                 if (jerr != json_tokener_success)
693                         sub = json_object_new_string(val);
694
695                 if (key) {
696                         obj = json_object_new_object();
697                         json_object_object_add(obj, key, sub);
698                         sub = obj;
699                 }
700                 obj = json_object_new_object();
701                 json_object_object_add(obj, api, sub);
702         }
703         config_mix2(config, optid, obj);
704         json_object_put(obj);
705 }
706
707 static void config_mix2_optstr(struct json_object *config, int optid)
708 {
709         config_mix2_str(config, optid, get_arg(optid));
710 }
711
712 /*---------------------------------------------------------
713  |   set the log levels
714  +--------------------------------------------------------- */
715
716 static void set_log(const char *args)
717 {
718         char o = 0, s, *p, *i = strdupa(args);
719         int lvl;
720
721         for(;;) switch (*i) {
722         case 0:
723                 return;
724         case '+':
725         case '-':
726                 o = *i;
727                 /*@fallthrough@*/
728         case ' ':
729         case ',':
730                 i++;
731                 break;
732         default:
733                 p = i;
734                 while (isalpha(*p)) p++;
735                 s = *p;
736                 *p = 0;
737                 lvl = verbose_level_of_name(i);
738                 if (lvl < 0) {
739                         i = strdupa(i);
740                         *p = s;
741                         ERROR("Bad log name '%s' in %s", i, args);
742                         exit(1);
743                 }
744                 *p = s;
745                 i = p;
746                 if (o == '-')
747                         verbose_sub(lvl);
748                 else {
749                         if (!o) {
750                                 verbose_clear();
751                                 o = '+';
752                         }
753                         verbose_add(lvl);
754                 }
755                 break;
756         }
757 }
758
759 /*---------------------------------------------------------
760  |   Parse option and launch action
761  +--------------------------------------------------------- */
762
763 static void parse_arguments_inner(int argc, char **argv, struct json_object *config, struct option *options)
764 {
765         struct json_object *conf;
766         int optid, cind, dodump = 0;
767
768         for (;;) {
769                 cind = optind;
770                 optid = getopt_long(argc, argv, shortopts, options, NULL);
771                 if (optid < 0) {
772                         /* end of options */
773                         break;
774                 }
775                 switch (optid) {
776                 case SET_VERBOSE:
777                         verbose_inc();
778                         break;
779
780                 case SET_COLOR:
781                         verbose_colorize();
782                         break;
783
784                 case SET_QUIET:
785                         verbose_dec();
786                         break;
787
788                 case SET_LOG:
789                         set_log(get_arg(optid));
790                         break;
791
792                 case SET_PORT:
793                         config_set_optint(config, optid, 1024, 32767);
794                         break;
795
796                 case SET_API_TIMEOUT:
797                 case SET_SESSION_TIMEOUT:
798                 case SET_CACHE_TIMEOUT:
799                         config_set_optint(config, optid, 0, INT_MAX);
800                         break;
801
802                 case SET_SESSIONMAX:
803                         config_set_optint(config, optid, 1, INT_MAX);
804                         break;
805
806                 case SET_ROOT_DIR:
807                 case SET_ROOT_HTTP:
808                 case SET_ROOT_BASE:
809                 case SET_ROOT_API:
810                 case SET_TOKEN:
811                 case SET_UPLOAD_DIR:
812                 case SET_WORK_DIR:
813                 case SET_NAME:
814                         config_set_optstr(config, optid);
815                         break;
816
817 #if WITH_DBUS_TRANSPARENCY
818                 case ADD_DBUS_CLIENT:
819                 case ADD_DBUS_SERVICE:
820 #endif
821                 case ADD_ALIAS:
822                 case ADD_LDPATH:
823                 case ADD_WEAK_LDPATH:
824                 case ADD_CALL:
825                 case ADD_WS_CLIENT:
826                 case ADD_WS_SERVICE:
827                 case ADD_BINDING:
828                 case ADD_AUTO_API:
829                         config_add_optstr(config, optid);
830                         break;
831
832                 case ADD_SET:
833                         config_mix2_optstr(config, optid);
834                         break;
835
836 #if defined(WITH_MONITORING_OPTION)
837                 case SET_MONITORING:
838 #endif
839                 case SET_RANDOM_TOKEN:
840                 case SET_NO_HTTPD:
841                 case SET_NO_LDPATH:
842                         noarg(optid);
843                         config_set_bool(config, optid, 1);
844                         break;
845
846
847                 case SET_FOREGROUND:
848                 case SET_BACKGROUND:
849                 case SET_DAEMON:
850                         noarg(optid);
851                         config_set_bool(config, SET_DAEMON, optid != SET_FOREGROUND);
852                         break;
853
854                 case SET_TRAP_FAULTS:
855                         config_set_bool(config, optid, get_arg_bool(optid));
856                         break;
857
858
859 #if WITH_AFB_HOOK
860                 case SET_TRACEREQ:
861                         config_set_optenum(config, optid, afb_hook_flags_xreq_from_text);
862                         break;
863
864                 case SET_TRACEEVT:
865                         config_set_optenum(config, optid, afb_hook_flags_evt_from_text);
866                         break;
867
868                 case SET_TRACESES:
869                         config_set_optenum(config, optid, afb_hook_flags_session_from_text);
870                         break;
871
872                 case SET_TRACEAPI:
873                         config_set_optenum(config, optid, afb_hook_flags_api_from_text);
874                         break;
875
876                 case SET_TRACEGLOB:
877                         config_set_optenum(config, optid, afb_hook_flags_global_from_text);
878                         break;
879
880 #if !defined(REMOVE_LEGACY_TRACE)
881                 case SET_TRACEDITF:
882                         config_set_optenum(config, optid, afb_hook_flags_legacy_ditf_from_text);
883                         break;
884
885                 case SET_TRACESVC:
886                         config_set_optenum(config, optid, afb_hook_flags_legacy_svc_from_text);
887                         break;
888 #endif
889 #endif
890
891                 case SET_EXEC:
892                         if (optind == argc) {
893                                 ERROR("The option --exec requires arguments");
894                                 exit(1);
895                         }
896                         while (optind != argc)
897                                 config_add_str(config, optid, argv[optind++]);
898                         break;
899
900                 case SET_CONFIG:
901                         conf = json_object_from_file(get_arg(optid));
902                         if (!conf) {
903                                 ERROR("Can't read config file %s", get_arg(optid));
904                                 exit(1);
905                         }
906                         wrap_json_object_add(config, conf);
907                         json_object_put(conf);
908                         break;
909
910                 case DUMP_CONFIG:
911                         noarg(optid);
912                         dodump = 1;
913                         break;
914
915                 case GET_VERSION:
916                         noarg(optid);
917                         printVersion(stdout);
918                         exit(0);
919
920                 case GET_HELP:
921                         printHelp(stdout, argv[0]);
922                         exit(0);
923
924                 default:
925                         ERROR("Bad option detected, check %s", argv[cind]);
926                         exit(1);
927                 }
928         }
929         /* TODO: check for extra value */
930
931         if (dodump) {
932                 dump(config, stdout, NULL, NULL);
933                 exit(0);
934         }
935 }
936
937 static void parse_arguments(int argc, char **argv, struct json_object *config)
938 {
939         int ind;
940         struct option *options;
941
942         /* create GNU getopt options from optdefs */
943         options = malloc((sizeof optdefs / sizeof * optdefs) * sizeof * options);
944         for (ind = 0; optdefs[ind].name; ind++) {
945                 options[ind].name = optdefs[ind].name;
946                 options[ind].has_arg = optdefs[ind].has_arg;
947                 options[ind].flag = NULL;
948                 options[ind].val = optdefs[ind].id;
949         }
950         memset(&options[ind], 0, sizeof options[ind]);
951
952         /* parse the arguments */
953         parse_arguments_inner(argc, argv, config, options);
954
955         /* release the memory of options */
956         free(options);
957 }
958
959 static void fulfill_config(struct json_object *config)
960 {
961         int i;
962
963         for (i = 0 ; i < sizeof default_optint_values / sizeof * default_optint_values ; i++)
964                 if (!config_has(config, default_optint_values[i].optid))
965                         config_set_int(config, default_optint_values[i].optid, default_optint_values[i].valdef);
966
967         for (i = 0 ; i < sizeof default_optstr_values / sizeof * default_optstr_values ; i++)
968                 if (!config_has(config, default_optstr_values[i].optid))
969                         config_set_str(config, default_optstr_values[i].optid, default_optstr_values[i].valdef);
970
971         // default AUTH_TOKEN
972         if (config_has_bool(config, SET_RANDOM_TOKEN))
973                 config_del(config, SET_TOKEN);
974
975         if (!config_has(config, ADD_LDPATH) && !config_has(config, ADD_WEAK_LDPATH) && !config_has_bool(config, SET_NO_LDPATH))
976                 config_add_str(config, ADD_LDPATH, BINDING_INSTALL_DIR);
977
978 #if defined(WITH_MONITORING_OPTION)
979         if (config_has_bool(config, SET_MONITORING) && !config_has_str(config, ADD_ALIAS, MONITORING_ALIAS))
980                 config_add_str(config, ADD_ALIAS, MONITORING_ALIAS);
981 #endif
982
983 #if !defined(REMOVE_LEGACY_TRACE) && 0
984         config->traceapi |= config->traceditf | config->tracesvc;
985 #endif
986 }
987
988 static void on_environment(struct json_object *config, int optid, const char *name, void (*func)(struct json_object*, int, const char*))
989 {
990         char *value = secure_getenv(name);
991
992         if (value && *value)
993                 func(config, optid, value);
994 }
995
996 __attribute__((unused))
997 static void on_environment_enum(struct json_object *config, int optid, const char *name, int (*func)(const char*))
998 {
999         char *value = secure_getenv(name);
1000
1001         if (value) {
1002                 if (func(value) == -1)
1003                         WARNING("Unknown value %s for environment variable %s, ignored", value, name);
1004                 else
1005                         config_set_str(config, optid, value);
1006         }
1007 }
1008
1009 static void on_environment_bool(struct json_object *config, int optid, const char *name)
1010 {
1011         char *value = secure_getenv(name);
1012         int asbool;
1013
1014         if (value) {
1015                 asbool = string_to_bool(value);
1016                 if (asbool < 0)
1017                         WARNING("Unknown value %s for environment variable %s, ignored", value, name);
1018                 else
1019                         config_set_bool(config, optid, asbool);
1020         }
1021 }
1022
1023 static void parse_environment(struct json_object *config)
1024 {
1025 #if WITH_AFB_HOOK
1026         on_environment_enum(config, SET_TRACEREQ, "AFB_TRACEREQ", afb_hook_flags_xreq_from_text);
1027         on_environment_enum(config, SET_TRACEEVT, "AFB_TRACEEVT", afb_hook_flags_evt_from_text);
1028         on_environment_enum(config, SET_TRACESES, "AFB_TRACESES", afb_hook_flags_session_from_text);
1029         on_environment_enum(config, SET_TRACEAPI, "AFB_TRACEAPI", afb_hook_flags_api_from_text);
1030         on_environment_enum(config, SET_TRACEGLOB, "AFB_TRACEGLOB", afb_hook_flags_global_from_text);
1031 #if !defined(REMOVE_LEGACY_TRACE)
1032         on_environment_enum(config, SET_TRACEDITF, "AFB_TRACEDITF", afb_hook_flags_legacy_ditf_from_text);
1033         on_environment_enum(config, SET_TRACESVC, "AFB_TRACESVC", afb_hook_flags_legacy_svc_from_text);
1034 #endif
1035 #endif
1036         on_environment(config, ADD_LDPATH, "AFB_LDPATHS", config_add_str);
1037         on_environment(config, ADD_SET, "AFB_SET", config_mix2_str);
1038         on_environment_bool(config, SET_TRAP_FAULTS, "AFB_TRAP_FAULTS");
1039 }
1040
1041 struct json_object *afb_args_parse(int argc, char **argv)
1042 {
1043         struct json_object *result;
1044
1045         init_options();
1046
1047         result = json_object_new_object();
1048
1049         parse_environment(result);
1050         parse_arguments(argc, argv, result);
1051         fulfill_config(result);
1052         if (verbose_wants(Log_Level_Info))
1053                 dump(result, stderr, "--", "CONFIG");
1054         return result;
1055 }
1056
1057