2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 18:19:42 +00:00
bind/lib/ns/notify.c

165 lines
4.1 KiB
C
Raw Normal View History

1999-12-14 06:58:27 +00:00
/*
* Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
1999-12-14 06:58:27 +00:00
*/
#include <config.h>
2001-03-31 01:03:26 +00:00
#include <isc/log.h>
#include <isc/print.h>
2001-03-31 01:03:26 +00:00
1999-12-14 06:58:27 +00:00
#include <dns/message.h>
#include <dns/rdataset.h>
#include <dns/result.h>
#include <dns/tsig.h>
1999-12-14 06:58:27 +00:00
#include <dns/view.h>
#include <dns/zone.h>
#include <dns/zt.h>
#include <ns/log.h>
#include <ns/notify.h>
#include <ns/types.h>
1999-12-14 06:58:27 +00:00
/*! \file
* \brief
* This module implements notify as in RFC1996.
1999-12-14 06:58:27 +00:00
*/
2001-03-31 01:03:26 +00:00
static void
notify_log(ns_client_t *client, int level, const char *fmt, ...) {
2001-03-31 01:03:26 +00:00
va_list ap;
1999-12-14 06:58:27 +00:00
2001-03-31 01:03:26 +00:00
va_start(ap, fmt);
ns_client_logv(client, DNS_LOGCATEGORY_NOTIFY, NS_LOGMODULE_NOTIFY,
2001-03-31 01:03:26 +00:00
level, fmt, ap);
va_end(ap);
}
1999-12-14 06:58:27 +00:00
static void
respond(ns_client_t *client, isc_result_t result) {
1999-12-16 01:23:17 +00:00
dns_rcode_t rcode;
2000-12-11 19:24:30 +00:00
dns_message_t *message;
isc_result_t msg_result;
1999-12-16 01:23:17 +00:00
message = client->message;
rcode = dns_result_torcode(result);
1999-12-16 01:23:17 +00:00
msg_result = dns_message_reply(message, ISC_TRUE);
if (msg_result != ISC_R_SUCCESS)
msg_result = dns_message_reply(message, ISC_FALSE);
if (msg_result != ISC_R_SUCCESS) {
ns_client_next(client, msg_result);
return;
}
message->rcode = rcode;
2000-06-23 17:26:38 +00:00
if (rcode == dns_rcode_noerror)
message->flags |= DNS_MESSAGEFLAG_AA;
else
message->flags &= ~DNS_MESSAGEFLAG_AA;
1999-12-16 01:23:17 +00:00
ns_client_send(client);
1999-12-14 06:58:27 +00:00
}
void
ns_notify_start(ns_client_t *client) {
1999-12-14 06:58:27 +00:00
dns_message_t *request = client->message;
isc_result_t result;
1999-12-14 06:58:27 +00:00
dns_name_t *zonename;
dns_rdataset_t *zone_rdataset;
dns_zone_t *zone = NULL;
char namebuf[DNS_NAME_FORMATSIZE];
char tsigbuf[DNS_NAME_FORMATSIZE + sizeof(": TSIG ''")];
dns_tsigkey_t *tsigkey;
1999-12-14 06:58:27 +00:00
/*
* Interpret the question section.
*/
result = dns_message_firstname(request, DNS_SECTION_QUESTION);
2001-03-31 01:03:26 +00:00
if (result != ISC_R_SUCCESS) {
notify_log(client, ISC_LOG_NOTICE,
"notify question section empty");
goto formerr;
2001-03-31 01:03:26 +00:00
}
1999-12-14 06:58:27 +00:00
/*
* The question section must contain exactly one question.
*/
zonename = NULL;
dns_message_currentname(request, DNS_SECTION_QUESTION, &zonename);
zone_rdataset = ISC_LIST_HEAD(zonename->list);
2001-03-31 01:03:26 +00:00
if (ISC_LIST_NEXT(zone_rdataset, link) != NULL) {
notify_log(client, ISC_LOG_NOTICE,
2001-03-31 01:03:26 +00:00
"notify question section contains multiple RRs");
goto formerr;
2001-03-31 01:03:26 +00:00
}
1999-12-14 06:58:27 +00:00
/* The zone section must have exactly one name. */
result = dns_message_nextname(request, DNS_SECTION_ZONE);
2001-03-31 01:03:26 +00:00
if (result != ISC_R_NOMORE) {
notify_log(client, ISC_LOG_NOTICE,
2001-03-31 01:03:26 +00:00
"notify question section contains multiple RRs");
goto formerr;
2001-03-31 01:03:26 +00:00
}
/* The one rdataset must be an SOA. */
if (zone_rdataset->type != dns_rdatatype_soa) {
notify_log(client, ISC_LOG_NOTICE,
2001-03-31 01:03:26 +00:00
"notify question section contains no SOA");
goto formerr;
2001-03-31 01:03:26 +00:00
}
1999-12-14 06:58:27 +00:00
tsigkey = dns_message_gettsigkey(request);
if (tsigkey != NULL) {
dns_name_format(&tsigkey->name, namebuf, sizeof(namebuf));
if (tsigkey->generated) {
char cnamebuf[DNS_NAME_FORMATSIZE];
dns_name_format(tsigkey->creator, cnamebuf,
sizeof(cnamebuf));
snprintf(tsigbuf, sizeof(tsigbuf), ": TSIG '%s' (%s)",
namebuf, cnamebuf);
} else {
snprintf(tsigbuf, sizeof(tsigbuf), ": TSIG '%s'",
namebuf);
}
} else
tsigbuf[0] = '\0';
dns_name_format(zonename, namebuf, sizeof(namebuf));
2000-04-19 18:27:42 +00:00
result = dns_zt_find(client->view->zonetable, zonename, 0, NULL,
&zone);
if (result != ISC_R_SUCCESS)
goto notauth;
1999-12-14 06:58:27 +00:00
2001-12-06 18:55:52 +00:00
switch (dns_zone_gettype(zone)) {
1999-12-14 06:58:27 +00:00
case dns_zone_master:
case dns_zone_slave:
case dns_zone_stub: /* Allow dialup passive to work. */
2002-08-01 06:51:32 +00:00
notify_log(client, ISC_LOG_INFO,
"received notify for zone '%s'%s", namebuf, tsigbuf);
1999-12-14 06:58:27 +00:00
respond(client, dns_zone_notifyreceive(zone,
ns_client_getsockaddr(client), request));
1999-12-16 01:23:17 +00:00
break;
1999-12-14 06:58:27 +00:00
default:
goto notauth;
1999-12-14 06:58:27 +00:00
}
dns_zone_detach(&zone);
1999-12-14 06:58:27 +00:00
return;
notauth:
notify_log(client, ISC_LOG_NOTICE,
"received notify for zone '%s'%s: not authoritative",
namebuf, tsigbuf);
result = DNS_R_NOTAUTH;
goto failure;
formerr:
result = DNS_R_FORMERR;
1999-12-14 06:58:27 +00:00
failure:
if (zone != NULL)
dns_zone_detach(&zone);
1999-12-14 06:58:27 +00:00
respond(client, result);
}