X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=main.c;h=465398f219ac606effdfe3afb5a8cb4cb4d13b9d;hp=69aa5cd5339afd68c3ad7f337eabbf3a6415065b;hb=273eb40f725de67011c092d2ed9f07a2d7f84ac3;hpb=3492219e211678c56b48d3f544cb0c0da9d606a0 diff --git a/main.c b/main.c index 69aa5cd..465398f 100644 --- a/main.c +++ b/main.c @@ -2,16 +2,51 @@ #include #include #include +#include #include "netifd.h" #include "ubus.h" +#include "config.h" +#include "system.h" +#include "interface.h" + +unsigned int debug_mask = 0; +const char *main_path = "."; +static char **global_argv; + +static void netifd_do_restart(struct uloop_timeout *timeout) +{ + execvp(global_argv[0], global_argv); +} + +static void netifd_do_reload(struct uloop_timeout *timeout) +{ + config_init_interfaces(NULL); +} + +static struct uloop_timeout main_timer; + +void netifd_reload(void) +{ + main_timer.cb = netifd_do_reload; + uloop_timeout_set(&main_timer, 100); +} + +void netifd_restart(void) +{ + main_timer.cb = netifd_do_restart; + interface_set_down(NULL); + uloop_timeout_set(&main_timer, 1000); +} static int usage(const char *progname) { fprintf(stderr, "Usage: %s [options]\n" "Options:\n" + " -d : Mask for debug messages\n" " -s : Path to the ubus socket\n" - "\n", progname); + " -p : Path to netifd addons (default: %s)\n" + "\n", progname, main_path); return 1; } @@ -21,21 +56,34 @@ int main(int argc, char **argv) const char *socket = NULL; int ch; - while ((ch = getopt(argc, argv, "s:")) != -1) { + global_argv = argv; + + while ((ch = getopt(argc, argv, "d:s:")) != -1) { switch(ch) { + case 'd': + debug_mask = strtoul(optarg, NULL, 0); + break; case 's': socket = optarg; break; + case 'p': + main_path = optarg; + break; default: return usage(argv[0]); } } - if (netifd_ubus_init(NULL) < 0) { + if (netifd_ubus_init(socket) < 0) { fprintf(stderr, "Failed to connect to ubus\n"); return 1; } + if (system_init()) { + fprintf(stderr, "Failed to initialize system control\n"); + return 1; + } + config_init_interfaces(NULL); uloop_run();