2 * Copyright (C) 2015, 2016, 2017 "IoT.bzh"
3 * Author José Bollo <jose.bollo@iot.bzh>
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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
27 #include <json-c/json.h>
30 #include "afb-config.h"
33 #include <afb/afb-binding-v1.h>
35 #if !defined(BINDING_INSTALL_DIR)
36 #error "you should define BINDING_INSTALL_DIR"
38 #if !defined(AFB_VERSION)
39 #error "you should define AFB_VERSION"
43 #define DEFLT_CNTX_TIMEOUT 3600 // default Client Connection
45 #define DEFLT_API_TIMEOUT 20 // default Plugin API Timeout [0=NoLimit
47 #define DEFLT_CACHE_TIMEOUT 100000 // default Static File Chache
50 #define CTX_NBCLIENTS 10 // allow a default of 10 authenticated
54 // Define command line option
55 #define SET_BACKGROUND 2
56 #define SET_FORGROUND 3
58 #define SET_ROOT_DIR 6
59 #define SET_ROOT_BASE 7
60 #define SET_ROOT_API 8
63 #define SET_CACHE_TIMEOUT 10
64 #define SET_SESSION_DIR 11
67 #define SET_APITIMEOUT 14
68 #define SET_CNTXTIMEOUT 15
69 #define SET_WEAK_LDPATH 16
74 #define DBUS_CLIENT 20
75 #define DBUS_SERVICE 21
78 #define SET_SESSIONMAX 23
83 #define SET_ROOT_HTTP 26
85 #define SET_NO_HTTPD 28
88 #define SET_TRACEDITF 'D'
89 #define SET_TRACEEVT 'E'
91 #define DISPLAY_HELP 'h'
92 #if defined(WITH_MONITORING_OPTION)
93 #define SET_MONITORING 'M'
96 #define SET_TCP_PORT 'p'
98 #define SET_RNDTOKEN 'r'
99 #define SET_TRACESVC 'S'
100 #define SET_TRACEREQ 'T'
101 #define SET_AUTH_TOKEN 't'
102 #define SET_UPLOAD_DIR 'u'
103 #define DISPLAY_VERSION 'V'
104 #define SET_VERBOSE 'v'
105 #define SET_WORK_DIR 'w'
107 const char shortopts[] =
108 "c:D:E:ehn:p:qrT:t:u:Vvw:"
109 #if defined(WITH_MONITORING_OPTION)
114 // Command line structure hold cli --command + help text
116 int val; // command number within application
117 int has_arg; // command number within application
118 char *name; // command as used in --xxxx cli
119 char *help; // help text
123 static AFB_options cliOptions[] = {
125 {SET_VERBOSE, 0, "verbose", "Verbose Mode, repeat to increase verbosity"},
126 {SET_QUIET, 0, "quiet", "Quiet Mode, repeat to decrease verbosity"},
128 {SET_FORGROUND, 0, "foreground", "Get all in foreground mode"},
129 {SET_BACKGROUND, 0, "daemon", "Get all in background mode"},
131 {SET_NAME, 1, "name", "Set the visible name"},
133 {SET_TCP_PORT, 1, "port", "HTTP listening TCP port [default 1234]"},
134 {SET_ROOT_HTTP, 1, "roothttp", "HTTP Root Directory [default no root http (files not served but apis still available)]"},
135 {SET_ROOT_BASE, 1, "rootbase", "Angular Base Root URL [default /opa]"},
136 {SET_ROOT_API, 1, "rootapi", "HTML Root API URL [default /api]"},
137 {SET_ALIAS, 1, "alias", "Multiple url map outside of rootdir [eg: --alias=/icons:/usr/share/icons]"},
139 {SET_APITIMEOUT, 1, "apitimeout", "Binding API timeout in seconds [default 10]"},
140 {SET_CNTXTIMEOUT, 1, "cntxtimeout", "Client Session Context Timeout [default 900]"},
141 {SET_CACHE_TIMEOUT, 1, "cache-eol", "Client cache end of live [default 3600]"},
143 {SET_WORK_DIR, 1, "workdir", "Set the working directory [default: $PWD or current working directory]"},
144 {SET_UPLOAD_DIR, 1, "uploaddir", "Directory for uploading files [default: workdir]"},
145 {SET_ROOT_DIR, 1, "rootdir", "Root Directory of the application [default: workdir]"},
146 {SET_SESSION_DIR, 1, "sessiondir", "OBSOLETE (was: Sessions file path)"},
148 {SET_LDPATH, 1, "ldpaths", "Load bindings from dir1:dir2:... [default = " BINDING_INSTALL_DIR "]"},
149 {SO_BINDING, 1, "binding", "Load the binding of path"},
150 {SET_WEAK_LDPATH, 1, "weak-ldpaths","Same as --ldpaths but ignore errors"},
151 {NO_LDPATH, 0, "no-ldpaths", "Discard default ldpaths loading"},
153 {SET_AUTH_TOKEN, 1, "token", "Initial Secret [default=random, use --token="" to allow any token]"},
154 {SET_RNDTOKEN, 0, "random-token","Enforce a random token"},
156 {DISPLAY_VERSION, 0, "version", "Display version and copyright"},
157 {DISPLAY_HELP, 0, "help", "Display this help"},
159 {SET_MODE, 1, "mode", "Set the mode: either local, remote or global"},
161 {DBUS_CLIENT, 1, "dbus-client", "Bind to an afb service through dbus"},
162 {DBUS_SERVICE, 1, "dbus-server", "Provides an afb service through dbus"},
163 {WS_CLIENT, 1, "ws-client", "Bind to an afb service through websocket"},
164 {WS_SERVICE, 1, "ws-server", "Provides an afb service through websockets"},
166 {SET_SESSIONMAX, 1, "session-max", "Max count of session simultaneously [default 10]"},
168 {SET_TRACEREQ, 1, "tracereq", "Log the requests: no, common, extra, all"},
169 {SET_TRACEDITF, 1, "traceditf", "Log the requests: no, common, extra, all"},
170 {SET_TRACESVC, 1, "tracesvc", "Log the requests: no, all"},
171 {SET_TRACEEVT, 1, "traceevt", "Log the requests: no, common, extra, all"},
173 {ADD_CALL, 1, "call", "call at start format of val: API/VERB:json-args"},
175 {SET_NO_HTTPD, 0, "no-httpd", "Forbids HTTP service"},
176 {SET_EXEC, 0, "exec", "Execute the remaining arguments"},
178 #if defined(WITH_MONITORING_OPTION)
179 {SET_MONITORING, 0, "monitoring", "enable HTTP monitoring at <ROOT>/monitoring/"},
192 static struct enumdesc tracereq_desc[] = {
194 { "common", afb_hook_flags_req_common },
195 { "extra", afb_hook_flags_req_extra },
196 { "all", afb_hook_flags_req_all },
200 static struct enumdesc traceditf_desc[] = {
202 { "common", afb_hook_flags_ditf_common },
203 { "extra", afb_hook_flags_ditf_extra },
204 { "all", afb_hook_flags_ditf_all },
208 static struct enumdesc tracesvc_desc[] = {
210 { "all", afb_hook_flags_svc_all },
214 static struct enumdesc traceevt_desc[] = {
216 { "common", afb_hook_flags_evt_common },
217 { "extra", afb_hook_flags_evt_extra },
218 { "all", afb_hook_flags_evt_all },
222 static struct enumdesc mode_desc[] = {
223 { "local", AFB_MODE_LOCAL },
224 { "remote", AFB_MODE_REMOTE },
225 { "global", AFB_MODE_GLOBAL },
229 /*----------------------------------------------------------
231 | print version and copyright
232 +--------------------------------------------------------- */
233 static void printVersion(FILE * file)
235 static const char version[] =
237 " AFB [Application Framework Binder] version="AFB_VERSION"\n"
239 " Copyright (C) 2015, 2016, 2017 \"IoT.bzh\"\n"
240 " AFB comes with ABSOLUTELY NO WARRANTY.\n"
241 " Licence Apache 2\n"
244 fprintf(file, "%s", version);
247 /*----------------------------------------------------------
249 | print information from long option array
250 +--------------------------------------------------------- */
252 static void printHelp(FILE * file, const char *name)
257 fprintf(file, "%s:\nallowed options\n", name);
258 for (ind = 0; cliOptions[ind].name != NULL; ind++) {
259 strcpy(command, cliOptions[ind].name);
260 if (cliOptions[ind].has_arg)
261 strcat(command, "=xxxx");
262 fprintf(file, " --%-15s %s\n", command, cliOptions[ind].help);
265 "Example:\n %s --verbose --port=1234 --token='azerty' --ldpaths=build/bindings:/usr/lib64/agl/bindings\n",
270 /*----------------------------------------------------------
271 | adds a string to the list
272 +--------------------------------------------------------- */
273 static void list_add(struct afb_config_list **head, char *value)
275 struct afb_config_list *item;
281 while (item != NULL) {
289 item = malloc(sizeof *item);
291 ERROR("out of memory");
303 /*---------------------------------------------------------
304 | helpers for argument scanning
305 +--------------------------------------------------------- */
307 static const char *name_of_option(int optc)
309 AFB_options *o = cliOptions;
310 while (o->name && o->val != optc)
312 return o->name ? : "<unknown-option-name>";
315 static const char *current_argument(int optc)
318 ERROR("option [--%s] needs a value i.e. --%s=xxx",
319 name_of_option(optc), name_of_option(optc));
325 static char *argvalstr(int optc)
327 char *result = strdup(current_argument(optc));
328 if (result == NULL) {
329 ERROR("can't alloc memory");
335 static int argvalenum(int optc, struct enumdesc *desc)
340 const char *name = current_argument(optc);
343 while(desc[i].name && strcmp(desc[i].name, name))
349 len += strlen(desc[i++].name);
350 list = malloc(len + i + i);
352 ERROR("option [--%s] bad value (found %s)",
353 name_of_option(optc), name);
356 strcpy(list, desc[i].name ? : "");
357 while(desc[++i].name)
358 strcat(strcat(list, ", "), desc[i].name);
359 ERROR("option [--%s] bad value, only accepts values %s (found %s)",
360 name_of_option(optc), list, name);
365 return desc[i].value;
368 static int argvalint(int optc, int mini, int maxi, int base)
370 const char *beg, *end;
372 beg = current_argument(optc);
373 val = strtol(beg, (char**)&end, base);
374 if (*end || end == beg) {
375 ERROR("option [--%s] requires a valid integer (found %s)",
376 name_of_option(optc), beg);
379 if (val < (long int)mini || val > (long int)maxi) {
380 ERROR("option [--%s] value out of bounds (not %d<=%ld<=%d)",
381 name_of_option(optc), mini, val, maxi);
387 static int argvalintdec(int optc, int mini, int maxi)
389 return argvalint(optc, mini, maxi, 10);
392 static void noarg(int optc)
395 ERROR("option [--%s] need no value (found %s)", name_of_option(optc), optarg);
400 static char **make_exec(char **argv)
402 char **result, *iter;
407 for (i = 0 ; argv[i] ; i++)
408 length += strlen(argv[i]) + 1;
410 result = malloc(length + ((unsigned)(i + 1)) * sizeof *result);
411 if (result == NULL) {
412 ERROR("can't alloc memory");
416 iter = (char*)&result[i+1];
417 for (i = 0 ; argv[i] ; i++) {
419 iter = stpcpy(iter, argv[i]) + 1;
425 /*---------------------------------------------------------
426 | Parse option and launch action
427 +--------------------------------------------------------- */
429 static void parse_arguments(int argc, char **argv, struct afb_config *config)
431 char *programName = argv[0];
434 struct option *gnuOptions;
436 // ------------------ Process Command Line -----------------------
438 // build GNU getopt info from cliOptions
439 nbcmd = sizeof(cliOptions) / sizeof(AFB_options);
440 gnuOptions = malloc(sizeof(*gnuOptions) * (unsigned)nbcmd);
441 for (ind = 0; ind < nbcmd; ind++) {
442 gnuOptions[ind].name = cliOptions[ind].name;
443 gnuOptions[ind].has_arg = cliOptions[ind].has_arg;
444 gnuOptions[ind].flag = 0;
445 gnuOptions[ind].val = cliOptions[ind].val;
448 // get all options from command line
449 while ((optc = getopt_long(argc, argv, shortopts, gnuOptions, NULL)) != EOF) {
460 config->httpdPort = argvalintdec(optc, 1024, 32767);
464 config->apiTimeout = argvalintdec(optc, 0, INT_MAX);
467 case SET_CNTXTIMEOUT:
468 config->cntxTimeout = argvalintdec(optc, 0, INT_MAX);
472 config->rootdir = argvalstr(optc);
473 INFO("Forcing Rootdir=%s", config->rootdir);
477 config->roothttp = argvalstr(optc);
478 INFO("Forcing Root HTTP=%s", config->roothttp);
482 config->rootbase = argvalstr(optc);
483 INFO("Forcing Rootbase=%s", config->rootbase);
487 config->rootapi = argvalstr(optc);
488 INFO("Forcing Rootapi=%s", config->rootapi);
492 list_add(&config->aliases, argvalstr(optc));
496 config->token = argvalstr(optc);
500 list_add(&config->ldpaths, argvalstr(optc));
503 case SET_WEAK_LDPATH:
504 list_add(&config->weak_ldpaths, argvalstr(optc));
509 config->no_ldpaths = 1;
513 list_add(&config->calls, argvalstr(optc));
516 case SET_SESSION_DIR:
517 /* config->sessiondir = argvalstr(optc); */
518 WARNING("Obsolete option %s ignored", name_of_option(optc));
522 config->uploaddir = argvalstr(optc);
526 config->workdir = argvalstr(optc);
529 case SET_CACHE_TIMEOUT:
530 config->cacheTimeout = argvalintdec(optc, 0, INT_MAX);
534 config->nbSessionMax = argvalintdec(optc, 1, INT_MAX);
539 config->background = 0;
544 config->background = 1;
548 config->name = argvalstr(optc);
552 config->mode = argvalenum(optc, mode_desc);
556 list_add(&config->dbus_clients, argvalstr(optc));
560 list_add(&config->dbus_servers, argvalstr(optc));
564 list_add(&config->ws_clients, argvalstr(optc));
568 list_add(&config->ws_servers, argvalstr(optc));
572 list_add(&config->so_bindings, argvalstr(optc));
576 config->tracereq = argvalenum(optc, tracereq_desc);
580 config->traceditf = argvalenum(optc, traceditf_desc);
584 config->tracesvc = argvalenum(optc, tracesvc_desc);
588 config->traceevt = argvalenum(optc, traceevt_desc);
597 config->exec = make_exec(&argv[optind]);
598 optind = argc; /* stop option scanning */
602 config->random_token = 1;
605 #if defined(WITH_MONITORING_OPTION)
607 config->monitoring = 1;
611 case DISPLAY_VERSION:
613 printVersion(stdout);
617 printHelp(stdout, programName);
627 static void fulfill_config(struct afb_config *config)
630 if (config->httpdPort == 0)
631 config->httpdPort = 1234;
633 // default binding API timeout
634 if (config->apiTimeout == 0)
635 config->apiTimeout = DEFLT_API_TIMEOUT;
637 // default AUTH_TOKEN
638 if (config->random_token)
639 config->token = NULL;
641 // cache timeout default one hour
642 if (config->cacheTimeout == 0)
643 config->cacheTimeout = DEFLT_CACHE_TIMEOUT;
645 // cache timeout default one hour
646 if (config->cntxTimeout == 0)
647 config->cntxTimeout = DEFLT_CNTX_TIMEOUT;
649 // max count of sessions
650 if (config->nbSessionMax == 0)
651 config->nbSessionMax = CTX_NBCLIENTS;
653 /* set directories */
654 if (config->workdir == NULL)
655 config->workdir = ".";
657 if (config->rootdir == NULL)
658 config->rootdir = ".";
660 if (config->uploaddir == NULL)
661 config->uploaddir = ".";
663 // if no Angular/HTML5 rootbase let's try '/' as default
664 if (config->rootbase == NULL)
665 config->rootbase = "/opa";
667 if (config->rootapi == NULL)
668 config->rootapi = "/api";
670 if (config->ldpaths == NULL && config->weak_ldpaths == NULL && !config->no_ldpaths)
671 list_add(&config->ldpaths, BINDING_INSTALL_DIR);
673 #if defined(WITH_MONITORING_OPTION)
674 if (config->monitoring)
675 list_add(&config->aliases, strdup("/monitoring:"BINDING_INSTALL_DIR"/monitoring"));
678 // if no config dir create a default path from uploaddir
679 if (config->console == NULL) {
680 config->console = malloc(512);
681 strncpy(config->console, config->uploaddir, 512);
682 strncat(config->console, "/AFB-console.out", 512);
686 void afb_config_dump(struct afb_config *config)
688 struct afb_config_list *l;
692 #define NN(x) (x)?:""
693 #define P(...) fprintf(stderr, __VA_ARGS__)
694 #define PF(x) P("-- %15s: ", #x)
696 #define S(x) PF(x);P("%s",NN(config->x));PE;
697 #define D(x) PF(x);P("%d",config->x);PE;
698 #define B(x) PF(x);P("%s",config->x?"yes":"no");PE;
699 #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;
700 #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);}
701 #define V(x) P("-- %15s:", #x);for(v=config->x;v&&*v;v++)P(" %s",*v); PE;
703 P("---BEGIN-OF-CONFIG---\n");
733 E(tracereq,tracereq_desc)
734 E(traceditf,traceditf_desc)
735 E(tracesvc,tracesvc_desc)
736 E(traceevt,traceevt_desc)
743 P("---END-OF-CONFIG---\n");
757 static void on_environment_list(struct afb_config_list **to, const char *name)
759 char *value = getenv(name);
765 static void on_environment_enum(int *to, const char *name, struct enumdesc *desc)
767 char *value = getenv(name);
771 if (strcmp(desc->name, value))
778 WARNING("Unknown value %s for environment variable %s, ignored", value, name);
782 static void parse_environment(struct afb_config *config)
784 on_environment_enum(&config->tracereq, "AFB_TRACEREQ", tracereq_desc);
785 on_environment_enum(&config->traceditf, "AFB_TRACEDITF", traceditf_desc);
786 on_environment_enum(&config->tracesvc, "AFB_TRACESVC", tracesvc_desc);
787 on_environment_enum(&config->traceevt, "AFB_TRACEEVT", traceevt_desc);
788 on_environment_list(&config->ldpaths, "AFB_LDPATHS");
791 struct afb_config *afb_config_parse_arguments(int argc, char **argv)
793 struct afb_config *result;
795 result = calloc(1, sizeof *result);
797 parse_environment(result);
798 parse_arguments(argc, argv, result);
799 fulfill_config(result);
801 afb_config_dump(result);
805 struct json_object *afb_config_json(struct afb_config *config)
807 struct json_object *r, *a;
808 struct afb_config_list *l;
812 #define XA(t,o) json_object_array_add(t,o);
813 #define XO(t,x,o) json_object_object_add(t,x,o);
814 #define YS(s) ((s)?json_object_new_string(s):NULL)
816 #define AO(o) XA(a,o)
817 #define AS(s) AO(YS(s))
818 #define RO(x,o) XO(r,x,o)
819 #define RS(x,s) RO(x,YS(s))
820 #define RA(x) RO(x,(a=json_object_new_array()))
821 #define RI(x,i) RO(x,json_object_new_int(i))
822 #define RB(x,b) RO(x,json_object_new_boolean(b))
824 #define S(x) RS(#x,config->x)
825 #define V(x) RA(#x);for(v=config->x;v&&*v;v++)AS(*v);
826 #define L(x) RA(#x);for(l=config->x;l;l=l->next)AS(l->value);
827 #define D(x) RI(#x,config->x)
828 #define B(x) RB(#x,config->x)
829 #define E(x,d) for(e=d;e->name&&e->value!=config->x;e++);if(e->name){RS(#x,e->name);}else{D(x);}
831 r = json_object_new_object();
861 E(tracereq,tracereq_desc)
862 E(traceditf,traceditf_desc)
863 E(tracesvc,tracesvc_desc)
864 E(traceevt,traceevt_desc)