2 Unix SMB/CIFS implementation.
6 Copyright (C) Amitay Isaacs 2011
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/>.
23 #include "dnsserver.h"
24 #include "lib/util/dlinklist.h"
25 #include "librpc/gen_ndr/ndr_dnsp.h"
26 #include "librpc/gen_ndr/ndr_security.h"
27 #include "librpc/gen_ndr/ndr_misc.h"
28 #include "dsdb/samdb/samdb.h"
29 #include "libcli/security/security.h"
30 #include "dsdb/common/util.h"
32 /* There are only 2 fixed partitions for DNS */
33 struct dnsserver_partition
*dnsserver_db_enumerate_partitions(TALLOC_CTX
*mem_ctx
,
34 struct dnsserver_serverinfo
*serverinfo
,
35 struct ldb_context
*samdb
)
37 struct dnsserver_partition
*partitions
, *p
;
41 /* Domain partition */
42 p
= talloc_zero(mem_ctx
, struct dnsserver_partition
);
47 p
->partition_dn
= ldb_dn_new(p
, samdb
, serverinfo
->pszDomainDirectoryPartition
);
48 if (p
->partition_dn
== NULL
) {
52 p
->pszDpFqdn
= samdb_dn_to_dns_domain(p
, p
->partition_dn
);
53 p
->dwDpFlags
= DNS_DP_AUTOCREATED
| DNS_DP_DOMAIN_DEFAULT
| DNS_DP_ENLISTED
;
56 DLIST_ADD_END(partitions
, p
, NULL
);
58 /* Forest Partition */
59 p
= talloc_zero(mem_ctx
, struct dnsserver_partition
);
64 p
->partition_dn
= ldb_dn_new(p
, samdb
, serverinfo
->pszForestDirectoryPartition
);
65 if (p
->partition_dn
== NULL
) {
69 p
->pszDpFqdn
= samdb_dn_to_dns_domain(p
, p
->partition_dn
);
70 p
->dwDpFlags
= DNS_DP_AUTOCREATED
| DNS_DP_FOREST_DEFAULT
| DNS_DP_ENLISTED
;
73 DLIST_ADD_END(partitions
, p
, NULL
);
83 /* Search for all dnsZone records */
84 struct dnsserver_zone
*dnsserver_db_enumerate_zones(TALLOC_CTX
*mem_ctx
,
85 struct ldb_context
*samdb
,
86 struct dnsserver_partition
*p
)
89 const char * const attrs
[] = {"name", NULL
};
91 struct ldb_result
*res
;
92 struct dnsserver_zone
*zones
, *z
;
95 tmp_ctx
= talloc_new(mem_ctx
);
96 if (tmp_ctx
== NULL
) {
100 dn
= ldb_dn_copy(tmp_ctx
, p
->partition_dn
);
104 if (!ldb_dn_add_child_fmt(dn
, "CN=MicrosoftDNS")) {
108 ret
= ldb_search(samdb
, tmp_ctx
, &res
, dn
, LDB_SCOPE_SUBTREE
,
109 attrs
, "(objectClass=dnsZone)");
110 if (ret
!= LDB_SUCCESS
) {
111 DEBUG(0, ("dnsserver: Failed to find DNS Zones in %s\n",
112 ldb_dn_get_linearized(dn
)));
117 for(i
=0; i
<res
->count
; i
++) {
119 z
= talloc_zero(mem_ctx
, struct dnsserver_zone
);
125 name
= talloc_strdup(z
,
126 ldb_msg_find_attr_as_string(res
->msgs
[i
], "name", NULL
));
127 if (strcmp(name
, "..TrustAnchors") == 0) {
131 if (strcmp(name
, "RootDNSServers") == 0) {
133 z
->name
= talloc_strdup(z
, ".");
137 z
->zone_dn
= talloc_steal(z
, res
->msgs
[i
]->dn
);
139 DLIST_ADD_END(zones
, z
, NULL
);
140 DEBUG(2, ("dnsserver: Found DNS zone %s\n", z
->name
));
146 talloc_free(tmp_ctx
);
151 /* Find DNS partition information */
152 struct dnsserver_partition_info
*dnsserver_db_partition_info(TALLOC_CTX
*mem_ctx
,
153 struct ldb_context
*samdb
,
154 struct dnsserver_partition
*p
)
156 const char * const attrs
[] = { "instanceType", "msDs-masteredBy", NULL
};
157 const char * const attrs_none
[] = { NULL
};
158 struct ldb_result
*res
;
159 struct ldb_message_element
*el
;
161 struct dnsserver_partition_info
*partinfo
;
162 int i
, ret
, instance_type
;
165 tmp_ctx
= talloc_new(mem_ctx
);
166 if (tmp_ctx
== NULL
) {
170 partinfo
= talloc_zero(mem_ctx
, struct dnsserver_partition_info
);
171 if (partinfo
== NULL
) {
172 talloc_free(tmp_ctx
);
176 /* Search for the active replica and state */
177 ret
= ldb_search(samdb
, tmp_ctx
, &res
, p
->partition_dn
, LDB_SCOPE_BASE
,
179 if (ret
!= LDB_SUCCESS
|| res
->count
!= 1) {
183 /* Set the state of the partition */
184 instance_type
= ldb_msg_find_attr_as_int(res
->msgs
[0], "instanceType", -1);
185 if (instance_type
== -1) {
186 partinfo
->dwState
= DNS_DP_STATE_UNKNOWN
;
187 } else if (instance_type
& INSTANCE_TYPE_NC_COMING
) {
188 partinfo
->dwState
= DNS_DP_STATE_REPL_INCOMING
;
189 } else if (instance_type
& INSTANCE_TYPE_NC_GOING
) {
190 partinfo
->dwState
= DNS_DP_STATE_REPL_OUTGOING
;
192 partinfo
->dwState
= DNS_DP_OKAY
;
195 el
= ldb_msg_find_element(res
->msgs
[0], "msDs-masteredBy");
197 partinfo
->dwReplicaCount
= 0;
198 partinfo
->ReplicaArray
= NULL
;
200 partinfo
->dwReplicaCount
= el
->num_values
;
201 partinfo
->ReplicaArray
= talloc_zero_array(partinfo
,
202 struct DNS_RPC_DP_REPLICA
*,
204 if (partinfo
->ReplicaArray
== NULL
) {
207 for (i
=0; i
<el
->num_values
; i
++) {
208 partinfo
->ReplicaArray
[i
] = talloc_zero(partinfo
,
209 struct DNS_RPC_DP_REPLICA
);
210 if (partinfo
->ReplicaArray
[i
] == NULL
) {
213 partinfo
->ReplicaArray
[i
]->pszReplicaDn
= talloc_strdup(
215 (const char *)el
->values
[i
].data
);
216 if (partinfo
->ReplicaArray
[i
]->pszReplicaDn
== NULL
) {
223 /* Search for cross-reference object */
224 dn
= ldb_dn_copy(tmp_ctx
, ldb_get_config_basedn(samdb
));
229 ret
= ldb_search(samdb
, tmp_ctx
, &res
, dn
, LDB_SCOPE_DEFAULT
, attrs_none
,
230 "(nCName=%s)", ldb_dn_get_linearized(p
->partition_dn
));
231 if (ret
!= LDB_SUCCESS
|| res
->count
!= 1) {
234 partinfo
->pszCrDn
= talloc_strdup(partinfo
, ldb_dn_get_linearized(res
->msgs
[0]->dn
));
235 if (partinfo
->pszCrDn
== NULL
) {
240 talloc_free(tmp_ctx
);
244 talloc_free(tmp_ctx
);
245 talloc_free(partinfo
);
250 /* Increment serial number and update timestamp */
251 static unsigned int dnsserver_update_soa(TALLOC_CTX
*mem_ctx
,
252 struct ldb_context
*samdb
,
253 struct dnsserver_zone
*z
)
255 const char * const attrs
[] = { "dnsRecord", NULL
};
256 struct ldb_result
*res
;
257 struct dnsp_DnssrvRpcRecord rec
;
258 struct ldb_message_element
*el
;
259 enum ndr_err_code ndr_err
;
260 int ret
, i
, serial
= -1;
263 unix_to_nt_time(&t
, time(NULL
));
264 t
/= 10*1000*1000; /* convert to seconds (NT time is in 100ns units) */
265 t
/= 3600; /* convert to hours */
267 ret
= ldb_search(samdb
, mem_ctx
, &res
, z
->zone_dn
, LDB_SCOPE_ONELEVEL
, attrs
,
268 "(&(objectClass=dnsNode)(name=@))");
269 if (ret
!= LDB_SUCCESS
|| res
->count
== 0) {
273 el
= ldb_msg_find_element(res
->msgs
[0], "dnsRecord");
278 for (i
=0; i
<el
->num_values
; i
++) {
279 ndr_err
= ndr_pull_struct_blob(&el
->values
[i
], mem_ctx
, &rec
,
280 (ndr_pull_flags_fn_t
)ndr_pull_dnsp_DnssrvRpcRecord
);
281 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
285 if (rec
.wType
== DNS_TYPE_SOA
) {
286 serial
= rec
.data
.soa
.serial
+ 1;
287 rec
.dwSerial
= serial
;
288 rec
.dwTimeStamp
= (uint32_t)t
;
289 rec
.data
.soa
.serial
= serial
;
291 ndr_err
= ndr_push_struct_blob(&el
->values
[i
], mem_ctx
, &rec
,
292 (ndr_push_flags_fn_t
)ndr_push_dnsp_DnssrvRpcRecord
);
293 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
301 el
->flags
= LDB_FLAG_MOD_REPLACE
;
302 ret
= ldb_modify(samdb
, res
->msgs
[0]);
303 if (ret
!= LDB_SUCCESS
) {
312 /* Add DNS record to the database */
313 static WERROR
dnsserver_db_do_add_rec(TALLOC_CTX
*mem_ctx
,
314 struct ldb_context
*samdb
,
317 struct dnsp_DnssrvRpcRecord
*rec
)
319 struct ldb_message
*msg
;
322 enum ndr_err_code ndr_err
;
325 msg
= ldb_msg_new(mem_ctx
);
326 W_ERROR_HAVE_NO_MEMORY(msg
);
329 ret
= ldb_msg_add_string(msg
, "objectClass", "dnsNode");
330 if (ret
!= LDB_SUCCESS
) {
334 if (num_rec
> 0 && rec
) {
335 for (i
=0; i
<num_rec
; i
++) {
336 ndr_err
= ndr_push_struct_blob(&v
, mem_ctx
, &rec
[i
],
337 (ndr_push_flags_fn_t
)ndr_push_dnsp_DnssrvRpcRecord
);
338 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
339 return WERR_GENERAL_FAILURE
;
342 ret
= ldb_msg_add_value(msg
, "dnsRecord", &v
, NULL
);
343 if (ret
!= LDB_SUCCESS
) {
349 ret
= ldb_add(samdb
, msg
);
350 if (ret
!= LDB_SUCCESS
) {
351 return WERR_INTERNAL_DB_ERROR
;
358 /* Add dnsNode record to the database with DNS record */
359 WERROR
dnsserver_db_add_empty_node(TALLOC_CTX
*mem_ctx
,
360 struct ldb_context
*samdb
,
361 struct dnsserver_zone
*z
,
364 const char * const attrs
[] = { "name", NULL
};
365 struct ldb_result
*res
;
369 ret
= ldb_search(samdb
, mem_ctx
, &res
, z
->zone_dn
, LDB_SCOPE_BASE
, attrs
,
370 "(&(objectClass=dnsNode)(name=%s))", name
);
371 if (ret
!= LDB_SUCCESS
) {
372 return WERR_INTERNAL_DB_ERROR
;
375 if (res
->count
> 0) {
377 return WERR_DNS_ERROR_RECORD_ALREADY_EXISTS
;
380 dn
= ldb_dn_copy(mem_ctx
, z
->zone_dn
);
381 W_ERROR_HAVE_NO_MEMORY(dn
);
383 if (!ldb_dn_add_child_fmt(dn
, "DC=%s", name
)) {
387 return dnsserver_db_do_add_rec(mem_ctx
, samdb
, dn
, 0, NULL
);
391 /* Add a DNS record */
392 WERROR
dnsserver_db_add_record(TALLOC_CTX
*mem_ctx
,
393 struct ldb_context
*samdb
,
394 struct dnsserver_zone
*z
,
396 struct DNS_RPC_RECORD
*add_record
)
398 const char * const attrs
[] = { "dnsRecord", NULL
};
399 struct ldb_result
*res
;
400 struct dnsp_DnssrvRpcRecord
*rec
;
401 struct ldb_message_element
*el
;
403 enum ndr_err_code ndr_err
;
408 rec
= dns_to_dnsp_copy(mem_ctx
, add_record
);
409 W_ERROR_HAVE_NO_MEMORY(rec
);
411 /* Set the correct rank for the record.
412 * FIXME: add logic to check for glue records */
413 if (z
->zoneinfo
->dwZoneType
== DNS_ZONE_TYPE_PRIMARY
) {
414 rec
->rank
|= DNS_RANK_ZONE
;
415 } else if (strcmp(z
->name
, ".") == 0) {
416 rec
->rank
|= DNS_RANK_ROOT_HINT
;
419 serial
= dnsserver_update_soa(mem_ctx
, samdb
, z
);
421 return WERR_INTERNAL_DB_ERROR
;
424 unix_to_nt_time(&t
, time(NULL
));
425 t
/= 10*1000*1000; /* convert to seconds (NT time is in 100ns units) */
426 t
/= 3600; /* convert to hours */
428 rec
->dwSerial
= serial
;
429 rec
->dwTimeStamp
= t
;
431 ret
= ldb_search(samdb
, mem_ctx
, &res
, z
->zone_dn
, LDB_SCOPE_ONELEVEL
, attrs
,
432 "(&(objectClass=dnsNode)(name=%s))", name
);
433 if (ret
!= LDB_SUCCESS
) {
434 return WERR_INTERNAL_DB_ERROR
;
437 if (res
->count
== 0) {
438 dn
= dnsserver_name_to_dn(mem_ctx
, z
, name
);
439 W_ERROR_HAVE_NO_MEMORY(dn
);
441 return dnsserver_db_do_add_rec(mem_ctx
, samdb
, dn
, 1, rec
);
444 el
= ldb_msg_find_element(res
->msgs
[0], "dnsRecord");
446 ret
= ldb_msg_add_empty(res
->msgs
[0], "dnsRecord", 0, &el
);
447 if (ret
!= LDB_SUCCESS
) {
452 for (i
=0; i
<el
->num_values
; i
++) {
453 struct dnsp_DnssrvRpcRecord rec2
;
455 ndr_err
= ndr_pull_struct_blob(&el
->values
[i
], mem_ctx
, &rec2
,
456 (ndr_pull_flags_fn_t
)ndr_pull_dnsp_DnssrvRpcRecord
);
457 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
458 return WERR_GENERAL_FAILURE
;
461 if (dns_record_match(rec
, &rec2
)) {
465 if (i
< el
->num_values
) {
466 return WERR_DNS_ERROR_RECORD_ALREADY_EXISTS
;
468 if (i
== el
->num_values
) {
469 /* adding a new value */
470 el
->values
= talloc_realloc(el
, el
->values
, struct ldb_val
, el
->num_values
+1);
471 W_ERROR_HAVE_NO_MEMORY(el
->values
);
475 ndr_err
= ndr_push_struct_blob(&el
->values
[i
], mem_ctx
, rec
,
476 (ndr_push_flags_fn_t
)ndr_push_dnsp_DnssrvRpcRecord
);
477 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
478 return WERR_GENERAL_FAILURE
;
481 el
->flags
= LDB_FLAG_MOD_REPLACE
;
482 ret
= ldb_modify(samdb
, res
->msgs
[0]);
483 if (ret
!= LDB_SUCCESS
) {
484 return WERR_INTERNAL_DB_ERROR
;
491 /* Update a DNS record */
492 WERROR
dnsserver_db_update_record(TALLOC_CTX
*mem_ctx
,
493 struct ldb_context
*samdb
,
494 struct dnsserver_zone
*z
,
496 struct DNS_RPC_RECORD
*add_record
,
497 struct DNS_RPC_RECORD
*del_record
)
499 const char * const attrs
[] = { "dnsRecord", NULL
};
500 struct ldb_result
*res
;
501 struct dnsp_DnssrvRpcRecord
*arec
, *drec
;
502 struct ldb_message_element
*el
;
503 enum ndr_err_code ndr_err
;
508 arec
= dns_to_dnsp_copy(mem_ctx
, add_record
);
509 W_ERROR_HAVE_NO_MEMORY(arec
);
511 drec
= dns_to_dnsp_copy(mem_ctx
, del_record
);
512 W_ERROR_HAVE_NO_MEMORY(drec
);
514 unix_to_nt_time(&t
, time(NULL
));
517 arec
->dwTimeStamp
= t
;
519 ret
= ldb_search(samdb
, mem_ctx
, &res
, z
->zone_dn
, LDB_SCOPE_ONELEVEL
, attrs
,
520 "(&(objectClass=dnsNode)(name=%s))", name
);
521 if (ret
!= LDB_SUCCESS
) {
522 return WERR_INTERNAL_DB_ERROR
;
525 if (res
->count
== 0) {
526 return WERR_DNS_ERROR_RECORD_DOES_NOT_EXIST
;
529 el
= ldb_msg_find_element(res
->msgs
[0], "dnsRecord");
530 if (el
== NULL
|| el
->num_values
== 0) {
531 return WERR_DNS_ERROR_RECORD_DOES_NOT_EXIST
;
534 for (i
=0; i
<el
->num_values
; i
++) {
535 struct dnsp_DnssrvRpcRecord rec2
;
537 ndr_err
= ndr_pull_struct_blob(&el
->values
[i
], mem_ctx
, &rec2
,
538 (ndr_pull_flags_fn_t
)ndr_pull_dnsp_DnssrvRpcRecord
);
539 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
540 return WERR_GENERAL_FAILURE
;
543 if (dns_record_match(arec
, &rec2
)) {
547 if (i
< el
->num_values
) {
548 return WERR_DNS_ERROR_RECORD_ALREADY_EXISTS
;
552 for (i
=0; i
<el
->num_values
; i
++) {
553 struct dnsp_DnssrvRpcRecord rec2
;
555 ndr_err
= ndr_pull_struct_blob(&el
->values
[i
], mem_ctx
, &rec2
,
556 (ndr_pull_flags_fn_t
)ndr_pull_dnsp_DnssrvRpcRecord
);
557 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
558 return WERR_GENERAL_FAILURE
;
561 if (dns_record_match(drec
, &rec2
)) {
565 if (i
== el
->num_values
) {
566 return WERR_DNS_ERROR_RECORD_DOES_NOT_EXIST
;
569 /* If updating SOA record, use specified serial, otherwise increment */
570 if (arec
->wType
!= DNS_TYPE_SOA
) {
571 serial
= dnsserver_update_soa(mem_ctx
, samdb
, z
);
573 return WERR_INTERNAL_DB_ERROR
;
575 arec
->dwSerial
= serial
;
578 ndr_err
= ndr_push_struct_blob(&el
->values
[i
], mem_ctx
, arec
,
579 (ndr_push_flags_fn_t
)ndr_push_dnsp_DnssrvRpcRecord
);
580 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
581 return WERR_GENERAL_FAILURE
;
584 el
->flags
= LDB_FLAG_MOD_REPLACE
;
585 ret
= ldb_modify(samdb
, res
->msgs
[0]);
586 if (ret
!= LDB_SUCCESS
) {
587 return WERR_INTERNAL_DB_ERROR
;
594 /* Delete a DNS record */
595 WERROR
dnsserver_db_delete_record(TALLOC_CTX
*mem_ctx
,
596 struct ldb_context
*samdb
,
597 struct dnsserver_zone
*z
,
599 struct DNS_RPC_RECORD
*del_record
)
601 const char * const attrs
[] = { "dnsRecord", NULL
};
602 struct ldb_result
*res
;
603 struct dnsp_DnssrvRpcRecord
*rec
;
604 struct ldb_message_element
*el
;
605 enum ndr_err_code ndr_err
;
609 serial
= dnsserver_update_soa(mem_ctx
, samdb
, z
);
611 return WERR_INTERNAL_DB_ERROR
;
614 rec
= dns_to_dnsp_copy(mem_ctx
, del_record
);
615 W_ERROR_HAVE_NO_MEMORY(rec
);
617 ret
= ldb_search(samdb
, mem_ctx
, &res
, z
->zone_dn
, LDB_SCOPE_ONELEVEL
, attrs
,
618 "(&(objectClass=dnsNode)(name=%s))", name
);
619 if (ret
!= LDB_SUCCESS
) {
620 return WERR_INTERNAL_DB_ERROR
;
623 if (res
->count
== 0) {
624 return WERR_DNS_ERROR_RECORD_DOES_NOT_EXIST
;
627 el
= ldb_msg_find_element(res
->msgs
[0], "dnsRecord");
628 if (el
== NULL
|| el
->num_values
== 0) {
629 return WERR_DNS_ERROR_RECORD_DOES_NOT_EXIST
;
632 for (i
=0; i
<el
->num_values
; i
++) {
633 struct dnsp_DnssrvRpcRecord rec2
;
635 ndr_err
= ndr_pull_struct_blob(&el
->values
[i
], mem_ctx
, &rec2
,
636 (ndr_pull_flags_fn_t
)ndr_pull_dnsp_DnssrvRpcRecord
);
637 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
638 return WERR_GENERAL_FAILURE
;
641 if (dns_record_match(rec
, &rec2
)) {
645 if (i
== el
->num_values
) {
646 return WERR_DNS_ERROR_RECORD_DOES_NOT_EXIST
;
648 if (i
< el
->num_values
-1) {
649 memmove(&el
->values
[i
], &el
->values
[i
+1], sizeof(el
->values
[0])*((el
->num_values
-1)-i
));
653 if (el
->num_values
== 0) {
654 ret
= ldb_delete(samdb
, res
->msgs
[0]->dn
);
656 el
->flags
= LDB_FLAG_MOD_REPLACE
;
657 ret
= ldb_modify(samdb
, res
->msgs
[0]);
659 if (ret
!= LDB_SUCCESS
) {
660 return WERR_INTERNAL_DB_ERROR
;
667 static bool dnsserver_db_msg_add_dnsproperty(TALLOC_CTX
*mem_ctx
,
668 struct ldb_message
*msg
,
669 struct dnsp_DnsProperty
*prop
)
671 DATA_BLOB
*prop_blob
;
672 enum ndr_err_code ndr_err
;
675 prop_blob
= talloc_zero(mem_ctx
, DATA_BLOB
);
676 if (prop_blob
== NULL
) return false;
678 ndr_err
= ndr_push_struct_blob(prop_blob
, mem_ctx
, prop
,
679 (ndr_push_flags_fn_t
)ndr_push_dnsp_DnsProperty
);
680 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
683 ret
= ldb_msg_add_steal_value(msg
, "dNSProperty", prop_blob
);
684 if (ret
!= LDB_SUCCESS
) {
691 /* Create dnsZone record to database and set security descriptor */
692 static WERROR
dnsserver_db_do_create_zone(TALLOC_CTX
*tmp_ctx
,
693 struct ldb_context
*samdb
,
694 struct ldb_dn
*zone_dn
,
695 struct dnsserver_zone
*z
)
697 const char * const attrs
[] = { "objectSID", NULL
};
698 struct ldb_message
*msg
;
699 struct ldb_result
*res
;
700 struct ldb_message_element
*el
;
701 const char sddl_template
[] = "D:AI(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;DA)(A;;CC;;;AU)(A;;RPLCLORC;;;WD)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;CI;RPWPCRCCDCLCRCWOWDSDDTSW;;;ED)(A;CIID;RPWPCRCCDCLCRCWOWDSDDTSW;;;%s)(A;CIID;RPWPCRCCDCLCRCWOWDSDDTSW;;;ED)(OA;CIID;RPWPCR;91e647de-d96f-4b70-9557-d63ff4f3ccd8;;PS)(A;CIID;RPWPCRCCDCLCLORCWOWDSDDTSW;;;EA)(A;CIID;LC;;;RU)(A;CIID;RPWPCRCCLCLORCWOWDSDSW;;;BA)S:AI";
703 struct dom_sid dnsadmins_sid
;
704 const struct dom_sid
*domain_sid
;
705 struct security_descriptor
*secdesc
;
706 struct dnsp_DnsProperty
*prop
;
707 DATA_BLOB
*sd_encoded
;
708 enum ndr_err_code ndr_err
;
711 /* Get DnsAdmins SID */
712 ret
= ldb_search(samdb
, tmp_ctx
, &res
, ldb_get_default_basedn(samdb
),
713 LDB_SCOPE_DEFAULT
, attrs
, "(sAMAccountName=DnsAdmins)");
714 if (ret
!= LDB_SUCCESS
|| res
->count
!= 1) {
715 return WERR_INTERNAL_DB_ERROR
;
718 el
= ldb_msg_find_element(res
->msgs
[0], "objectSID");
719 if (el
== NULL
|| el
->num_values
!= 1) {
720 return WERR_INTERNAL_DB_ERROR
;
723 ndr_err
= ndr_pull_struct_blob(&el
->values
[0], tmp_ctx
, &dnsadmins_sid
,
724 (ndr_pull_flags_fn_t
)ndr_pull_dom_sid
);
725 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
726 return WERR_INTERNAL_DB_ERROR
;
729 /* create security descriptor with DnsAdmins GUID in sddl template */
730 sddl
= talloc_asprintf(tmp_ctx
, sddl_template
,
731 dom_sid_string(tmp_ctx
, &dnsadmins_sid
));
737 domain_sid
= samdb_domain_sid(samdb
);
738 if (domain_sid
== NULL
) {
739 return WERR_INTERNAL_DB_ERROR
;
742 secdesc
= sddl_decode(tmp_ctx
, sddl
, domain_sid
);
743 if (secdesc
== NULL
) {
744 return WERR_GENERAL_FAILURE
;
747 msg
= ldb_msg_new(tmp_ctx
);
748 W_ERROR_HAVE_NO_MEMORY(msg
);
751 ret
= ldb_msg_add_string(msg
, "objectClass", "dnsZone");
752 if (ret
!= LDB_SUCCESS
) {
756 sd_encoded
= talloc_zero(tmp_ctx
, DATA_BLOB
);
757 W_ERROR_HAVE_NO_MEMORY(sd_encoded
);
759 ndr_err
= ndr_push_struct_blob(sd_encoded
, tmp_ctx
, secdesc
,
760 (ndr_push_flags_fn_t
)ndr_push_security_descriptor
);
761 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
762 return WERR_GENERAL_FAILURE
;
765 ret
= ldb_msg_add_steal_value(msg
, "nTSecurityDescriptor", sd_encoded
);
766 if (ret
!= LDB_SUCCESS
) {
770 /* dns zone Properties */
771 prop
= talloc_zero(tmp_ctx
, struct dnsp_DnsProperty
);
772 W_ERROR_HAVE_NO_MEMORY(prop
);
777 prop
->id
= DSPROPERTY_ZONE_TYPE
;
778 prop
->data
.zone_type
= z
->zoneinfo
->dwZoneType
;
779 if (!dnsserver_db_msg_add_dnsproperty(tmp_ctx
, msg
, prop
)) {
784 prop
->id
= DSPROPERTY_ZONE_ALLOW_UPDATE
;
785 prop
->data
.allow_update_flag
= z
->zoneinfo
->fAllowUpdate
;
786 if (!dnsserver_db_msg_add_dnsproperty(tmp_ctx
, msg
, prop
)) {
791 prop
->id
= DSPROPERTY_ZONE_SECURE_TIME
;
792 prop
->data
.zone_secure_time
= 0;
793 if (!dnsserver_db_msg_add_dnsproperty(tmp_ctx
, msg
, prop
)) {
797 /* norefresh interval */
798 prop
->id
= DSPROPERTY_ZONE_NOREFRESH_INTERVAL
;
799 prop
->data
.norefresh_hours
= 168;
800 if (!dnsserver_db_msg_add_dnsproperty(tmp_ctx
, msg
, prop
)) {
804 /* refresh interval */
805 prop
->id
= DSPROPERTY_ZONE_REFRESH_INTERVAL
;
806 prop
->data
.refresh_hours
= 168;
807 if (!dnsserver_db_msg_add_dnsproperty(tmp_ctx
, msg
, prop
)) {
812 prop
->id
= DSPROPERTY_ZONE_AGING_STATE
;
813 prop
->data
.aging_enabled
= z
->zoneinfo
->fAging
;
814 if (!dnsserver_db_msg_add_dnsproperty(tmp_ctx
, msg
, prop
)) {
818 /* aging enabled time */
819 prop
->id
= DSPROPERTY_ZONE_AGING_ENABLED_TIME
;
820 prop
->data
.next_scavenging_cycle_hours
= 0;
821 if (!dnsserver_db_msg_add_dnsproperty(tmp_ctx
, msg
, prop
)) {
827 ret
= ldb_add(samdb
, msg
);
828 if (ret
!= LDB_SUCCESS
) {
829 DEBUG(0, ("dnsserver: Failed to create zone (%s): %s\n",
830 z
->name
, ldb_errstring(samdb
)));
831 return WERR_INTERNAL_DB_ERROR
;
838 /* Create new dnsZone record and @ record (SOA + NS) */
839 WERROR
dnsserver_db_create_zone(struct ldb_context
*samdb
,
840 struct dnsserver_partition
*partitions
,
841 struct dnsserver_zone
*zone
,
842 struct loadparm_context
*lp_ctx
)
844 struct dnsserver_partition
*p
;
845 bool in_forest
= false;
849 struct dnsp_DnssrvRpcRecord
*dns_rec
;
851 char *tmpstr
, *server_fqdn
, *soa_email
;
854 /* We only support primary zones for now */
855 if (zone
->zoneinfo
->dwZoneType
!= DNS_ZONE_TYPE_PRIMARY
) {
856 return WERR_CALL_NOT_IMPLEMENTED
;
859 /* Get the correct partition */
860 if (zone
->partition
->dwDpFlags
& DNS_DP_FOREST_DEFAULT
) {
863 for (p
= partitions
; p
; p
= p
->next
) {
864 if (in_forest
== p
->is_forest
) {
869 return WERR_DNS_ERROR_DP_DOES_NOT_EXIST
;
872 tmp_ctx
= talloc_new(NULL
);
873 W_ERROR_HAVE_NO_MEMORY(tmp_ctx
);
875 dn
= ldb_dn_copy(tmp_ctx
, p
->partition_dn
);
876 W_ERROR_HAVE_NO_MEMORY_AND_FREE(dn
, tmp_ctx
);
878 if(!ldb_dn_add_child_fmt(dn
, "DC=%s,CN=MicrosoftDNS", zone
->name
)) {
879 talloc_free(tmp_ctx
);
883 /* Add dnsZone record */
884 status
= dnsserver_db_do_create_zone(tmp_ctx
, samdb
, dn
, zone
);
885 if (!W_ERROR_IS_OK(status
)) {
886 talloc_free(tmp_ctx
);
890 if (!ldb_dn_add_child_fmt(dn
, "DC=@")) {
891 talloc_free(tmp_ctx
);
895 dns_rec
= talloc_zero_array(tmp_ctx
, struct dnsp_DnssrvRpcRecord
, 2);
896 W_ERROR_HAVE_NO_MEMORY_AND_FREE(dns_rec
, tmp_ctx
);
898 tmpstr
= talloc_asprintf(tmp_ctx
, "%s.%s",
899 lpcfg_netbios_name(lp_ctx
),
900 lpcfg_realm(lp_ctx
));
901 W_ERROR_HAVE_NO_MEMORY_AND_FREE(tmpstr
, tmp_ctx
);
902 server_fqdn
= strlower_talloc(tmp_ctx
, tmpstr
);
903 W_ERROR_HAVE_NO_MEMORY_AND_FREE(server_fqdn
, tmp_ctx
);
906 tmpstr
= talloc_asprintf(tmp_ctx
, "hostmaster.%s",
907 lpcfg_realm(lp_ctx
));
908 W_ERROR_HAVE_NO_MEMORY_AND_FREE(tmpstr
, tmp_ctx
);
909 soa_email
= strlower_talloc(tmp_ctx
, tmpstr
);
910 W_ERROR_HAVE_NO_MEMORY_AND_FREE(soa_email
, tmp_ctx
);
913 unix_to_nt_time(&t
, time(NULL
));
914 t
/= 10*1000*1000; /* convert to seconds (NT time is in 100ns units) */
915 t
/= 3600; /* convert to hours */
917 /* SOA Record - values same as defined in provision/sambadns.py */
923 soa
.mname
= server_fqdn
;
924 soa
.rname
= soa_email
;
926 dns_rec
[0].wType
= DNS_TYPE_SOA
;
927 dns_rec
[0].rank
= DNS_RANK_ZONE
;
928 dns_rec
[0].dwSerial
= soa
.serial
;
929 dns_rec
[0].dwTtlSeconds
= 3600;
930 dns_rec
[0].dwTimeStamp
= (uint32_t)t
;
931 dns_rec
[0].data
.soa
= soa
;
934 dns_rec
[1].wType
= DNS_TYPE_NS
;
935 dns_rec
[1].rank
= DNS_RANK_ZONE
;
936 dns_rec
[1].dwSerial
= soa
.serial
;
937 dns_rec
[1].dwTtlSeconds
= 3600;
938 dns_rec
[1].dwTimeStamp
= (uint32_t)t
;
939 dns_rec
[1].data
.ns
= server_fqdn
;
942 status
= dnsserver_db_do_add_rec(tmp_ctx
, samdb
, dn
, 2, dns_rec
);
944 talloc_free(tmp_ctx
);
949 /* Delete dnsZone record and all DNS records in the zone */
950 WERROR
dnsserver_db_delete_zone(struct ldb_context
*samdb
,
951 struct dnsserver_zone
*zone
)
955 ret
= ldb_transaction_start(samdb
);
956 if (ret
!= LDB_SUCCESS
) {
957 return WERR_INTERNAL_DB_ERROR
;
960 ret
= dsdb_delete(samdb
, zone
->zone_dn
, DSDB_TREE_DELETE
);
961 if (ret
!= LDB_SUCCESS
) {
962 ldb_transaction_cancel(samdb
);
963 return WERR_INTERNAL_DB_ERROR
;
966 ret
= ldb_transaction_commit(samdb
);
967 if (ret
!= LDB_SUCCESS
) {
968 return WERR_INTERNAL_DB_ERROR
;