mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
1612. [bug] check-names at the option/view level could trigger
an INSIST. [RT# 11116]
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -18,7 +18,8 @@
|
|||||||
Missing #ifdef ISC_PLATFORM_HAVEIFNAMETOINDEX/#endif.
|
Missing #ifdef ISC_PLATFORM_HAVEIFNAMETOINDEX/#endif.
|
||||||
[RT #11119]
|
[RT #11119]
|
||||||
|
|
||||||
1612. [placeholder] rt11116
|
1612. [bug] check-names at the option/view level could trigger
|
||||||
|
an INSIST. [RT# 11116]
|
||||||
|
|
||||||
1611. [bug] solaris: IPv6 interface scanning failed to cope with
|
1611. [bug] solaris: IPv6 interface scanning failed to cope with
|
||||||
no active IPv6 interfaces.
|
no active IPv6 interfaces.
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: config.c,v 1.48 2004/04/19 23:09:51 marka Exp $ */
|
/* $Id: config.c,v 1.49 2004/04/20 14:11:46 marka Exp $ */
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -206,6 +206,41 @@ ns_config_get(cfg_obj_t **maps, const char* name, cfg_obj_t **obj) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
isc_result_t
|
||||||
|
ns_checknames_get(cfg_obj_t **maps, const char *which, cfg_obj_t **obj) {
|
||||||
|
cfg_listelt_t *element;
|
||||||
|
cfg_obj_t *checknames;
|
||||||
|
cfg_obj_t *type;
|
||||||
|
cfg_obj_t *value;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
for (i = 0;; i++) {
|
||||||
|
if (maps[i] == NULL)
|
||||||
|
return (ISC_R_NOTFOUND);
|
||||||
|
checknames = NULL;
|
||||||
|
if (cfg_map_get(maps[i], "check-names", &checknames) == ISC_R_SUCCESS) {
|
||||||
|
/*
|
||||||
|
* Zone map entry is not a list.
|
||||||
|
*/
|
||||||
|
if (checknames != NULL && !cfg_obj_islist(checknames)) {
|
||||||
|
*obj = checknames;
|
||||||
|
return (ISC_R_SUCCESS);
|
||||||
|
}
|
||||||
|
for (element = cfg_list_first(checknames);
|
||||||
|
element != NULL;
|
||||||
|
element = cfg_list_next(element)) {
|
||||||
|
value = cfg_listelt_value(element);
|
||||||
|
type = cfg_tuple_get(value, "type");
|
||||||
|
if (strcasecmp(cfg_obj_asstring(type), which) == 0) {
|
||||||
|
*obj = cfg_tuple_get(value, "mode");
|
||||||
|
return (ISC_R_SUCCESS);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
ns_config_listcount(cfg_obj_t *list) {
|
ns_config_listcount(cfg_obj_t *list) {
|
||||||
cfg_listelt_t *e;
|
cfg_listelt_t *e;
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: config.h,v 1.6 2004/03/05 04:57:55 marka Exp $ */
|
/* $Id: config.h,v 1.7 2004/04/20 14:11:47 marka Exp $ */
|
||||||
|
|
||||||
#ifndef NAMED_CONFIG_H
|
#ifndef NAMED_CONFIG_H
|
||||||
#define NAMED_CONFIG_H 1
|
#define NAMED_CONFIG_H 1
|
||||||
@@ -31,6 +31,9 @@ ns_config_parsedefaults(cfg_parser_t *parser, cfg_obj_t **conf);
|
|||||||
isc_result_t
|
isc_result_t
|
||||||
ns_config_get(cfg_obj_t **maps, const char* name, cfg_obj_t **obj);
|
ns_config_get(cfg_obj_t **maps, const char* name, cfg_obj_t **obj);
|
||||||
|
|
||||||
|
isc_result_t
|
||||||
|
ns_checknames_get(cfg_obj_t **maps, const char* name, cfg_obj_t **obj);
|
||||||
|
|
||||||
int
|
int
|
||||||
ns_config_listcount(cfg_obj_t *list);
|
ns_config_listcount(cfg_obj_t *list);
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: server.c,v 1.424 2004/04/20 07:16:23 marka Exp $ */
|
/* $Id: server.c,v 1.425 2004/04/20 14:11:46 marka Exp $ */
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -857,21 +857,10 @@ configure_view(dns_view_t *view, cfg_obj_t *config, cfg_obj_t *vconfig,
|
|||||||
* Check-names.
|
* Check-names.
|
||||||
*/
|
*/
|
||||||
obj = NULL;
|
obj = NULL;
|
||||||
str = "";
|
result = ns_checknames_get(maps, "response", &obj);
|
||||||
result = ns_config_get(maps, "check-names", &obj);
|
|
||||||
INSIST(result == ISC_R_SUCCESS);
|
INSIST(result == ISC_R_SUCCESS);
|
||||||
for (element = cfg_list_first(obj);
|
|
||||||
element != NULL;
|
|
||||||
element = cfg_list_next(element)) {
|
|
||||||
cfg_obj_t *value, *type;
|
|
||||||
value = cfg_listelt_value(element);
|
|
||||||
type = cfg_tuple_get(value, "type");
|
|
||||||
if (strcasecmp(cfg_obj_asstring(type), "response") == 0) {
|
|
||||||
str = cfg_obj_asstring(cfg_tuple_get(value, "mode"));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
str = cfg_obj_asstring(obj);
|
||||||
if (strcasecmp(str, "fail") == 0) {
|
if (strcasecmp(str, "fail") == 0) {
|
||||||
check = DNS_RESOLVER_CHECKNAMES |
|
check = DNS_RESOLVER_CHECKNAMES |
|
||||||
DNS_RESOLVER_CHECKNAMESFAIL;
|
DNS_RESOLVER_CHECKNAMESFAIL;
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: zoneconf.c,v 1.111 2004/03/30 02:13:43 marka Exp $ */
|
/* $Id: zoneconf.c,v 1.112 2004/04/20 14:11:46 marka Exp $ */
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -295,11 +295,7 @@ strtoargv(isc_mem_t *mctx, char *s, unsigned int *argcp, char ***argvp) {
|
|||||||
static void
|
static void
|
||||||
checknames(dns_zonetype_t ztype, cfg_obj_t **maps, cfg_obj_t **objp) {
|
checknames(dns_zonetype_t ztype, cfg_obj_t **maps, cfg_obj_t **objp) {
|
||||||
const char *zone = NULL;
|
const char *zone = NULL;
|
||||||
cfg_listelt_t *element;
|
isc_result_t result;
|
||||||
cfg_obj_t *type;
|
|
||||||
cfg_obj_t *value;
|
|
||||||
cfg_obj_t *check;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
switch (ztype) {
|
switch (ztype) {
|
||||||
case dns_zone_slave: zone = "slave"; break;
|
case dns_zone_slave: zone = "slave"; break;
|
||||||
@@ -307,24 +303,8 @@ checknames(dns_zonetype_t ztype, cfg_obj_t **maps, cfg_obj_t **objp) {
|
|||||||
default:
|
default:
|
||||||
INSIST(0);
|
INSIST(0);
|
||||||
}
|
}
|
||||||
for (i = 0; maps[i] != NULL; i++) {
|
result = ns_checknames_get(maps, zone, objp);
|
||||||
check = NULL;
|
INSIST(result == ISC_R_SUCCESS);
|
||||||
cfg_map_get(maps[i], "check-names", &check);
|
|
||||||
if (check != NULL && !cfg_obj_islist(check)) {
|
|
||||||
*objp = check;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
for (element = cfg_list_first(check);
|
|
||||||
element != NULL;
|
|
||||||
element = cfg_list_next(element)) {
|
|
||||||
value = cfg_listelt_value(element);
|
|
||||||
type = cfg_tuple_get(value, "type");
|
|
||||||
if (strcasecmp(cfg_obj_asstring(type), zone) == 0) {
|
|
||||||
*objp = cfg_tuple_get(value, "mode");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
isc_result_t
|
isc_result_t
|
||||||
|
Reference in New Issue
Block a user