summaryrefslogtreecommitdiff
path: root/main.c
blob: da5ae092ad52a608046bc5eed53695fac5b7797f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <getopt.h>

#include "netifd.h"
#include "ubus.h"
#include "config.h"

const char *main_path = ".";
static char **global_argv;

static void netifd_do_restart(struct uloop_timeout *timeout)
{
	execvp(global_argv[0], global_argv);
}

static struct uloop_timeout restart_timer = {
	.cb = netifd_do_restart,
};

void netifd_restart(void)
{
	uloop_timeout_set(&restart_timer, 1000);
}

static int usage(const char *progname)
{
	fprintf(stderr, "Usage: %s [options]\n"
		"Options:\n"
		" -s <path>:		Path to the ubus socket\n"
		" -p <path>:		Path to netifd addons (default: %s)\n"
		"\n", progname, main_path);

	return 1;
}

int main(int argc, char **argv)
{
	const char *socket = NULL;
	int ch;

	global_argv = argv;

	while ((ch = getopt(argc, argv, "s:")) != -1) {
		switch(ch) {
		case 's':
			socket = optarg;
			break;
		case 'p':
			main_path = optarg;
			break;
		default:
			return usage(argv[0]);
		}
	}

	if (netifd_ubus_init(NULL) < 0) {
		fprintf(stderr, "Failed to connect to ubus\n");
		return 1;
	}

	config_init_interfaces(NULL);

	uloop_run();

	netifd_ubus_done();

	return 0;
}