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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
|
/* Copyright (C) 2011 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* This test is basically a copy of the whole server, with following exceptions:
* - conf file path is hardcoded, because it is generated by script
* invoking this binary.
* - signal handler now handles one more signal
* SIGCONT is used to signal this
* binary that an integrity check should be done
*/
#include <time.h>
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <getopt.h>
#include "knot/common.h"
#include "knot/other/error.h"
#include "knot/server/server.h"
#include "knot/ctl/process.h"
#include "knot/conf/conf.h"
#include "knot/conf/logconf.h"
#include "common/evqueue.h"
#include "knot/server/zones.h"
/*----------------------------------------------------------------------------*/
/* Signal flags. */
static volatile short sig_req_stop = 0;
static volatile short sig_req_reload = 0;
static volatile short sig_stopping = 0;
static volatile short sig_integrity_check = 0;
// SIGINT signal handler
void interrupt_handle(int s)
{
// Reload configuration
if (s == SIGHUP) {
sig_req_reload = 1;
return;
}
// Stop server
if (s == SIGINT || s == SIGTERM) {
if (sig_stopping == 0) {
sig_req_stop = 1;
sig_stopping = 1;
} else {
log_server_notice("OK! Exiting immediately.\n");
exit(1);
}
}
// Start zone integrity check
if (s == SIGCONT) {
sig_integrity_check = 1;
return;
}
}
void help(int argc, char **argv)
{
printf("Usage: %sd [parameters]\n",
PACKAGE_NAME);
printf("Parameters:\n"
" -c, --config [file] Select configuration file.\n"
" -z, --zone [origin] Inspected zone origin.\n"
" -d, --daemonize Run server as a daemon.\n"
" -v, --verbose Verbose mode - additional runtime information.\n"
" -V, --version Print version of the server.\n"
" -h, --help Print help and usage.\n");
}
int main(int argc, char **argv)
{
// Parse command line arguments
int check_iteration = 0;
int c = 0, li = 0;
int verbose = 0;
int daemonize = 0;
char* config_fn = NULL;
char *zone = NULL;
/* Long options. */
struct option opts[] = {
{"config", required_argument, 0, 'c'},
{"zone", required_argument, 0, 'z'},
{"daemonize", no_argument, 0, 'd'},
{"verbose", no_argument, 0, 'v'},
{"version", no_argument, 0, 'V'},
{"help", no_argument, 0, 'h'},
{0, 0, 0, 0}
};
while ((c = getopt_long(argc, argv, "c:z:dvVh", opts, &li)) != -1) {
switch (c)
{
case 'c':
config_fn = strdup(optarg);
break;
case 'd':
daemonize = 1;
break;
case 'v':
verbose = 1;
break;
case 'V':
printf("%s, version %s\n", "Knot DNS", PACKAGE_VERSION);
return 0;
case 'z':
zone = strdup(optarg);
break;
case 'h':
case '?':
default:
help(argc, argv);
return 1;
}
}
// Now check if we want to daemonize
if (daemonize) {
if (daemon(1, 0) != 0) {
free(zone);
free(config_fn);
fprintf(stderr, "Daemonization failed, "
"shutting down...\n");
return 1;
}
}
// Register service and signal handler
struct sigaction emptyset;
memset(&emptyset, 0, sizeof(struct sigaction));
emptyset.sa_handler = interrupt_handle;
sigemptyset(&emptyset.sa_mask);
emptyset.sa_flags = 0;
sigaction(SIGALRM, &emptyset, NULL); // Interrupt
// Setup event queue
evqueue_set(evqueue_new());
// Initialize log
log_init();
// Verbose mode
if (verbose) {
int mask = LOG_MASK(LOG_INFO)|LOG_MASK(LOG_DEBUG);
log_levels_add(LOGT_STDOUT, LOG_ANY, mask);
}
// Initialize pseudorandom number generator
srand(time(0));
// Create server
server_t *server = server_create();
// Initialize configuration
conf_read_lock();
conf_add_hook(conf(), CONF_LOG, log_conf_hook, 0);
conf_add_hook(conf(), CONF_LOG, zones_ns_conf_hook, server->nameserver);
conf_add_hook(conf(), CONF_LOG, server_conf_hook, server);
conf_read_unlock();
// Find implicit configuration file
if (!config_fn) {
config_fn = conf_find_default();
}
// Find absolute path for config file
if (config_fn[0] != '/')
{
// Get absolute path to cwd
size_t cwbuflen = 64;
char *cwbuf = malloc((cwbuflen + 2) * sizeof(char));
while (getcwd(cwbuf, cwbuflen) == 0) {
cwbuflen *= 2;
cwbuf = realloc(cwbuf, (cwbuflen + 2) * sizeof(char));
}
cwbuflen = strlen(cwbuf);
// Append ending slash
if (cwbuf[cwbuflen - 1] != '/') {
cwbuf = strncat(cwbuf, "/", 1);
}
// Assemble path to config file
char *abs_cfg = strcdup(cwbuf, config_fn);
free(config_fn);
free(cwbuf);
config_fn = abs_cfg;
}
// Open configuration
log_server_info("Reading configuration '%s' ...\n", config_fn);
int conf_ret = conf_open(config_fn);
if (conf_ret != KNOTD_EOK) {
if (conf_ret == KNOTD_ENOENT) {
log_server_error("Couldn't open configuration file "
"'%s'.\n", config_fn);
} else {
log_server_error("Failed to parse configuration '%s'.\n",
config_fn);
}
server_destroy(&server);
free(config_fn);
return 1;
} else {
log_server_info("Configured %d interfaces and %d zones.\n",
conf()->ifaces_count, conf()->zones_count);
}
log_server_info("\n");
// Create server instance
char* pidfile = pid_filename();
// Run server
int res = 0;
log_server_info("Starting server...\n");
if ((res = server_start(server)) == KNOTD_EOK) {
// Save PID
int has_pid = 1;
int rc = pid_write(pidfile);
if (rc < 0) {
has_pid = 0;
log_server_warning("Failed to create "
"PID file '%s'.\n", pidfile);
}
// Change directory if daemonized
if (daemonize) {
log_server_info("Server started as a daemon, "
"PID = %ld\n", (long)getpid());
res = chdir("/");
} else {
log_server_info("Server started in foreground, "
"PID = %ld\n", (long)getpid());
}
if (has_pid) {
log_server_info("PID stored in %s\n", pidfile);
} else {
log_server_warning("Server running without PID file.\n");
}
size_t zcount = server->nameserver->zone_db->zone_count;
if (!zcount) {
log_server_warning("Server started, but no zones served.\n");
}
// Setup signal handler
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = interrupt_handle;
sigemptyset(&sa.sa_mask);
sigaction(SIGINT, &sa, NULL);
sigaction(SIGTERM, &sa, NULL);
sigaction(SIGHUP, &sa, NULL);
sigaction(SIGCONT, &sa, NULL);
sa.sa_flags = 0;
pthread_sigmask(SIG_BLOCK, &sa.sa_mask, NULL);
/* Run event loop. */
for(;;) {
pthread_sigmask(SIG_UNBLOCK, &sa.sa_mask, NULL);
int ret = evqueue_poll(evqueue(), 0, 0);
pthread_sigmask(SIG_BLOCK, &sa.sa_mask, NULL);
/* Interrupts. */
/*! \todo More robust way to exit evloop.
* Event loop should exit with a special
* event.
*/
if (sig_req_stop) {
sig_req_stop = 0;
server_stop(server);
break;
}
if (sig_req_reload) {
log_server_info("Reloading configuration...\n");
sig_req_reload = 0;
int cf_ret = conf_open(config_fn);
switch (cf_ret) {
case KNOTD_EOK:
log_server_info("Configuration "
"reloaded.\n");
break;
case KNOTD_ENOENT:
log_server_error("Configuration "
"file '%s' "
"not found.\n",
conf()->filename);
break;
default:
log_server_error("Configuration "
"reload failed.\n");
break;
}
}
if (zone == NULL) sig_integrity_check = 0;
if (sig_integrity_check) {
log_server_info("Starting integrity check of zone: %s\n", zone);
knot_dname_t* zdn = knot_dname_new_from_str(zone, strlen(zone), NULL);
knot_zone_t *z = knot_zonedb_find_zone(server->nameserver->zone_db, zdn);
int ic_ret = knot_zone_contents_integrity_check(z->contents);
log_server_info("Integrity check: %d errors discovered.\n", ic_ret);
knot_dname_free(&zdn);
log_server_info("Integrity check %d finished.\n", check_iteration);
++check_iteration;
}
/* Events. */
if (ret > 0) {
event_t ev;
if (evqueue_get(evqueue(), &ev) == 0) {
dbg_server_verb("Event: "
"received new event.\n");
if (ev.cb) {
ev.cb(&ev);
}
}
}
}
pthread_sigmask(SIG_UNBLOCK, &sa.sa_mask, NULL);
if ((res = server_wait(server)) != KNOTD_EOK) {
log_server_error("An error occured while "
"waiting for server to finish.\n");
} else {
log_server_info("Server finished.\n");
}
} else {
log_server_fatal("An error occured while "
"starting the server.\n");
}
// Stop server and close log
server_destroy(&server);
// Remove PID file
if (pid_remove(pidfile) < 0) {
log_server_warning("Failed to remove PID file.\n");
}
log_server_info("Shut down.\n");
log_close();
free(pidfile);
// Destroy event loop
evqueue_t *q = evqueue();
evqueue_free(&q);
// Free default config filename if exists
free(zone);
free(config_fn);
if (!daemonize) {
fflush(stdout);
fflush(stderr);
}
return res;
}
|