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
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include "monitor.h"
typedef enum {
TYPE_REACH,
TYPE_DNS,
TYPE_WEB
} type_t;
const char *type_str[] = { "reach", "dns", "web" };
typedef enum {
STATUS_DOWN,
STATUS_UP
} status_t;
typedef struct {
type_t type;
char *target;
status_t status;
} target_t;
static target_t targets[256];
static size_t target_n = 0;
int
monitor_init(const char *cfg_file) {
FILE *cfgf = fopen(cfg_file, "r");
if (!cfgf) {
fprintf(stderr, "Error opening config: %s\n", strerror(errno));
return -1;
}
printf("monitor targets:\n");
char line[256];
while (fgets(line, sizeof(line), cfgf)) {
if (*line == '#' || *line == '\n')
continue;
char *type = line;
char *target = strchr(line, '=');
if (!target) {
fprintf(stderr, "malformed config line: %s\n", line);
continue;
}
*target = '\0';
target++;
if (strcmp(type, "reach") == 0)
targets[target_n].type = TYPE_REACH;
else if (strcmp(type, "dns") == 0)
targets[target_n].type = TYPE_DNS;
else if (strcmp(type, "web") == 0)
targets[target_n].type = TYPE_WEB;
targets[target_n].target = strdup(target);
targets[target_n].status = STATUS_DOWN;
printf("\t%s: %s", type_str[targets[target_n].type],
targets[target_n].target);
target_n++;
}
fclose(cfgf);
return 0;
}
const char *
monitor_generate_status_html()
{
static char buff[65535];
static char *status_html[] = {
"down",
"up"
};
char *pos = buff;
for (size_t i = 0; i < target_n; i++) {
pos += snprintf(pos, 65535,
"<tr><td>%s</td><td>%s</td><td>%s</td></tr>\n",
type_str[targets[i].type],
targets[i].target,
status_html[targets[i].status]);
}
return buff;
}
void
monitor_check()
{
}
|