/* * Copyright (C) 2015, 2016, 2017 "IoT.bzh" * Author "Fulup Ar Foll" * Author José Bollo * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #define _GNU_SOURCE #define NO_BINDING_VERBOSE_MACRO #include #include #include #include #include #include #include #include #include #include "afb-config.h" #include "afb-hswitch.h" #include "afb-apis.h" #include "afb-api-so.h" #include "afb-api-dbus.h" #include "afb-api-ws.h" #include "afb-hsrv.h" #include "afb-context.h" #include "afb-hreq.h" #include "afb-sig-handler.h" #include "afb-thread.h" #include "afb-session.h" #include "verbose.h" #include "afb-common.h" #include "afb-hook.h" #include /* if SELF_PGROUP == 0 the launched command is the group leader if SELF_PGROUP != 0 afb-daemon is the group leader */ #define SELF_PGROUP 1 static struct afb_config *config; static pid_t childpid; /*---------------------------------------------------------- | helpers for handling list of arguments +--------------------------------------------------------- */ /* * Calls the callback 'run' for each value of the 'list' * until the callback returns 0 or the end of the list is reached. * Returns either NULL if the end of the list is reached or a pointer * to the item whose value made 'run' return 0. * 'closure' is used for passing user data. */ static struct afb_config_list *run_for_list(struct afb_config_list *list, int (*run) (void *closure, char *value), void *closure) { while (list && run(closure, list->value)) list = list->next; return list; } static int run_start(void *closure, char *value) { int (*starter) (const char *value) = closure; return starter(value) >= 0; } static void start_list(struct afb_config_list *list, int (*starter) (const char *value), const char *message) { list = run_for_list(list, run_start, starter); if (list) { ERROR("can't start %s %s", message, list->value); exit(1); } } /*---------------------------------------------------------- | exit_handler | Handles on exit specific actions +--------------------------------------------------------- */ static void exit_handler() { /* TODO: check whether using SIGHUP isn't better */ if (SELF_PGROUP) killpg(0, SIGKILL); else if (childpid > 0) killpg(childpid, SIGKILL); } /*---------------------------------------------------------- | daemonize | set the process in background +--------------------------------------------------------- */ static void daemonize() { int consoleFD; int pid; // open /dev/console to redirect output messAFBes consoleFD = open(config->console, O_WRONLY | O_APPEND | O_CREAT, 0640); if (consoleFD < 0) { ERROR("AFB-daemon cannot open /dev/console (use --foreground)"); exit(1); } // fork process when running background mode pid = fork(); // if fail nothing much to do if (pid == -1) { ERROR("AFB-daemon Failed to fork son process"); exit(1); } // if in father process, just leave if (pid != 0) _exit(0); // son process get all data in standalone mode NOTICE("background mode [pid:%d console:%s]", getpid(), config->console); // redirect default I/O on console close(2); dup(consoleFD); // redirect stderr close(1); dup(consoleFD); // redirect stdout close(0); // no need for stdin close(consoleFD); #if 0 setsid(); // allow father process to fully exit sleep(2); // allow main to leave and release port #endif } /*--------------------------------------------------------- | http server | Handles the HTTP server +--------------------------------------------------------- */ static int init_alias(void *closure, char *spec) { struct afb_hsrv *hsrv = closure; char *path = strchr(spec, ':'); if (path == NULL) { ERROR("Missing ':' in alias %s. Alias ignored", spec); return 1; } *path++ = 0; INFO("Alias for url=%s to path=%s", spec, path); return afb_hsrv_add_alias(hsrv, spec, afb_common_rootdir_get_fd(), path, 0, 0); } static int init_http_server(struct afb_hsrv *hsrv) { if (!afb_hsrv_add_handler (hsrv, config->rootapi, afb_hswitch_websocket_switch, NULL, 20)) return 0; if (!afb_hsrv_add_handler (hsrv, config->rootapi, afb_hswitch_apis, NULL, 10)) return 0; if (run_for_list(config->aliases, init_alias, hsrv)) return 0; if (config->roothttp != NULL) { if (!afb_hsrv_add_alias (hsrv, "", afb_common_rootdir_get_fd(), config->roothttp, -10, 1)) return 0; } if (!afb_hsrv_add_handler (hsrv, config->rootbase, afb_hswitch_one_page_api_redirect, NULL, -20)) return 0; return 1; } static struct afb_hsrv *start_http_server() { int rc; struct afb_hsrv *hsrv; if (afb_hreq_init_download_path(config->uploaddir)) { ERROR("unable to set the upload directory %s", config->uploaddir); return NULL; } hsrv = afb_hsrv_create(); if (hsrv == NULL) { ERROR("memory allocation failure"); return NULL; } if (!afb_hsrv_set_cache_timeout(hsrv, config->cacheTimeout) || !init_http_server(hsrv)) { ERROR("initialisation of httpd failed"); afb_hsrv_put(hsrv); return NULL; } NOTICE("Waiting port=%d rootdir=%s", config->httpdPort, config->rootdir); NOTICE("Browser URL= http:/*localhost:%d", config->httpdPort); rc = afb_hsrv_start(hsrv, (uint16_t) config->httpdPort, 15); if (!rc) { ERROR("starting of httpd failed"); afb_hsrv_put(hsrv); return NULL; } return hsrv; } /*--------------------------------------------------------- | execute_command | +--------------------------------------------------------- */ static void on_sigchld(int signum, siginfo_t *info, void *uctx) { if (info->si_pid == childpid) { switch (info->si_code) { case CLD_EXITED: case CLD_KILLED: case CLD_DUMPED: childpid = 0; if (!SELF_PGROUP) killpg(info->si_pid, SIGKILL); waitpid(info->si_pid, NULL, 0); exit(0); } } } /* # @@ @ # @p port # @t token */ #define SUBST_CHAR '@' #define SUBST_STR "@" static int instanciate_command_args() { char *orig, *repl, *sub, *val, port[20]; int i, rc, r; size_t s, l; rc = snprintf(port, sizeof port, "%d", config->httpdPort); if (rc < 0 || rc >= (int)(sizeof port)) return -1; for (i = 0 ; (orig = config->exec[i]) ; i++) { repl = 0; s = 0; for(;;) { sub = strchrnul(orig, SUBST_CHAR); l = sub - orig; if (repl) repl = mempcpy(repl, orig, l); else s += l; if (!*sub) { /* at end */ if (repl || orig == config->exec[i]) break; repl = malloc(1 + s); if (!repl) return -1; orig = config->exec[i]; config->exec[i] = repl; repl[s] = 0; } else { r = 2; switch(sub[1]) { case 'p': val = port; break; case 't': val = config->token ? : ""; break; default: r = 1; case SUBST_CHAR: val = SUBST_STR; break; } orig = &sub[r]; l = strlen(val); if (repl) repl = mempcpy(repl, val, l); else s += l; } } } return 0; } static int execute_command() { struct sigaction siga; /* check whether a command is to execute or not */ if (!config->exec || !config->exec[0]) return 0; if (SELF_PGROUP) setpgid(0, 0); /* install signal handler */ memset(&siga, 0, sizeof siga); siga.sa_sigaction = on_sigchld; siga.sa_flags = SA_SIGINFO; sigaction(SIGCHLD, &siga, NULL); /* fork now */ childpid = fork(); if (childpid) return 0; /* makes arguments */ if (instanciate_command_args() >= 0) { if (!SELF_PGROUP) setpgid(0, 0); execv(config->exec[0], config->exec); ERROR("can't launch %s: %m", config->exec[0]); } exit(1); return -1; } /*--------------------------------------------------------- | main | Parse option and launch action +--------------------------------------------------------- */ int main(int argc, char *argv[]) { struct afb_hsrv *hsrv; struct sd_event *eventloop; LOGAUTH("afb-daemon"); // ------------- Build session handler & init config ------- config = afb_config_parse_arguments(argc, argv); atexit(exit_handler); // ------------------ sanity check ---------------------------------------- if (config->httpdPort <= 0) { ERROR("no port is defined"); exit(1); } mkdir(config->workdir, S_IRWXU | S_IRGRP | S_IXGRP); if (chdir(config->workdir) < 0) { ERROR("Can't enter working dir %s", config->workdir); exit(1); } afb_api_so_set_timeout(config->apiTimeout); start_list(config->dbus_clients, afb_api_dbus_add_client, "the afb-dbus client"); start_list(config->ws_clients, afb_api_ws_add_client, "the afb-websocket client"); start_list(config->ldpaths, afb_api_so_add_pathset, "the binding path set"); start_list(config->so_bindings, afb_api_so_add_binding, "the binding"); afb_session_init(config->nbSessionMax, config->cntxTimeout, config->token, afb_apis_count()); start_list(config->dbus_servers, afb_api_dbus_add_server, "the afb-dbus service"); start_list(config->ws_servers, afb_api_ws_add_server, "the afb-websocket service"); if (!afb_hreq_init_cookie(config->httpdPort, config->rootapi, config->cntxTimeout)) { ERROR("initialisation of cookies failed"); exit(1); } if (afb_sig_handler_init() < 0) { ERROR("failed to initialise signal handlers"); return 1; } // set the root dir if (afb_common_rootdir_set(config->rootdir) < 0) { ERROR("failed to set common root directory"); return 1; } if (afb_thread_init(3, 1, 20) < 0) { ERROR("failed to initialise threading"); return 1; } // let's run this program with a low priority nice(20); // ------------------ Finaly Process Commands ----------------------------- // let's not take the risk to run as ROOT //if (getuid() == 0) goto errorNoRoot; DEBUG("Init config done"); // --------- run ----------- if (config->background) { // --------- in background mode ----------- INFO("entering background mode"); daemonize(); } else { // ---- in foreground mode -------------------- INFO("entering foreground mode"); } /* ignore any SIGPIPE */ signal(SIGPIPE, SIG_IGN); /* install trace of requests */ if (config->tracereq) afb_hook_req_create(NULL, NULL, NULL, config->tracereq, NULL, NULL); /* start the services */ if (afb_apis_start_all_services(1) < 0) exit(1); /* start the HTTP server */ if (!config->noHttpd) { hsrv = start_http_server(); if (hsrv == NULL) exit(1); } /* run the command */ if (execute_command() < 0) exit(1); /* signal that ready */ if (config->readyfd != 0) { static const char readystr[] = "READY=1"; write(config->readyfd, readystr, sizeof(readystr) - 1); close(config->readyfd); } // infinite loop eventloop = afb_common_get_event_loop(); sd_notify(1, "READY=1"); for (;;) sd_event_run(eventloop, 30000000); WARNING("hoops returned from infinite loop [report bug]"); return 0; }