mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 06:25:31 +00:00
[master] prevent reload failure due to LMDB database perms
4638. [bug] Reloading or reconfiguring named could fail on some platforms when LMDB was in use. [RT #45203]
This commit is contained in:
@@ -236,6 +236,7 @@ dns_view_create(isc_mem_t *mctx, dns_rdataclass_t rdclass,
|
||||
view->new_zone_file = NULL;
|
||||
view->new_zone_db = NULL;
|
||||
view->new_zone_dbenv = NULL;
|
||||
view->new_zone_mapsize = 0ULL;
|
||||
view->new_zone_config = NULL;
|
||||
view->cfg_destroy = NULL;
|
||||
view->fail_ttl = 0;
|
||||
@@ -2038,7 +2039,7 @@ isc_result_t
|
||||
dns_view_setnewzones(dns_view_t *view, isc_boolean_t allow, void *cfgctx,
|
||||
void (*cfg_destroy)(void **), isc_uint64_t mapsize)
|
||||
{
|
||||
isc_result_t result;
|
||||
isc_result_t result = ISC_R_SUCCESS;
|
||||
char buffer[1024];
|
||||
#ifdef HAVE_LMDB
|
||||
MDB_env *env = NULL;
|
||||
@@ -2078,27 +2079,21 @@ dns_view_setnewzones(dns_view_t *view, isc_boolean_t allow, void *cfgctx,
|
||||
return (ISC_R_SUCCESS);
|
||||
}
|
||||
|
||||
result = nz_legacy(view->new_zone_dir, view->name, "nzf",
|
||||
buffer, sizeof(buffer));
|
||||
if (result != ISC_R_SUCCESS)
|
||||
goto out;
|
||||
CHECK(nz_legacy(view->new_zone_dir, view->name, "nzf",
|
||||
buffer, sizeof(buffer)));
|
||||
|
||||
view->new_zone_file = isc_mem_strdup(view->mctx, buffer);
|
||||
if (view->new_zone_file == NULL) {
|
||||
result = ISC_R_NOMEMORY;
|
||||
goto out;
|
||||
CHECK(ISC_R_NOMEMORY);
|
||||
}
|
||||
|
||||
#ifdef HAVE_LMDB
|
||||
result = nz_legacy(view->new_zone_dir, view->name, "nzd",
|
||||
buffer, sizeof(buffer));
|
||||
if (result != ISC_R_SUCCESS)
|
||||
goto out;
|
||||
CHECK(nz_legacy(view->new_zone_dir, view->name, "nzd",
|
||||
buffer, sizeof(buffer)));
|
||||
|
||||
view->new_zone_db = isc_mem_strdup(view->mctx, buffer);
|
||||
if (view->new_zone_db == NULL) {
|
||||
result = ISC_R_NOMEMORY;
|
||||
goto out;
|
||||
CHECK(ISC_R_NOMEMORY);
|
||||
}
|
||||
|
||||
status = mdb_env_create(&env);
|
||||
@@ -2107,19 +2102,18 @@ dns_view_setnewzones(dns_view_t *view, isc_boolean_t allow, void *cfgctx,
|
||||
ISC_LOGMODULE_OTHER, ISC_LOG_ERROR,
|
||||
"mdb_env_create failed: %s",
|
||||
mdb_strerror(status));
|
||||
result = ISC_R_FAILURE;
|
||||
goto out;
|
||||
CHECK(ISC_R_FAILURE);
|
||||
}
|
||||
|
||||
if (mapsize != 0ULL) {
|
||||
status = mdb_env_set_mapsize(env, mapsize);
|
||||
view->new_zone_mapsize = mapsize;
|
||||
if (status != 0) {
|
||||
isc_log_write(dns_lctx, DNS_LOGCATEGORY_GENERAL,
|
||||
ISC_LOGMODULE_OTHER, ISC_LOG_ERROR,
|
||||
"mdb_env_set_mapsize failed: %s",
|
||||
mdb_strerror(status));
|
||||
result = ISC_R_FAILURE;
|
||||
goto out;
|
||||
CHECK(ISC_R_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2130,8 +2124,7 @@ dns_view_setnewzones(dns_view_t *view, isc_boolean_t allow, void *cfgctx,
|
||||
ISC_LOGMODULE_OTHER, ISC_LOG_ERROR,
|
||||
"mdb_env_open of '%s' failed: %s",
|
||||
view->new_zone_db, mdb_strerror(status));
|
||||
result = ISC_R_FAILURE;
|
||||
goto out;
|
||||
CHECK(ISC_R_FAILURE);
|
||||
}
|
||||
|
||||
view->new_zone_dbenv = env;
|
||||
@@ -2141,7 +2134,7 @@ dns_view_setnewzones(dns_view_t *view, isc_boolean_t allow, void *cfgctx,
|
||||
view->new_zone_config = cfgctx;
|
||||
view->cfg_destroy = cfg_destroy;
|
||||
|
||||
out:
|
||||
cleanup:
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
if (view->new_zone_file != NULL) {
|
||||
isc_mem_free(view->mctx, view->new_zone_file);
|
||||
|
Reference in New Issue
Block a user