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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
/*
* Copyright (C) 2020-2021 Soleta Networks <info@soleta.eu>
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the
* Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*/
#include "ogAdmServer.h"
#include "dbi.h"
#include "utils.h"
#include "list.h"
#include "rest.h"
#include "client.h"
#include "json.h"
#include "schedule.h"
#include "core.h"
#include "cfg.h"
#include <syslog.h>
#include <getopt.h>
static struct option og_server_opts[] = {
{ "config-file", 1, 0, 'f' },
{ NULL },
};
#define OG_SERVER_CFG_JSON "/opt/opengnsys/cfg/ogserver.json"
#define OG_SERVER_REPO_PATH "/opt/opengnsys/images"
struct og_server_cfg ogconfig = {
.repo = {
.dir = OG_SERVER_REPO_PATH,
},
};
time_t start_time;
int main(int argc, char *argv[])
{
char config_file[PATH_MAX + 1] = OG_SERVER_CFG_JSON;
struct ev_io ev_io_server_rest, ev_io_agent_rest;
int val;
start_time = time(NULL);
og_loop = ev_default_loop(0);
if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
exit(EXIT_FAILURE);
openlog("ogserver", LOG_PID, LOG_DAEMON);
while (1) {
val = getopt_long(argc, argv, "f:l:d:", og_server_opts, NULL);
if (val < 0)
break;
switch (val) {
case 'f':
snprintf(config_file, sizeof(config_file), "%s", optarg);
break;
case 'l':
case 'd':
/* ignore, legacy options */
break;
case '?':
return EXIT_FAILURE;
default:
break;
}
}
if (parse_json_config(config_file, &ogconfig) < 0)
return EXIT_FAILURE;
socket_rest = og_socket_server_init(ogconfig.rest.port);
if (socket_rest < 0) {
syslog(LOG_ERR, "Cannot open REST API server socket\n");
exit(EXIT_FAILURE);
}
ev_io_init(&ev_io_server_rest, og_server_accept_cb, socket_rest, EV_READ);
ev_io_start(og_loop, &ev_io_server_rest);
socket_agent_rest = og_socket_server_init("8889");
if (socket_agent_rest < 0) {
syslog(LOG_ERR, "Cannot open ogClient server socket\n");
exit(EXIT_FAILURE);
}
ev_io_init(&ev_io_agent_rest, og_server_accept_cb, socket_agent_rest, EV_READ);
ev_io_start(og_loop, &ev_io_agent_rest);
if (og_dbi_schema_update() < 0)
exit(EXIT_FAILURE);
if (og_dbi_schedule_get() < 0) {
syslog(LOG_ERR, "Cannot connect to database\n");
exit(EXIT_FAILURE);
}
og_schedule_next(og_loop);
syslog(LOG_INFO, "Waiting for connections\n");
while (1)
ev_loop(og_loop, 0);
exit(EXIT_SUCCESS);
}
|