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
|
/* 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/>.
*/
#include <config.h>
#include <unistd.h>
#include <stdlib.h>
#include "zcompile/zcompile.h"
#include "zcompile/zcompile-error.h"
#include "common/errors.h"
#include <config.h>
static void help(int argc, char **argv)
{
printf("Usage: %s [parameters] origin zonefile\n",
argv[0]);
printf("Parameters:\n"
" -o <outfile> Override output file.\n"
" -v Verbose mode - additional runtime information.\n"
" -s Enable semantic checks.\n"
" -V Print version of the server.\n"
" -h Print help and usage.\n");
}
int main(int argc, char **argv)
{
// Parse command line arguments
int c = 0;
int verbose = 0;
int semantic_checks = 0;
const char* origin = 0;
const char* zonefile = 0;
const char* outfile = 0;
while ((c = getopt (argc, argv, "o:vVsh")) != -1) {
switch (c)
{
case 'o':
outfile = optarg;
break;
case 'v':
verbose = 1;
break;
case 'V':
printf("%s, version %s\n", "Knot DNS", PACKAGE_VERSION);
return 0;
case 's':
semantic_checks = 1;
break;
case 'h':
case '?':
default:
if (optopt == 'o') {
fprintf (stderr,
"Option -%c requires an argument.\n",
optopt);
}
help(argc, argv);
return 1;
}
}
UNUSED(verbose);
// Check if there's at least two remaining non-option
if (argc - optind < 2) {
help(argc, argv);
return 1;
}
origin = argv[optind];
zonefile = argv[optind + 1];
// Initialize log (no output)
//log_init(0);
//log_levels_set(LOGT_STDOUT, LOG_ANY, LOG_MASK(LOG_DEBUG));
printf("Parsing file '%s', origin '%s' ...\n",
zonefile, origin);
parser = zparser_create();
if (!parser) {
fprintf(stderr, "Failed to create parser.\n");
//log_close();
return 1;
}
int error = zone_read(origin, zonefile, outfile, semantic_checks);
if (error) {
/* FIXME! */
// if (error < 0) {
// fprintf(stderr, "Finished with error: %s.\n",
// error_to_str(knot_zcompile_error_msgs, error));
// } else {
// fprintf(stderr, "Finished with %u errors.\n");
// }
} else {
printf("Compilation successful.\n");
}
//log_close();
return error;
}
|