2 Unix SMB/CIFS implementation.
4 bind9 dlz driver for Samba
6 Copyright (C) 2010 Andrew Tridgell
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "param/param.h"
25 #include "lib/events/events.h"
26 #include "dsdb/samdb/samdb.h"
27 #include "dsdb/common/util.h"
28 #include "auth/auth.h"
29 #include "auth/session.h"
30 #include "auth/gensec/gensec.h"
31 #include "librpc/gen_ndr/security.h"
32 #include "auth/credentials/credentials.h"
33 #include "system/kerberos.h"
34 #include "auth/kerberos/kerberos.h"
35 #include "gen_ndr/ndr_dnsp.h"
36 #include "gen_ndr/server_id.h"
37 #include "messaging/messaging.h"
39 #include "lib/util/dlinklist.h"
40 #include "dlz_minimal.h"
41 #include "dns_server/dnsserver_common.h"
50 struct b9_zone
*prev
, *next
;
53 struct dlz_bind9_data
{
54 struct b9_options options
;
55 struct ldb_context
*samdb
;
56 struct tevent_context
*ev_ctx
;
57 struct loadparm_context
*lp
;
58 int *transaction_token
;
60 struct b9_zone
*zonelist
;
62 /* Used for dynamic update */
63 struct smb_krb5_context
*smb_krb5_ctx
;
64 struct auth4_context
*auth_context
;
65 struct auth_session_info
*session_info
;
68 /* helper functions from the dlz_dlopen driver */
70 dns_sdlz_putrr_t
*putrr
;
71 dns_sdlz_putnamedrr_t
*putnamedrr
;
72 dns_dlz_writeablezone_t
*writeable_zone
;
75 static struct dlz_bind9_data
*dlz_bind9_state
= NULL
;
76 static int dlz_bind9_state_ref_count
= 0;
78 static const char *zone_prefixes
[] = {
79 "CN=MicrosoftDNS,DC=DomainDnsZones",
80 "CN=MicrosoftDNS,DC=ForestDnsZones",
81 "CN=MicrosoftDNS,CN=System",
86 return the version of the API
88 _PUBLIC_
int dlz_version(unsigned int *flags
)
90 return DLZ_DLOPEN_VERSION
;
94 remember a helper function from the bind9 dlz_dlopen driver
96 static void b9_add_helper(struct dlz_bind9_data
*state
, const char *helper_name
, void *ptr
)
98 if (strcmp(helper_name
, "log") == 0) {
101 if (strcmp(helper_name
, "putrr") == 0) {
104 if (strcmp(helper_name
, "putnamedrr") == 0) {
105 state
->putnamedrr
= ptr
;
107 if (strcmp(helper_name
, "writeable_zone") == 0) {
108 state
->writeable_zone
= ptr
;
113 * Add a trailing '.' if it's missing
115 static const char *b9_format_fqdn(TALLOC_CTX
*mem_ctx
, const char *str
)
120 if (str
== NULL
|| str
[0] == '\0') {
125 if (str
[len
-1] != '.') {
126 tmp
= talloc_asprintf(mem_ctx
, "%s.", str
);
134 format a record for bind9
136 static bool b9_format(struct dlz_bind9_data
*state
,
138 struct dnsp_DnssrvRpcRecord
*rec
,
139 const char **type
, const char **data
)
145 switch (rec
->wType
) {
148 *data
= rec
->data
.ipv4
;
153 *data
= rec
->data
.ipv6
;
158 *data
= b9_format_fqdn(mem_ctx
, rec
->data
.cname
);
163 tmp
= talloc_asprintf(mem_ctx
, "\"%s\"", rec
->data
.txt
.str
[0]);
164 for (i
=1; i
<rec
->data
.txt
.count
; i
++) {
165 tmp
= talloc_asprintf_append(tmp
, " \"%s\"", rec
->data
.txt
.str
[i
]);
172 *data
= b9_format_fqdn(mem_ctx
, rec
->data
.ptr
);
177 fqdn
= b9_format_fqdn(mem_ctx
, rec
->data
.srv
.nameTarget
);
181 *data
= talloc_asprintf(mem_ctx
, "%u %u %u %s",
182 rec
->data
.srv
.wPriority
,
183 rec
->data
.srv
.wWeight
,
190 fqdn
= b9_format_fqdn(mem_ctx
, rec
->data
.mx
.nameTarget
);
194 *data
= talloc_asprintf(mem_ctx
, "%u %s",
195 rec
->data
.mx
.wPriority
, fqdn
);
200 *data
= talloc_asprintf(mem_ctx
, "%s %s",
207 *data
= b9_format_fqdn(mem_ctx
, rec
->data
.ns
);
214 /* we need to fake the authoritative nameserver to
215 * point at ourselves. This is how AD DNS servers
216 * force clients to send updates to the right local DC
218 mname
= talloc_asprintf(mem_ctx
, "%s.%s.",
219 lpcfg_netbios_name(state
->lp
),
220 lpcfg_dnsdomain(state
->lp
));
224 mname
= strlower_talloc(mem_ctx
, mname
);
229 fqdn
= b9_format_fqdn(mem_ctx
, rec
->data
.soa
.rname
);
234 state
->soa_serial
= rec
->data
.soa
.serial
;
236 *data
= talloc_asprintf(mem_ctx
, "%s %s %u %u %u %u %u",
238 rec
->data
.soa
.serial
,
239 rec
->data
.soa
.refresh
,
241 rec
->data
.soa
.expire
,
242 rec
->data
.soa
.minimum
);
247 state
->log(ISC_LOG_ERROR
, "samba_dlz b9_format: unhandled record type %u",
255 static const struct {
256 enum dns_record_type dns_type
;
260 { DNS_TYPE_A
, "A" , false},
261 { DNS_TYPE_AAAA
, "AAAA" , false},
262 { DNS_TYPE_CNAME
, "CNAME" , true},
263 { DNS_TYPE_TXT
, "TXT" , false},
264 { DNS_TYPE_PTR
, "PTR" , false},
265 { DNS_TYPE_SRV
, "SRV" , false},
266 { DNS_TYPE_MX
, "MX" , false},
267 { DNS_TYPE_HINFO
, "HINFO" , false},
268 { DNS_TYPE_NS
, "NS" , false},
269 { DNS_TYPE_SOA
, "SOA" , true},
274 see if a DNS type is single valued
276 static bool b9_single_valued(enum dns_record_type dns_type
)
279 for (i
=0; i
<ARRAY_SIZE(dns_typemap
); i
++) {
280 if (dns_typemap
[i
].dns_type
== dns_type
) {
281 return dns_typemap
[i
].single_valued
;
288 see if a DNS type is single valued
290 static bool b9_dns_type(const char *type
, enum dns_record_type
*dtype
)
293 for (i
=0; i
<ARRAY_SIZE(dns_typemap
); i
++) {
294 if (strcasecmp(dns_typemap
[i
].typestr
, type
) == 0) {
295 *dtype
= dns_typemap
[i
].dns_type
;
303 #define DNS_PARSE_STR(ret, str, sep, saveptr) do { \
304 (ret) = strtok_r(str, sep, &saveptr); \
305 if ((ret) == NULL) return false; \
308 #define DNS_PARSE_UINT(ret, str, sep, saveptr) do { \
309 char *istr = strtok_r(str, sep, &saveptr); \
310 if ((istr) == NULL) return false; \
311 (ret) = strtoul(istr, NULL, 10); \
315 parse a record from bind9
317 static bool b9_parse(struct dlz_bind9_data
*state
,
318 const char *rdatastr
,
319 struct dnsp_DnssrvRpcRecord
*rec
)
321 char *full_name
, *dclass
, *type
;
322 char *str
, *tmp
, *saveptr
=NULL
;
325 str
= talloc_strdup(rec
, rdatastr
);
330 /* parse the SDLZ string form */
331 DNS_PARSE_STR(full_name
, str
, "\t", saveptr
);
332 DNS_PARSE_UINT(rec
->dwTtlSeconds
, NULL
, "\t", saveptr
);
333 DNS_PARSE_STR(dclass
, NULL
, "\t", saveptr
);
334 DNS_PARSE_STR(type
, NULL
, "\t", saveptr
);
336 /* construct the record */
337 for (i
=0; i
<ARRAY_SIZE(dns_typemap
); i
++) {
338 if (strcasecmp(type
, dns_typemap
[i
].typestr
) == 0) {
339 rec
->wType
= dns_typemap
[i
].dns_type
;
343 if (i
== ARRAY_SIZE(dns_typemap
)) {
344 state
->log(ISC_LOG_ERROR
, "samba_dlz: unsupported record type '%s' for '%s'",
349 switch (rec
->wType
) {
351 DNS_PARSE_STR(rec
->data
.ipv4
, NULL
, " ", saveptr
);
355 DNS_PARSE_STR(rec
->data
.ipv6
, NULL
, " ", saveptr
);
359 DNS_PARSE_STR(rec
->data
.cname
, NULL
, " ", saveptr
);
363 rec
->data
.txt
.count
= 0;
364 rec
->data
.txt
.str
= talloc_array(rec
, const char *, rec
->data
.txt
.count
);
365 tmp
= strtok_r(NULL
, "\t", &saveptr
);
367 rec
->data
.txt
.str
= talloc_realloc(rec
, rec
->data
.txt
.str
, const char *,
368 rec
->data
.txt
.count
+1);
371 rec
->data
.txt
.str
[rec
->data
.txt
.count
] = talloc_strndup(rec
, &tmp
[1], strlen(tmp
)-2);
373 rec
->data
.txt
.str
[rec
->data
.txt
.count
] = talloc_strdup(rec
, tmp
);
375 rec
->data
.txt
.count
++;
376 tmp
= strtok_r(NULL
, " ", &saveptr
);
381 DNS_PARSE_STR(rec
->data
.ptr
, NULL
, " ", saveptr
);
385 DNS_PARSE_UINT(rec
->data
.srv
.wPriority
, NULL
, " ", saveptr
);
386 DNS_PARSE_UINT(rec
->data
.srv
.wWeight
, NULL
, " ", saveptr
);
387 DNS_PARSE_UINT(rec
->data
.srv
.wPort
, NULL
, " ", saveptr
);
388 DNS_PARSE_STR(rec
->data
.srv
.nameTarget
, NULL
, " ", saveptr
);
392 DNS_PARSE_UINT(rec
->data
.mx
.wPriority
, NULL
, " ", saveptr
);
393 DNS_PARSE_STR(rec
->data
.mx
.nameTarget
, NULL
, " ", saveptr
);
397 DNS_PARSE_STR(rec
->data
.hinfo
.cpu
, NULL
, " ", saveptr
);
398 DNS_PARSE_STR(rec
->data
.hinfo
.os
, NULL
, " ", saveptr
);
402 DNS_PARSE_STR(rec
->data
.ns
, NULL
, " ", saveptr
);
406 DNS_PARSE_STR(rec
->data
.soa
.mname
, NULL
, " ", saveptr
);
407 DNS_PARSE_STR(rec
->data
.soa
.rname
, NULL
, " ", saveptr
);
408 DNS_PARSE_UINT(rec
->data
.soa
.serial
, NULL
, " ", saveptr
);
409 DNS_PARSE_UINT(rec
->data
.soa
.refresh
, NULL
, " ", saveptr
);
410 DNS_PARSE_UINT(rec
->data
.soa
.retry
, NULL
, " ", saveptr
);
411 DNS_PARSE_UINT(rec
->data
.soa
.expire
, NULL
, " ", saveptr
);
412 DNS_PARSE_UINT(rec
->data
.soa
.minimum
, NULL
, " ", saveptr
);
416 state
->log(ISC_LOG_ERROR
, "samba_dlz b9_parse: unhandled record type %u",
421 /* we should be at the end of the buffer now */
422 if (strtok_r(NULL
, "\t ", &saveptr
) != NULL
) {
423 state
->log(ISC_LOG_ERROR
, "samba_dlz b9_parse: unexpected data at end of string for '%s'",
432 send a resource record to bind9
434 static isc_result_t
b9_putrr(struct dlz_bind9_data
*state
,
435 void *handle
, struct dnsp_DnssrvRpcRecord
*rec
,
439 const char *type
, *data
;
440 TALLOC_CTX
*tmp_ctx
= talloc_new(state
);
442 if (!b9_format(state
, tmp_ctx
, rec
, &type
, &data
)) {
443 return ISC_R_FAILURE
;
447 talloc_free(tmp_ctx
);
448 return ISC_R_NOMEMORY
;
453 for (i
=0; types
[i
]; i
++) {
454 if (strcmp(types
[i
], type
) == 0) break;
456 if (types
[i
] == NULL
) {
458 return ISC_R_SUCCESS
;
462 result
= state
->putrr(handle
, type
, rec
->dwTtlSeconds
, data
);
463 if (result
!= ISC_R_SUCCESS
) {
464 state
->log(ISC_LOG_ERROR
, "Failed to put rr");
466 talloc_free(tmp_ctx
);
472 send a named resource record to bind9
474 static isc_result_t
b9_putnamedrr(struct dlz_bind9_data
*state
,
475 void *handle
, const char *name
,
476 struct dnsp_DnssrvRpcRecord
*rec
)
479 const char *type
, *data
;
480 TALLOC_CTX
*tmp_ctx
= talloc_new(state
);
482 if (!b9_format(state
, tmp_ctx
, rec
, &type
, &data
)) {
483 return ISC_R_FAILURE
;
487 talloc_free(tmp_ctx
);
488 return ISC_R_NOMEMORY
;
491 result
= state
->putnamedrr(handle
, name
, type
, rec
->dwTtlSeconds
, data
);
492 if (result
!= ISC_R_SUCCESS
) {
493 state
->log(ISC_LOG_ERROR
, "Failed to put named rr '%s'", name
);
495 talloc_free(tmp_ctx
);
502 static isc_result_t
parse_options(struct dlz_bind9_data
*state
,
503 unsigned int argc
, const char **argv
,
504 struct b9_options
*options
)
508 struct poptOption long_options
[] = {
509 { "url", 'H', POPT_ARG_STRING
, &options
->url
, 0, "database URL", "URL" },
510 { "debug", 'd', POPT_ARG_STRING
, &options
->debug
, 0, "debug level", "DEBUG" },
514 pc
= poptGetContext("dlz_bind9", argc
, argv
, long_options
,
515 POPT_CONTEXT_KEEP_FIRST
);
516 while ((opt
= poptGetNextOpt(pc
)) != -1) {
519 state
->log(ISC_LOG_ERROR
, "dlz_bind9: Invalid option %s: %s",
520 poptBadOption(pc
, 0), poptStrerror(opt
));
521 return ISC_R_FAILURE
;
525 return ISC_R_SUCCESS
;
530 * Create session info from PAC
531 * This is called as auth_context->generate_session_info_pac()
533 static NTSTATUS
b9_generate_session_info_pac(struct auth4_context
*auth_context
,
535 struct smb_krb5_context
*smb_krb5_context
,
537 const char *principal_name
,
538 const struct tsocket_address
*remote_addr
,
539 uint32_t session_info_flags
,
540 struct auth_session_info
**session_info
)
543 struct auth_user_info_dc
*user_info_dc
;
546 tmp_ctx
= talloc_new(mem_ctx
);
547 NT_STATUS_HAVE_NO_MEMORY(tmp_ctx
);
549 status
= kerberos_pac_blob_to_user_info_dc(tmp_ctx
,
551 smb_krb5_context
->krb5_context
,
555 if (!NT_STATUS_IS_OK(status
)) {
556 talloc_free(tmp_ctx
);
560 if (user_info_dc
->info
->authenticated
) {
561 session_info_flags
|= AUTH_SESSION_INFO_AUTHENTICATED
;
564 session_info_flags
|= AUTH_SESSION_INFO_SIMPLE_PRIVILEGES
;
566 status
= auth_generate_session_info(mem_ctx
, NULL
, NULL
, user_info_dc
,
567 session_info_flags
, session_info
);
568 if (!NT_STATUS_IS_OK(status
)) {
569 talloc_free(tmp_ctx
);
573 talloc_free(tmp_ctx
);
577 /* Callback for the DEBUG() system, to catch the remaining messages */
578 static void b9_debug(void *private_ptr
, int msg_level
, const char *msg
)
580 static const int isc_log_map
[] = {
581 ISC_LOG_CRITICAL
, /* 0 */
582 ISC_LOG_ERROR
, /* 1 */
583 ISC_LOG_WARNING
, /* 2 */
584 ISC_LOG_NOTICE
/* 3 */
586 struct dlz_bind9_data
*state
= private_ptr
;
589 if (msg_level
>= ARRAY_SIZE(isc_log_map
) || msg_level
< 0) {
590 isc_log_level
= ISC_LOG_INFO
;
592 isc_log_level
= isc_log_map
[msg_level
];
594 state
->log(isc_log_level
, "samba_dlz: %s", msg
);
597 static int dlz_state_debug_unregister(struct dlz_bind9_data
*state
)
599 /* Stop logging (to the bind9 logs) */
600 debug_set_callback(NULL
, NULL
);
605 called to initialise the driver
607 _PUBLIC_ isc_result_t
dlz_create(const char *dlzname
,
608 unsigned int argc
, const char **argv
,
611 struct dlz_bind9_data
*state
;
612 const char *helper_name
;
618 char *errstring
= NULL
;
620 if (dlz_bind9_state
!= NULL
) {
621 *dbdata
= dlz_bind9_state
;
622 dlz_bind9_state_ref_count
++;
623 return ISC_R_SUCCESS
;
626 state
= talloc_zero(NULL
, struct dlz_bind9_data
);
628 return ISC_R_NOMEMORY
;
631 talloc_set_destructor(state
, dlz_state_debug_unregister
);
633 /* fill in the helper functions */
634 va_start(ap
, dbdata
);
635 while ((helper_name
= va_arg(ap
, const char *)) != NULL
) {
636 b9_add_helper(state
, helper_name
, va_arg(ap
, void*));
640 /* Do not install samba signal handlers */
641 fault_setup_disable();
643 /* Start logging (to the bind9 logs) */
644 debug_set_callback(state
, b9_debug
);
646 state
->ev_ctx
= s4_event_context_init(state
);
647 if (state
->ev_ctx
== NULL
) {
648 result
= ISC_R_NOMEMORY
;
652 result
= parse_options(state
, argc
, argv
, &state
->options
);
653 if (result
!= ISC_R_SUCCESS
) {
657 state
->lp
= loadparm_init_global(true);
658 if (state
->lp
== NULL
) {
659 result
= ISC_R_NOMEMORY
;
663 if (state
->options
.debug
) {
664 lpcfg_do_global_parameter(state
->lp
, "log level", state
->options
.debug
);
666 lpcfg_do_global_parameter(state
->lp
, "log level", "0");
669 if (smb_krb5_init_context(state
, state
->lp
, &state
->smb_krb5_ctx
) != 0) {
670 result
= ISC_R_NOMEMORY
;
674 nt_status
= gensec_init();
675 if (!NT_STATUS_IS_OK(nt_status
)) {
676 result
= ISC_R_NOMEMORY
;
680 state
->auth_context
= talloc_zero(state
, struct auth4_context
);
681 if (state
->auth_context
== NULL
) {
682 result
= ISC_R_NOMEMORY
;
686 if (state
->options
.url
== NULL
) {
687 state
->options
.url
= talloc_asprintf(state
,
689 lpcfg_binddns_dir(state
->lp
));
690 if (state
->options
.url
== NULL
) {
691 result
= ISC_R_NOMEMORY
;
695 if (!file_exist(state
->options
.url
)) {
696 state
->options
.url
= talloc_asprintf(state
,
698 lpcfg_private_dir(state
->lp
));
699 if (state
->options
.url
== NULL
) {
700 result
= ISC_R_NOMEMORY
;
706 ret
= samdb_connect_url(state
, state
->ev_ctx
, state
->lp
,
707 system_session(state
->lp
), 0,
709 &state
->samdb
, &errstring
);
710 if (ret
!= LDB_SUCCESS
) {
711 state
->log(ISC_LOG_ERROR
,
712 "samba_dlz: Failed to connect to %s: %s",
713 errstring
, ldb_strerror(ret
));
714 result
= ISC_R_FAILURE
;
718 dn
= ldb_get_default_basedn(state
->samdb
);
720 state
->log(ISC_LOG_ERROR
, "samba_dlz: Unable to get basedn for %s - %s",
721 state
->options
.url
, ldb_errstring(state
->samdb
));
722 result
= ISC_R_FAILURE
;
726 state
->log(ISC_LOG_INFO
, "samba_dlz: started for DN %s",
727 ldb_dn_get_linearized(dn
));
729 state
->auth_context
->event_ctx
= state
->ev_ctx
;
730 state
->auth_context
->lp_ctx
= state
->lp
;
731 state
->auth_context
->sam_ctx
= state
->samdb
;
732 state
->auth_context
->generate_session_info_pac
= b9_generate_session_info_pac
;
735 dlz_bind9_state
= state
;
736 dlz_bind9_state_ref_count
++;
738 return ISC_R_SUCCESS
;
748 _PUBLIC_
void dlz_destroy(void *dbdata
)
750 struct dlz_bind9_data
*state
= talloc_get_type_abort(dbdata
, struct dlz_bind9_data
);
751 state
->log(ISC_LOG_INFO
, "samba_dlz: shutting down");
753 dlz_bind9_state_ref_count
--;
754 if (dlz_bind9_state_ref_count
== 0) {
755 talloc_unlink(state
, state
->samdb
);
757 dlz_bind9_state
= NULL
;
763 return the base DN for a zone
765 static isc_result_t
b9_find_zone_dn(struct dlz_bind9_data
*state
, const char *zone_name
,
766 TALLOC_CTX
*mem_ctx
, struct ldb_dn
**zone_dn
)
769 TALLOC_CTX
*tmp_ctx
= talloc_new(state
);
770 const char *attrs
[] = { NULL
};
773 for (i
=0; zone_prefixes
[i
]; i
++) {
775 struct ldb_result
*res
;
777 dn
= ldb_dn_copy(tmp_ctx
, ldb_get_default_basedn(state
->samdb
));
779 talloc_free(tmp_ctx
);
780 return ISC_R_NOMEMORY
;
783 if (!ldb_dn_add_child_fmt(dn
, "DC=%s,%s", zone_name
, zone_prefixes
[i
])) {
784 talloc_free(tmp_ctx
);
785 return ISC_R_NOMEMORY
;
788 ret
= ldb_search(state
->samdb
, tmp_ctx
, &res
, dn
, LDB_SCOPE_BASE
, attrs
, "objectClass=dnsZone");
789 if (ret
== LDB_SUCCESS
) {
790 if (zone_dn
!= NULL
) {
791 *zone_dn
= talloc_steal(mem_ctx
, dn
);
793 talloc_free(tmp_ctx
);
794 return ISC_R_SUCCESS
;
799 talloc_free(tmp_ctx
);
800 return ISC_R_NOTFOUND
;
805 return the DN for a name. The record does not need to exist, but the
808 static isc_result_t
b9_find_name_dn(struct dlz_bind9_data
*state
, const char *name
,
809 TALLOC_CTX
*mem_ctx
, struct ldb_dn
**dn
)
813 /* work through the name piece by piece, until we find a zone */
816 result
= b9_find_zone_dn(state
, p
, mem_ctx
, dn
);
817 if (result
== ISC_R_SUCCESS
) {
818 /* we found a zone, now extend the DN to get
823 ret
= ldb_dn_add_child_fmt(*dn
, "DC=@");
825 ret
= ldb_dn_add_child_fmt(*dn
, "DC=%.*s", (int)(p
-name
)-1, name
);
829 return ISC_R_NOMEMORY
;
831 return ISC_R_SUCCESS
;
839 return ISC_R_NOTFOUND
;
844 see if we handle a given zone
846 #if DLZ_DLOPEN_VERSION < 3
847 _PUBLIC_ isc_result_t
dlz_findzonedb(void *dbdata
, const char *name
)
849 _PUBLIC_ isc_result_t
dlz_findzonedb(void *dbdata
, const char *name
,
850 dns_clientinfomethods_t
*methods
,
851 dns_clientinfo_t
*clientinfo
)
854 struct dlz_bind9_data
*state
= talloc_get_type_abort(dbdata
, struct dlz_bind9_data
);
855 return b9_find_zone_dn(state
, name
, NULL
, NULL
);
862 static isc_result_t
dlz_lookup_types(struct dlz_bind9_data
*state
,
863 const char *zone
, const char *name
,
864 dns_sdlzlookup_t
*lookup
,
867 TALLOC_CTX
*tmp_ctx
= talloc_new(state
);
869 WERROR werr
= WERR_DNS_ERROR_NAME_DOES_NOT_EXIST
;
870 struct dnsp_DnssrvRpcRecord
*records
= NULL
;
871 uint16_t num_records
= 0, i
;
873 for (i
=0; zone_prefixes
[i
]; i
++) {
874 dn
= ldb_dn_copy(tmp_ctx
, ldb_get_default_basedn(state
->samdb
));
876 talloc_free(tmp_ctx
);
877 return ISC_R_NOMEMORY
;
880 if (!ldb_dn_add_child_fmt(dn
, "DC=%s,DC=%s,%s", name
, zone
, zone_prefixes
[i
])) {
881 talloc_free(tmp_ctx
);
882 return ISC_R_NOMEMORY
;
885 werr
= dns_common_wildcard_lookup(state
->samdb
, tmp_ctx
, dn
,
886 &records
, &num_records
);
887 if (W_ERROR_IS_OK(werr
)) {
891 if (!W_ERROR_IS_OK(werr
)) {
892 talloc_free(tmp_ctx
);
893 return ISC_R_NOTFOUND
;
896 for (i
=0; i
< num_records
; i
++) {
899 result
= b9_putrr(state
, lookup
, &records
[i
], types
);
900 if (result
!= ISC_R_SUCCESS
) {
901 talloc_free(tmp_ctx
);
906 talloc_free(tmp_ctx
);
907 return ISC_R_SUCCESS
;
913 #if DLZ_DLOPEN_VERSION == 1
914 _PUBLIC_ isc_result_t
dlz_lookup(const char *zone
, const char *name
,
915 void *dbdata
, dns_sdlzlookup_t
*lookup
)
917 _PUBLIC_ isc_result_t
dlz_lookup(const char *zone
, const char *name
,
918 void *dbdata
, dns_sdlzlookup_t
*lookup
,
919 dns_clientinfomethods_t
*methods
,
920 dns_clientinfo_t
*clientinfo
)
923 struct dlz_bind9_data
*state
= talloc_get_type_abort(dbdata
, struct dlz_bind9_data
);
924 return dlz_lookup_types(state
, zone
, name
, lookup
, NULL
);
929 see if a zone transfer is allowed
931 _PUBLIC_ isc_result_t
dlz_allowzonexfr(void *dbdata
, const char *name
, const char *client
)
933 /* just say yes for all our zones for now */
934 struct dlz_bind9_data
*state
= talloc_get_type(
935 dbdata
, struct dlz_bind9_data
);
936 return b9_find_zone_dn(state
, name
, NULL
, NULL
);
940 perform a zone transfer
942 _PUBLIC_ isc_result_t
dlz_allnodes(const char *zone
, void *dbdata
,
943 dns_sdlzallnodes_t
*allnodes
)
945 struct dlz_bind9_data
*state
= talloc_get_type_abort(dbdata
, struct dlz_bind9_data
);
946 const char *attrs
[] = { "dnsRecord", NULL
};
947 int ret
= LDB_SUCCESS
, i
, j
;
949 struct ldb_result
*res
;
950 TALLOC_CTX
*tmp_ctx
= talloc_new(state
);
952 for (i
=0; zone_prefixes
[i
]; i
++) {
953 dn
= ldb_dn_copy(tmp_ctx
, ldb_get_default_basedn(state
->samdb
));
955 talloc_free(tmp_ctx
);
956 return ISC_R_NOMEMORY
;
959 if (!ldb_dn_add_child_fmt(dn
, "DC=%s,%s", zone
, zone_prefixes
[i
])) {
960 talloc_free(tmp_ctx
);
961 return ISC_R_NOMEMORY
;
964 ret
= ldb_search(state
->samdb
, tmp_ctx
, &res
, dn
, LDB_SCOPE_SUBTREE
,
965 attrs
, "objectClass=dnsNode");
966 if (ret
== LDB_SUCCESS
) {
970 if (ret
!= LDB_SUCCESS
) {
971 talloc_free(tmp_ctx
);
972 return ISC_R_NOTFOUND
;
975 for (i
=0; i
<res
->count
; i
++) {
976 struct ldb_message_element
*el
;
977 TALLOC_CTX
*el_ctx
= talloc_new(tmp_ctx
);
978 const char *rdn
, *name
;
979 const struct ldb_val
*v
;
981 struct dnsp_DnssrvRpcRecord
*recs
= NULL
;
982 uint16_t num_recs
= 0;
984 el
= ldb_msg_find_element(res
->msgs
[i
], "dnsRecord");
985 if (el
== NULL
|| el
->num_values
== 0) {
986 state
->log(ISC_LOG_INFO
, "failed to find dnsRecord for %s",
987 ldb_dn_get_linearized(dn
));
992 v
= ldb_dn_get_rdn_val(res
->msgs
[i
]->dn
);
994 state
->log(ISC_LOG_INFO
, "failed to find RDN for %s",
995 ldb_dn_get_linearized(dn
));
1000 rdn
= talloc_strndup(el_ctx
, (char *)v
->data
, v
->length
);
1002 talloc_free(tmp_ctx
);
1003 return ISC_R_NOMEMORY
;
1006 if (strcmp(rdn
, "@") == 0) {
1009 name
= talloc_asprintf(el_ctx
, "%s.%s", rdn
, zone
);
1011 name
= b9_format_fqdn(el_ctx
, name
);
1013 talloc_free(tmp_ctx
);
1014 return ISC_R_NOMEMORY
;
1017 werr
= dns_common_extract(state
->samdb
, el
, el_ctx
, &recs
, &num_recs
);
1018 if (!W_ERROR_IS_OK(werr
)) {
1019 state
->log(ISC_LOG_ERROR
, "samba_dlz: failed to parse dnsRecord for %s, %s",
1020 ldb_dn_get_linearized(dn
), win_errstr(werr
));
1021 talloc_free(el_ctx
);
1025 for (j
=0; j
< num_recs
; j
++) {
1026 isc_result_t result
;
1028 result
= b9_putnamedrr(state
, allnodes
, name
, &recs
[j
]);
1029 if (result
!= ISC_R_SUCCESS
) {
1034 talloc_free(el_ctx
);
1037 talloc_free(tmp_ctx
);
1039 return ISC_R_SUCCESS
;
1046 _PUBLIC_ isc_result_t
dlz_newversion(const char *zone
, void *dbdata
, void **versionp
)
1048 struct dlz_bind9_data
*state
= talloc_get_type_abort(dbdata
, struct dlz_bind9_data
);
1050 state
->log(ISC_LOG_INFO
, "samba_dlz: starting transaction on zone %s", zone
);
1052 if (state
->transaction_token
!= NULL
) {
1053 state
->log(ISC_LOG_INFO
, "samba_dlz: transaction already started for zone %s", zone
);
1054 return ISC_R_FAILURE
;
1057 state
->transaction_token
= talloc_zero(state
, int);
1058 if (state
->transaction_token
== NULL
) {
1059 return ISC_R_NOMEMORY
;
1062 if (ldb_transaction_start(state
->samdb
) != LDB_SUCCESS
) {
1063 state
->log(ISC_LOG_INFO
, "samba_dlz: failed to start a transaction for zone %s", zone
);
1064 talloc_free(state
->transaction_token
);
1065 state
->transaction_token
= NULL
;
1066 return ISC_R_FAILURE
;
1069 *versionp
= (void *)state
->transaction_token
;
1071 return ISC_R_SUCCESS
;
1077 _PUBLIC_
void dlz_closeversion(const char *zone
, isc_boolean_t commit
,
1078 void *dbdata
, void **versionp
)
1080 struct dlz_bind9_data
*state
= talloc_get_type_abort(dbdata
, struct dlz_bind9_data
);
1082 if (state
->transaction_token
!= (int *)*versionp
) {
1083 state
->log(ISC_LOG_INFO
, "samba_dlz: transaction not started for zone %s", zone
);
1088 if (ldb_transaction_commit(state
->samdb
) != LDB_SUCCESS
) {
1089 state
->log(ISC_LOG_INFO
, "samba_dlz: failed to commit a transaction for zone %s", zone
);
1092 state
->log(ISC_LOG_INFO
, "samba_dlz: committed transaction on zone %s", zone
);
1094 if (ldb_transaction_cancel(state
->samdb
) != LDB_SUCCESS
) {
1095 state
->log(ISC_LOG_INFO
, "samba_dlz: failed to cancel a transaction for zone %s", zone
);
1098 state
->log(ISC_LOG_INFO
, "samba_dlz: cancelling transaction on zone %s", zone
);
1101 talloc_free(state
->transaction_token
);
1102 state
->transaction_token
= NULL
;
1108 see if there is a SOA record for a zone
1110 static bool b9_has_soa(struct dlz_bind9_data
*state
, struct ldb_dn
*dn
, const char *zone
)
1112 TALLOC_CTX
*tmp_ctx
= talloc_new(state
);
1114 struct dnsp_DnssrvRpcRecord
*records
= NULL
;
1115 uint16_t num_records
= 0, i
;
1117 if (!ldb_dn_add_child_fmt(dn
, "DC=@,DC=%s", zone
)) {
1118 talloc_free(tmp_ctx
);
1122 werr
= dns_common_lookup(state
->samdb
, tmp_ctx
, dn
,
1123 &records
, &num_records
, NULL
);
1124 if (!W_ERROR_IS_OK(werr
)) {
1125 talloc_free(tmp_ctx
);
1129 for (i
=0; i
< num_records
; i
++) {
1130 if (records
[i
].wType
== DNS_TYPE_SOA
) {
1131 talloc_free(tmp_ctx
);
1136 talloc_free(tmp_ctx
);
1140 static bool b9_zone_add(struct dlz_bind9_data
*state
, const char *name
)
1142 struct b9_zone
*zone
;
1144 zone
= talloc_zero(state
, struct b9_zone
);
1149 zone
->name
= talloc_strdup(zone
, name
);
1150 if (zone
->name
== NULL
) {
1155 DLIST_ADD(state
->zonelist
, zone
);
1159 static bool b9_zone_exists(struct dlz_bind9_data
*state
, const char *name
)
1161 struct b9_zone
*zone
= state
->zonelist
;
1164 while (zone
!= NULL
) {
1165 if (strcasecmp(name
, zone
->name
) == 0) {
1177 configure a writeable zone
1179 #if DLZ_DLOPEN_VERSION < 3
1180 _PUBLIC_ isc_result_t
dlz_configure(dns_view_t
*view
, void *dbdata
)
1182 _PUBLIC_ isc_result_t
dlz_configure(dns_view_t
*view
, dns_dlzdb_t
*dlzdb
,
1186 struct dlz_bind9_data
*state
= talloc_get_type_abort(dbdata
, struct dlz_bind9_data
);
1187 TALLOC_CTX
*tmp_ctx
;
1191 state
->log(ISC_LOG_INFO
, "samba_dlz: starting configure");
1192 if (state
->writeable_zone
== NULL
) {
1193 state
->log(ISC_LOG_INFO
, "samba_dlz: no writeable_zone method available");
1194 return ISC_R_FAILURE
;
1197 tmp_ctx
= talloc_new(state
);
1199 for (i
=0; zone_prefixes
[i
]; i
++) {
1200 const char *attrs
[] = { "name", NULL
};
1202 struct ldb_result
*res
;
1204 dn
= ldb_dn_copy(tmp_ctx
, ldb_get_default_basedn(state
->samdb
));
1206 talloc_free(tmp_ctx
);
1207 return ISC_R_NOMEMORY
;
1210 if (!ldb_dn_add_child_fmt(dn
, "%s", zone_prefixes
[i
])) {
1211 talloc_free(tmp_ctx
);
1212 return ISC_R_NOMEMORY
;
1215 ret
= ldb_search(state
->samdb
, tmp_ctx
, &res
, dn
, LDB_SCOPE_SUBTREE
,
1216 attrs
, "objectClass=dnsZone");
1217 if (ret
!= LDB_SUCCESS
) {
1221 for (j
=0; j
<res
->count
; j
++) {
1222 isc_result_t result
;
1223 const char *zone
= ldb_msg_find_attr_as_string(res
->msgs
[j
], "name", NULL
);
1224 struct ldb_dn
*zone_dn
;
1229 /* Ignore zones that are not handled in BIND */
1230 if ((strcmp(zone
, "RootDNSServers") == 0) ||
1231 (strcmp(zone
, "..TrustAnchors") == 0)) {
1234 zone_dn
= ldb_dn_copy(tmp_ctx
, dn
);
1235 if (zone_dn
== NULL
) {
1236 talloc_free(tmp_ctx
);
1237 return ISC_R_NOMEMORY
;
1240 if (!b9_has_soa(state
, zone_dn
, zone
)) {
1244 if (b9_zone_exists(state
, zone
)) {
1245 state
->log(ISC_LOG_WARNING
, "samba_dlz: Ignoring duplicate zone '%s' from '%s'",
1246 zone
, ldb_dn_get_linearized(zone_dn
));
1250 if (!b9_zone_add(state
, zone
)) {
1251 talloc_free(tmp_ctx
);
1252 return ISC_R_NOMEMORY
;
1255 #if DLZ_DLOPEN_VERSION < 3
1256 result
= state
->writeable_zone(view
, zone
);
1258 result
= state
->writeable_zone(view
, dlzdb
, zone
);
1260 if (result
!= ISC_R_SUCCESS
) {
1261 state
->log(ISC_LOG_ERROR
, "samba_dlz: Failed to configure zone '%s'",
1263 talloc_free(tmp_ctx
);
1266 state
->log(ISC_LOG_INFO
, "samba_dlz: configured writeable zone '%s'", zone
);
1270 talloc_free(tmp_ctx
);
1271 return ISC_R_SUCCESS
;
1275 authorize a zone update
1277 _PUBLIC_ isc_boolean_t
dlz_ssumatch(const char *signer
, const char *name
, const char *tcpaddr
,
1278 const char *type
, const char *key
, uint32_t keydatalen
, uint8_t *keydata
,
1281 struct dlz_bind9_data
*state
= talloc_get_type_abort(dbdata
, struct dlz_bind9_data
);
1282 TALLOC_CTX
*tmp_ctx
;
1284 struct cli_credentials
*server_credentials
;
1286 char *keytab_file
= NULL
;
1290 struct gensec_security
*gensec_ctx
;
1291 struct auth_session_info
*session_info
;
1293 isc_result_t result
;
1294 struct ldb_result
*res
;
1295 const char * attrs
[] = { NULL
};
1296 uint32_t access_mask
;
1297 struct gensec_settings
*settings
= NULL
;
1298 const struct gensec_security_ops
**backends
= NULL
;
1301 /* Remove cached credentials, if any */
1302 if (state
->session_info
) {
1303 talloc_free(state
->session_info
);
1304 state
->session_info
= NULL
;
1306 if (state
->update_name
) {
1307 talloc_free(state
->update_name
);
1308 state
->update_name
= NULL
;
1311 tmp_ctx
= talloc_new(NULL
);
1312 if (tmp_ctx
== NULL
) {
1313 state
->log(ISC_LOG_ERROR
, "samba_dlz: no memory");
1317 ap_req
= data_blob_const(keydata
, keydatalen
);
1318 server_credentials
= cli_credentials_init(tmp_ctx
);
1319 if (!server_credentials
) {
1320 state
->log(ISC_LOG_ERROR
, "samba_dlz: failed to init server credentials");
1321 talloc_free(tmp_ctx
);
1325 cli_credentials_set_krb5_context(server_credentials
, state
->smb_krb5_ctx
);
1326 cli_credentials_set_conf(server_credentials
, state
->lp
);
1328 keytab_file
= talloc_asprintf(tmp_ctx
,
1330 lpcfg_binddns_dir(state
->lp
));
1331 if (keytab_file
== NULL
) {
1332 state
->log(ISC_LOG_ERROR
, "samba_dlz: Out of memory!");
1333 talloc_free(tmp_ctx
);
1337 if (!file_exist(keytab_file
)) {
1338 keytab_file
= talloc_asprintf(tmp_ctx
,
1340 lpcfg_private_dir(state
->lp
));
1341 if (keytab_file
== NULL
) {
1342 state
->log(ISC_LOG_ERROR
, "samba_dlz: Out of memory!");
1343 talloc_free(tmp_ctx
);
1348 keytab_name
= talloc_asprintf(tmp_ctx
, "FILE:%s", keytab_file
);
1349 if (keytab_name
== NULL
) {
1350 state
->log(ISC_LOG_ERROR
, "samba_dlz: Out of memory!");
1351 talloc_free(tmp_ctx
);
1355 ret
= cli_credentials_set_keytab_name(server_credentials
, state
->lp
, keytab_name
,
1358 state
->log(ISC_LOG_ERROR
, "samba_dlz: failed to obtain server credentials from %s",
1360 talloc_free(tmp_ctx
);
1363 talloc_free(keytab_name
);
1365 settings
= lpcfg_gensec_settings(tmp_ctx
, state
->lp
);
1366 if (settings
== NULL
) {
1367 state
->log(ISC_LOG_ERROR
, "samba_dlz: lpcfg_gensec_settings failed");
1368 talloc_free(tmp_ctx
);
1371 backends
= talloc_zero_array(settings
,
1372 const struct gensec_security_ops
*, 3);
1373 if (backends
== NULL
) {
1374 state
->log(ISC_LOG_ERROR
, "samba_dlz: talloc_zero_array gensec_security_ops failed");
1375 talloc_free(tmp_ctx
);
1378 settings
->backends
= backends
;
1382 backends
[idx
++] = gensec_security_by_oid(NULL
, GENSEC_OID_KERBEROS5
);
1383 backends
[idx
++] = gensec_security_by_oid(NULL
, GENSEC_OID_SPNEGO
);
1385 nt_status
= gensec_server_start(tmp_ctx
, settings
,
1386 state
->auth_context
, &gensec_ctx
);
1387 if (!NT_STATUS_IS_OK(nt_status
)) {
1388 state
->log(ISC_LOG_ERROR
, "samba_dlz: failed to start gensec server");
1389 talloc_free(tmp_ctx
);
1393 gensec_set_credentials(gensec_ctx
, server_credentials
);
1395 nt_status
= gensec_start_mech_by_oid(gensec_ctx
, GENSEC_OID_SPNEGO
);
1396 if (!NT_STATUS_IS_OK(nt_status
)) {
1397 state
->log(ISC_LOG_ERROR
, "samba_dlz: failed to start spnego");
1398 talloc_free(tmp_ctx
);
1403 * We only allow SPNEGO/KRB5 and make sure the backend
1404 * to is RPC/IPC free.
1406 * See gensec_gssapi_update_internal() as
1409 * It allows gensec_update() not to block.
1411 * If that changes in future we need to use
1412 * gensec_update_send/recv here!
1414 nt_status
= gensec_update(gensec_ctx
, tmp_ctx
, ap_req
, &ap_req
);
1415 if (!NT_STATUS_IS_OK(nt_status
)) {
1416 state
->log(ISC_LOG_ERROR
, "samba_dlz: spnego update failed");
1417 talloc_free(tmp_ctx
);
1421 nt_status
= gensec_session_info(gensec_ctx
, tmp_ctx
, &session_info
);
1422 if (!NT_STATUS_IS_OK(nt_status
)) {
1423 state
->log(ISC_LOG_ERROR
, "samba_dlz: failed to create session info");
1424 talloc_free(tmp_ctx
);
1428 /* Get the DN from name */
1429 result
= b9_find_name_dn(state
, name
, tmp_ctx
, &dn
);
1430 if (result
!= ISC_R_SUCCESS
) {
1431 state
->log(ISC_LOG_ERROR
, "samba_dlz: failed to find name %s", name
);
1432 talloc_free(tmp_ctx
);
1436 /* make sure the dn exists, or find parent dn in case new object is being added */
1437 ldb_ret
= ldb_search(state
->samdb
, tmp_ctx
, &res
, dn
, LDB_SCOPE_BASE
,
1438 attrs
, "objectClass=dnsNode");
1439 if (ldb_ret
== LDB_ERR_NO_SUCH_OBJECT
) {
1440 ldb_dn_remove_child_components(dn
, 1);
1441 access_mask
= SEC_ADS_CREATE_CHILD
;
1443 } else if (ldb_ret
== LDB_SUCCESS
) {
1444 access_mask
= SEC_STD_REQUIRED
| SEC_ADS_SELF_WRITE
;
1447 talloc_free(tmp_ctx
);
1452 ldb_ret
= dsdb_check_access_on_dn(state
->samdb
, tmp_ctx
, dn
,
1453 session_info
->security_token
,
1455 if (ldb_ret
!= LDB_SUCCESS
) {
1456 state
->log(ISC_LOG_INFO
,
1457 "samba_dlz: disallowing update of signer=%s name=%s type=%s error=%s",
1458 signer
, name
, type
, ldb_strerror(ldb_ret
));
1459 talloc_free(tmp_ctx
);
1463 /* Cache session_info, so it can be used in the actual add/delete operation */
1464 state
->update_name
= talloc_strdup(state
, name
);
1465 if (state
->update_name
== NULL
) {
1466 state
->log(ISC_LOG_ERROR
, "samba_dlz: memory allocation error");
1467 talloc_free(tmp_ctx
);
1470 state
->session_info
= talloc_steal(state
, session_info
);
1472 state
->log(ISC_LOG_INFO
, "samba_dlz: allowing update of signer=%s name=%s tcpaddr=%s type=%s key=%s",
1473 signer
, name
, tcpaddr
, type
, key
);
1475 talloc_free(tmp_ctx
);
1480 see if two DNS names are the same
1482 static bool dns_name_equal(const char *name1
, const char *name2
)
1484 size_t len1
= strlen(name1
);
1485 size_t len2
= strlen(name2
);
1486 if (name1
[len1
-1] == '.') len1
--;
1487 if (name2
[len2
-1] == '.') len2
--;
1491 return strncasecmp_m(name1
, name2
, len1
) == 0;
1496 see if two dns records match
1498 static bool b9_record_match(struct dlz_bind9_data
*state
,
1499 struct dnsp_DnssrvRpcRecord
*rec1
, struct dnsp_DnssrvRpcRecord
*rec2
)
1503 struct in6_addr rec1_in_addr6
;
1504 struct in6_addr rec2_in_addr6
;
1506 if (rec1
->wType
!= rec2
->wType
) {
1509 /* see if this type is single valued */
1510 if (b9_single_valued(rec1
->wType
)) {
1514 /* see if the data matches */
1515 switch (rec1
->wType
) {
1517 return strcmp(rec1
->data
.ipv4
, rec2
->data
.ipv4
) == 0;
1518 case DNS_TYPE_AAAA
: {
1521 ret
= inet_pton(AF_INET6
, rec1
->data
.ipv6
, &rec1_in_addr6
);
1525 ret
= inet_pton(AF_INET6
, rec2
->data
.ipv6
, &rec2_in_addr6
);
1530 return memcmp(&rec1_in_addr6
, &rec2_in_addr6
, sizeof(rec1_in_addr6
)) == 0;
1532 case DNS_TYPE_CNAME
:
1533 return dns_name_equal(rec1
->data
.cname
, rec2
->data
.cname
);
1535 status
= (rec1
->data
.txt
.count
== rec2
->data
.txt
.count
);
1536 if (!status
) return status
;
1537 for (i
=0; i
<rec1
->data
.txt
.count
; i
++) {
1538 status
&= (strcmp(rec1
->data
.txt
.str
[i
], rec2
->data
.txt
.str
[i
]) == 0);
1542 return dns_name_equal(rec1
->data
.ptr
, rec2
->data
.ptr
);
1544 return dns_name_equal(rec1
->data
.ns
, rec2
->data
.ns
);
1547 return rec1
->data
.srv
.wPriority
== rec2
->data
.srv
.wPriority
&&
1548 rec1
->data
.srv
.wWeight
== rec2
->data
.srv
.wWeight
&&
1549 rec1
->data
.srv
.wPort
== rec2
->data
.srv
.wPort
&&
1550 dns_name_equal(rec1
->data
.srv
.nameTarget
, rec2
->data
.srv
.nameTarget
);
1553 return rec1
->data
.mx
.wPriority
== rec2
->data
.mx
.wPriority
&&
1554 dns_name_equal(rec1
->data
.mx
.nameTarget
, rec2
->data
.mx
.nameTarget
);
1556 case DNS_TYPE_HINFO
:
1557 return strcmp(rec1
->data
.hinfo
.cpu
, rec2
->data
.hinfo
.cpu
) == 0 &&
1558 strcmp(rec1
->data
.hinfo
.os
, rec2
->data
.hinfo
.os
) == 0;
1561 return dns_name_equal(rec1
->data
.soa
.mname
, rec2
->data
.soa
.mname
) &&
1562 dns_name_equal(rec1
->data
.soa
.rname
, rec2
->data
.soa
.rname
) &&
1563 rec1
->data
.soa
.serial
== rec2
->data
.soa
.serial
&&
1564 rec1
->data
.soa
.refresh
== rec2
->data
.soa
.refresh
&&
1565 rec1
->data
.soa
.retry
== rec2
->data
.soa
.retry
&&
1566 rec1
->data
.soa
.expire
== rec2
->data
.soa
.expire
&&
1567 rec1
->data
.soa
.minimum
== rec2
->data
.soa
.minimum
;
1569 state
->log(ISC_LOG_ERROR
, "samba_dlz b9_record_match: unhandled record type %u",
1578 * Update session_info on samdb using the cached credentials
1580 static bool b9_set_session_info(struct dlz_bind9_data
*state
, const char *name
)
1584 if (state
->update_name
== NULL
|| state
->session_info
== NULL
) {
1585 state
->log(ISC_LOG_ERROR
, "samba_dlz: invalid credentials");
1589 /* Do not use client credentials, if we're not updating the client specified name */
1590 if (strcmp(state
->update_name
, name
) != 0) {
1594 ret
= ldb_set_opaque(state
->samdb
, "sessionInfo", state
->session_info
);
1595 if (ret
!= LDB_SUCCESS
) {
1596 state
->log(ISC_LOG_ERROR
, "samba_dlz: unable to set session info");
1604 * Reset session_info on samdb as system session
1606 static void b9_reset_session_info(struct dlz_bind9_data
*state
)
1608 ldb_set_opaque(state
->samdb
, "sessionInfo", system_session(state
->lp
));
1612 add or modify a rdataset
1614 _PUBLIC_ isc_result_t
dlz_addrdataset(const char *name
, const char *rdatastr
, void *dbdata
, void *version
)
1616 struct dlz_bind9_data
*state
= talloc_get_type_abort(dbdata
, struct dlz_bind9_data
);
1617 struct dnsp_DnssrvRpcRecord
*rec
;
1619 isc_result_t result
;
1620 bool tombstoned
= false;
1621 bool needs_add
= false;
1622 struct dnsp_DnssrvRpcRecord
*recs
= NULL
;
1623 uint16_t num_recs
= 0;
1629 if (state
->transaction_token
!= (void*)version
) {
1630 state
->log(ISC_LOG_INFO
, "samba_dlz: bad transaction version");
1631 return ISC_R_FAILURE
;
1634 rec
= talloc_zero(state
, struct dnsp_DnssrvRpcRecord
);
1636 return ISC_R_NOMEMORY
;
1639 unix_to_nt_time(&t
, time(NULL
));
1640 t
/= 10*1000*1000; /* convert to seconds (NT time is in 100ns units) */
1641 t
/= 3600; /* convert to hours */
1643 rec
->rank
= DNS_RANK_ZONE
;
1644 rec
->dwTimeStamp
= (uint32_t)t
;
1646 if (!b9_parse(state
, rdatastr
, rec
)) {
1647 state
->log(ISC_LOG_INFO
, "samba_dlz: failed to parse rdataset '%s'", rdatastr
);
1649 return ISC_R_FAILURE
;
1652 /* find the DN of the record */
1653 result
= b9_find_name_dn(state
, name
, rec
, &dn
);
1654 if (result
!= ISC_R_SUCCESS
) {
1659 /* get any existing records */
1660 werr
= dns_common_lookup(state
->samdb
, rec
, dn
,
1661 &recs
, &num_recs
, &tombstoned
);
1662 if (W_ERROR_EQUAL(werr
, WERR_DNS_ERROR_NAME_DOES_NOT_EXIST
)) {
1666 if (!W_ERROR_IS_OK(werr
)) {
1667 state
->log(ISC_LOG_ERROR
, "samba_dlz: failed to parse dnsRecord for %s, %s",
1668 ldb_dn_get_linearized(dn
), win_errstr(werr
));
1670 return ISC_R_FAILURE
;
1675 * we need to keep the existing tombstone record
1681 /* there are existing records. We need to see if this will
1682 * replace a record or add to it
1684 for (i
=first
; i
< num_recs
; i
++) {
1685 if (b9_record_match(state
, rec
, &recs
[i
])) {
1689 if (i
== UINT16_MAX
) {
1690 state
->log(ISC_LOG_ERROR
, "samba_dlz: failed to already %u dnsRecord values for %s",
1691 i
, ldb_dn_get_linearized(dn
));
1693 return ISC_R_FAILURE
;
1696 if (i
== num_recs
) {
1697 /* adding a new value */
1698 recs
= talloc_realloc(rec
, recs
,
1699 struct dnsp_DnssrvRpcRecord
,
1703 return ISC_R_NOMEMORY
;
1710 if (!b9_set_session_info(state
, name
)) {
1712 return ISC_R_FAILURE
;
1715 /* modify the record */
1716 werr
= dns_common_replace(state
->samdb
, rec
, dn
,
1720 b9_reset_session_info(state
);
1721 if (!W_ERROR_IS_OK(werr
)) {
1722 state
->log(ISC_LOG_ERROR
, "samba_dlz: failed to %s %s - %s",
1723 needs_add
? "add" : "modify",
1724 ldb_dn_get_linearized(dn
), win_errstr(werr
));
1726 return ISC_R_FAILURE
;
1729 state
->log(ISC_LOG_INFO
, "samba_dlz: added rdataset %s '%s'", name
, rdatastr
);
1732 return ISC_R_SUCCESS
;
1738 _PUBLIC_ isc_result_t
dlz_subrdataset(const char *name
, const char *rdatastr
, void *dbdata
, void *version
)
1740 struct dlz_bind9_data
*state
= talloc_get_type_abort(dbdata
, struct dlz_bind9_data
);
1741 struct dnsp_DnssrvRpcRecord
*rec
;
1743 isc_result_t result
;
1744 struct dnsp_DnssrvRpcRecord
*recs
= NULL
;
1745 uint16_t num_recs
= 0;
1749 if (state
->transaction_token
!= (void*)version
) {
1750 state
->log(ISC_LOG_ERROR
, "samba_dlz: bad transaction version");
1751 return ISC_R_FAILURE
;
1754 rec
= talloc_zero(state
, struct dnsp_DnssrvRpcRecord
);
1756 return ISC_R_NOMEMORY
;
1759 if (!b9_parse(state
, rdatastr
, rec
)) {
1760 state
->log(ISC_LOG_ERROR
, "samba_dlz: failed to parse rdataset '%s'", rdatastr
);
1762 return ISC_R_FAILURE
;
1765 /* find the DN of the record */
1766 result
= b9_find_name_dn(state
, name
, rec
, &dn
);
1767 if (result
!= ISC_R_SUCCESS
) {
1772 /* get the existing records */
1773 werr
= dns_common_lookup(state
->samdb
, rec
, dn
,
1774 &recs
, &num_recs
, NULL
);
1775 if (!W_ERROR_IS_OK(werr
)) {
1777 return ISC_R_NOTFOUND
;
1780 for (i
=0; i
< num_recs
; i
++) {
1781 if (b9_record_match(state
, rec
, &recs
[i
])) {
1782 recs
[i
] = (struct dnsp_DnssrvRpcRecord
) {
1783 .wType
= DNS_TYPE_TOMBSTONE
,
1788 if (i
== num_recs
) {
1790 return ISC_R_NOTFOUND
;
1793 if (!b9_set_session_info(state
, name
)) {
1795 return ISC_R_FAILURE
;
1798 /* modify the record */
1799 werr
= dns_common_replace(state
->samdb
, rec
, dn
,
1800 false,/* needs_add */
1803 b9_reset_session_info(state
);
1804 if (!W_ERROR_IS_OK(werr
)) {
1805 state
->log(ISC_LOG_ERROR
, "samba_dlz: failed to modify %s - %s",
1806 ldb_dn_get_linearized(dn
), win_errstr(werr
));
1808 return ISC_R_FAILURE
;
1811 state
->log(ISC_LOG_INFO
, "samba_dlz: subtracted rdataset %s '%s'", name
, rdatastr
);
1814 return ISC_R_SUCCESS
;
1819 delete all records of the given type
1821 _PUBLIC_ isc_result_t
dlz_delrdataset(const char *name
, const char *type
, void *dbdata
, void *version
)
1823 struct dlz_bind9_data
*state
= talloc_get_type_abort(dbdata
, struct dlz_bind9_data
);
1824 TALLOC_CTX
*tmp_ctx
;
1826 isc_result_t result
;
1827 enum dns_record_type dns_type
;
1829 struct dnsp_DnssrvRpcRecord
*recs
= NULL
;
1830 uint16_t num_recs
= 0;
1834 if (state
->transaction_token
!= (void*)version
) {
1835 state
->log(ISC_LOG_ERROR
, "samba_dlz: bad transaction version");
1836 return ISC_R_FAILURE
;
1839 if (!b9_dns_type(type
, &dns_type
)) {
1840 state
->log(ISC_LOG_ERROR
, "samba_dlz: bad dns type %s in delete", type
);
1841 return ISC_R_FAILURE
;
1844 tmp_ctx
= talloc_new(state
);
1846 /* find the DN of the record */
1847 result
= b9_find_name_dn(state
, name
, tmp_ctx
, &dn
);
1848 if (result
!= ISC_R_SUCCESS
) {
1849 talloc_free(tmp_ctx
);
1853 /* get the existing records */
1854 werr
= dns_common_lookup(state
->samdb
, tmp_ctx
, dn
,
1855 &recs
, &num_recs
, NULL
);
1856 if (!W_ERROR_IS_OK(werr
)) {
1857 talloc_free(tmp_ctx
);
1858 return ISC_R_NOTFOUND
;
1861 for (ri
=0; ri
< num_recs
; ri
++) {
1862 if (dns_type
!= recs
[ri
].wType
) {
1867 recs
[ri
] = (struct dnsp_DnssrvRpcRecord
) {
1868 .wType
= DNS_TYPE_TOMBSTONE
,
1873 talloc_free(tmp_ctx
);
1874 return ISC_R_FAILURE
;
1877 if (!b9_set_session_info(state
, name
)) {
1878 talloc_free(tmp_ctx
);
1879 return ISC_R_FAILURE
;
1882 /* modify the record */
1883 werr
= dns_common_replace(state
->samdb
, tmp_ctx
, dn
,
1884 false,/* needs_add */
1887 b9_reset_session_info(state
);
1888 if (!W_ERROR_IS_OK(werr
)) {
1889 state
->log(ISC_LOG_ERROR
, "samba_dlz: failed to modify %s - %s",
1890 ldb_dn_get_linearized(dn
), win_errstr(werr
));
1891 talloc_free(tmp_ctx
);
1892 return ISC_R_FAILURE
;
1895 state
->log(ISC_LOG_INFO
, "samba_dlz: deleted rdataset %s of type %s", name
, type
);
1897 talloc_free(tmp_ctx
);
1898 return ISC_R_SUCCESS
;