2 Unix SMB/CIFS implementation.
6 Copyright (C) 2010 Kai Blin <kai@samba.org>
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 "libcli/util/ntstatus.h"
24 #include "libcli/util/werror.h"
25 #include "librpc/ndr/libndr.h"
26 #include "librpc/gen_ndr/ndr_dns.h"
27 #include "librpc/gen_ndr/ndr_dnsp.h"
29 #include "dsdb/samdb/samdb.h"
30 #include "dsdb/common/util.h"
31 #include "dns_server/dns_server.h"
34 #define DBGC_CLASS DBGC_DNS
36 bool dns_name_match(const char *zone
, const char *name
, size_t *host_part_len
)
38 size_t zl
= strlen(zone
);
39 size_t nl
= strlen(name
);
41 static const size_t fixup
= 'a' - 'A';
47 for (zi
= zl
, ni
= nl
; zi
>= 0; zi
--, ni
--) {
51 /* convert to lower case */
52 if (zc
>= 'A' && zc
<= 'Z') {
55 if (nc
>= 'A' && nc
<= 'Z') {
65 if (name
[ni
] != '.') {
72 *host_part_len
= ni
+1;
77 /* Names are equal if they match and there's nothing left over */
78 bool dns_name_equal(const char *name1
, const char *name2
)
81 bool ret
= dns_name_match(name1
, name2
, &host_part_len
);
83 return ret
&& (host_part_len
== 0);
87 see if two dns records match
89 bool dns_records_match(struct dnsp_DnssrvRpcRecord
*rec1
,
90 struct dnsp_DnssrvRpcRecord
*rec2
)
95 if (rec1
->wType
!= rec2
->wType
) {
99 /* see if the data matches */
100 switch (rec1
->wType
) {
102 return strcmp(rec1
->data
.ipv4
, rec2
->data
.ipv4
) == 0;
104 return strcmp(rec1
->data
.ipv6
, rec2
->data
.ipv6
) == 0;
106 return dns_name_equal(rec1
->data
.cname
, rec2
->data
.cname
);
108 if (rec1
->data
.txt
.count
!= rec2
->data
.txt
.count
) {
112 for (i
=0; i
<rec1
->data
.txt
.count
; i
++) {
113 status
= status
&& (strcmp(rec1
->data
.txt
.str
[i
],
114 rec2
->data
.txt
.str
[i
]) == 0);
118 return strcmp(rec1
->data
.ptr
, rec2
->data
.ptr
) == 0;
120 return dns_name_equal(rec1
->data
.ns
, rec2
->data
.ns
);
123 return rec1
->data
.srv
.wPriority
== rec2
->data
.srv
.wPriority
&&
124 rec1
->data
.srv
.wWeight
== rec2
->data
.srv
.wWeight
&&
125 rec1
->data
.srv
.wPort
== rec2
->data
.srv
.wPort
&&
126 dns_name_equal(rec1
->data
.srv
.nameTarget
, rec2
->data
.srv
.nameTarget
);
129 return rec1
->data
.mx
.wPriority
== rec2
->data
.mx
.wPriority
&&
130 dns_name_equal(rec1
->data
.mx
.nameTarget
, rec2
->data
.mx
.nameTarget
);
133 return strcmp(rec1
->data
.hinfo
.cpu
, rec2
->data
.hinfo
.cpu
) == 0 &&
134 strcmp(rec1
->data
.hinfo
.os
, rec2
->data
.hinfo
.os
) == 0;
137 return dns_name_equal(rec1
->data
.soa
.mname
, rec2
->data
.soa
.mname
) &&
138 dns_name_equal(rec1
->data
.soa
.rname
, rec2
->data
.soa
.rname
) &&
139 rec1
->data
.soa
.serial
== rec2
->data
.soa
.serial
&&
140 rec1
->data
.soa
.refresh
== rec2
->data
.soa
.refresh
&&
141 rec1
->data
.soa
.retry
== rec2
->data
.soa
.retry
&&
142 rec1
->data
.soa
.expire
== rec2
->data
.soa
.expire
&&
143 rec1
->data
.soa
.minimum
== rec2
->data
.soa
.minimum
;
151 WERROR
dns_lookup_records(struct dns_server
*dns
,
154 struct dnsp_DnssrvRpcRecord
**records
,
157 return dns_common_lookup(dns
->samdb
, mem_ctx
, dn
,
158 records
, rec_count
, NULL
);
161 WERROR
dns_replace_records(struct dns_server
*dns
,
165 struct dnsp_DnssrvRpcRecord
*records
,
168 /* TODO: Autogenerate this somehow */
169 uint32_t dwSerial
= 110;
170 return dns_common_replace(dns
->samdb
, mem_ctx
, dn
,
171 needs_add
, dwSerial
, records
, rec_count
);
174 bool dns_authorative_for_zone(struct dns_server
*dns
,
177 const struct dns_server_zone
*z
;
178 size_t host_part_len
= 0;
184 if (strcmp(name
, "") == 0) {
187 for (z
= dns
->zones
; z
!= NULL
; z
= z
->next
) {
190 match
= dns_name_match(z
->name
, name
, &host_part_len
);
202 const char *dns_get_authoritative_zone(struct dns_server
*dns
,
205 const struct dns_server_zone
*z
;
206 size_t host_part_len
= 0;
208 for (z
= dns
->zones
; z
!= NULL
; z
= z
->next
) {
210 match
= dns_name_match(z
->name
, name
, &host_part_len
);
218 WERROR
dns_name2dn(struct dns_server
*dns
,
225 const struct dns_server_zone
*z
;
226 size_t host_part_len
= 0;
229 return DNS_ERR(FORMAT_ERROR
);
232 /*TODO: Check if 'name' is a valid DNS name */
234 if (strcmp(name
, "") == 0) {
235 base
= ldb_get_default_basedn(dns
->samdb
);
236 dn
= ldb_dn_copy(mem_ctx
, base
);
237 ldb_dn_add_child_fmt(dn
, "DC=@,DC=RootDNSServers,CN=MicrosoftDNS,CN=System");
242 for (z
= dns
->zones
; z
!= NULL
; z
= z
->next
) {
245 match
= dns_name_match(z
->name
, name
, &host_part_len
);
252 return DNS_ERR(NAME_ERROR
);
255 if (host_part_len
== 0) {
256 dn
= ldb_dn_copy(mem_ctx
, z
->dn
);
257 ldb_dn_add_child_fmt(dn
, "DC=@");
262 dn
= ldb_dn_copy(mem_ctx
, z
->dn
);
263 ldb_dn_add_child_fmt(dn
, "DC=%*.*s", (int)host_part_len
, (int)host_part_len
, name
);
268 WERROR
dns_generate_options(struct dns_server
*dns
,
270 struct dns_res_rec
**options
)
272 struct dns_res_rec
*o
;
274 o
= talloc_zero(mem_ctx
, struct dns_res_rec
);
279 o
->rr_type
= DNS_QTYPE_OPT
;
280 /* This is ugly, but RFC2671 wants the payload size in this field */
281 o
->rr_class
= (enum dns_qclass
) dns
->max_payload
;