printing: Avoid zombies in the background daemon
[Samba.git] / source4 / dns_server / dns_update.c
blobd1e7825bf07c5f0c2aad3e5fde52353c4c51f722
1 /*
2 Unix SMB/CIFS implementation.
4 DNS server handler for update requests
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/>.
22 #include "includes.h"
23 #include "libcli/util/ntstatus.h"
24 #include "librpc/ndr/libndr.h"
25 #include "librpc/gen_ndr/ndr_dns.h"
26 #include "librpc/gen_ndr/ndr_dnsp.h"
27 #include <ldb.h>
28 #include "param/param.h"
29 #include "param/loadparm.h"
30 #include "dsdb/samdb/samdb.h"
31 #include "dsdb/common/util.h"
32 #include "samba/service_task.h"
33 #include "dns_server/dns_server.h"
34 #include "auth/auth.h"
36 #undef DBGC_CLASS
37 #define DBGC_CLASS DBGC_DNS
39 static WERROR dns_rr_to_dnsp(TALLOC_CTX *mem_ctx,
40 const struct dns_res_rec *rrec,
41 struct dnsp_DnssrvRpcRecord *r,
42 bool name_is_static);
44 static WERROR check_one_prerequisite(struct dns_server *dns,
45 TALLOC_CTX *mem_ctx,
46 const struct dns_name_question *zone,
47 const struct dns_res_rec *pr,
48 bool *final_result)
50 bool match;
51 WERROR werror;
52 struct ldb_dn *dn;
53 uint16_t i;
54 bool found = false;
55 struct dnsp_DnssrvRpcRecord *rec = NULL;
56 struct dnsp_DnssrvRpcRecord *ans;
57 uint16_t acount;
59 size_t host_part_len = 0;
61 *final_result = true;
63 if (pr->ttl != 0) {
64 return DNS_ERR(FORMAT_ERROR);
67 match = dns_name_match(zone->name, pr->name, &host_part_len);
68 if (!match) {
69 return DNS_ERR(NOTZONE);
72 werror = dns_name2dn(dns, mem_ctx, pr->name, &dn);
73 W_ERROR_NOT_OK_RETURN(werror);
75 if (pr->rr_class == DNS_QCLASS_ANY) {
77 if (pr->length != 0) {
78 return DNS_ERR(FORMAT_ERROR);
82 if (pr->rr_type == DNS_QTYPE_ALL) {
85 werror = dns_lookup_records(dns, mem_ctx, dn, &ans, &acount);
86 if (W_ERROR_EQUAL(werror, WERR_DNS_ERROR_NAME_DOES_NOT_EXIST)) {
87 return DNS_ERR(NAME_ERROR);
89 W_ERROR_NOT_OK_RETURN(werror);
91 if (acount == 0) {
92 return DNS_ERR(NAME_ERROR);
94 } else {
97 werror = dns_lookup_records(dns, mem_ctx, dn, &ans, &acount);
98 if (W_ERROR_EQUAL(werror, WERR_DNS_ERROR_NAME_DOES_NOT_EXIST)) {
99 return DNS_ERR(NXRRSET);
101 if (W_ERROR_EQUAL(werror, DNS_ERR(NAME_ERROR))) {
102 return DNS_ERR(NXRRSET);
104 W_ERROR_NOT_OK_RETURN(werror);
106 for (i = 0; i < acount; i++) {
107 if (ans[i].wType == (enum dns_record_type) pr->rr_type) {
108 found = true;
109 break;
112 if (!found) {
113 return DNS_ERR(NXRRSET);
118 * RFC2136 3.2.5 doesn't actually mention the need to return
119 * OK here, but otherwise we'd always return a FORMAT_ERROR
120 * later on. This also matches Microsoft DNS behavior.
122 return WERR_OK;
125 if (pr->rr_class == DNS_QCLASS_NONE) {
126 if (pr->length != 0) {
127 return DNS_ERR(FORMAT_ERROR);
130 if (pr->rr_type == DNS_QTYPE_ALL) {
133 werror = dns_lookup_records(dns, mem_ctx, dn, &ans, &acount);
134 if (W_ERROR_EQUAL(werror, WERR_OK)) {
135 return DNS_ERR(YXDOMAIN);
137 } else {
140 werror = dns_lookup_records(dns, mem_ctx, dn, &ans, &acount);
141 if (W_ERROR_EQUAL(werror, WERR_DNS_ERROR_NAME_DOES_NOT_EXIST)) {
142 werror = WERR_OK;
144 if (W_ERROR_EQUAL(werror, DNS_ERR(NAME_ERROR))) {
145 werror = WERR_OK;
148 for (i = 0; i < acount; i++) {
149 if (ans[i].wType == (enum dns_record_type) pr->rr_type) {
150 found = true;
151 break;
154 if (found) {
155 return DNS_ERR(YXRRSET);
160 * RFC2136 3.2.5 doesn't actually mention the need to return
161 * OK here, but otherwise we'd always return a FORMAT_ERROR
162 * later on. This also matches Microsoft DNS behavior.
164 return WERR_OK;
167 if (pr->rr_class != zone->question_class) {
168 return DNS_ERR(FORMAT_ERROR);
171 *final_result = false;
173 werror = dns_lookup_records(dns, mem_ctx, dn, &ans, &acount);
174 if (W_ERROR_EQUAL(werror, WERR_DNS_ERROR_NAME_DOES_NOT_EXIST)) {
175 return DNS_ERR(NXRRSET);
177 if (W_ERROR_EQUAL(werror, DNS_ERR(NAME_ERROR))) {
178 return DNS_ERR(NXRRSET);
180 W_ERROR_NOT_OK_RETURN(werror);
182 rec = talloc_zero(mem_ctx, struct dnsp_DnssrvRpcRecord);
183 W_ERROR_HAVE_NO_MEMORY(rec);
185 werror = dns_rr_to_dnsp(rec, pr, rec, dns_name_is_static(ans, acount));
186 W_ERROR_NOT_OK_RETURN(werror);
188 for (i = 0; i < acount; i++) {
189 if (dns_records_match(rec, &ans[i])) {
190 found = true;
191 break;
195 if (!found) {
196 return DNS_ERR(NXRRSET);
199 return WERR_OK;
202 static WERROR check_prerequisites(struct dns_server *dns,
203 TALLOC_CTX *mem_ctx,
204 const struct dns_name_question *zone,
205 const struct dns_res_rec *prereqs, uint16_t count)
207 uint16_t i;
208 WERROR final_error = WERR_OK;
210 for (i = 0; i < count; i++) {
211 bool final;
212 WERROR werror;
214 werror = check_one_prerequisite(dns, mem_ctx, zone,
215 &prereqs[i], &final);
216 if (!W_ERROR_IS_OK(werror)) {
217 if (final) {
218 return werror;
220 if (W_ERROR_IS_OK(final_error)) {
221 final_error = werror;
226 if (!W_ERROR_IS_OK(final_error)) {
227 return final_error;
230 return WERR_OK;
233 static WERROR update_prescan(const struct dns_name_question *zone,
234 const struct dns_res_rec *updates, uint16_t count)
236 const struct dns_res_rec *r;
237 uint16_t i;
238 size_t host_part_len;
239 bool match;
241 for (i = 0; i < count; i++) {
242 r = &updates[i];
243 match = dns_name_match(zone->name, r->name, &host_part_len);
244 if (!match) {
245 return DNS_ERR(NOTZONE);
247 if (zone->question_class == r->rr_class) {
248 if (r->rr_type == DNS_QTYPE_ALL) {
249 return DNS_ERR(FORMAT_ERROR);
251 if (r->rr_type == DNS_QTYPE_AXFR) {
252 return DNS_ERR(FORMAT_ERROR);
254 if (r->rr_type == DNS_QTYPE_MAILB) {
255 return DNS_ERR(FORMAT_ERROR);
257 if (r->rr_type == DNS_QTYPE_MAILA) {
258 return DNS_ERR(FORMAT_ERROR);
260 } else if (r->rr_class == DNS_QCLASS_ANY) {
261 if (r->ttl != 0) {
262 return DNS_ERR(FORMAT_ERROR);
264 if (r->length != 0) {
265 return DNS_ERR(FORMAT_ERROR);
267 if (r->rr_type == DNS_QTYPE_AXFR) {
268 return DNS_ERR(FORMAT_ERROR);
270 if (r->rr_type == DNS_QTYPE_MAILB) {
271 return DNS_ERR(FORMAT_ERROR);
273 if (r->rr_type == DNS_QTYPE_MAILA) {
274 return DNS_ERR(FORMAT_ERROR);
276 } else if (r->rr_class == DNS_QCLASS_NONE) {
277 if (r->ttl != 0) {
278 return DNS_ERR(FORMAT_ERROR);
280 if (r->rr_type == DNS_QTYPE_ALL) {
281 return DNS_ERR(FORMAT_ERROR);
283 if (r->rr_type == DNS_QTYPE_AXFR) {
284 return DNS_ERR(FORMAT_ERROR);
286 if (r->rr_type == DNS_QTYPE_MAILB) {
287 return DNS_ERR(FORMAT_ERROR);
289 if (r->rr_type == DNS_QTYPE_MAILA) {
290 return DNS_ERR(FORMAT_ERROR);
292 } else {
293 return DNS_ERR(FORMAT_ERROR);
296 return WERR_OK;
299 static WERROR dns_rr_to_dnsp(TALLOC_CTX *mem_ctx,
300 const struct dns_res_rec *rrec,
301 struct dnsp_DnssrvRpcRecord *r,
302 bool name_is_static)
304 enum ndr_err_code ndr_err;
306 if (rrec->rr_type == DNS_QTYPE_ALL) {
307 return DNS_ERR(FORMAT_ERROR);
310 ZERO_STRUCTP(r);
312 r->wType = (enum dns_record_type) rrec->rr_type;
313 r->dwTtlSeconds = rrec->ttl;
314 r->rank = DNS_RANK_ZONE;
315 if (name_is_static) {
316 r->dwTimeStamp = 0;
317 } else {
318 r->dwTimeStamp = unix_to_dns_timestamp(time(NULL));
321 /* If we get QCLASS_ANY, we're done here */
322 if (rrec->rr_class == DNS_QCLASS_ANY) {
323 goto done;
326 switch(rrec->rr_type) {
327 case DNS_QTYPE_A:
328 r->data.ipv4 = talloc_strdup(mem_ctx, rrec->rdata.ipv4_record);
329 W_ERROR_HAVE_NO_MEMORY(r->data.ipv4);
330 break;
331 case DNS_QTYPE_AAAA:
332 r->data.ipv6 = talloc_strdup(mem_ctx, rrec->rdata.ipv6_record);
333 W_ERROR_HAVE_NO_MEMORY(r->data.ipv6);
334 break;
335 case DNS_QTYPE_NS:
336 r->data.ns = talloc_strdup(mem_ctx, rrec->rdata.ns_record);
337 W_ERROR_HAVE_NO_MEMORY(r->data.ns);
338 break;
339 case DNS_QTYPE_CNAME:
340 r->data.cname = talloc_strdup(mem_ctx, rrec->rdata.cname_record);
341 W_ERROR_HAVE_NO_MEMORY(r->data.cname);
342 break;
343 case DNS_QTYPE_SRV:
344 r->data.srv.wPriority = rrec->rdata.srv_record.priority;
345 r->data.srv.wWeight = rrec->rdata.srv_record.weight;
346 r->data.srv.wPort = rrec->rdata.srv_record.port;
347 r->data.srv.nameTarget = talloc_strdup(mem_ctx,
348 rrec->rdata.srv_record.target);
349 W_ERROR_HAVE_NO_MEMORY(r->data.srv.nameTarget);
350 break;
351 case DNS_QTYPE_PTR:
352 r->data.ptr = talloc_strdup(mem_ctx, rrec->rdata.ptr_record);
353 W_ERROR_HAVE_NO_MEMORY(r->data.ptr);
354 break;
355 case DNS_QTYPE_MX:
356 r->data.mx.wPriority = rrec->rdata.mx_record.preference;
357 r->data.mx.nameTarget = talloc_strdup(mem_ctx,
358 rrec->rdata.mx_record.exchange);
359 W_ERROR_HAVE_NO_MEMORY(r->data.mx.nameTarget);
360 break;
361 case DNS_QTYPE_TXT:
362 ndr_err = ndr_dnsp_string_list_copy(mem_ctx,
363 &rrec->rdata.txt_record.txt,
364 &r->data.txt);
365 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
366 return WERR_NOT_ENOUGH_MEMORY;
369 break;
370 default:
371 DEBUG(0, ("Got a qytpe of %d\n", rrec->rr_type));
372 return DNS_ERR(NOT_IMPLEMENTED);
375 done:
377 return WERR_OK;
381 static WERROR handle_one_update(struct dns_server *dns,
382 TALLOC_CTX *mem_ctx,
383 const struct dns_name_question *zone,
384 const struct dns_res_rec *update,
385 const struct dns_server_tkey *tkey)
387 struct dnsp_DnssrvRpcRecord *recs = NULL;
388 uint16_t rcount = 0;
389 struct ldb_dn *dn;
390 uint16_t i;
391 uint16_t first = 0;
392 WERROR werror;
393 bool tombstoned = false;
394 bool needs_add = false;
395 bool name_is_static;
397 DEBUG(2, ("Looking at record: \n"));
398 if (DEBUGLVL(2)) {
399 NDR_PRINT_DEBUG(dns_res_rec, discard_const(update));
402 switch (update->rr_type) {
403 case DNS_QTYPE_A:
404 case DNS_QTYPE_NS:
405 case DNS_QTYPE_CNAME:
406 case DNS_QTYPE_SOA:
407 case DNS_QTYPE_PTR:
408 case DNS_QTYPE_MX:
409 case DNS_QTYPE_AAAA:
410 case DNS_QTYPE_SRV:
411 case DNS_QTYPE_TXT:
412 case DNS_QTYPE_ALL:
413 break;
414 default:
415 DEBUG(0, ("Can't handle updates of type %u yet\n",
416 update->rr_type));
417 return DNS_ERR(NOT_IMPLEMENTED);
420 werror = dns_name2dn(dns, mem_ctx, update->name, &dn);
421 W_ERROR_NOT_OK_RETURN(werror);
423 werror = dns_common_lookup(dns->samdb, mem_ctx, dn,
424 &recs, &rcount, &tombstoned);
425 if (W_ERROR_EQUAL(werror, WERR_DNS_ERROR_NAME_DOES_NOT_EXIST)) {
426 needs_add = true;
427 werror = WERR_OK;
429 W_ERROR_NOT_OK_RETURN(werror);
431 if (tombstoned) {
433 * we need to keep the existing tombstone record
434 * and ignore it
436 first = rcount;
439 name_is_static = dns_name_is_static(recs, rcount);
441 if (update->rr_class == zone->question_class) {
442 if (update->rr_type == DNS_QTYPE_CNAME) {
444 * If there is a record in the directory
445 * that's not a CNAME, ignore update
447 for (i = first; i < rcount; i++) {
448 if (recs[i].wType != DNS_TYPE_CNAME) {
449 DEBUG(5, ("Skipping update\n"));
450 return WERR_OK;
452 break;
456 * There should be no entries besides one CNAME record
457 * per name, so replace everything with the new CNAME
460 rcount = first;
461 recs = talloc_realloc(mem_ctx, recs,
462 struct dnsp_DnssrvRpcRecord, rcount + 1);
463 W_ERROR_HAVE_NO_MEMORY(recs);
465 werror = dns_rr_to_dnsp(
466 recs, update, &recs[rcount], name_is_static);
467 W_ERROR_NOT_OK_RETURN(werror);
468 rcount += 1;
470 werror = dns_replace_records(dns, mem_ctx, dn,
471 needs_add, recs, rcount);
472 W_ERROR_NOT_OK_RETURN(werror);
474 return WERR_OK;
475 } else {
477 * If there is a CNAME record for this name,
478 * ignore update
480 for (i = first; i < rcount; i++) {
481 if (recs[i].wType == DNS_TYPE_CNAME) {
482 DEBUG(5, ("Skipping update\n"));
483 return WERR_OK;
487 if (update->rr_type == DNS_QTYPE_SOA) {
488 bool found = false;
491 * If the zone has no SOA record?? or update's
492 * serial number is smaller than existing SOA's,
493 * ignore update
495 for (i = first; i < rcount; i++) {
496 if (recs[i].wType == DNS_TYPE_SOA) {
497 uint16_t n, o;
499 n = update->rdata.soa_record.serial;
500 o = recs[i].data.soa.serial;
502 * TODO: Implement RFC 1982 comparison
503 * logic for RFC2136
505 if (n <= o) {
506 DEBUG(5, ("Skipping update\n"));
507 return WERR_OK;
509 found = true;
510 break;
513 if (!found) {
514 DEBUG(5, ("Skipping update\n"));
515 return WERR_OK;
518 werror = dns_rr_to_dnsp(
519 mem_ctx, update, &recs[i], name_is_static);
520 W_ERROR_NOT_OK_RETURN(werror);
522 for (i++; i < rcount; i++) {
523 if (recs[i].wType != DNS_TYPE_SOA) {
524 continue;
527 recs[i] = (struct dnsp_DnssrvRpcRecord) {
528 .wType = DNS_TYPE_TOMBSTONE,
532 werror = dns_replace_records(dns, mem_ctx, dn,
533 needs_add, recs, rcount);
534 W_ERROR_NOT_OK_RETURN(werror);
536 return WERR_OK;
539 recs = talloc_realloc(mem_ctx, recs,
540 struct dnsp_DnssrvRpcRecord, rcount+1);
541 W_ERROR_HAVE_NO_MEMORY(recs);
543 werror =
544 dns_rr_to_dnsp(recs, update, &recs[rcount], name_is_static);
545 W_ERROR_NOT_OK_RETURN(werror);
547 for (i = first; i < rcount; i++) {
548 if (!dns_records_match(&recs[i], &recs[rcount])) {
549 continue;
552 recs[i].data = recs[rcount].data;
553 recs[i].wType = recs[rcount].wType;
554 recs[i].dwTtlSeconds = recs[rcount].dwTtlSeconds;
555 recs[i].rank = recs[rcount].rank;
557 werror = dns_replace_records(dns, mem_ctx, dn,
558 needs_add, recs, rcount);
559 W_ERROR_NOT_OK_RETURN(werror);
561 return WERR_OK;
564 werror = dns_replace_records(dns, mem_ctx, dn,
565 needs_add, recs, rcount+1);
566 W_ERROR_NOT_OK_RETURN(werror);
568 return WERR_OK;
569 } else if (update->rr_class == DNS_QCLASS_ANY) {
570 if (update->rr_type == DNS_QTYPE_ALL) {
571 if (dns_name_equal(update->name, zone->name)) {
572 for (i = first; i < rcount; i++) {
574 if (recs[i].wType == DNS_TYPE_SOA) {
575 continue;
578 if (recs[i].wType == DNS_TYPE_NS) {
579 continue;
582 recs[i] = (struct dnsp_DnssrvRpcRecord) {
583 .wType = DNS_TYPE_TOMBSTONE,
587 } else {
588 for (i = first; i < rcount; i++) {
589 recs[i] = (struct dnsp_DnssrvRpcRecord) {
590 .wType = DNS_TYPE_TOMBSTONE,
595 } else if (dns_name_equal(update->name, zone->name)) {
597 if (update->rr_type == DNS_QTYPE_SOA) {
598 return WERR_OK;
601 if (update->rr_type == DNS_QTYPE_NS) {
602 return WERR_OK;
605 for (i = first; i < rcount; i++) {
606 if (recs[i].wType == (enum dns_record_type) update->rr_type) {
607 recs[i] = (struct dnsp_DnssrvRpcRecord) {
608 .wType = DNS_TYPE_TOMBSTONE,
613 werror = dns_replace_records(dns, mem_ctx, dn,
614 needs_add, recs, rcount);
615 W_ERROR_NOT_OK_RETURN(werror);
617 return WERR_OK;
618 } else if (update->rr_class == DNS_QCLASS_NONE) {
619 struct dnsp_DnssrvRpcRecord *del_rec;
621 if (update->rr_type == DNS_QTYPE_SOA) {
622 return WERR_OK;
624 if (update->rr_type == DNS_QTYPE_NS) {
625 bool found = false;
626 struct dnsp_DnssrvRpcRecord *ns_rec = talloc(mem_ctx,
627 struct dnsp_DnssrvRpcRecord);
628 W_ERROR_HAVE_NO_MEMORY(ns_rec);
630 werror = dns_rr_to_dnsp(
631 ns_rec, update, ns_rec, name_is_static);
632 W_ERROR_NOT_OK_RETURN(werror);
634 for (i = first; i < rcount; i++) {
635 if (dns_records_match(ns_rec, &recs[i])) {
636 found = true;
637 break;
640 if (found) {
641 return WERR_OK;
645 del_rec = talloc(mem_ctx, struct dnsp_DnssrvRpcRecord);
646 W_ERROR_HAVE_NO_MEMORY(del_rec);
648 werror =
649 dns_rr_to_dnsp(del_rec, update, del_rec, name_is_static);
650 W_ERROR_NOT_OK_RETURN(werror);
652 for (i = first; i < rcount; i++) {
653 if (dns_records_match(del_rec, &recs[i])) {
654 recs[i] = (struct dnsp_DnssrvRpcRecord) {
655 .wType = DNS_TYPE_TOMBSTONE,
660 werror = dns_replace_records(dns, mem_ctx, dn,
661 needs_add, recs, rcount);
662 W_ERROR_NOT_OK_RETURN(werror);
665 return WERR_OK;
668 static WERROR handle_updates(struct dns_server *dns,
669 TALLOC_CTX *mem_ctx,
670 const struct dns_name_question *zone,
671 const struct dns_res_rec *prereqs, uint16_t pcount,
672 struct dns_res_rec *updates, uint16_t upd_count,
673 struct dns_server_tkey *tkey)
675 struct ldb_dn *zone_dn = NULL;
676 WERROR werror = WERR_OK;
677 int ret;
678 uint16_t ri;
679 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
681 if (tkey != NULL) {
682 ret = ldb_set_opaque(
683 dns->samdb,
684 DSDB_SESSION_INFO,
685 tkey->session_info);
686 if (ret != LDB_SUCCESS) {
687 DEBUG(1, ("unable to set session info\n"));
688 werror = DNS_ERR(SERVER_FAILURE);
689 goto failed;
693 werror = dns_name2dn(dns, tmp_ctx, zone->name, &zone_dn);
694 W_ERROR_NOT_OK_GOTO(werror, failed);
696 ret = ldb_transaction_start(dns->samdb);
697 if (ret != LDB_SUCCESS) {
698 werror = DNS_ERR(SERVER_FAILURE);
699 goto failed;
702 werror = check_prerequisites(dns, tmp_ctx, zone, prereqs, pcount);
703 W_ERROR_NOT_OK_GOTO(werror, failed);
705 DBG_DEBUG("dns update count is %u\n", upd_count);
707 for (ri = 0; ri < upd_count; ri++) {
708 werror = handle_one_update(dns, tmp_ctx, zone,
709 &updates[ri], tkey);
710 W_ERROR_NOT_OK_GOTO(werror, failed);
713 ldb_transaction_commit(dns->samdb);
714 TALLOC_FREE(tmp_ctx);
716 if (tkey != NULL) {
717 ldb_set_opaque(
718 dns->samdb,
719 DSDB_SESSION_INFO,
720 system_session(dns->task->lp_ctx));
723 return WERR_OK;
725 failed:
726 ldb_transaction_cancel(dns->samdb);
728 if (tkey != NULL) {
729 ldb_set_opaque(
730 dns->samdb,
731 DSDB_SESSION_INFO,
732 system_session(dns->task->lp_ctx));
735 TALLOC_FREE(tmp_ctx);
736 return werror;
740 static WERROR dns_update_allowed(struct dns_server *dns,
741 const struct dns_request_state *state,
742 struct dns_server_tkey **tkey)
744 if (lpcfg_allow_dns_updates(dns->task->lp_ctx) == DNS_UPDATE_ON) {
745 DEBUG(2, ("All updates allowed.\n"));
746 return WERR_OK;
749 if (lpcfg_allow_dns_updates(dns->task->lp_ctx) == DNS_UPDATE_OFF) {
750 DEBUG(2, ("Updates disabled.\n"));
751 return DNS_ERR(REFUSED);
754 if (state->authenticated == false ) {
755 DEBUG(2, ("Update not allowed for unsigned packet.\n"));
756 return DNS_ERR(REFUSED);
759 *tkey = dns_find_tkey(dns->tkeys, state->key_name);
760 if (*tkey == NULL) {
761 DEBUG(0, ("Authenticated, but key not found. Something is wrong.\n"));
762 return DNS_ERR(REFUSED);
765 return WERR_OK;
769 WERROR dns_server_process_update(struct dns_server *dns,
770 const struct dns_request_state *state,
771 TALLOC_CTX *mem_ctx,
772 const struct dns_name_packet *in,
773 struct dns_res_rec **prereqs, uint16_t *prereq_count,
774 struct dns_res_rec **updates, uint16_t *update_count,
775 struct dns_res_rec **additional, uint16_t *arcount)
777 struct dns_name_question *zone;
778 const struct dns_server_zone *z;
779 size_t host_part_len = 0;
780 WERROR werror = DNS_ERR(NOT_IMPLEMENTED);
781 struct dns_server_tkey *tkey = NULL;
783 if (in->qdcount != 1) {
784 return DNS_ERR(FORMAT_ERROR);
787 zone = &in->questions[0];
789 if (zone->question_class != DNS_QCLASS_IN &&
790 zone->question_class != DNS_QCLASS_ANY) {
791 return DNS_ERR(NOT_IMPLEMENTED);
794 if (zone->question_type != DNS_QTYPE_SOA) {
795 return DNS_ERR(FORMAT_ERROR);
798 DEBUG(2, ("Got a dns update request.\n"));
800 for (z = dns->zones; z != NULL; z = z->next) {
801 bool match;
803 match = dns_name_match(z->name, zone->name, &host_part_len);
804 if (match) {
805 break;
809 if (z == NULL) {
810 DEBUG(1, ("We're not authoritative for this zone\n"));
811 return DNS_ERR(NOTAUTH);
814 if (host_part_len != 0) {
815 /* TODO: We need to delegate this one */
816 DEBUG(1, ("Would have to delegate zone '%s'.\n", zone->name));
817 return DNS_ERR(NOT_IMPLEMENTED);
820 *prereq_count = in->ancount;
821 *prereqs = in->answers;
822 werror = check_prerequisites(dns, mem_ctx, in->questions, *prereqs,
823 *prereq_count);
824 W_ERROR_NOT_OK_RETURN(werror);
826 werror = dns_update_allowed(dns, state, &tkey);
827 if (!W_ERROR_IS_OK(werror)) {
828 return werror;
831 *update_count = in->nscount;
832 *updates = in->nsrecs;
833 werror = update_prescan(in->questions, *updates, *update_count);
834 W_ERROR_NOT_OK_RETURN(werror);
836 werror = handle_updates(dns, mem_ctx, in->questions, *prereqs,
837 *prereq_count, *updates, *update_count, tkey);
838 W_ERROR_NOT_OK_RETURN(werror);
840 return werror;