86776b063355a3f31b6738736cdf768597e255f6
[kai/samba-autobuild/.git] / source4 / dns_server / dns_server.c
1 /*
2    Unix SMB/CIFS implementation.
3
4    DNS server startup
5
6    Copyright (C) 2010 Kai Blin  <kai@samba.org>
7
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.
12
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.
17
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/>.
20 */
21
22 #include "includes.h"
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"
40 #include <ldb.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"
51
52 #undef DBGC_CLASS
53 #define DBGC_CLASS DBGC_DNS
54
55 NTSTATUS server_service_dns_init(void);
56
57 /* hold information about one dns socket */
58 struct dns_socket {
59         struct dns_server *dns;
60         struct tsocket_address *local_address;
61 };
62
63 struct dns_udp_socket {
64         struct dns_socket *dns_socket;
65         struct tdgram_context *dgram;
66         struct tevent_queue *send_queue;
67 };
68
69 /*
70   state of an open tcp connection
71 */
72 struct dns_tcp_connection {
73         /* stream connection we belong to */
74         struct stream_connection *conn;
75
76         /* the dns_server the connection belongs to */
77         struct dns_socket *dns_socket;
78
79         struct tstream_context *tstream;
80
81         struct tevent_queue *send_queue;
82 };
83
84 static void dns_tcp_terminate_connection(struct dns_tcp_connection *dnsconn, const char *reason)
85 {
86         stream_terminate_connection(dnsconn->conn, reason);
87 }
88
89 static void dns_tcp_recv(struct stream_connection *conn, uint16_t flags)
90 {
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");
95 }
96
97 static void dns_tcp_send(struct stream_connection *conn, uint16_t flags)
98 {
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");
103 }
104
105 struct dns_process_state {
106         DATA_BLOB *in;
107         struct dns_server *dns;
108         struct dns_name_packet in_packet;
109         struct dns_request_state state;
110         uint16_t dns_err;
111         struct dns_name_packet out_packet;
112         DATA_BLOB out;
113 };
114
115 static void dns_process_done(struct tevent_req *subreq);
116
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,
122                                            DATA_BLOB *in)
123 {
124         struct tevent_req *req, *subreq;
125         struct dns_process_state *state;
126         enum ndr_err_code ndr_err;
127         WERROR ret;
128         const char **forwarder = lpcfg_dns_forwarder(dns->task->lp_ctx);
129         req = tevent_req_create(mem_ctx, &state, struct dns_process_state);
130         if (req == NULL) {
131                 return NULL;
132         }
133         state->state.mem_ctx = state;
134         state->in = in;
135
136         state->dns = dns;
137
138         if (in->length < 12) {
139                 tevent_req_werror(req, WERR_INVALID_PARAMETER);
140                 return tevent_req_post(req, ev);
141         }
142         dump_data_dbgc(DBGC_DNS, 8, in->data, in->length);
143
144         ndr_err = ndr_pull_struct_blob(
145                 in, state, &state->in_packet,
146                 (ndr_pull_flags_fn_t)ndr_pull_dns_name_packet);
147
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);
152         }
153         if (DEBUGLVLC(DBGC_DNS, 8)) {
154                 NDR_PRINT_DEBUGC(DBGC_DNS, dns_name_packet, &state->in_packet);
155         }
156
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);
161         }
162
163         state->state.flags = state->in_packet.operation;
164         state->state.flags |= DNS_FLAG_REPLY;
165
166         state->state.local_address = local_address;
167         state->state.remote_address = remote_address;
168
169         if (forwarder && *forwarder && **forwarder) {
170                 state->state.flags |= DNS_FLAG_RECURSION_AVAIL;
171         }
172
173         state->out_packet = state->in_packet;
174
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);
181         }
182
183         switch (state->in_packet.operation & DNS_OPCODE) {
184         case DNS_OPCODE_QUERY:
185                 subreq = dns_server_process_query_send(
186                         state, ev, dns,
187                         &state->state, &state->in_packet);
188                 if (tevent_req_nomem(subreq, req)) {
189                         return tevent_req_post(req, ev);
190                 }
191                 tevent_req_set_callback(subreq, dns_process_done, req);
192                 return 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);
200                 break;
201         default:
202                 ret = WERR_DNS_ERROR_RCODE_NOT_IMPLEMENTED;
203         }
204         if (!W_ERROR_IS_OK(ret)) {
205                 state->dns_err = werr_to_dns_err(ret);
206         }
207         tevent_req_done(req);
208         return tevent_req_post(req, ev);
209 }
210
211 static void dns_process_done(struct tevent_req *subreq)
212 {
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);
217         WERROR ret;
218
219         ret = dns_server_process_query_recv(
220                 subreq, state,
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);
224         TALLOC_FREE(subreq);
225
226         if (!W_ERROR_IS_OK(ret)) {
227                 state->dns_err = werr_to_dns_err(ret);
228         }
229         tevent_req_done(req);
230 }
231
232 static WERROR dns_process_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
233                                DATA_BLOB *out)
234 {
235         struct dns_process_state *state = tevent_req_data(
236                 req, struct dns_process_state);
237         enum ndr_err_code ndr_err;
238         WERROR ret;
239
240         if (tevent_req_is_werror(req, &ret)) {
241                 return ret;
242         }
243         if ((state->dns_err != DNS_RCODE_OK) &&
244             (state->dns_err != DNS_RCODE_NXDOMAIN) &&
245             (state->dns_err != DNS_RCODE_NOTAUTH))
246         {
247                 goto drop;
248         }
249         if (state->dns_err != DNS_RCODE_OK) {
250                 state->out_packet.operation |= state->dns_err;
251         }
252         state->out_packet.operation |= state->state.flags;
253
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;
259                         goto drop;
260                 }
261         }
262
263         if (DEBUGLVLC(DBGC_DNS, 8)) {
264                 NDR_PRINT_DEBUGC(DBGC_DNS, dns_name_packet, &state->out_packet);
265         }
266
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;
274                 goto drop;
275         }
276         return WERR_OK;
277
278 drop:
279         *out = data_blob_talloc(mem_ctx, state->in->data, state->in->length);
280         if (out->data == NULL) {
281                 return WERR_NOT_ENOUGH_MEMORY;
282         }
283         out->data[2] |= 0x80; /* Toggle DNS_FLAG_REPLY */
284         out->data[3] |= state->dns_err;
285         return WERR_OK;
286 }
287
288 struct dns_tcp_call {
289         struct dns_tcp_connection *dns_conn;
290         DATA_BLOB in;
291         DATA_BLOB out;
292         uint8_t out_hdr[4];
293         struct iovec out_iov[2];
294 };
295
296 static void dns_tcp_call_process_done(struct tevent_req *subreq);
297 static void dns_tcp_call_writev_done(struct tevent_req *subreq);
298
299 static void dns_tcp_call_loop(struct tevent_req *subreq)
300 {
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;
305         NTSTATUS status;
306
307         call = talloc(dns_conn, struct dns_tcp_call);
308         if (call == NULL) {
309                 dns_tcp_terminate_connection(dns_conn, "dns_tcp_call_loop: "
310                                 "no memory for dns_tcp_call");
311                 return;
312         }
313         call->dns_conn = dns_conn;
314
315         status = tstream_read_pdu_blob_recv(subreq,
316                                             call,
317                                             &call->in);
318         TALLOC_FREE(subreq);
319         if (!NT_STATUS_IS_OK(status)) {
320                 const char *reason;
321
322                 reason = talloc_asprintf(call, "dns_tcp_call_loop: "
323                                          "tstream_read_pdu_blob_recv() - %s",
324                                          nt_errstr(status));
325                 if (!reason) {
326                         reason = nt_errstr(status);
327                 }
328
329                 dns_tcp_terminate_connection(dns_conn, reason);
330                 return;
331         }
332
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)));
336
337         /* skip length header */
338         call->in.data += 2;
339         call->in.length -= 2;
340
341         subreq = dns_process_send(call, dns->task->event_ctx, dns,
342                                   dns_conn->conn->remote_address,
343                                   dns_conn->conn->local_address,
344                                   &call->in);
345         if (subreq == NULL) {
346                 dns_tcp_terminate_connection(
347                         dns_conn, "dns_tcp_call_loop: dns_process_send "
348                         "failed\n");
349                 return;
350         }
351         tevent_req_set_callback(subreq, dns_tcp_call_process_done, call);
352
353         /*
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.
356          */
357         subreq = tstream_read_pdu_blob_send(dns_conn,
358                                             dns_conn->conn->event.ctx,
359                                             dns_conn->tstream,
360                                             2, /* initial_read_size */
361                                             packet_full_request_u16,
362                                             dns_conn);
363         if (subreq == NULL) {
364                 dns_tcp_terminate_connection(dns_conn, "dns_tcp_call_loop: "
365                                 "no memory for tstream_read_pdu_blob_send");
366                 return;
367         }
368         tevent_req_set_callback(subreq, dns_tcp_call_loop, dns_conn);
369 }
370
371 static void dns_tcp_call_process_done(struct tevent_req *subreq)
372 {
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;
376         WERROR err;
377
378         err = dns_process_recv(subreq, call, &call->out);
379         TALLOC_FREE(subreq);
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");
384                 return;
385         }
386
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;
391
392         call->out_iov[1].iov_base = (char *) call->out.data;
393         call->out_iov[1].iov_len = call->out.length;
394
395         subreq = tstream_writev_queue_send(call,
396                                            dns_conn->conn->event.ctx,
397                                            dns_conn->tstream,
398                                            dns_conn->send_queue,
399                                            call->out_iov, 2);
400         if (subreq == NULL) {
401                 dns_tcp_terminate_connection(dns_conn, "dns_tcp_call_loop: "
402                                 "no memory for tstream_writev_queue_send");
403                 return;
404         }
405         tevent_req_set_callback(subreq, dns_tcp_call_writev_done, call);
406 }
407
408 static void dns_tcp_call_writev_done(struct tevent_req *subreq)
409 {
410         struct dns_tcp_call *call = tevent_req_callback_data(subreq,
411                         struct dns_tcp_call);
412         int sys_errno;
413         int rc;
414
415         rc = tstream_writev_queue_recv(subreq, &sys_errno);
416         TALLOC_FREE(subreq);
417         if (rc == -1) {
418                 const char *reason;
419
420                 reason = talloc_asprintf(call, "dns_tcp_call_writev_done: "
421                                          "tstream_writev_queue_recv() - %d:%s",
422                                          sys_errno, strerror(sys_errno));
423                 if (!reason) {
424                         reason = "dns_tcp_call_writev_done: tstream_writev_queue_recv() failed";
425                 }
426
427                 dns_tcp_terminate_connection(call->dns_conn, reason);
428                 return;
429         }
430
431         /* We don't care about errors */
432
433         talloc_free(call);
434 }
435
436 /*
437   called when we get a new connection
438 */
439 static void dns_tcp_accept(struct stream_connection *conn)
440 {
441         struct dns_socket *dns_socket;
442         struct dns_tcp_connection *dns_conn;
443         struct tevent_req *subreq;
444         int rc;
445
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");
450                 return;
451         }
452
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");
457                 return;
458         }
459
460         dns_socket = talloc_get_type(conn->private_data, struct dns_socket);
461
462         TALLOC_FREE(conn->event.fde);
463
464         rc = tstream_bsd_existing_socket(dns_conn,
465                         socket_get_fd(conn->socket),
466                         &dns_conn->tstream);
467         if (rc < 0) {
468                 stream_terminate_connection(conn,
469                                 "dns_tcp_accept: out of memory");
470                 return;
471         }
472
473         dns_conn->conn = conn;
474         dns_conn->dns_socket = dns_socket;
475         conn->private_data = dns_conn;
476
477         /*
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.
480          */
481         subreq = tstream_read_pdu_blob_send(dns_conn,
482                                             dns_conn->conn->event.ctx,
483                                             dns_conn->tstream,
484                                             2, /* initial_read_size */
485                                             packet_full_request_u16,
486                                             dns_conn);
487         if (subreq == NULL) {
488                 dns_tcp_terminate_connection(dns_conn, "dns_tcp_accept: "
489                                 "no memory for tstream_read_pdu_blob_send");
490                 return;
491         }
492         tevent_req_set_callback(subreq, dns_tcp_call_loop, dns_conn);
493 }
494
495 static const struct stream_server_ops dns_tcp_stream_ops = {
496         .name                   = "dns_tcp",
497         .accept_connection      = dns_tcp_accept,
498         .recv_handler           = dns_tcp_recv,
499         .send_handler           = dns_tcp_send
500 };
501
502 struct dns_udp_call {
503         struct dns_udp_socket *sock;
504         struct tsocket_address *src;
505         DATA_BLOB in;
506         DATA_BLOB out;
507 };
508
509 static void dns_udp_call_process_done(struct tevent_req *subreq);
510 static void dns_udp_call_sendto_done(struct tevent_req *subreq);
511
512 static void dns_udp_call_loop(struct tevent_req *subreq)
513 {
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;
518         uint8_t *buf;
519         ssize_t len;
520         int sys_errno;
521
522         call = talloc(sock, struct dns_udp_call);
523         if (call == NULL) {
524                 talloc_free(call);
525                 goto done;
526         }
527         call->sock = sock;
528
529         len = tdgram_recvfrom_recv(subreq, &sys_errno,
530                                    call, &buf, &call->src);
531         TALLOC_FREE(subreq);
532         if (len == -1) {
533                 talloc_free(call);
534                 goto done;
535         }
536
537         call->in.data = buf;
538         call->in.length = len;
539
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)));
543
544         subreq = dns_process_send(call, dns->task->event_ctx, dns,
545                                   call->src,
546                                   sock->dns_socket->local_address,
547                                   &call->in);
548         if (subreq == NULL) {
549                 TALLOC_FREE(call);
550                 goto done;
551         }
552         tevent_req_set_callback(subreq, dns_udp_call_process_done, call);
553
554 done:
555         subreq = tdgram_recvfrom_send(sock,
556                                       sock->dns_socket->dns->task->event_ctx,
557                                       sock->dgram);
558         if (subreq == NULL) {
559                 task_server_terminate(sock->dns_socket->dns->task,
560                                       "no memory for tdgram_recvfrom_send",
561                                       true);
562                 return;
563         }
564         tevent_req_set_callback(subreq, dns_udp_call_loop, sock);
565 }
566
567 static void dns_udp_call_process_done(struct tevent_req *subreq)
568 {
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;
573         WERROR err;
574
575         err = dns_process_recv(subreq, call, &call->out);
576         TALLOC_FREE(subreq);
577         if (!W_ERROR_IS_OK(err)) {
578                 DEBUG(1, ("dns_process returned %s\n", win_errstr(err)));
579                 TALLOC_FREE(call);
580                 return;
581         }
582
583         subreq = tdgram_sendto_queue_send(call,
584                                           dns->task->event_ctx,
585                                           sock->dgram,
586                                           sock->send_queue,
587                                           call->out.data,
588                                           call->out.length,
589                                           call->src);
590         if (subreq == NULL) {
591                 talloc_free(call);
592                 return;
593         }
594         tevent_req_set_callback(subreq, dns_udp_call_sendto_done, call);
595
596 }
597 static void dns_udp_call_sendto_done(struct tevent_req *subreq)
598 {
599         struct dns_udp_call *call = tevent_req_callback_data(subreq,
600                                        struct dns_udp_call);
601         int sys_errno;
602
603         tdgram_sendto_queue_recv(subreq, &sys_errno);
604
605         /* We don't care about errors */
606
607         talloc_free(call);
608 }
609
610 /*
611   start listening on the given address
612 */
613 static NTSTATUS dns_add_socket(struct dns_server *dns,
614                                const struct model_ops *model_ops,
615                                const char *name,
616                                const char *address,
617                                uint16_t port)
618 {
619         struct dns_socket *dns_socket;
620         struct dns_udp_socket *dns_udp_socket;
621         struct tevent_req *udpsubreq;
622         NTSTATUS status;
623         int ret;
624
625         dns_socket = talloc(dns, struct dns_socket);
626         NT_STATUS_HAVE_NO_MEMORY(dns_socket);
627
628         dns_socket->dns = dns;
629
630         ret = tsocket_address_inet_from_strings(dns_socket, "ip",
631                                                 address, port,
632                                                 &dns_socket->local_address);
633         if (ret != 0) {
634                 status = map_nt_error_from_unix_common(errno);
635                 return status;
636         }
637
638         status = stream_setup_socket(dns->task,
639                                      dns->task->event_ctx,
640                                      dns->task->lp_ctx,
641                                      model_ops,
642                                      &dns_tcp_stream_ops,
643                                      "ip", address, &port,
644                                      lpcfg_socket_options(dns->task->lp_ctx),
645                                      dns_socket);
646         if (!NT_STATUS_IS_OK(status)) {
647                 DEBUG(0,("Failed to bind to %s:%u TCP - %s\n",
648                          address, port, nt_errstr(status)));
649                 talloc_free(dns_socket);
650                 return status;
651         }
652
653         dns_udp_socket = talloc(dns_socket, struct dns_udp_socket);
654         NT_STATUS_HAVE_NO_MEMORY(dns_udp_socket);
655
656         dns_udp_socket->dns_socket = dns_socket;
657
658         ret = tdgram_inet_udp_socket(dns_socket->local_address,
659                                      NULL,
660                                      dns_udp_socket,
661                                      &dns_udp_socket->dgram);
662         if (ret != 0) {
663                 status = map_nt_error_from_unix_common(errno);
664                 DEBUG(0,("Failed to bind to %s:%u UDP - %s\n",
665                          address, port, nt_errstr(status)));
666                 return status;
667         }
668
669         dns_udp_socket->send_queue = tevent_queue_create(dns_udp_socket,
670                                                          "dns_udp_send_queue");
671         NT_STATUS_HAVE_NO_MEMORY(dns_udp_socket->send_queue);
672
673         udpsubreq = tdgram_recvfrom_send(dns_udp_socket,
674                                          dns->task->event_ctx,
675                                          dns_udp_socket->dgram);
676         NT_STATUS_HAVE_NO_MEMORY(udpsubreq);
677         tevent_req_set_callback(udpsubreq, dns_udp_call_loop, dns_udp_socket);
678
679         return NT_STATUS_OK;
680 }
681
682 /*
683   setup our listening sockets on the configured network interfaces
684 */
685 static NTSTATUS dns_startup_interfaces(struct dns_server *dns,
686                                        struct interface *ifaces)
687 {
688         const struct model_ops *model_ops;
689         int num_interfaces;
690         TALLOC_CTX *tmp_ctx = talloc_new(dns);
691         NTSTATUS status;
692         int i;
693
694         /* within the dns task we want to be a single process, so
695            ask for the single process model ops and pass these to the
696            stream_setup_socket() call. */
697         model_ops = process_model_startup("single");
698         if (!model_ops) {
699                 DEBUG(0,("Can't find 'single' process model_ops\n"));
700                 return NT_STATUS_INTERNAL_ERROR;
701         }
702
703         if (ifaces != NULL) {
704                 num_interfaces = iface_list_count(ifaces);
705
706                 for (i=0; i<num_interfaces; i++) {
707                         const char *address = talloc_strdup(tmp_ctx,
708                                                             iface_list_n_ip(ifaces, i));
709
710                         status = dns_add_socket(dns, model_ops, "dns", address,
711                                                 DNS_SERVICE_PORT);
712                         NT_STATUS_NOT_OK_RETURN(status);
713                 }
714         } else {
715                 int num_binds = 0;
716                 char **wcard;
717                 wcard = iface_list_wildcard(tmp_ctx);
718                 if (wcard == NULL) {
719                         DEBUG(0, ("No wildcard address available\n"));
720                         return NT_STATUS_INTERNAL_ERROR;
721                 }
722                 for (i = 0; wcard[i] != NULL; i++) {
723                         status = dns_add_socket(dns, model_ops, "dns", wcard[i],
724                                                 DNS_SERVICE_PORT);
725                         if (NT_STATUS_IS_OK(status)) {
726                                 num_binds++;
727                         }
728                 }
729                 if (num_binds == 0) {
730                         talloc_free(tmp_ctx);
731                         return NT_STATUS_INVALID_PARAMETER_MIX;
732                 }
733         }
734
735         talloc_free(tmp_ctx);
736
737         return NT_STATUS_OK;
738 }
739
740 static struct dns_server_tkey_store *tkey_store_init(TALLOC_CTX *mem_ctx,
741                                                      uint16_t size)
742 {
743         struct dns_server_tkey_store *buffer = talloc_zero(mem_ctx,
744                                                 struct dns_server_tkey_store);
745
746         if (buffer == NULL) {
747                 return NULL;
748         }
749
750         buffer->size = size;
751         buffer->next_idx = 0;
752
753         buffer->tkeys = talloc_zero_array(buffer, struct dns_server_tkey *, size);
754         if (buffer->tkeys == NULL) {
755                 TALLOC_FREE(buffer);
756         }
757
758         return buffer;
759 }
760
761 static NTSTATUS dns_server_reload_zones(struct dns_server *dns)
762 {
763         NTSTATUS status;
764         struct dns_server_zone *new_list = NULL;
765         struct dns_server_zone *old_list = NULL;
766         struct dns_server_zone *old_zone;
767         status = dns_common_zones(dns->samdb, dns, &new_list);
768         if (!NT_STATUS_IS_OK(status)) {
769                 return status;
770         }
771         dns->zones = new_list;
772         while ((old_zone = DLIST_TAIL(old_list)) != NULL) {
773                 DLIST_REMOVE(old_list, old_zone);
774                 talloc_free(old_zone);
775         }
776
777         return NT_STATUS_OK;
778 }
779
780 /**
781  * Called when the internal DNS server should reload the zones from DB, for
782  * example, when zones are added or deleted through RPC or replicated by
783  * inbound DRS.
784  */
785 static NTSTATUS dns_reload_zones(struct irpc_message *msg,
786                                  struct dnssrv_reload_dns_zones *r)
787 {
788         struct dns_server *dns;
789
790         dns = talloc_get_type(msg->private_data, struct dns_server);
791         if (dns == NULL) {
792                 r->out.result = NT_STATUS_INTERNAL_ERROR;
793                 return NT_STATUS_INTERNAL_ERROR;
794         }
795
796         r->out.result = dns_server_reload_zones(dns);
797
798         return NT_STATUS_OK;
799 }
800
801 static void dns_task_init(struct task_server *task)
802 {
803         struct dns_server *dns;
804         NTSTATUS status;
805         struct interface *ifaces = NULL;
806         int ret;
807         static const char * const attrs_none[] = { NULL};
808         struct ldb_message *dns_acc;
809         char *hostname_lower;
810         char *dns_spn;
811
812         switch (lpcfg_server_role(task->lp_ctx)) {
813         case ROLE_STANDALONE:
814                 task_server_terminate(task, "dns: no DNS required in standalone configuration", false);
815                 return;
816         case ROLE_DOMAIN_MEMBER:
817                 task_server_terminate(task, "dns: no DNS required in member server configuration", false);
818                 return;
819         case ROLE_ACTIVE_DIRECTORY_DC:
820                 /* Yes, we want a DNS */
821                 break;
822         }
823
824         if (lpcfg_interfaces(task->lp_ctx) && lpcfg_bind_interfaces_only(task->lp_ctx)) {
825                 load_interface_list(task, task->lp_ctx, &ifaces);
826
827                 if (iface_list_count(ifaces) == 0) {
828                         task_server_terminate(task, "dns: no network interfaces configured", false);
829                         return;
830                 }
831         }
832
833         task_server_set_title(task, "task[dns]");
834
835         dns = talloc_zero(task, struct dns_server);
836         if (dns == NULL) {
837                 task_server_terminate(task, "dns: out of memory", true);
838                 return;
839         }
840
841         dns->task = task;
842         /*FIXME: Make this a configurable option */
843         dns->max_payload = 4096;
844
845         dns->server_credentials = cli_credentials_init(dns);
846         if (!dns->server_credentials) {
847                 task_server_terminate(task, "Failed to init server credentials\n", true);
848                 return;
849         }
850
851         dns->samdb = samdb_connect(dns, dns->task->event_ctx, dns->task->lp_ctx,
852                               system_session(dns->task->lp_ctx), 0);
853         if (!dns->samdb) {
854                 task_server_terminate(task, "dns: samdb_connect failed", true);
855                 return;
856         }
857
858         cli_credentials_set_conf(dns->server_credentials, task->lp_ctx);
859
860         hostname_lower = strlower_talloc(dns, lpcfg_netbios_name(task->lp_ctx));
861         dns_spn = talloc_asprintf(dns, "DNS/%s.%s",
862                                   hostname_lower,
863                                   lpcfg_dnsdomain(task->lp_ctx));
864         TALLOC_FREE(hostname_lower);
865
866         ret = dsdb_search_one(dns->samdb, dns, &dns_acc,
867                               ldb_get_default_basedn(dns->samdb), LDB_SCOPE_SUBTREE,
868                               attrs_none, 0, "(servicePrincipalName=%s)",
869                               dns_spn);
870         if (ret == LDB_SUCCESS) {
871                 TALLOC_FREE(dns_acc);
872                 if (!dns_spn) {
873                         task_server_terminate(task, "dns: talloc_asprintf failed", true);
874                         return;
875                 }
876                 status = cli_credentials_set_stored_principal(dns->server_credentials, task->lp_ctx, dns_spn);
877                 if (!NT_STATUS_IS_OK(status)) {
878                         task_server_terminate(task,
879                                               talloc_asprintf(task, "Failed to obtain server credentials for DNS, "
880                                                               "despite finding it in the samdb! %s\n",
881                                                               nt_errstr(status)),
882                                               true);
883                         return;
884                 }
885         } else {
886                 TALLOC_FREE(dns_spn);
887                 status = cli_credentials_set_machine_account(dns->server_credentials, task->lp_ctx);
888                 if (!NT_STATUS_IS_OK(status)) {
889                         task_server_terminate(task,
890                                               talloc_asprintf(task, "Failed to obtain server credentials, perhaps a standalone server?: %s\n",
891                                                               nt_errstr(status)),
892                                               true);
893                         return;
894                 }
895         }
896
897         dns->tkeys = tkey_store_init(dns, TKEY_BUFFER_SIZE);
898         if (!dns->tkeys) {
899                 task_server_terminate(task, "Failed to allocate tkey storage\n", true);
900                 return;
901         }
902
903         status = dns_server_reload_zones(dns);
904         if (!NT_STATUS_IS_OK(status)) {
905                 task_server_terminate(task, "dns: failed to load DNS zones", true);
906                 return;
907         }
908
909         status = dns_startup_interfaces(dns, ifaces);
910         if (!NT_STATUS_IS_OK(status)) {
911                 task_server_terminate(task, "dns failed to setup interfaces", true);
912                 return;
913         }
914
915         /* Setup the IRPC interface and register handlers */
916         status = irpc_add_name(task->msg_ctx, "dnssrv");
917         if (!NT_STATUS_IS_OK(status)) {
918                 task_server_terminate(task, "dns: failed to register IRPC name", true);
919                 return;
920         }
921
922         status = IRPC_REGISTER(task->msg_ctx, irpc, DNSSRV_RELOAD_DNS_ZONES,
923                                dns_reload_zones, dns);
924         if (!NT_STATUS_IS_OK(status)) {
925                 task_server_terminate(task, "dns: failed to setup reload handler", true);
926                 return;
927         }
928 }
929
930 NTSTATUS server_service_dns_init(void)
931 {
932         return register_server_service("dns", dns_task_init);
933 }