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"
45 #include "lib/util/tevent_werror.h"
46 #include "auth/auth.h"
47 #include "auth/credentials/credentials.h"
48 #include "librpc/gen_ndr/ndr_irpc.h"
49 #include "lib/messaging/irpc.h"
50 #include "libds/common/roles.h"
53 #define DBGC_CLASS DBGC_DNS
55 NTSTATUS
server_service_dns_init(TALLOC_CTX
*);
57 /* hold information about one dns socket */
59 struct dns_server
*dns
;
60 struct tsocket_address
*local_address
;
63 struct dns_udp_socket
{
64 struct dns_socket
*dns_socket
;
65 struct tdgram_context
*dgram
;
66 struct tevent_queue
*send_queue
;
70 state of an open tcp connection
72 struct dns_tcp_connection
{
73 /* stream connection we belong to */
74 struct stream_connection
*conn
;
76 /* the dns_server the connection belongs to */
77 struct dns_socket
*dns_socket
;
79 struct tstream_context
*tstream
;
81 struct tevent_queue
*send_queue
;
84 static void dns_tcp_terminate_connection(struct dns_tcp_connection
*dnsconn
, const char *reason
)
86 stream_terminate_connection(dnsconn
->conn
, reason
);
89 static void dns_tcp_recv(struct stream_connection
*conn
, uint16_t flags
)
91 struct dns_tcp_connection
*dnsconn
= talloc_get_type(conn
->private_data
,
92 struct dns_tcp_connection
);
93 /* this should never be triggered! */
94 dns_tcp_terminate_connection(dnsconn
, "dns_tcp_recv: called");
97 static void dns_tcp_send(struct stream_connection
*conn
, uint16_t flags
)
99 struct dns_tcp_connection
*dnsconn
= talloc_get_type(conn
->private_data
,
100 struct dns_tcp_connection
);
101 /* this should never be triggered! */
102 dns_tcp_terminate_connection(dnsconn
, "dns_tcp_send: called");
105 struct dns_process_state
{
107 struct dns_server
*dns
;
108 struct dns_name_packet in_packet
;
109 struct dns_request_state state
;
111 struct dns_name_packet out_packet
;
115 static void dns_process_done(struct tevent_req
*subreq
);
117 static struct tevent_req
*dns_process_send(TALLOC_CTX
*mem_ctx
,
118 struct tevent_context
*ev
,
119 struct dns_server
*dns
,
120 const struct tsocket_address
*remote_address
,
121 const struct tsocket_address
*local_address
,
124 struct tevent_req
*req
, *subreq
;
125 struct dns_process_state
*state
;
126 enum ndr_err_code ndr_err
;
128 const char **forwarder
= lpcfg_dns_forwarder(dns
->task
->lp_ctx
);
129 req
= tevent_req_create(mem_ctx
, &state
, struct dns_process_state
);
133 state
->state
.mem_ctx
= state
;
138 if (in
->length
< 12) {
139 tevent_req_werror(req
, WERR_INVALID_PARAMETER
);
140 return tevent_req_post(req
, ev
);
142 dump_data_dbgc(DBGC_DNS
, 8, in
->data
, in
->length
);
144 ndr_err
= ndr_pull_struct_blob(
145 in
, state
, &state
->in_packet
,
146 (ndr_pull_flags_fn_t
)ndr_pull_dns_name_packet
);
148 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
149 state
->dns_err
= DNS_RCODE_FORMERR
;
150 tevent_req_done(req
);
151 return tevent_req_post(req
, ev
);
153 if (DEBUGLVLC(DBGC_DNS
, 8)) {
154 NDR_PRINT_DEBUGC(DBGC_DNS
, dns_name_packet
, &state
->in_packet
);
157 if (state
->in_packet
.operation
& DNS_FLAG_REPLY
) {
158 DEBUG(1, ("Won't reply to replies.\n"));
159 tevent_req_werror(req
, WERR_INVALID_PARAMETER
);
160 return tevent_req_post(req
, ev
);
163 state
->state
.flags
= state
->in_packet
.operation
;
164 state
->state
.flags
|= DNS_FLAG_REPLY
;
166 state
->state
.local_address
= local_address
;
167 state
->state
.remote_address
= remote_address
;
169 if (forwarder
&& *forwarder
&& **forwarder
) {
170 state
->state
.flags
|= DNS_FLAG_RECURSION_AVAIL
;
173 state
->out_packet
= state
->in_packet
;
175 ret
= dns_verify_tsig(dns
, state
, &state
->state
,
176 &state
->out_packet
, in
);
177 if (!W_ERROR_IS_OK(ret
)) {
178 state
->dns_err
= werr_to_dns_err(ret
);
179 tevent_req_done(req
);
180 return tevent_req_post(req
, ev
);
183 switch (state
->in_packet
.operation
& DNS_OPCODE
) {
184 case DNS_OPCODE_QUERY
:
185 subreq
= dns_server_process_query_send(
187 &state
->state
, &state
->in_packet
);
188 if (tevent_req_nomem(subreq
, req
)) {
189 return tevent_req_post(req
, ev
);
191 tevent_req_set_callback(subreq
, dns_process_done
, req
);
193 case DNS_OPCODE_UPDATE
:
194 ret
= dns_server_process_update(
195 dns
, &state
->state
, state
, &state
->in_packet
,
196 &state
->out_packet
.answers
, &state
->out_packet
.ancount
,
197 &state
->out_packet
.nsrecs
, &state
->out_packet
.nscount
,
198 &state
->out_packet
.additional
,
199 &state
->out_packet
.arcount
);
202 ret
= WERR_DNS_ERROR_RCODE_NOT_IMPLEMENTED
;
204 if (!W_ERROR_IS_OK(ret
)) {
205 state
->dns_err
= werr_to_dns_err(ret
);
207 tevent_req_done(req
);
208 return tevent_req_post(req
, ev
);
211 static void dns_process_done(struct tevent_req
*subreq
)
213 struct tevent_req
*req
= tevent_req_callback_data(
214 subreq
, struct tevent_req
);
215 struct dns_process_state
*state
= tevent_req_data(
216 req
, struct dns_process_state
);
219 ret
= dns_server_process_query_recv(
221 &state
->out_packet
.answers
, &state
->out_packet
.ancount
,
222 &state
->out_packet
.nsrecs
, &state
->out_packet
.nscount
,
223 &state
->out_packet
.additional
, &state
->out_packet
.arcount
);
226 if (!W_ERROR_IS_OK(ret
)) {
227 state
->dns_err
= werr_to_dns_err(ret
);
229 tevent_req_done(req
);
232 static WERROR
dns_process_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
235 struct dns_process_state
*state
= tevent_req_data(
236 req
, struct dns_process_state
);
237 enum ndr_err_code ndr_err
;
240 if (tevent_req_is_werror(req
, &ret
)) {
243 if ((state
->dns_err
!= DNS_RCODE_OK
) &&
244 (state
->dns_err
!= DNS_RCODE_NXDOMAIN
) &&
245 (state
->dns_err
!= DNS_RCODE_NOTAUTH
))
249 if (state
->dns_err
!= DNS_RCODE_OK
) {
250 state
->out_packet
.operation
|= state
->dns_err
;
252 state
->out_packet
.operation
|= state
->state
.flags
;
254 if (state
->state
.sign
) {
255 ret
= dns_sign_tsig(state
->dns
, mem_ctx
, &state
->state
,
256 &state
->out_packet
, 0);
257 if (!W_ERROR_IS_OK(ret
)) {
258 state
->dns_err
= DNS_RCODE_SERVFAIL
;
263 if (DEBUGLVLC(DBGC_DNS
, 8)) {
264 NDR_PRINT_DEBUGC(DBGC_DNS
, dns_name_packet
, &state
->out_packet
);
267 ndr_err
= ndr_push_struct_blob(
268 out
, mem_ctx
, &state
->out_packet
,
269 (ndr_push_flags_fn_t
)ndr_push_dns_name_packet
);
270 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
271 DEBUG(1, ("Failed to push packet: %s!\n",
272 ndr_errstr(ndr_err
)));
273 state
->dns_err
= DNS_RCODE_SERVFAIL
;
279 *out
= data_blob_talloc(mem_ctx
, state
->in
->data
, state
->in
->length
);
280 if (out
->data
== NULL
) {
281 return WERR_NOT_ENOUGH_MEMORY
;
283 out
->data
[2] |= 0x80; /* Toggle DNS_FLAG_REPLY */
284 out
->data
[3] |= state
->dns_err
;
288 struct dns_tcp_call
{
289 struct dns_tcp_connection
*dns_conn
;
293 struct iovec out_iov
[2];
296 static void dns_tcp_call_process_done(struct tevent_req
*subreq
);
297 static void dns_tcp_call_writev_done(struct tevent_req
*subreq
);
299 static void dns_tcp_call_loop(struct tevent_req
*subreq
)
301 struct dns_tcp_connection
*dns_conn
= tevent_req_callback_data(subreq
,
302 struct dns_tcp_connection
);
303 struct dns_server
*dns
= dns_conn
->dns_socket
->dns
;
304 struct dns_tcp_call
*call
;
307 call
= talloc(dns_conn
, struct dns_tcp_call
);
309 dns_tcp_terminate_connection(dns_conn
, "dns_tcp_call_loop: "
310 "no memory for dns_tcp_call");
313 call
->dns_conn
= dns_conn
;
315 status
= tstream_read_pdu_blob_recv(subreq
,
319 if (!NT_STATUS_IS_OK(status
)) {
322 reason
= talloc_asprintf(call
, "dns_tcp_call_loop: "
323 "tstream_read_pdu_blob_recv() - %s",
326 reason
= nt_errstr(status
);
329 dns_tcp_terminate_connection(dns_conn
, reason
);
333 DEBUG(10,("Received DNS TCP packet of length %lu from %s\n",
334 (long) call
->in
.length
,
335 tsocket_address_string(dns_conn
->conn
->remote_address
, call
)));
337 /* skip length header */
339 call
->in
.length
-= 2;
341 subreq
= dns_process_send(call
, dns
->task
->event_ctx
, dns
,
342 dns_conn
->conn
->remote_address
,
343 dns_conn
->conn
->local_address
,
345 if (subreq
== NULL
) {
346 dns_tcp_terminate_connection(
347 dns_conn
, "dns_tcp_call_loop: dns_process_send "
351 tevent_req_set_callback(subreq
, dns_tcp_call_process_done
, call
);
354 * The dns tcp pdu's has the length as 2 byte (initial_read_size),
355 * packet_full_request_u16 provides the pdu length then.
357 subreq
= tstream_read_pdu_blob_send(dns_conn
,
358 dns_conn
->conn
->event
.ctx
,
360 2, /* initial_read_size */
361 packet_full_request_u16
,
363 if (subreq
== NULL
) {
364 dns_tcp_terminate_connection(dns_conn
, "dns_tcp_call_loop: "
365 "no memory for tstream_read_pdu_blob_send");
368 tevent_req_set_callback(subreq
, dns_tcp_call_loop
, dns_conn
);
371 static void dns_tcp_call_process_done(struct tevent_req
*subreq
)
373 struct dns_tcp_call
*call
= tevent_req_callback_data(subreq
,
374 struct dns_tcp_call
);
375 struct dns_tcp_connection
*dns_conn
= call
->dns_conn
;
378 err
= dns_process_recv(subreq
, call
, &call
->out
);
380 if (!W_ERROR_IS_OK(err
)) {
381 DEBUG(1, ("dns_process returned %s\n", win_errstr(err
)));
382 dns_tcp_terminate_connection(dns_conn
,
383 "dns_tcp_call_loop: process function failed");
387 /* First add the length of the out buffer */
388 RSSVAL(call
->out_hdr
, 0, call
->out
.length
);
389 call
->out_iov
[0].iov_base
= (char *) call
->out_hdr
;
390 call
->out_iov
[0].iov_len
= 2;
392 call
->out_iov
[1].iov_base
= (char *) call
->out
.data
;
393 call
->out_iov
[1].iov_len
= call
->out
.length
;
395 subreq
= tstream_writev_queue_send(call
,
396 dns_conn
->conn
->event
.ctx
,
398 dns_conn
->send_queue
,
400 if (subreq
== NULL
) {
401 dns_tcp_terminate_connection(dns_conn
, "dns_tcp_call_loop: "
402 "no memory for tstream_writev_queue_send");
405 tevent_req_set_callback(subreq
, dns_tcp_call_writev_done
, call
);
408 static void dns_tcp_call_writev_done(struct tevent_req
*subreq
)
410 struct dns_tcp_call
*call
= tevent_req_callback_data(subreq
,
411 struct dns_tcp_call
);
415 rc
= tstream_writev_queue_recv(subreq
, &sys_errno
);
420 reason
= talloc_asprintf(call
, "dns_tcp_call_writev_done: "
421 "tstream_writev_queue_recv() - %d:%s",
422 sys_errno
, strerror(sys_errno
));
424 reason
= "dns_tcp_call_writev_done: tstream_writev_queue_recv() failed";
427 dns_tcp_terminate_connection(call
->dns_conn
, reason
);
431 /* We don't care about errors */
437 called when we get a new connection
439 static void dns_tcp_accept(struct stream_connection
*conn
)
441 struct dns_socket
*dns_socket
;
442 struct dns_tcp_connection
*dns_conn
;
443 struct tevent_req
*subreq
;
446 dns_conn
= talloc_zero(conn
, struct dns_tcp_connection
);
447 if (dns_conn
== NULL
) {
448 stream_terminate_connection(conn
,
449 "dns_tcp_accept: out of memory");
453 dns_conn
->send_queue
= tevent_queue_create(conn
, "dns_tcp_accept");
454 if (dns_conn
->send_queue
== NULL
) {
455 stream_terminate_connection(conn
,
456 "dns_tcp_accept: out of memory");
460 dns_socket
= talloc_get_type(conn
->private_data
, struct dns_socket
);
462 TALLOC_FREE(conn
->event
.fde
);
464 rc
= tstream_bsd_existing_socket(dns_conn
,
465 socket_get_fd(conn
->socket
),
468 stream_terminate_connection(conn
,
469 "dns_tcp_accept: out of memory");
473 dns_conn
->conn
= conn
;
474 dns_conn
->dns_socket
= dns_socket
;
475 conn
->private_data
= dns_conn
;
478 * The dns tcp pdu's has the length as 2 byte (initial_read_size),
479 * packet_full_request_u16 provides the pdu length then.
481 subreq
= tstream_read_pdu_blob_send(dns_conn
,
482 dns_conn
->conn
->event
.ctx
,
484 2, /* initial_read_size */
485 packet_full_request_u16
,
487 if (subreq
== NULL
) {
488 dns_tcp_terminate_connection(dns_conn
, "dns_tcp_accept: "
489 "no memory for tstream_read_pdu_blob_send");
492 tevent_req_set_callback(subreq
, dns_tcp_call_loop
, dns_conn
);
495 static const struct stream_server_ops dns_tcp_stream_ops
= {
497 .accept_connection
= dns_tcp_accept
,
498 .recv_handler
= dns_tcp_recv
,
499 .send_handler
= dns_tcp_send
502 struct dns_udp_call
{
503 struct dns_udp_socket
*sock
;
504 struct tsocket_address
*src
;
509 static void dns_udp_call_process_done(struct tevent_req
*subreq
);
510 static void dns_udp_call_sendto_done(struct tevent_req
*subreq
);
512 static void dns_udp_call_loop(struct tevent_req
*subreq
)
514 struct dns_udp_socket
*sock
= tevent_req_callback_data(subreq
,
515 struct dns_udp_socket
);
516 struct dns_server
*dns
= sock
->dns_socket
->dns
;
517 struct dns_udp_call
*call
;
522 call
= talloc(sock
, struct dns_udp_call
);
529 len
= tdgram_recvfrom_recv(subreq
, &sys_errno
,
530 call
, &buf
, &call
->src
);
538 call
->in
.length
= len
;
540 DEBUG(10,("Received DNS UDP packet of length %lu from %s\n",
541 (long)call
->in
.length
,
542 tsocket_address_string(call
->src
, call
)));
544 subreq
= dns_process_send(call
, dns
->task
->event_ctx
, dns
,
546 sock
->dns_socket
->local_address
,
548 if (subreq
== NULL
) {
552 tevent_req_set_callback(subreq
, dns_udp_call_process_done
, call
);
555 subreq
= tdgram_recvfrom_send(sock
,
556 sock
->dns_socket
->dns
->task
->event_ctx
,
558 if (subreq
== NULL
) {
559 task_server_terminate(sock
->dns_socket
->dns
->task
,
560 "no memory for tdgram_recvfrom_send",
564 tevent_req_set_callback(subreq
, dns_udp_call_loop
, sock
);
567 static void dns_udp_call_process_done(struct tevent_req
*subreq
)
569 struct dns_udp_call
*call
= tevent_req_callback_data(
570 subreq
, struct dns_udp_call
);
571 struct dns_udp_socket
*sock
= call
->sock
;
572 struct dns_server
*dns
= sock
->dns_socket
->dns
;
575 err
= dns_process_recv(subreq
, call
, &call
->out
);
577 if (!W_ERROR_IS_OK(err
)) {
578 DEBUG(1, ("dns_process returned %s\n", win_errstr(err
)));
583 subreq
= tdgram_sendto_queue_send(call
,
584 dns
->task
->event_ctx
,
590 if (subreq
== NULL
) {
594 tevent_req_set_callback(subreq
, dns_udp_call_sendto_done
, call
);
597 static void dns_udp_call_sendto_done(struct tevent_req
*subreq
)
599 struct dns_udp_call
*call
= tevent_req_callback_data(subreq
,
600 struct dns_udp_call
);
603 tdgram_sendto_queue_recv(subreq
, &sys_errno
);
605 /* We don't care about errors */
611 start listening on the given address
613 static NTSTATUS
dns_add_socket(struct dns_server
*dns
,
614 const struct model_ops
*model_ops
,
619 struct dns_socket
*dns_socket
;
620 struct dns_udp_socket
*dns_udp_socket
;
621 struct tevent_req
*udpsubreq
;
625 dns_socket
= talloc(dns
, struct dns_socket
);
626 NT_STATUS_HAVE_NO_MEMORY(dns_socket
);
628 dns_socket
->dns
= dns
;
630 ret
= tsocket_address_inet_from_strings(dns_socket
, "ip",
632 &dns_socket
->local_address
);
634 status
= map_nt_error_from_unix_common(errno
);
638 status
= stream_setup_socket(dns
->task
,
639 dns
->task
->event_ctx
,
643 "ip", address
, &port
,
644 lpcfg_socket_options(dns
->task
->lp_ctx
),
646 dns
->task
->process_context
);
647 if (!NT_STATUS_IS_OK(status
)) {
648 DEBUG(0,("Failed to bind to %s:%u TCP - %s\n",
649 address
, port
, nt_errstr(status
)));
650 talloc_free(dns_socket
);
654 dns_udp_socket
= talloc(dns_socket
, struct dns_udp_socket
);
655 NT_STATUS_HAVE_NO_MEMORY(dns_udp_socket
);
657 dns_udp_socket
->dns_socket
= dns_socket
;
659 ret
= tdgram_inet_udp_socket(dns_socket
->local_address
,
662 &dns_udp_socket
->dgram
);
664 status
= map_nt_error_from_unix_common(errno
);
665 DEBUG(0,("Failed to bind to %s:%u UDP - %s\n",
666 address
, port
, nt_errstr(status
)));
670 dns_udp_socket
->send_queue
= tevent_queue_create(dns_udp_socket
,
671 "dns_udp_send_queue");
672 NT_STATUS_HAVE_NO_MEMORY(dns_udp_socket
->send_queue
);
674 udpsubreq
= tdgram_recvfrom_send(dns_udp_socket
,
675 dns
->task
->event_ctx
,
676 dns_udp_socket
->dgram
);
677 NT_STATUS_HAVE_NO_MEMORY(udpsubreq
);
678 tevent_req_set_callback(udpsubreq
, dns_udp_call_loop
, dns_udp_socket
);
684 setup our listening sockets on the configured network interfaces
686 static NTSTATUS
dns_startup_interfaces(struct dns_server
*dns
,
687 struct interface
*ifaces
,
688 const struct model_ops
*model_ops
)
690 size_t num_interfaces
;
691 TALLOC_CTX
*tmp_ctx
= talloc_new(dns
);
695 if (ifaces
!= NULL
) {
696 num_interfaces
= iface_list_count(ifaces
);
698 for (i
=0; i
<num_interfaces
; i
++) {
699 const char *address
= talloc_strdup(tmp_ctx
,
700 iface_list_n_ip(ifaces
, i
));
702 status
= dns_add_socket(dns
, model_ops
, "dns", address
,
704 NT_STATUS_NOT_OK_RETURN(status
);
707 size_t num_binds
= 0;
709 wcard
= iface_list_wildcard(tmp_ctx
);
711 DEBUG(0, ("No wildcard address available\n"));
712 return NT_STATUS_INTERNAL_ERROR
;
714 for (i
= 0; wcard
[i
] != NULL
; i
++) {
715 status
= dns_add_socket(dns
, model_ops
, "dns", wcard
[i
],
717 if (NT_STATUS_IS_OK(status
)) {
721 if (num_binds
== 0) {
722 talloc_free(tmp_ctx
);
723 return NT_STATUS_INVALID_PARAMETER_MIX
;
727 talloc_free(tmp_ctx
);
732 static struct dns_server_tkey_store
*tkey_store_init(TALLOC_CTX
*mem_ctx
,
735 struct dns_server_tkey_store
*buffer
= talloc_zero(mem_ctx
,
736 struct dns_server_tkey_store
);
738 if (buffer
== NULL
) {
743 buffer
->next_idx
= 0;
745 buffer
->tkeys
= talloc_zero_array(buffer
, struct dns_server_tkey
*, size
);
746 if (buffer
->tkeys
== NULL
) {
753 static NTSTATUS
dns_server_reload_zones(struct dns_server
*dns
)
756 struct dns_server_zone
*new_list
= NULL
;
757 struct dns_server_zone
*old_list
= NULL
;
758 struct dns_server_zone
*old_zone
;
759 status
= dns_common_zones(dns
->samdb
, dns
, NULL
, &new_list
);
760 if (!NT_STATUS_IS_OK(status
)) {
763 dns
->zones
= new_list
;
764 while ((old_zone
= DLIST_TAIL(old_list
)) != NULL
) {
765 DLIST_REMOVE(old_list
, old_zone
);
766 talloc_free(old_zone
);
773 * Called when the internal DNS server should reload the zones from DB, for
774 * example, when zones are added or deleted through RPC or replicated by
777 static NTSTATUS
dns_reload_zones(struct irpc_message
*msg
,
778 struct dnssrv_reload_dns_zones
*r
)
780 struct dns_server
*dns
;
782 dns
= talloc_get_type(msg
->private_data
, struct dns_server
);
784 r
->out
.result
= NT_STATUS_INTERNAL_ERROR
;
785 return NT_STATUS_INTERNAL_ERROR
;
788 r
->out
.result
= dns_server_reload_zones(dns
);
793 static NTSTATUS
dns_task_init(struct task_server
*task
)
795 struct dns_server
*dns
;
797 struct interface
*ifaces
= NULL
;
799 static const char * const attrs_none
[] = { NULL
};
800 struct ldb_message
*dns_acc
;
801 char *hostname_lower
;
804 switch (lpcfg_server_role(task
->lp_ctx
)) {
805 case ROLE_STANDALONE
:
806 task_server_terminate(task
, "dns: no DNS required in standalone configuration", false);
807 return NT_STATUS_INVALID_DOMAIN_ROLE
;
808 case ROLE_DOMAIN_MEMBER
:
809 task_server_terminate(task
, "dns: no DNS required in member server configuration", false);
810 return NT_STATUS_INVALID_DOMAIN_ROLE
;
811 case ROLE_ACTIVE_DIRECTORY_DC
:
812 /* Yes, we want a DNS */
816 if (lpcfg_interfaces(task
->lp_ctx
) && lpcfg_bind_interfaces_only(task
->lp_ctx
)) {
817 load_interface_list(task
, task
->lp_ctx
, &ifaces
);
819 if (iface_list_count(ifaces
) == 0) {
820 task_server_terminate(task
, "dns: no network interfaces configured", false);
821 return NT_STATUS_UNSUCCESSFUL
;
825 task_server_set_title(task
, "task[dns]");
827 dns
= talloc_zero(task
, struct dns_server
);
829 task_server_terminate(task
, "dns: out of memory", true);
830 return NT_STATUS_NO_MEMORY
;
835 dns
->server_credentials
= cli_credentials_init(dns
);
836 if (!dns
->server_credentials
) {
837 task_server_terminate(task
, "Failed to init server credentials\n", true);
838 return NT_STATUS_UNSUCCESSFUL
;
841 dns
->samdb
= samdb_connect(dns
,
842 dns
->task
->event_ctx
,
844 system_session(dns
->task
->lp_ctx
),
848 task_server_terminate(task
, "dns: samdb_connect failed", true);
849 return NT_STATUS_UNSUCCESSFUL
;
852 cli_credentials_set_conf(dns
->server_credentials
, task
->lp_ctx
);
854 hostname_lower
= strlower_talloc(dns
, lpcfg_netbios_name(task
->lp_ctx
));
855 dns_spn
= talloc_asprintf(dns
, "DNS/%s.%s",
857 lpcfg_dnsdomain(task
->lp_ctx
));
858 TALLOC_FREE(hostname_lower
);
860 ret
= dsdb_search_one(dns
->samdb
, dns
, &dns_acc
,
861 ldb_get_default_basedn(dns
->samdb
), LDB_SCOPE_SUBTREE
,
862 attrs_none
, 0, "(servicePrincipalName=%s)",
864 if (ret
== LDB_SUCCESS
) {
865 TALLOC_FREE(dns_acc
);
867 task_server_terminate(task
, "dns: talloc_asprintf failed", true);
868 return NT_STATUS_UNSUCCESSFUL
;
870 status
= cli_credentials_set_stored_principal(dns
->server_credentials
, task
->lp_ctx
, dns_spn
);
871 if (!NT_STATUS_IS_OK(status
)) {
872 task_server_terminate(task
,
873 talloc_asprintf(task
, "Failed to obtain server credentials for DNS, "
874 "despite finding it in the samdb! %s\n",
880 TALLOC_FREE(dns_spn
);
881 status
= cli_credentials_set_machine_account(dns
->server_credentials
, task
->lp_ctx
);
882 if (!NT_STATUS_IS_OK(status
)) {
883 task_server_terminate(task
,
884 talloc_asprintf(task
, "Failed to obtain server credentials, perhaps a standalone server?: %s\n",
891 dns
->tkeys
= tkey_store_init(dns
, TKEY_BUFFER_SIZE
);
893 task_server_terminate(task
, "Failed to allocate tkey storage\n", true);
894 return NT_STATUS_NO_MEMORY
;
897 status
= dns_server_reload_zones(dns
);
898 if (!NT_STATUS_IS_OK(status
)) {
899 task_server_terminate(task
, "dns: failed to load DNS zones", true);
903 status
= dns_startup_interfaces(dns
, ifaces
, task
->model_ops
);
904 if (!NT_STATUS_IS_OK(status
)) {
905 task_server_terminate(task
, "dns failed to setup interfaces", true);
909 /* Setup the IRPC interface and register handlers */
910 status
= irpc_add_name(task
->msg_ctx
, "dnssrv");
911 if (!NT_STATUS_IS_OK(status
)) {
912 task_server_terminate(task
, "dns: failed to register IRPC name", true);
916 status
= IRPC_REGISTER(task
->msg_ctx
, irpc
, DNSSRV_RELOAD_DNS_ZONES
,
917 dns_reload_zones
, dns
);
918 if (!NT_STATUS_IS_OK(status
)) {
919 task_server_terminate(task
, "dns: failed to setup reload handler", true);
925 NTSTATUS
server_service_dns_init(TALLOC_CTX
*ctx
)
927 static const struct service_details details
= {
928 .inhibit_fork_on_accept
= true,
929 .inhibit_pre_fork
= true,
930 .task_init
= dns_task_init
,
933 return register_server_service(ctx
, "dns", &details
);