2001-02-15 05:15:27 +00:00
|
|
|
/*
|
2018-02-23 09:53:12 +01:00
|
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2001-02-15 05:15:27 +00:00
|
|
|
*
|
2016-06-27 14:56:38 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2018-02-23 09:53:12 +01:00
|
|
|
*
|
|
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
|
|
* information regarding copyright ownership.
|
2001-02-15 05:15:27 +00:00
|
|
|
*/
|
|
|
|
|
2005-04-27 04:57:32 +00:00
|
|
|
|
|
|
|
/*! \file */
|
2001-02-15 05:15:27 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
2018-04-17 08:29:14 -07:00
|
|
|
#include <stdbool.h>
|
2001-02-15 05:15:27 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <isc/mem.h>
|
2015-05-23 14:21:51 +02:00
|
|
|
#include <isc/print.h>
|
2001-02-15 05:15:27 +00:00
|
|
|
#include <isc/string.h>
|
|
|
|
#include <isc/util.h>
|
|
|
|
|
2018-01-22 11:00:45 -08:00
|
|
|
#include <isccfg/grammar.h>
|
2002-01-04 02:32:16 +00:00
|
|
|
#include <isccfg/namedconf.h>
|
2001-02-15 05:15:27 +00:00
|
|
|
|
|
|
|
#include <dns/log.h>
|
|
|
|
|
|
|
|
static void
|
|
|
|
check_result(isc_result_t result, const char *format, ...) {
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
if (result == ISC_R_SUCCESS)
|
|
|
|
return;
|
|
|
|
|
|
|
|
va_start(args, format);
|
|
|
|
vfprintf(stderr, format, args);
|
|
|
|
va_end(args);
|
|
|
|
fprintf(stderr, ": %s\n", isc_result_totext(result));
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
output(void *closure, const char *text, int textlen) {
|
|
|
|
UNUSED(closure);
|
2011-09-05 18:00:22 +00:00
|
|
|
(void) fwrite(text, 1, textlen, stdout);
|
2001-02-15 05:15:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-10-22 23:50:31 +00:00
|
|
|
usage(void) {
|
2001-07-23 18:57:53 +00:00
|
|
|
fprintf(stderr, "usage: cfg_test --rndc|--named "
|
|
|
|
"[--grammar] [--memstats] conffile\n");
|
2001-02-15 05:15:27 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv) {
|
|
|
|
isc_result_t result;
|
|
|
|
isc_mem_t *mctx = NULL;
|
|
|
|
isc_log_t *lctx = NULL;
|
|
|
|
isc_logconfig_t *lcfg = NULL;
|
|
|
|
isc_logdestination_t destination;
|
|
|
|
cfg_parser_t *pctx = NULL;
|
|
|
|
cfg_obj_t *cfg = NULL;
|
2001-05-31 11:00:40 +00:00
|
|
|
cfg_type_t *type = NULL;
|
2018-04-17 08:29:14 -07:00
|
|
|
bool grammar = false;
|
|
|
|
bool memstats = false;
|
2001-06-29 18:36:13 +00:00
|
|
|
char *filename = NULL;
|
2018-01-22 11:00:45 -08:00
|
|
|
unsigned int zonetype = 0;
|
2001-02-15 05:15:27 +00:00
|
|
|
|
|
|
|
RUNTIME_CHECK(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
result = isc_log_create(mctx, &lctx, &lcfg);
|
|
|
|
check_result(result, "isc_log_create()");
|
|
|
|
isc_log_setcontext(lctx);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create and install the default channel.
|
|
|
|
*/
|
|
|
|
destination.file.stream = stderr;
|
|
|
|
destination.file.name = NULL;
|
|
|
|
destination.file.versions = ISC_LOG_ROLLNEVER;
|
|
|
|
destination.file.maximum_size = 0;
|
|
|
|
result = isc_log_createchannel(lcfg, "_default",
|
|
|
|
ISC_LOG_TOFILEDESC,
|
|
|
|
ISC_LOG_DYNAMIC,
|
|
|
|
&destination, ISC_LOG_PRINTTIME);
|
|
|
|
check_result(result, "isc_log_createchannel()");
|
|
|
|
result = isc_log_usechannel(lcfg, "_default", NULL, NULL);
|
|
|
|
check_result(result, "isc_log_usechannel()");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the initial debug level.
|
|
|
|
*/
|
|
|
|
isc_log_setdebuglevel(lctx, 2);
|
|
|
|
|
|
|
|
if (argc < 3)
|
|
|
|
usage();
|
|
|
|
|
2001-06-29 18:36:13 +00:00
|
|
|
while (argc > 1) {
|
|
|
|
if (strcmp(argv[1], "--grammar") == 0) {
|
2018-04-17 08:29:14 -07:00
|
|
|
grammar = true;
|
2018-01-22 11:00:45 -08:00
|
|
|
} else if (strcmp(argv[1], "--zonegrammar") == 0) {
|
|
|
|
argv++, argc--;
|
|
|
|
if (argc <= 1) {
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
if (strcmp(argv[1], "master") == 0 ||
|
|
|
|
strcmp(argv[1], "primary") == 0)
|
|
|
|
{
|
|
|
|
zonetype = CFG_ZONE_MASTER;
|
|
|
|
} else if (strcmp(argv[1], "slave") == 0 ||
|
|
|
|
strcmp(argv[1], "seconary") == 0)
|
|
|
|
{
|
|
|
|
zonetype = CFG_ZONE_SLAVE;
|
|
|
|
} else if (strcmp(argv[1], "stub") == 0) {
|
|
|
|
zonetype = CFG_ZONE_STUB;
|
|
|
|
} else if (strcmp(argv[1], "static-stub") == 0) {
|
|
|
|
zonetype = CFG_ZONE_STATICSTUB;
|
|
|
|
} else if (strcmp(argv[1], "hint") == 0) {
|
|
|
|
zonetype = CFG_ZONE_HINT;
|
|
|
|
} else if (strcmp(argv[1], "forward") == 0) {
|
|
|
|
zonetype = CFG_ZONE_FORWARD;
|
|
|
|
} else if (strcmp(argv[1], "redirect") == 0) {
|
|
|
|
zonetype = CFG_ZONE_REDIRECT;
|
|
|
|
} else if (strcmp(argv[1], "delegation-only") == 0) {
|
|
|
|
zonetype = CFG_ZONE_DELEGATION;
|
|
|
|
} else if (strcmp(argv[1], "in-view") == 0) {
|
|
|
|
zonetype = CFG_ZONE_INVIEW;
|
|
|
|
} else {
|
|
|
|
usage();
|
|
|
|
}
|
2001-06-29 18:36:13 +00:00
|
|
|
} else if (strcmp(argv[1], "--memstats") == 0) {
|
2018-04-17 08:29:14 -07:00
|
|
|
memstats = true;
|
2001-06-29 18:36:13 +00:00
|
|
|
} else if (strcmp(argv[1], "--named") == 0) {
|
|
|
|
type = &cfg_type_namedconf;
|
|
|
|
} else if (strcmp(argv[1], "--rndc") == 0) {
|
|
|
|
type = &cfg_type_rndcconf;
|
|
|
|
} else if (argv[1][0] == '-') {
|
|
|
|
usage();
|
|
|
|
} else {
|
|
|
|
filename = argv[1];
|
|
|
|
}
|
2009-03-02 23:47:43 +00:00
|
|
|
argv++, argc--;
|
2001-06-29 18:36:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (grammar) {
|
|
|
|
if (type == NULL)
|
|
|
|
usage();
|
|
|
|
cfg_print_grammar(type, output, NULL);
|
2018-01-22 11:00:45 -08:00
|
|
|
} else if (zonetype != 0) {
|
|
|
|
cfg_print_zonegrammar(zonetype, output, NULL);
|
2001-06-29 18:36:13 +00:00
|
|
|
} else {
|
|
|
|
if (type == NULL || filename == NULL)
|
|
|
|
usage();
|
|
|
|
RUNTIME_CHECK(cfg_parser_create(mctx, lctx, &pctx) == ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
result = cfg_parse_file(pctx, filename, type, &cfg);
|
|
|
|
|
|
|
|
fprintf(stderr, "read config: %s\n", isc_result_totext(result));
|
|
|
|
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
exit(1);
|
|
|
|
|
|
|
|
cfg_print(cfg, output, NULL);
|
|
|
|
|
|
|
|
cfg_obj_destroy(pctx, &cfg);
|
|
|
|
|
|
|
|
cfg_parser_destroy(&pctx);
|
|
|
|
}
|
2001-02-15 05:15:27 +00:00
|
|
|
|
|
|
|
isc_log_destroy(&lctx);
|
2001-06-29 18:36:13 +00:00
|
|
|
if (memstats)
|
|
|
|
isc_mem_stats(mctx, stderr);
|
2001-02-15 05:15:27 +00:00
|
|
|
isc_mem_destroy(&mctx);
|
|
|
|
|
2009-03-02 02:42:50 +00:00
|
|
|
fflush(stdout);
|
|
|
|
if (ferror(stdout)) {
|
|
|
|
fprintf(stderr, "write error\n");
|
|
|
|
return (1);
|
|
|
|
} else
|
|
|
|
return (0);
|
2001-02-15 05:15:27 +00:00
|
|
|
}
|