dsdb-acl: make use of acl_check_access_on_objectclass() for the object in acl_delete()
[Samba/gebeck_regimport.git] / source4 / dns_server / dns_update.c
blob8be3564ee982818c49d4dd5376538f303101d530
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 "smbd/service_task.h"
33 #include "dns_server/dns_server.h"
34 #include "auth/auth.h"
36 static WERROR dns_rr_to_dnsp(TALLOC_CTX *mem_ctx,
37 const struct dns_res_rec *rrec,
38 struct dnsp_DnssrvRpcRecord *r);
40 static WERROR check_one_prerequisite(struct dns_server *dns,
41 TALLOC_CTX *mem_ctx,
42 const struct dns_name_question *zone,
43 const struct dns_res_rec *pr,
44 bool *final_result)
46 bool match;
47 WERROR werror;
48 struct ldb_dn *dn;
49 uint16_t i;
50 bool found = false;
51 struct dnsp_DnssrvRpcRecord *rec = NULL;
52 struct dnsp_DnssrvRpcRecord *ans;
53 uint16_t acount;
55 size_t host_part_len = 0;
57 *final_result = true;
59 if (pr->ttl != 0) {
60 return DNS_ERR(FORMAT_ERROR);
63 match = dns_name_match(zone->name, pr->name, &host_part_len);
64 if (!match) {
65 return DNS_ERR(NOTZONE);
68 werror = dns_name2dn(dns, mem_ctx, pr->name, &dn);
69 W_ERROR_NOT_OK_RETURN(werror);
71 if (pr->rr_class == DNS_QCLASS_ANY) {
73 if (pr->length != 0) {
74 return DNS_ERR(FORMAT_ERROR);
78 if (pr->rr_type == DNS_QTYPE_ALL) {
81 werror = dns_lookup_records(dns, mem_ctx, dn, &ans, &acount);
82 W_ERROR_NOT_OK_RETURN(werror);
84 if (acount == 0) {
85 return DNS_ERR(NAME_ERROR);
87 } else {
90 werror = dns_lookup_records(dns, mem_ctx, dn, &ans, &acount);
91 if (W_ERROR_EQUAL(werror, DNS_ERR(NAME_ERROR))) {
92 return DNS_ERR(NXRRSET);
94 W_ERROR_NOT_OK_RETURN(werror);
96 for (i = 0; i < acount; i++) {
97 if (ans[i].wType == pr->rr_type) {
98 found = true;
99 break;
102 if (!found) {
103 return DNS_ERR(NXRRSET);
108 * RFC2136 3.2.5 doesn't actually mention the need to return
109 * OK here, but otherwise we'd always return a FORMAT_ERROR
110 * later on. This also matches Microsoft DNS behavior.
112 return WERR_OK;
115 if (pr->rr_class == DNS_QCLASS_NONE) {
116 if (pr->length != 0) {
117 return DNS_ERR(FORMAT_ERROR);
120 if (pr->rr_type == DNS_QTYPE_ALL) {
123 werror = dns_lookup_records(dns, mem_ctx, dn, &ans, &acount);
124 if (W_ERROR_EQUAL(werror, WERR_OK)) {
125 return DNS_ERR(YXDOMAIN);
127 } else {
130 werror = dns_lookup_records(dns, mem_ctx, dn, &ans, &acount);
131 if (W_ERROR_EQUAL(werror, DNS_ERR(NAME_ERROR))) {
132 werror = WERR_OK;
133 ans = NULL;
134 acount = 0;
137 for (i = 0; i < acount; i++) {
138 if (ans[i].wType == pr->rr_type) {
139 found = true;
140 break;
143 if (found) {
144 return DNS_ERR(YXRRSET);
149 * RFC2136 3.2.5 doesn't actually mention the need to return
150 * OK here, but otherwise we'd always return a FORMAT_ERROR
151 * later on. This also matches Microsoft DNS behavior.
153 return WERR_OK;
156 if (pr->rr_class != zone->question_class) {
157 return DNS_ERR(FORMAT_ERROR);
160 *final_result = false;
162 werror = dns_lookup_records(dns, mem_ctx, dn, &ans, &acount);
163 if (W_ERROR_EQUAL(werror, DNS_ERR(NAME_ERROR))) {
164 return DNS_ERR(NXRRSET);
166 W_ERROR_NOT_OK_RETURN(werror);
168 rec = talloc_zero(mem_ctx, struct dnsp_DnssrvRpcRecord);
169 W_ERROR_HAVE_NO_MEMORY(rec);
171 werror = dns_rr_to_dnsp(rec, pr, rec);
172 W_ERROR_NOT_OK_RETURN(werror);
174 for (i = 0; i < acount; i++) {
175 if (dns_records_match(rec, &ans[i])) {
176 found = true;
177 break;
181 if (!found) {
182 return DNS_ERR(NXRRSET);
185 return WERR_OK;
188 static WERROR check_prerequisites(struct dns_server *dns,
189 TALLOC_CTX *mem_ctx,
190 const struct dns_name_question *zone,
191 const struct dns_res_rec *prereqs, uint16_t count)
193 uint16_t i;
194 WERROR final_error = WERR_OK;
196 for (i = 0; i < count; i++) {
197 bool final;
198 WERROR werror;
200 werror = check_one_prerequisite(dns, mem_ctx, zone,
201 &prereqs[i], &final);
202 if (!W_ERROR_IS_OK(werror)) {
203 if (final) {
204 return werror;
206 if (W_ERROR_IS_OK(final_error)) {
207 final_error = werror;
212 if (!W_ERROR_IS_OK(final_error)) {
213 return final_error;
216 return WERR_OK;
219 static WERROR update_prescan(const struct dns_name_question *zone,
220 const struct dns_res_rec *updates, uint16_t count)
222 const struct dns_res_rec *r;
223 uint16_t i;
224 size_t host_part_len;
225 bool match;
227 for (i = 0; i < count; i++) {
228 r = &updates[i];
229 match = dns_name_match(zone->name, r->name, &host_part_len);
230 if (!match) {
231 return DNS_ERR(NOTZONE);
233 if (zone->question_class == r->rr_class) {
234 if (r->rr_type == DNS_QTYPE_ALL) {
235 return DNS_ERR(FORMAT_ERROR);
237 if (r->rr_type == DNS_QTYPE_AXFR) {
238 return DNS_ERR(FORMAT_ERROR);
240 if (r->rr_type == DNS_QTYPE_MAILB) {
241 return DNS_ERR(FORMAT_ERROR);
243 if (r->rr_type == DNS_QTYPE_MAILA) {
244 return DNS_ERR(FORMAT_ERROR);
246 } else if (r->rr_class == DNS_QCLASS_ANY) {
247 if (r->ttl != 0) {
248 return DNS_ERR(FORMAT_ERROR);
250 if (r->length != 0) {
251 return DNS_ERR(FORMAT_ERROR);
253 if (r->rr_type == DNS_QTYPE_AXFR) {
254 return DNS_ERR(FORMAT_ERROR);
256 if (r->rr_type == DNS_QTYPE_MAILB) {
257 return DNS_ERR(FORMAT_ERROR);
259 if (r->rr_type == DNS_QTYPE_MAILA) {
260 return DNS_ERR(FORMAT_ERROR);
262 } else if (r->rr_class == DNS_QCLASS_NONE) {
263 if (r->ttl != 0) {
264 return DNS_ERR(FORMAT_ERROR);
266 if (r->rr_type == DNS_QTYPE_ALL) {
267 return DNS_ERR(FORMAT_ERROR);
269 if (r->rr_type == DNS_QTYPE_AXFR) {
270 return DNS_ERR(FORMAT_ERROR);
272 if (r->rr_type == DNS_QTYPE_MAILB) {
273 return DNS_ERR(FORMAT_ERROR);
275 if (r->rr_type == DNS_QTYPE_MAILA) {
276 return DNS_ERR(FORMAT_ERROR);
278 } else {
279 return DNS_ERR(FORMAT_ERROR);
282 return WERR_OK;
285 static WERROR dns_rr_to_dnsp(TALLOC_CTX *mem_ctx,
286 const struct dns_res_rec *rrec,
287 struct dnsp_DnssrvRpcRecord *r)
289 char *tmp;
290 char *txt_record_txt;
291 char *saveptr = NULL;
293 if (rrec->rr_type == DNS_QTYPE_ALL) {
294 return DNS_ERR(FORMAT_ERROR);
297 ZERO_STRUCTP(r);
299 r->wType = rrec->rr_type;
300 r->dwTtlSeconds = rrec->ttl;
301 r->rank = DNS_RANK_ZONE;
302 /* TODO: Autogenerate this somehow */
303 r->dwSerial = 110;
305 /* If we get QCLASS_ANY, we're done here */
306 if (rrec->rr_class == DNS_QCLASS_ANY) {
307 goto done;
310 switch(rrec->rr_type) {
311 case DNS_QTYPE_A:
312 r->data.ipv4 = talloc_strdup(mem_ctx, rrec->rdata.ipv4_record);
313 W_ERROR_HAVE_NO_MEMORY(r->data.ipv4);
314 break;
315 case DNS_QTYPE_AAAA:
316 r->data.ipv6 = talloc_strdup(mem_ctx, rrec->rdata.ipv6_record);
317 W_ERROR_HAVE_NO_MEMORY(r->data.ipv6);
318 break;
319 case DNS_QTYPE_NS:
320 r->data.ns = talloc_strdup(mem_ctx, rrec->rdata.ns_record);
321 W_ERROR_HAVE_NO_MEMORY(r->data.ns);
322 break;
323 case DNS_QTYPE_CNAME:
324 r->data.cname = talloc_strdup(mem_ctx, rrec->rdata.cname_record);
325 W_ERROR_HAVE_NO_MEMORY(r->data.cname);
326 break;
327 case DNS_QTYPE_SRV:
328 r->data.srv.wPriority = rrec->rdata.srv_record.priority;
329 r->data.srv.wWeight = rrec->rdata.srv_record.weight;
330 r->data.srv.wPort = rrec->rdata.srv_record.port;
331 r->data.srv.nameTarget = talloc_strdup(mem_ctx,
332 rrec->rdata.srv_record.target);
333 W_ERROR_HAVE_NO_MEMORY(r->data.srv.nameTarget);
334 break;
335 case DNS_QTYPE_PTR:
336 r->data.ptr = talloc_strdup(mem_ctx, rrec->rdata.ptr_record);
337 W_ERROR_HAVE_NO_MEMORY(r->data.ptr);
338 break;
339 case DNS_QTYPE_MX:
340 r->data.mx.wPriority = rrec->rdata.mx_record.preference;
341 r->data.mx.nameTarget = talloc_strdup(mem_ctx,
342 rrec->rdata.mx_record.exchange);
343 W_ERROR_HAVE_NO_MEMORY(r->data.mx.nameTarget);
344 break;
345 case DNS_QTYPE_TXT:
346 r->data.txt.count = 0;
347 r->data.txt.str = talloc_array(mem_ctx, const char *,
348 r->data.txt.count);
349 W_ERROR_HAVE_NO_MEMORY(r->data.txt.str);
351 txt_record_txt = talloc_strdup(r->data.txt.str,
352 rrec->rdata.txt_record.txt);
353 W_ERROR_HAVE_NO_MEMORY(txt_record_txt);
355 tmp = strtok_r(txt_record_txt, "\"", &saveptr);
356 while (tmp) {
357 if (strcmp(tmp, " ") == 0) {
358 tmp = strtok_r(NULL, "\"", &saveptr);
359 continue;
361 r->data.txt.str = talloc_realloc(mem_ctx, r->data.txt.str, const char *,
362 r->data.txt.count+1);
363 r->data.txt.str[r->data.txt.count] = talloc_strdup(r->data.txt.str, tmp);
364 W_ERROR_HAVE_NO_MEMORY(r->data.txt.str[r->data.txt.count]);
366 r->data.txt.count++;
367 tmp = strtok_r(NULL, "\"", &saveptr);
370 break;
371 default:
372 DEBUG(0, ("Got a qytpe of %d\n", rrec->rr_type));
373 return DNS_ERR(NOT_IMPLEMENTED);
376 done:
378 return WERR_OK;
382 static WERROR handle_one_update(struct dns_server *dns,
383 TALLOC_CTX *mem_ctx,
384 const struct dns_name_question *zone,
385 const struct dns_res_rec *update,
386 const struct dns_server_tkey *tkey)
388 struct dnsp_DnssrvRpcRecord *recs = NULL;
389 uint16_t rcount = 0;
390 struct ldb_dn *dn;
391 uint16_t i;
392 WERROR werror;
393 bool needs_add = false;
395 DEBUG(2, ("Looking at record: \n"));
396 if (DEBUGLVL(2)) {
397 NDR_PRINT_DEBUG(dns_res_rec, discard_const(update));
400 switch (update->rr_type) {
401 case DNS_QTYPE_A:
402 case DNS_QTYPE_NS:
403 case DNS_QTYPE_CNAME:
404 case DNS_QTYPE_SOA:
405 case DNS_QTYPE_PTR:
406 case DNS_QTYPE_MX:
407 case DNS_QTYPE_AAAA:
408 case DNS_QTYPE_SRV:
409 case DNS_QTYPE_TXT:
410 break;
411 default:
412 DEBUG(0, ("Can't handle updates of type %u yet\n",
413 update->rr_type));
414 return DNS_ERR(NOT_IMPLEMENTED);
417 werror = dns_name2dn(dns, mem_ctx, update->name, &dn);
418 W_ERROR_NOT_OK_RETURN(werror);
420 werror = dns_lookup_records(dns, mem_ctx, dn, &recs, &rcount);
421 if (W_ERROR_EQUAL(werror, DNS_ERR(NAME_ERROR))) {
422 recs = NULL;
423 rcount = 0;
424 needs_add = true;
425 werror = WERR_OK;
427 W_ERROR_NOT_OK_RETURN(werror);
429 if (update->rr_class == zone->question_class) {
430 if (update->rr_type == DNS_QTYPE_CNAME) {
432 * If there is a record in the directory
433 * that's not a CNAME, ignore update
435 for (i = 0; i < rcount; i++) {
436 if (recs[i].wType != DNS_TYPE_CNAME) {
437 DEBUG(5, ("Skipping update\n"));
438 return WERR_OK;
440 break;
444 * There should be no entries besides one CNAME record
445 * per name, so replace everything with the new CNAME
448 rcount = 1;
449 recs = talloc_realloc(mem_ctx, recs,
450 struct dnsp_DnssrvRpcRecord, rcount);
451 W_ERROR_HAVE_NO_MEMORY(recs);
453 werror = dns_rr_to_dnsp(recs, update, &recs[0]);
454 W_ERROR_NOT_OK_RETURN(werror);
456 werror = dns_replace_records(dns, mem_ctx, dn,
457 needs_add, recs, rcount);
458 W_ERROR_NOT_OK_RETURN(werror);
460 return WERR_OK;
461 } else {
463 * If there is a CNAME record for this name,
464 * ignore update
466 for (i = 0; i < rcount; i++) {
467 if (recs[i].wType == DNS_TYPE_CNAME) {
468 DEBUG(5, ("Skipping update\n"));
469 return WERR_OK;
473 if (update->rr_type == DNS_QTYPE_SOA) {
474 bool found = false;
477 * If the zone has no SOA record?? or update's
478 * serial number is smaller than existing SOA's,
479 * ignore update
481 for (i = 0; i < rcount; i++) {
482 if (recs[i].wType == DNS_TYPE_SOA) {
483 uint16_t n, o;
485 n = update->rdata.soa_record.serial;
486 o = recs[i].data.soa.serial;
488 * TODO: Implement RFC 1982 comparison
489 * logic for RFC2136
491 if (n <= o) {
492 DEBUG(5, ("Skipping update\n"));
493 return WERR_OK;
495 found = true;
496 break;
499 if (!found) {
500 DEBUG(5, ("Skipping update\n"));
501 return WERR_OK;
504 werror = dns_rr_to_dnsp(mem_ctx, update, &recs[i]);
505 W_ERROR_NOT_OK_RETURN(werror);
507 for (i++; i < rcount; i++) {
508 if (recs[i].wType != DNS_TYPE_SOA) {
509 continue;
512 ZERO_STRUCT(recs[i]);
515 werror = dns_replace_records(dns, mem_ctx, dn,
516 needs_add, recs, rcount);
517 W_ERROR_NOT_OK_RETURN(werror);
519 return WERR_OK;
522 recs = talloc_realloc(mem_ctx, recs,
523 struct dnsp_DnssrvRpcRecord, rcount+1);
524 W_ERROR_HAVE_NO_MEMORY(recs);
526 werror = dns_rr_to_dnsp(recs, update, &recs[rcount]);
527 W_ERROR_NOT_OK_RETURN(werror);
529 for (i = 0; i < rcount; i++) {
530 if (!dns_records_match(&recs[i], &recs[rcount])) {
531 continue;
534 recs[i] = recs[rcount];
536 werror = dns_replace_records(dns, mem_ctx, dn,
537 needs_add, recs, rcount);
538 W_ERROR_NOT_OK_RETURN(werror);
540 return WERR_OK;
543 werror = dns_replace_records(dns, mem_ctx, dn,
544 needs_add, recs, rcount+1);
545 W_ERROR_NOT_OK_RETURN(werror);
547 return WERR_OK;
548 } else if (update->rr_class == DNS_QCLASS_ANY) {
549 if (update->rr_type == DNS_QTYPE_ALL) {
550 if (dns_name_equal(update->name, zone->name)) {
551 for (i = 0; i < rcount; i++) {
553 if (recs[i].wType == DNS_TYPE_SOA) {
554 continue;
557 if (recs[i].wType == DNS_TYPE_NS) {
558 continue;
561 ZERO_STRUCT(recs[i]);
564 } else {
565 for (i = 0; i < rcount; i++) {
566 ZERO_STRUCT(recs[i]);
570 } else if (dns_name_equal(update->name, zone->name)) {
572 if (update->rr_type == DNS_QTYPE_SOA) {
573 return WERR_OK;
576 if (update->rr_type == DNS_QTYPE_NS) {
577 return WERR_OK;
580 for (i = 0; i < rcount; i++) {
581 if (recs[i].wType == update->rr_type) {
582 ZERO_STRUCT(recs[i]);
586 werror = dns_replace_records(dns, mem_ctx, dn,
587 needs_add, recs, rcount);
588 W_ERROR_NOT_OK_RETURN(werror);
590 return WERR_OK;
591 } else if (update->rr_class == DNS_QCLASS_NONE) {
592 struct dnsp_DnssrvRpcRecord *del_rec;
594 if (update->rr_type == DNS_QTYPE_SOA) {
595 return WERR_OK;
597 if (update->rr_type == DNS_QTYPE_NS) {
598 bool found = false;
599 struct dnsp_DnssrvRpcRecord *ns_rec = talloc(mem_ctx,
600 struct dnsp_DnssrvRpcRecord);
601 W_ERROR_HAVE_NO_MEMORY(ns_rec);
604 werror = dns_rr_to_dnsp(ns_rec, update, ns_rec);
605 W_ERROR_NOT_OK_RETURN(werror);
607 for (i = 0; i < rcount; i++) {
608 if (dns_records_match(ns_rec, &recs[i])) {
609 found = true;
610 break;
613 if (found) {
614 return WERR_OK;
618 del_rec = talloc(mem_ctx, struct dnsp_DnssrvRpcRecord);
619 W_ERROR_HAVE_NO_MEMORY(del_rec);
621 werror = dns_rr_to_dnsp(del_rec, update, del_rec);
622 W_ERROR_NOT_OK_RETURN(werror);
624 for (i = 0; i < rcount; i++) {
625 if (dns_records_match(del_rec, &recs[i])) {
626 ZERO_STRUCT(recs[i]);
630 werror = dns_replace_records(dns, mem_ctx, dn,
631 needs_add, recs, rcount);
632 W_ERROR_NOT_OK_RETURN(werror);
635 return WERR_OK;
638 static WERROR handle_updates(struct dns_server *dns,
639 TALLOC_CTX *mem_ctx,
640 const struct dns_name_question *zone,
641 const struct dns_res_rec *prereqs, uint16_t pcount,
642 struct dns_res_rec *updates, uint16_t upd_count,
643 struct dns_server_tkey *tkey)
645 struct ldb_dn *zone_dn = NULL;
646 WERROR werror = WERR_OK;
647 int ret;
648 uint16_t ri;
649 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
651 if (tkey != NULL) {
652 ret = ldb_set_opaque(dns->samdb, "sessionInfo", tkey->session_info);
653 if (ret != LDB_SUCCESS) {
654 DEBUG(1, ("unable to set session info\n"));
655 werror = DNS_ERR(SERVER_FAILURE);
656 goto failed;
660 werror = dns_name2dn(dns, tmp_ctx, zone->name, &zone_dn);
661 W_ERROR_NOT_OK_GOTO(werror, failed);
663 ret = ldb_transaction_start(dns->samdb);
664 if (ret != LDB_SUCCESS) {
665 werror = DNS_ERR(SERVER_FAILURE);
666 goto failed;
669 werror = check_prerequisites(dns, tmp_ctx, zone, prereqs, pcount);
670 W_ERROR_NOT_OK_GOTO(werror, failed);
672 DEBUG(1, ("update count is %u\n", upd_count));
674 for (ri = 0; ri < upd_count; ri++) {
675 werror = handle_one_update(dns, tmp_ctx, zone,
676 &updates[ri], tkey);
677 W_ERROR_NOT_OK_GOTO(werror, failed);
680 ldb_transaction_commit(dns->samdb);
681 TALLOC_FREE(tmp_ctx);
683 if (tkey != NULL) {
684 ldb_set_opaque(dns->samdb, "sessionInfo",
685 system_session(dns->task->lp_ctx));
688 return WERR_OK;
690 failed:
691 ldb_transaction_cancel(dns->samdb);
693 if (tkey != NULL) {
694 ldb_set_opaque(dns->samdb, "sessionInfo",
695 system_session(dns->task->lp_ctx));
698 TALLOC_FREE(tmp_ctx);
699 return werror;
703 static WERROR dns_update_allowed(struct dns_server *dns,
704 struct dns_request_state *state,
705 struct dns_server_tkey **tkey)
707 if (lpcfg_allow_dns_updates(dns->task->lp_ctx) == DNS_UPDATE_ON) {
708 DEBUG(2, ("All updates allowed.\n"));
709 return WERR_OK;
712 if (lpcfg_allow_dns_updates(dns->task->lp_ctx) == DNS_UPDATE_OFF) {
713 DEBUG(2, ("Updates disabled.\n"));
714 return DNS_ERR(REFUSED);
717 if (state->authenticated == false ) {
718 DEBUG(2, ("Update not allowed for unsigned packet.\n"));
719 return DNS_ERR(REFUSED);
722 *tkey = dns_find_tkey(dns->tkeys, state->key_name);
723 if (*tkey == NULL) {
724 DEBUG(0, ("Authenticated, but key not found. Something is wrong.\n"));
725 return DNS_ERR(REFUSED);
728 return WERR_OK;
732 WERROR dns_server_process_update(struct dns_server *dns,
733 struct dns_request_state *state,
734 TALLOC_CTX *mem_ctx,
735 struct dns_name_packet *in,
736 struct dns_res_rec **prereqs, uint16_t *prereq_count,
737 struct dns_res_rec **updates, uint16_t *update_count,
738 struct dns_res_rec **additional, uint16_t *arcount)
740 struct dns_name_question *zone;
741 const struct dns_server_zone *z;
742 size_t host_part_len = 0;
743 WERROR werror = DNS_ERR(NOT_IMPLEMENTED);
744 struct dns_server_tkey *tkey = NULL;
746 if (in->qdcount != 1) {
747 return DNS_ERR(FORMAT_ERROR);
750 zone = &in->questions[0];
752 if (zone->question_class != DNS_QCLASS_IN &&
753 zone->question_class != DNS_QCLASS_ANY) {
754 return DNS_ERR(NOT_IMPLEMENTED);
757 if (zone->question_type != DNS_QTYPE_SOA) {
758 return DNS_ERR(FORMAT_ERROR);
761 DEBUG(2, ("Got a dns update request.\n"));
763 for (z = dns->zones; z != NULL; z = z->next) {
764 bool match;
766 match = dns_name_match(z->name, zone->name, &host_part_len);
767 if (match) {
768 break;
772 if (z == NULL) {
773 DEBUG(1, ("We're not authoritative for this zone\n"));
774 return DNS_ERR(NOTAUTH);
777 if (host_part_len != 0) {
778 /* TODO: We need to delegate this one */
779 DEBUG(1, ("Would have to delegate zone '%s'.\n", zone->name));
780 return DNS_ERR(NOT_IMPLEMENTED);
783 *prereq_count = in->ancount;
784 *prereqs = in->answers;
785 werror = check_prerequisites(dns, mem_ctx, in->questions, *prereqs,
786 *prereq_count);
787 W_ERROR_NOT_OK_RETURN(werror);
789 werror = dns_update_allowed(dns, state, &tkey);
790 if (!W_ERROR_IS_OK(werror)) {
791 return werror;
794 *update_count = in->nscount;
795 *updates = in->nsrecs;
796 werror = update_prescan(in->questions, *updates, *update_count);
797 W_ERROR_NOT_OK_RETURN(werror);
799 werror = handle_updates(dns, mem_ctx, in->questions, *prereqs,
800 *prereq_count, *updates, *update_count, tkey);
801 W_ERROR_NOT_OK_RETURN(werror);
803 return werror;