summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2014-07-30 20:12:08 +0200
committerKarolin Seeger <kseeger@samba.org>2014-09-08 07:49:10 +0200
commit8de4f4837d6954efe62b24ccfdfc37788930849b (patch)
tree0f6364ace7482182ea8bb9358d31343ef676b87e /source4
parentf20179bf51ff320d24017c681801f03020d19586 (diff)
downloadsamba-8de4f4837d6954efe62b24ccfdfc37788930849b.tar.gz
s4:dlz_bind9: let dlz_bind9 use dns_common_lookup() before removing records
Bug: https://bugzilla.samba.org/show_bug.cgi?id=10749 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> (cherry picked from commit 11bbfd932c113b3222bc93d59702271a3777b6f3)
Diffstat (limited to 'source4')
-rw-r--r--source4/dns_server/dlz_bind9.c53
1 files changed, 7 insertions, 46 deletions
diff --git a/source4/dns_server/dlz_bind9.c b/source4/dns_server/dlz_bind9.c
index b65545cdfb4..460976e32d7 100644
--- a/source4/dns_server/dlz_bind9.c
+++ b/source4/dns_server/dlz_bind9.c
@@ -1578,12 +1578,9 @@ _PUBLIC_ isc_result_t dlz_subrdataset(const char *name, const char *rdatastr, vo
struct dnsp_DnssrvRpcRecord *rec;
struct ldb_dn *dn;
isc_result_t result;
- struct ldb_result *res;
- const char *attrs[] = { "dnsRecord", NULL };
- int ret, i;
- struct ldb_message_element *el;
struct dnsp_DnssrvRpcRecord *recs = NULL;
uint16_t num_recs = 0;
+ uint16_t i;
WERROR werr;
if (state->transaction_token != (void*)version) {
@@ -1610,28 +1607,11 @@ _PUBLIC_ isc_result_t dlz_subrdataset(const char *name, const char *rdatastr, vo
}
/* get the existing records */
- ret = ldb_search(state->samdb, rec, &res, dn, LDB_SCOPE_BASE, attrs, "objectClass=dnsNode");
- if (ret == LDB_ERR_NO_SUCH_OBJECT) {
- talloc_free(rec);
- return ISC_R_NOTFOUND;
- }
-
- /* there are existing records. We need to see if any match
- */
- el = ldb_msg_find_element(res->msgs[0], "dnsRecord");
- if (el == NULL || el->num_values == 0) {
- state->log(ISC_LOG_ERROR, "samba_dlz: no dnsRecord attribute for %s",
- ldb_dn_get_linearized(dn));
- talloc_free(rec);
- return ISC_R_FAILURE;
- }
-
- werr = dns_common_extract(el, rec, &recs, &num_recs);
+ werr = dns_common_lookup(state->samdb, rec, dn,
+ &recs, &num_recs, NULL);
if (!W_ERROR_IS_OK(werr)) {
- state->log(ISC_LOG_ERROR, "samba_dlz: failed to parse dnsRecord for %s, %s",
- ldb_dn_get_linearized(dn), win_errstr(werr));
talloc_free(rec);
- return ISC_R_FAILURE;
+ return ISC_R_NOTFOUND;
}
for (i=0; i < num_recs; i++) {
@@ -1681,10 +1661,6 @@ _PUBLIC_ isc_result_t dlz_delrdataset(const char *name, const char *type, void *
TALLOC_CTX *tmp_ctx;
struct ldb_dn *dn;
isc_result_t result;
- struct ldb_result *res;
- const char *attrs[] = { "dnsRecord", NULL };
- int ret;
- struct ldb_message_element *el;
enum dns_record_type dns_type;
bool found = false;
struct dnsp_DnssrvRpcRecord *recs = NULL;
@@ -1712,26 +1688,11 @@ _PUBLIC_ isc_result_t dlz_delrdataset(const char *name, const char *type, void *
}
/* get the existing records */
- ret = ldb_search(state->samdb, tmp_ctx, &res, dn, LDB_SCOPE_BASE, attrs, "objectClass=dnsNode");
- if (ret == LDB_ERR_NO_SUCH_OBJECT) {
- talloc_free(tmp_ctx);
- return ISC_R_NOTFOUND;
- }
-
- /* there are existing records. We need to see if any match the type
- */
- el = ldb_msg_find_element(res->msgs[0], "dnsRecord");
- if (el == NULL || el->num_values == 0) {
- talloc_free(tmp_ctx);
- return ISC_R_NOTFOUND;
- }
-
- werr = dns_common_extract(el, tmp_ctx, &recs, &num_recs);
+ werr = dns_common_lookup(state->samdb, tmp_ctx, dn,
+ &recs, &num_recs, NULL);
if (!W_ERROR_IS_OK(werr)) {
- state->log(ISC_LOG_ERROR, "samba_dlz: failed to parse dnsRecord for %s, %s",
- ldb_dn_get_linearized(dn), win_errstr(werr));
talloc_free(tmp_ctx);
- return ISC_R_FAILURE;
+ return ISC_R_NOTFOUND;
}
for (ri=0; ri < num_recs; ri++) {