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 "smbd/service_task.h"
24 #include "smbd/service.h"
25 #include "smbd/service_stream.h"
26 #include "smbd/process_model.h"
27 #include "lib/events/events.h"
28 #include "lib/socket/socket.h"
29 #include "lib/tsocket/tsocket.h"
30 #include "libcli/util/tstream.h"
31 #include "libcli/util/ntstatus.h"
32 #include "system/network.h"
33 #include "lib/stream/packet.h"
34 #include "lib/socket/netif.h"
35 #include "dns_server/dns_server.h"
36 #include "param/param.h"
37 #include "librpc/ndr/libndr.h"
38 #include "librpc/gen_ndr/ndr_dns.h"
39 #include "librpc/gen_ndr/ndr_dnsp.h"
41 #include "dsdb/samdb/samdb.h"
42 #include "dsdb/common/util.h"
43 #include "auth/session.h"
44 #include "lib/util/dlinklist.h"
46 /* hold information about one dns socket */
48 struct dns_server
*dns
;
49 struct tsocket_address
*local_address
;
52 struct dns_udp_socket
{
53 struct dns_socket
*dns_socket
;
54 struct tdgram_context
*dgram
;
55 struct tevent_queue
*send_queue
;
59 state of an open tcp connection
61 struct dns_tcp_connection
{
62 /* stream connection we belong to */
63 struct stream_connection
*conn
;
65 /* the dns_server the connection belongs to */
66 struct dns_socket
*dns_socket
;
68 struct tstream_context
*tstream
;
70 struct tevent_queue
*send_queue
;
73 static void dns_tcp_terminate_connection(struct dns_tcp_connection
*dnsconn
, const char *reason
)
75 stream_terminate_connection(dnsconn
->conn
, reason
);
78 static void dns_tcp_recv(struct stream_connection
*conn
, uint16_t flags
)
80 struct dns_tcp_connection
*dnsconn
= talloc_get_type(conn
->private_data
,
81 struct dns_tcp_connection
);
82 /* this should never be triggered! */
83 dns_tcp_terminate_connection(dnsconn
, "dns_tcp_recv: called");
86 static void dns_tcp_send(struct stream_connection
*conn
, uint16_t flags
)
88 struct dns_tcp_connection
*dnsconn
= talloc_get_type(conn
->private_data
,
89 struct dns_tcp_connection
);
90 /* this should never be triggered! */
91 dns_tcp_terminate_connection(dnsconn
, "dns_tcp_send: called");
94 static bool dns_name_match(const char *zone
, const char *name
, size_t *host_part_len
)
96 size_t zl
= strlen(zone
);
97 size_t nl
= strlen(name
);
99 static const size_t fixup
= 'a' - 'A';
105 for (zi
= zl
, ni
= nl
; zi
>= 0; zi
--, ni
--) {
109 /* convert to lower case */
110 if (zc
>= 'A' && zc
<= 'Z') {
113 if (nc
>= 'A' && nc
<= 'Z') {
123 if (name
[ni
] != '.') {
130 *host_part_len
= ni
+1;
135 static NTSTATUS
dns_name2dn(struct dns_server
*dns
,
142 const struct dns_server_zone
*z
;
143 size_t host_part_len
= 0;
146 return NT_STATUS_INVALID_PARAMETER
;
149 /*TODO: Check if 'name' is a valid DNS name */
151 if (strcmp(name
, "") == 0) {
152 base
= ldb_get_default_basedn(dns
->samdb
);
153 dn
= ldb_dn_copy(mem_ctx
, base
);
154 ldb_dn_add_child_fmt(dn
, "DC=@,DC=RootDNSServers,CN=MicrosoftDNS,CN=System");
159 for (z
= dns
->zones
; z
!= NULL
; z
= z
->next
) {
162 match
= dns_name_match(z
->name
, name
, &host_part_len
);
169 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
172 if (host_part_len
== 0) {
173 dn
= ldb_dn_copy(mem_ctx
, z
->dn
);
174 ldb_dn_add_child_fmt(dn
, "DC=@");
179 dn
= ldb_dn_copy(mem_ctx
, z
->dn
);
180 ldb_dn_add_child_fmt(dn
, "DC=%*.*s", (int)host_part_len
, (int)host_part_len
, name
);
185 static NTSTATUS
handle_question(struct dns_server
*dns
,
187 const struct dns_name_question
*question
,
188 struct dns_res_rec
**answers
, uint16_t *ancount
)
190 struct dns_res_rec
*ans
;
191 struct ldb_dn
*dn
= NULL
;
193 static const char * const attrs
[] = { "dnsRecord", NULL
};
195 uint16_t ai
= *ancount
;
197 struct ldb_message
*msg
= NULL
;
198 struct dnsp_DnssrvRpcRecord
*recs
;
199 struct ldb_message_element
*el
;
201 status
= dns_name2dn(dns
, mem_ctx
, question
->name
, &dn
);
202 NT_STATUS_NOT_OK_RETURN(status
);
204 ret
= dsdb_search_one(dns
->samdb
, mem_ctx
, &msg
, dn
,
205 LDB_SCOPE_BASE
, attrs
, 0, "%s", "(objectClass=dnsNode)");
206 if (ret
!= LDB_SUCCESS
) {
207 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
210 el
= ldb_msg_find_element(msg
, attrs
[0]);
212 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
215 recs
= talloc_array(mem_ctx
, struct dnsp_DnssrvRpcRecord
, el
->num_values
);
216 for (ri
= 0; ri
< el
->num_values
; ri
++) {
217 struct ldb_val
*v
= &el
->values
[ri
];
218 enum ndr_err_code ndr_err
;
220 ndr_err
= ndr_pull_struct_blob(v
, recs
, &recs
[ri
],
221 (ndr_pull_flags_fn_t
)ndr_pull_dnsp_DnssrvRpcRecord
);
222 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
223 DEBUG(0, ("Failed to grab dnsp_DnssrvRpcRecord\n"));
224 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
228 ans
= talloc_realloc(mem_ctx
, *answers
, struct dns_res_rec
,
229 ai
+ el
->num_values
);
230 NT_STATUS_HAVE_NO_MEMORY(ans
);
232 switch (question
->question_type
) {
234 for (ri
= 0; ri
< el
->num_values
; ri
++) {
235 if (recs
[ri
].wType
!= question
->question_type
) {
239 ZERO_STRUCT(ans
[ai
]);
240 ans
[ai
].name
= talloc_strdup(ans
, question
->name
);
241 ans
[ai
].rr_type
= DNS_QTYPE_A
;
242 ans
[ai
].rr_class
= DNS_QCLASS_IP
;
243 ans
[ai
].ttl
= recs
[ri
].dwTtlSeconds
;
244 ans
[ai
].rdata
.ipv4_record
= talloc_strdup(ans
, recs
[ri
].data
.ipv4
);
249 for (ri
= 0; ri
< el
->num_values
; ri
++) {
250 if (recs
[ri
].wType
!= question
->question_type
) {
254 ZERO_STRUCT(ans
[ai
]);
255 ans
[ai
].name
= talloc_strdup(ans
, question
->name
);
256 ans
[ai
].rr_type
= DNS_QTYPE_AAAA
;
257 ans
[ai
].rr_class
= DNS_QCLASS_IP
;
258 ans
[ai
].ttl
= recs
[ri
].dwTtlSeconds
;
259 ans
[ai
].rdata
.ipv6_record
= recs
[ri
].data
.ipv6
;
264 for (ri
= 0; ri
< el
->num_values
; ri
++) {
265 if (recs
[ri
].wType
!= question
->question_type
) {
269 ZERO_STRUCT(ans
[ai
]);
270 ans
[ai
].name
= question
->name
;
271 ans
[ai
].rr_type
= DNS_QTYPE_NS
;
272 ans
[ai
].rr_class
= DNS_QCLASS_IP
;
273 ans
[ai
].ttl
= recs
[ri
].dwTtlSeconds
;
274 ans
[ai
].rdata
.ns_record
= recs
[ri
].data
.ns
;
279 for (ri
= 0; ri
< el
->num_values
; ri
++) {
280 if (recs
[ri
].wType
!= question
->question_type
) {
284 ZERO_STRUCT(ans
[ai
]);
285 ans
[ai
].name
= question
->name
;
286 ans
[ai
].rr_type
= DNS_QTYPE_SRV
;
287 ans
[ai
].rr_class
= DNS_QCLASS_IP
;
288 ans
[ai
].ttl
= recs
[ri
].dwTtlSeconds
;
289 ans
[ai
].rdata
.srv_record
.priority
= recs
[ri
].data
.srv
.wPriority
;
290 ans
[ai
].rdata
.srv_record
.weight
= recs
[ri
].data
.srv
.wWeight
;
291 ans
[ai
].rdata
.srv_record
.port
= recs
[ri
].data
.srv
.wPort
;
292 ans
[ai
].rdata
.srv_record
.target
= recs
[ri
].data
.srv
.nameTarget
;
297 for (ri
= 0; ri
< el
->num_values
; ri
++) {
298 if (recs
[ri
].wType
!= question
->question_type
) {
302 ZERO_STRUCT(ans
[ai
]);
303 ans
[ai
].name
= question
->name
;
304 ans
[ai
].rr_type
= DNS_QTYPE_SOA
;
305 ans
[ai
].rr_class
= DNS_QCLASS_IP
;
306 ans
[ai
].ttl
= recs
[ri
].dwTtlSeconds
;
307 ans
[ai
].rdata
.soa_record
.mname
= recs
[ri
].data
.soa
.mname
;
308 ans
[ai
].rdata
.soa_record
.rname
= recs
[ri
].data
.soa
.rname
;
309 ans
[ai
].rdata
.soa_record
.serial
= recs
[ri
].data
.soa
.serial
;
310 ans
[ai
].rdata
.soa_record
.refresh
= recs
[ri
].data
.soa
.refresh
;
311 ans
[ai
].rdata
.soa_record
.retry
= recs
[ri
].data
.soa
.retry
;
312 ans
[ai
].rdata
.soa_record
.expire
= recs
[ri
].data
.soa
.expire
;
313 ans
[ai
].rdata
.soa_record
.minimum
= recs
[ri
].data
.soa
.minimum
;
318 return NT_STATUS_NOT_IMPLEMENTED
;
328 static NTSTATUS
compute_reply(struct dns_server
*dns
,
330 struct dns_name_packet
*in
,
331 struct dns_res_rec
**answers
, uint16_t *ancount
,
332 struct dns_res_rec
**nsrecs
, uint16_t *nscount
,
333 struct dns_res_rec
**additional
, uint16_t *arcount
)
335 uint16_t num_answers
=0;
336 struct dns_res_rec
*ans
=NULL
;
340 ans
= talloc_array(mem_ctx
, struct dns_res_rec
, 0);
341 if (answers
== NULL
) return NT_STATUS_NO_MEMORY
;
343 for (i
= 0; i
< in
->qdcount
; ++i
) {
344 status
= handle_question(dns
, mem_ctx
, &in
->questions
[i
], &ans
, &num_answers
);
345 NT_STATUS_NOT_OK_RETURN(status
);
349 *ancount
= num_answers
;
351 /*FIXME: Do something for these */
361 static NTSTATUS
dns_process(struct dns_server
*dns
,
366 enum ndr_err_code ndr_err
;
368 struct dns_name_packet
*in_packet
= talloc_zero(mem_ctx
, struct dns_name_packet
);
369 struct dns_name_packet
*out_packet
= talloc_zero(mem_ctx
, struct dns_name_packet
);
370 struct dns_res_rec
*answers
, *nsrecs
, *additional
;
371 uint16_t num_answers
, num_nsrecs
, num_additional
;
373 if (in_packet
== NULL
) return NT_STATUS_INVALID_PARAMETER
;
375 dump_data(2, in
->data
, in
->length
);
377 ndr_err
= ndr_pull_struct_blob(in
, in_packet
, in_packet
,
378 (ndr_pull_flags_fn_t
)ndr_pull_dns_name_packet
);
379 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
380 TALLOC_FREE(in_packet
);
381 DEBUG(0, ("Failed to parse packet %d!\n", ndr_err
));
382 return NT_STATUS_COULD_NOT_INTERPRET
;
385 NDR_PRINT_DEBUG(dns_name_packet
, in_packet
);
386 out_packet
->id
= in_packet
->id
;
387 out_packet
->operation
= DNS_FLAG_REPLY
| DNS_FLAG_AUTHORITATIVE
|
388 DNS_FLAG_RECURSION_DESIRED
| DNS_FLAG_RECURSION_AVAIL
;
390 out_packet
->qdcount
= in_packet
->qdcount
;
391 out_packet
->questions
= in_packet
->questions
;
393 out_packet
->ancount
= 0;
394 out_packet
->answers
= NULL
;
396 out_packet
->nscount
= 0;
397 out_packet
->nsrecs
= NULL
;
399 out_packet
->arcount
= 0;
400 out_packet
->additional
= NULL
;
402 ret
= compute_reply(dns
, out_packet
, in_packet
, &answers
, &num_answers
,
403 &nsrecs
, &num_nsrecs
, &additional
, &num_additional
);
405 if (NT_STATUS_IS_OK(ret
)) {
406 out_packet
->ancount
= num_answers
;
407 out_packet
->answers
= answers
;
409 out_packet
->nscount
= num_nsrecs
;
410 out_packet
->nsrecs
= nsrecs
;
412 out_packet
->arcount
= num_additional
;
413 out_packet
->additional
= additional
;
416 NDR_PRINT_DEBUG(dns_name_packet
, out_packet
);
417 ndr_err
= ndr_push_struct_blob(out
, out_packet
, out_packet
,
418 (ndr_push_flags_fn_t
)ndr_push_dns_name_packet
);
419 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
420 TALLOC_FREE(in_packet
);
421 TALLOC_FREE(out_packet
);
422 DEBUG(0, ("Failed to push packet %d!\n", ndr_err
));
423 return NT_STATUS_INTERNAL_ERROR
;
426 dump_data(2, out
->data
, out
->length
);
430 struct dns_tcp_call
{
431 struct dns_tcp_connection
*dns_conn
;
435 struct iovec out_iov
[2];
438 static void dns_tcp_call_writev_done(struct tevent_req
*subreq
);
440 static void dns_tcp_call_loop(struct tevent_req
*subreq
)
442 struct dns_tcp_connection
*dns_conn
= tevent_req_callback_data(subreq
,
443 struct dns_tcp_connection
);
444 struct dns_tcp_call
*call
;
447 call
= talloc(dns_conn
, struct dns_tcp_call
);
449 dns_tcp_terminate_connection(dns_conn
, "dns_tcp_call_loop: "
450 "no memory for dns_tcp_call");
453 call
->dns_conn
= dns_conn
;
455 status
= tstream_read_pdu_blob_recv(subreq
,
459 if (!NT_STATUS_IS_OK(status
)) {
462 reason
= talloc_asprintf(call
, "dns_tcp_call_loop: "
463 "tstream_read_pdu_blob_recv() - %s",
466 reason
= nt_errstr(status
);
469 dns_tcp_terminate_connection(dns_conn
, reason
);
473 DEBUG(10,("Received krb5 TCP packet of length %lu from %s\n",
474 (long) call
->in
.length
,
475 tsocket_address_string(dns_conn
->conn
->remote_address
, call
)));
477 /* skip length header */
479 call
->in
.length
-= 4;
482 status
= dns_process(dns_conn
->dns_socket
->dns
, call
, &call
->in
, &call
->out
);
483 if (!NT_STATUS_IS_OK(status
)) {
484 DEBUG(0, ("dns_process returned %s\n", nt_errstr(status
)));
485 dns_tcp_terminate_connection(dns_conn
,
486 "dns_tcp_call_loop: process function failed");
490 /* First add the length of the out buffer */
491 RSIVAL(call
->out_hdr
, 0, call
->out
.length
);
492 call
->out_iov
[0].iov_base
= (char *) call
->out_hdr
;
493 call
->out_iov
[0].iov_len
= 4;
495 call
->out_iov
[1].iov_base
= (char *) call
->out
.data
;
496 call
->out_iov
[1].iov_len
= call
->out
.length
;
498 subreq
= tstream_writev_queue_send(call
,
499 dns_conn
->conn
->event
.ctx
,
501 dns_conn
->send_queue
,
503 if (subreq
== NULL
) {
504 dns_tcp_terminate_connection(dns_conn
, "dns_tcp_call_loop: "
505 "no memory for tstream_writev_queue_send");
508 tevent_req_set_callback(subreq
, dns_tcp_call_writev_done
, call
);
511 * The krb5 tcp pdu's has the length as 4 byte (initial_read_size),
512 * packet_full_request_u32 provides the pdu length then.
514 subreq
= tstream_read_pdu_blob_send(dns_conn
,
515 dns_conn
->conn
->event
.ctx
,
517 4, /* initial_read_size */
518 packet_full_request_u32
,
520 if (subreq
== NULL
) {
521 dns_tcp_terminate_connection(dns_conn
, "dns_tcp_call_loop: "
522 "no memory for tstream_read_pdu_blob_send");
525 tevent_req_set_callback(subreq
, dns_tcp_call_loop
, dns_conn
);
528 static void dns_tcp_call_writev_done(struct tevent_req
*subreq
)
530 struct dns_tcp_call
*call
= tevent_req_callback_data(subreq
,
531 struct dns_tcp_call
);
535 rc
= tstream_writev_queue_recv(subreq
, &sys_errno
);
540 reason
= talloc_asprintf(call
, "dns_tcp_call_writev_done: "
541 "tstream_writev_queue_recv() - %d:%s",
542 sys_errno
, strerror(sys_errno
));
544 reason
= "dns_tcp_call_writev_done: tstream_writev_queue_recv() failed";
547 dns_tcp_terminate_connection(call
->dns_conn
, reason
);
551 /* We don't care about errors */
557 called when we get a new connection
559 static void dns_tcp_accept(struct stream_connection
*conn
)
561 struct dns_socket
*dns_socket
;
562 struct dns_tcp_connection
*dns_conn
;
563 struct tevent_req
*subreq
;
566 dns_conn
= talloc_zero(conn
, struct dns_tcp_connection
);
567 if (dns_conn
== NULL
) {
568 stream_terminate_connection(conn
,
569 "dns_tcp_accept: out of memory");
573 dns_conn
->send_queue
= tevent_queue_create(conn
, "dns_tcp_accept");
574 if (dns_conn
->send_queue
== NULL
) {
575 stream_terminate_connection(conn
,
576 "dns_tcp_accept: out of memory");
580 dns_socket
= talloc_get_type(conn
->private_data
, struct dns_socket
);
582 TALLOC_FREE(conn
->event
.fde
);
584 rc
= tstream_bsd_existing_socket(dns_conn
,
585 socket_get_fd(conn
->socket
),
588 stream_terminate_connection(conn
,
589 "dns_tcp_accept: out of memory");
593 dns_conn
->conn
= conn
;
594 dns_conn
->dns_socket
= dns_socket
;
595 conn
->private_data
= dns_conn
;
598 * The krb5 tcp pdu's has the length as 4 byte (initial_read_size),
599 * packet_full_request_u32 provides the pdu length then.
601 subreq
= tstream_read_pdu_blob_send(dns_conn
,
602 dns_conn
->conn
->event
.ctx
,
604 4, /* initial_read_size */
605 packet_full_request_u32
,
607 if (subreq
== NULL
) {
608 dns_tcp_terminate_connection(dns_conn
, "dns_tcp_accept: "
609 "no memory for tstream_read_pdu_blob_send");
612 tevent_req_set_callback(subreq
, dns_tcp_call_loop
, dns_conn
);
615 static const struct stream_server_ops dns_tcp_stream_ops
= {
617 .accept_connection
= dns_tcp_accept
,
618 .recv_handler
= dns_tcp_recv
,
619 .send_handler
= dns_tcp_send
622 struct dns_udp_call
{
623 struct tsocket_address
*src
;
628 static void dns_udp_call_sendto_done(struct tevent_req
*subreq
);
630 static void dns_udp_call_loop(struct tevent_req
*subreq
)
632 struct dns_udp_socket
*sock
= tevent_req_callback_data(subreq
,
633 struct dns_udp_socket
);
634 struct dns_udp_call
*call
;
640 call
= talloc(sock
, struct dns_udp_call
);
646 len
= tdgram_recvfrom_recv(subreq
, &sys_errno
,
647 call
, &buf
, &call
->src
);
655 call
->in
.length
= len
;
657 DEBUG(10,("Received krb5 UDP packet of length %lu from %s\n",
658 (long)call
->in
.length
,
659 tsocket_address_string(call
->src
, call
)));
662 status
= dns_process(sock
->dns_socket
->dns
, call
, &call
->in
, &call
->out
);
663 if (!NT_STATUS_IS_OK(status
)) {
665 DEBUG(0, ("dns_process returned %s\n", nt_errstr(status
)));
669 subreq
= tdgram_sendto_queue_send(call
,
670 sock
->dns_socket
->dns
->task
->event_ctx
,
676 if (subreq
== NULL
) {
680 tevent_req_set_callback(subreq
, dns_udp_call_sendto_done
, call
);
683 subreq
= tdgram_recvfrom_send(sock
,
684 sock
->dns_socket
->dns
->task
->event_ctx
,
686 if (subreq
== NULL
) {
687 task_server_terminate(sock
->dns_socket
->dns
->task
,
688 "no memory for tdgram_recvfrom_send",
692 tevent_req_set_callback(subreq
, dns_udp_call_loop
, sock
);
695 static void dns_udp_call_sendto_done(struct tevent_req
*subreq
)
697 struct dns_udp_call
*call
= tevent_req_callback_data(subreq
,
698 struct dns_udp_call
);
702 ret
= tdgram_sendto_queue_recv(subreq
, &sys_errno
);
704 /* We don't care about errors */
710 start listening on the given address
712 static NTSTATUS
dns_add_socket(struct dns_server
*dns
,
713 const struct model_ops
*model_ops
,
718 struct dns_socket
*dns_socket
;
719 struct dns_udp_socket
*dns_udp_socket
;
720 struct tevent_req
*udpsubreq
;
724 dns_socket
= talloc(dns
, struct dns_socket
);
725 NT_STATUS_HAVE_NO_MEMORY(dns_socket
);
727 dns_socket
->dns
= dns
;
729 ret
= tsocket_address_inet_from_strings(dns_socket
, "ip",
731 &dns_socket
->local_address
);
733 status
= map_nt_error_from_unix(errno
);
737 status
= stream_setup_socket(dns
->task
->event_ctx
,
741 "ip", address
, &port
,
742 lpcfg_socket_options(dns
->task
->lp_ctx
),
744 if (!NT_STATUS_IS_OK(status
)) {
745 DEBUG(0,("Failed to bind to %s:%u TCP - %s\n",
746 address
, port
, nt_errstr(status
)));
747 talloc_free(dns_socket
);
751 dns_udp_socket
= talloc(dns_socket
, struct dns_udp_socket
);
752 NT_STATUS_HAVE_NO_MEMORY(dns_udp_socket
);
754 dns_udp_socket
->dns_socket
= dns_socket
;
756 ret
= tdgram_inet_udp_socket(dns_socket
->local_address
,
759 &dns_udp_socket
->dgram
);
761 status
= map_nt_error_from_unix(errno
);
762 DEBUG(0,("Failed to bind to %s:%u UDP - %s\n",
763 address
, port
, nt_errstr(status
)));
767 dns_udp_socket
->send_queue
= tevent_queue_create(dns_udp_socket
,
768 "dns_udp_send_queue");
769 NT_STATUS_HAVE_NO_MEMORY(dns_udp_socket
->send_queue
);
771 udpsubreq
= tdgram_recvfrom_send(dns_udp_socket
,
772 dns
->task
->event_ctx
,
773 dns_udp_socket
->dgram
);
774 NT_STATUS_HAVE_NO_MEMORY(udpsubreq
);
775 tevent_req_set_callback(udpsubreq
, dns_udp_call_loop
, dns_udp_socket
);
781 setup our listening sockets on the configured network interfaces
783 static NTSTATUS
dns_startup_interfaces(struct dns_server
*dns
, struct loadparm_context
*lp_ctx
,
784 struct interface
*ifaces
)
786 const struct model_ops
*model_ops
;
788 TALLOC_CTX
*tmp_ctx
= talloc_new(dns
);
792 /* within the dns task we want to be a single process, so
793 ask for the single process model ops and pass these to the
794 stream_setup_socket() call. */
795 model_ops
= process_model_startup(dns
->task
->event_ctx
, "single");
797 DEBUG(0,("Can't find 'single' process model_ops\n"));
798 return NT_STATUS_INTERNAL_ERROR
;
801 num_interfaces
= iface_count(ifaces
);
803 for (i
=0; i
<num_interfaces
; i
++) {
804 const char *address
= talloc_strdup(tmp_ctx
, iface_n_ip(ifaces
, i
));
806 status
= dns_add_socket(dns
, model_ops
, "dns", address
, DNS_SERVICE_PORT
);
807 NT_STATUS_NOT_OK_RETURN(status
);
810 talloc_free(tmp_ctx
);
815 static int dns_server_sort_zones(struct ldb_message
**m1
, struct ldb_message
**m2
)
820 n1
= ldb_msg_find_attr_as_string(*m1
, "name", NULL
);
821 n2
= ldb_msg_find_attr_as_string(*m2
, "name", NULL
);
826 /* If the string lengths are not equal just sort by length */
828 /* If m1 is the larger zone name, return it first */
832 /*TODO: We need to compare DNs here, we want the DomainDNSZones first */
836 static void dns_task_init(struct task_server
*task
)
838 struct dns_server
*dns
;
840 struct interface
*ifaces
;
842 struct ldb_result
*res
;
843 struct ldb_dn
*rootdn
;
844 static const char * const attrs
[] = { "name", NULL
};
848 switch (lpcfg_server_role(task
->lp_ctx
)) {
849 case ROLE_STANDALONE
:
850 task_server_terminate(task
, "dns: no DNS required in standalone configuration", false);
852 case ROLE_DOMAIN_MEMBER
:
853 task_server_terminate(task
, "dns: no DNS required in member server configuration", false);
855 case ROLE_DOMAIN_CONTROLLER
:
856 /* Yes, we want a DNS */
860 load_interfaces(task
, lpcfg_interfaces(task
->lp_ctx
), &ifaces
);
862 if (iface_count(ifaces
) == 0) {
863 task_server_terminate(task
, "dns: no network interfaces configured", false);
867 task_server_set_title(task
, "task[dns]");
869 dns
= talloc_zero(task
, struct dns_server
);
871 task_server_terminate(task
, "dns: out of memory", true);
877 dns
->samdb
= samdb_connect(dns
, dns
->task
->event_ctx
, dns
->task
->lp_ctx
,
878 system_session(dns
->task
->lp_ctx
), 0);
880 task_server_terminate(task
, "dns: samdb_connect failed", true);
884 rootdn
= ldb_dn_new(dns
, dns
->samdb
, "");
885 if (rootdn
== NULL
) {
886 task_server_terminate(task
, "dns: out of memory", true);
890 // TODO: this search does not work against windows
891 ret
= dsdb_search(dns
->samdb
, dns
, &res
, rootdn
, LDB_SCOPE_SUBTREE
,
892 attrs
, DSDB_SEARCH_SEARCH_ALL_PARTITIONS
, "(objectClass=dnsZone)");
893 if (ret
!= LDB_SUCCESS
) {
894 task_server_terminate(task
,
895 "dns: failed to look up root DNS zones",
900 TYPESAFE_QSORT(res
->msgs
, res
->count
, dns_server_sort_zones
);
902 for (i
=0; i
< res
->count
; i
++) {
903 struct dns_server_zone
*z
;
905 z
= talloc_zero(dns
, struct dns_server_zone
);
909 z
->name
= ldb_msg_find_attr_as_string(res
->msgs
[i
], "name", NULL
);
910 z
->dn
= talloc_move(z
, &res
->msgs
[i
]->dn
);
912 DLIST_ADD_END(dns
->zones
, z
, NULL
);
915 status
= dns_startup_interfaces(dns
, task
->lp_ctx
, ifaces
);
916 if (!NT_STATUS_IS_OK(status
)) {
917 task_server_terminate(task
, "dns failed to setup interfaces", true);
922 NTSTATUS
server_service_dns_init(void)
924 return register_server_service("dns", dns_task_init
);