1999-12-14 06:58:27 +00:00
|
|
|
/*
|
2017-09-08 13:39:09 -07:00
|
|
|
* Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
2016-06-27 14:56:38 +10:00
|
|
|
* 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>
|
2004-08-28 06:20:14 +00:00
|
|
|
#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>
|
2006-12-04 01:54:53 +00:00
|
|
|
#include <dns/tsig.h>
|
1999-12-14 06:58:27 +00:00
|
|
|
#include <dns/view.h>
|
|
|
|
#include <dns/zone.h>
|
|
|
|
#include <dns/zt.h>
|
|
|
|
|
2017-09-08 13:39:09 -07:00
|
|
|
#include <ns/log.h>
|
|
|
|
#include <ns/notify.h>
|
|
|
|
#include <ns/types.h>
|
1999-12-14 06:58:27 +00:00
|
|
|
|
2005-04-27 04:57:32 +00:00
|
|
|
/*! \file
|
|
|
|
* \brief
|
|
|
|
* This module implements notify as in RFC1996.
|
1999-12-14 06:58:27 +00:00
|
|
|
*/
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2001-03-31 01:03:26 +00:00
|
|
|
static void
|
2001-12-10 23:09:24 +00:00
|
|
|
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);
|
2001-12-10 23:09:24 +00:00
|
|
|
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
|
1999-12-23 00:09:04 +00:00
|
|
|
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;
|
1999-12-22 22:11:18 +00:00
|
|
|
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
|
2000-05-24 03:19:21 +00:00
|
|
|
ns_notify_start(ns_client_t *client) {
|
1999-12-14 06:58:27 +00:00
|
|
|
dns_message_t *request = client->message;
|
1999-12-23 00:09:04 +00:00
|
|
|
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;
|
2003-02-26 04:16:27 +00:00
|
|
|
char namebuf[DNS_NAME_FORMATSIZE];
|
|
|
|
char tsigbuf[DNS_NAME_FORMATSIZE + sizeof(": TSIG ''")];
|
2006-12-04 01:54:53 +00:00
|
|
|
dns_tsigkey_t *tsigkey;
|
2000-08-01 01:33:37 +00:00
|
|
|
|
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) {
|
2003-02-26 04:16:27 +00:00
|
|
|
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) {
|
2002-07-29 05:15:32 +00:00
|
|
|
notify_log(client, ISC_LOG_NOTICE,
|
2001-03-31 01:03:26 +00:00
|
|
|
"notify question section contains multiple RRs");
|
2003-02-26 04:16:27 +00:00
|
|
|
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) {
|
2002-07-29 05:15:32 +00:00
|
|
|
notify_log(client, ISC_LOG_NOTICE,
|
2001-03-31 01:03:26 +00:00
|
|
|
"notify question section contains multiple RRs");
|
2003-02-26 04:16:27 +00:00
|
|
|
goto formerr;
|
2001-03-31 01:03:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The one rdataset must be an SOA. */
|
|
|
|
if (zone_rdataset->type != dns_rdatatype_soa) {
|
2002-07-29 05:15:32 +00:00
|
|
|
notify_log(client, ISC_LOG_NOTICE,
|
2001-03-31 01:03:26 +00:00
|
|
|
"notify question section contains no SOA");
|
2003-02-26 04:16:27 +00:00
|
|
|
goto formerr;
|
2001-03-31 01:03:26 +00:00
|
|
|
}
|
1999-12-14 06:58:27 +00:00
|
|
|
|
2006-12-04 01:54:53 +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);
|
|
|
|
}
|
2003-02-26 04:16:27 +00:00
|
|
|
} 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);
|
2003-02-26 04:16:27 +00:00
|
|
|
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:
|
2000-11-28 03:17:48 +00:00
|
|
|
case dns_zone_stub: /* Allow dialup passive to work. */
|
2002-08-01 06:51:32 +00:00
|
|
|
notify_log(client, ISC_LOG_INFO,
|
2003-02-26 04:16:27 +00:00
|
|
|
"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:
|
2003-02-26 04:16:27 +00:00
|
|
|
goto notauth;
|
1999-12-14 06:58:27 +00:00
|
|
|
}
|
2000-05-08 07:26:37 +00:00
|
|
|
dns_zone_detach(&zone);
|
1999-12-14 06:58:27 +00:00
|
|
|
return;
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2003-02-26 04:16:27 +00:00
|
|
|
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:
|
2000-05-08 07:26:37 +00:00
|
|
|
if (zone != NULL)
|
|
|
|
dns_zone_detach(&zone);
|
1999-12-14 06:58:27 +00:00
|
|
|
respond(client, result);
|
|
|
|
}
|