1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
|
/*
* ipseckey lookup for pluto.
*
* Copyright (C) 2017-2019 Antony Antony <antony@phenome.org>
* Copyright (C) 2019 Andrew Cagney <cagney@gnu.org>
* Copyright (C) 2019 Paul Wouters <pwouters@redhat.com>
* Copyright (C) 2019 D. Hugh Redelmeier <hugh@mimosa.com>
* Copyright (C) 2021 Daiki Ueno <dueno@redhat.com>
* Copyright (C) 2021 Paul Wouters <paul.wouters@aiven.io>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <https://www.gnu.org/licenses/gpl2.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#ifndef USE_DNSSEC
# error this file should only be compiled when DNSSEC is defined
#endif
#include <arpa/inet.h> /* for inet_ntop */
#include <arpa/nameser.h>
#include "ttodata.h"
#include "ip_address.h"
#include "ip_info.h"
#include "id.h"
#include "defs.h"
#include "log.h"
#include "constants.h" /* for demux.h */
#include "demux.h" /* to get struct msg_digest */
#include "state.h"
#include "connections.h"
#include "dnssec.h" /* for lswub_resolve_event_secure_kind */
#include "ikev2.h"
#include "ikev2_ipseckey.h"
#include "ikev2_ipseckey_dnsr.h"
#include "keys.h"
#include "secrets.h"
#include "ikev2_ike_auth.h"
#define LDNS_RR_TYPE_A 1
#define LDNS_RR_TYPE_IPSECKEY 45
static void ikev2_ipseckey_log_dns_err(struct ike_sa *ike,
struct p_dns_req *dnsr,
const char *err)
{
deltatime_t served_delta = realtime_diff(dnsr->done_time, dnsr->start_time);
deltatime_buf db;
llog_sa(RC_LOG, ike,
"%s returned %s rr parse error %s elapsed time %s seconds",
dnsr->log_buf,
dnsr->rcode_name, err,
str_deltatime(served_delta, &db));
}
static void add_dns_pubkeys_to_pluto(struct p_dns_req *dnsr, struct dns_pubkey *dns_pubkeys)
{
passert(dns_pubkeys != NULL);
const struct state *st = state_by_serialno(dnsr->so_serial);
const struct id *keyid = &st->st_connection->remote->host.id;
/* algorithm is hardcoded RSA -- PUBKEY_ALG_RSA */
/* delete only once. then multiple keys could be added */
delete_public_keys(&pluto_pubkeys, keyid, &pubkey_type_rsa);
realtime_t install_time = realnow();
for (struct dns_pubkey *dns_pubkey = dns_pubkeys; dns_pubkey != NULL; dns_pubkey = dns_pubkey->next) {
/*
* RETRANSMIT_TIMEOUT_DEFAULT as min ttl so pubkey
* does not expire while negotiating
*/
uint32_t ttl = dns_pubkey->ttl;
uint32_t ttl_used = max(ttl, (uint32_t)RETRANSMIT_TIMEOUT_DEFAULT);
char ttl_buf[ULTOT_BUF + 32]; /* 32 is arbitrary */
if (ttl_used == ttl) {
snprintf(ttl_buf, sizeof(ttl_buf), "ttl %u", ttl);
} else {
snprintf(ttl_buf, sizeof(ttl_buf), "ttl %u ttl used %u",
ttl, ttl_used);
}
enum dns_auth_level al = dnsr->secure == UB_EVENT_SECURE ?
DNSSEC_SECURE : DNSSEC_INSECURE;
if (keyid->kind == ID_FQDN) {
id_buf thatidbuf;
enum_buf ab;
ldbg(st->logger, "add IPSECKEY pluto as publickey %s %s %s",
str_id(&st->st_connection->remote->host.id, &thatidbuf),
ttl_buf, str_enum(&dns_auth_level_names, al, &ab));
} else {
id_buf thatidbuf;
enum_buf ab;
ldbg(st->logger, "add IPSECKEY pluto as publickey %s dns query is %s %s %s",
str_id(&st->st_connection->remote->host.id, &thatidbuf),
dnsr->qname, ttl_buf,
str_enum(&dns_auth_level_names, al, &ab));
}
diag_t d = unpack_dns_ipseckey(keyid, /*dns_auth_level*/al,
dns_pubkey->algorithm_type,
install_time,
realtime_add(install_time, deltatime(ttl_used)),
ttl,
dns_pubkey->pubkey,
NULL/*don't-return-pubkey*/, &pluto_pubkeys);
if (d != NULL) {
id_buf thatidbuf;
llog(RC_LOG, dnsr->logger,
"add %s publickey failed, %s: %s",
str_id(&st->st_connection->remote->host.id, &thatidbuf),
dnsr->log_buf,
str_diag(d));
pfree_diag(&d);
}
}
}
static void validate_address(struct p_dns_req *dnsr, unsigned char *addr)
{
struct state *st = state_by_serialno(dnsr->so_serial);
ip_address ipaddr;
const struct ip_info *afi = endpoint_info(st->st_remote_endpoint);
if (dnsr->qtype != LDNS_RR_TYPE_A) {
return;
}
/*
* XXX: this is assuming that addr has .ip_size bytes!?!
* Interface doesn't pass in actual length.
*/
diag_t diag = data_to_address(addr, afi->ip_size, afi, &ipaddr);
if (diag != NULL) {
llog(RC_LOG, dnsr->logger, "invalid address: %s", str_diag(diag));
pfree_diag(&diag);
return;
}
if (!endpoint_address_eq_address(st->st_remote_endpoint, ipaddr)) {
endpoint_buf ra;
address_buf rb;
ldbg(dnsr->logger, " forward address of IDi %s do not match remote address %s != %s",
dnsr->qname,
str_endpoint(&st->st_remote_endpoint, &ra),
str_address(&ipaddr, &rb));
return;
}
dnsr->fwd_addr_valid = true;
endpoint_buf ra;
ldbg(dnsr->logger, "address of IDi %s match remote address %s",
dnsr->qname, str_endpoint(&st->st_remote_endpoint, &ra));
}
static void initiator_fetch_idr_ipseckey_continue(struct p_dns_req *dnsr)
{
struct ike_sa *ike = ike_sa_by_serialno(dnsr->so_serial);
const char *parse_err;
dnsr->done_time = realnow();
if (ike == NULL) {
/* state disappeared we can't find discard the response */
ikev2_ipseckey_log_missing_st(dnsr);
free_ipseckey_dns(dnsr);
return;
}
ipseckey_dbg_dns_resp(dnsr);
parse_err = process_dns_resp(dnsr);
if (parse_err != NULL) {
ikev2_ipseckey_log_dns_err(ike, dnsr, parse_err);
}
if (dnsr->cache_hit) {
if (dnsr->rcode == 0 && parse_err == NULL) {
dnsr->dns_status = DNS_OK;
} else {
/* is there a better ret status ? */
dnsr->dns_status = DNS_FATAL;
}
return;
}
dnsr->ub_async_id = 0; /* this query is done no need to cancel it */
ike->sa.ipseckey_dnsr = NULL;
free_ipseckey_dns(dnsr);
}
static void idi_ipseckey_resume_ike_sa(struct ike_sa *ike,
struct msg_digest *md,
bool err,
stf_status(*callback)(struct ike_sa *ike,
struct msg_digest *md,
bool err))
{
complete_v2_state_transition(ike, md, callback(ike, md, err));
}
static void idi_a_fetch_continue(struct p_dns_req *dnsr)
{
struct ike_sa *ike = ike_sa_by_serialno(dnsr->so_serial);
bool err;
dnsr->done_time = realnow();
if (ike == NULL) {
/* state disappeared we can't find st, hence no md, abort*/
ikev2_ipseckey_log_missing_st(dnsr);
free_ipseckey_dns(dnsr);
return;
}
if (!dnsr->cache_hit)
ipseckey_dbg_dns_resp(dnsr);
process_dns_resp(dnsr);
if (!dnsr->fwd_addr_valid) {
llog(RC_LOG, dnsr->logger,
"forward address validation failed %s",
dnsr->log_buf);
}
if (dnsr->rcode == 0 && dnsr->fwd_addr_valid) {
err = false;
} else {
if (ike->sa.ipseckey_dnsr != NULL) {
free_ipseckey_dns(ike->sa.ipseckey_dnsr);
ike->sa.ipseckey_dnsr = NULL;
}
err = true;
}
if (dnsr->cache_hit) {
if (err) {
/* is there a beeter ret status ? */
dnsr->dns_status = DNS_FATAL;
} else {
dnsr->dns_status = DNS_OK;
}
return;
}
dnsr->ub_async_id = 0; /* this query is done no need to cancel it */
ike->sa.ipseckey_fwd_dnsr = NULL;
if (ike->sa.ipseckey_dnsr != NULL) {
dbg("wait for IPSECKEY DNS response %s", dnsr->qname);
/* wait for additional A/AAAA dns response */
free_ipseckey_dns(dnsr);
return;
}
llog(DEBUG_STREAM, dnsr->logger, "%s() unsuspend id=%s", __func__, dnsr->qname);
idi_ipseckey_resume_ike_sa(ike, dnsr->md, err, dnsr->callback);
free_ipseckey_dns(dnsr);
}
static void responder_fetch_idi_ipseckey_continue(struct p_dns_req *dnsr)
{
struct ike_sa *ike = ike_sa_by_serialno(dnsr->so_serial);
const char *parse_err;
bool err;
dnsr->done_time = realnow();
if (ike == NULL) {
/* state disappeared we can't find st, hence no md, abort*/
ikev2_ipseckey_log_missing_st(dnsr);
free_ipseckey_dns(dnsr);
return;
}
if (!dnsr->cache_hit)
ipseckey_dbg_dns_resp(dnsr);
parse_err = process_dns_resp(dnsr);
if (parse_err != NULL) {
ikev2_ipseckey_log_dns_err(ike, dnsr, parse_err);
}
if (dnsr->rcode == 0 && parse_err == NULL) {
err = false;
} else {
if (ike->sa.ipseckey_fwd_dnsr != NULL) {
free_ipseckey_dns(ike->sa.ipseckey_fwd_dnsr);
ike->sa.ipseckey_fwd_dnsr = NULL;
}
err = true;
}
if (dnsr->cache_hit) {
if (err) {
/* is there a beeter ret status ? */
dnsr->dns_status = DNS_FATAL;
} else {
dnsr->dns_status = DNS_OK;
}
return;
}
dnsr->ub_async_id = 0; /* this query is done no need to cancel it */
ike->sa.ipseckey_dnsr = NULL;
if (ike->sa.ipseckey_fwd_dnsr != NULL) {
dbg("wait for additional DNS A/AAAA check %s", dnsr->qname);
/* wait for additional A/AAAA dns response */
free_ipseckey_dns(dnsr);
return;
}
llog(DEBUG_STREAM, dnsr->logger, "%s() unsuspend id=%s", __func__, dnsr->qname);
idi_ipseckey_resume_ike_sa(ike, dnsr->md, err, dnsr->callback);
free_ipseckey_dns(dnsr);
}
static err_t build_dns_name(struct jambuf *name_buf, const struct id *id)
{
switch (id->kind) {
case ID_IPV4_ADDR:
case ID_IPV6_ADDR:
jam_address_reversed(name_buf, &id->ip_addr);
break;
case ID_FQDN:
{
/*
* strip any and all trailing "." characters, then add
* just one
*
* id.name will have an extra @ as prefix
* (XXX: is this still relevant?)
*/
unsigned len = id->name.len;
while (len > 0 && ((const char*)id->name.ptr)[len - 1] == '.')
len--;
/* stop at len, or any embedded '\0'; add the '.' */
/* XXX: use jam_raw_bytes()? */
jam(name_buf, "%.*s.", len, (const char *)id->name.ptr);
break;
}
default:
return "can only query DNS for IPSECKEY for ID that is a FQDN, IPV4_ADDR, or IPV6_ADDR";
}
if (!jambuf_ok(name_buf)) {
return "FQDN is too long for domain name";
}
return NULL;
}
static struct p_dns_req *qry_st_init(struct ike_sa *ike,
struct msg_digest *md,
int qtype,
const char *qtype_name,
dnsr_cb_fn dnsr_cb,
stf_status (*callback)(struct ike_sa *ike,
struct msg_digest *md,
bool err))
{
struct id id = ike->sa.st_connection->remote->host.id;
char qname[SWAN_MAX_DOMAIN_LEN];
struct jambuf qbuf = ARRAY_AS_JAMBUF(qname);
err_t err = build_dns_name(&qbuf, &id);
if (err != NULL) {
/* is there qtype to name lookup function */
llog_sa(RC_LOG, ike,
"could not build dns query name %s %d",
err, qtype);
return NULL;
}
struct p_dns_req *p = alloc_thing(struct p_dns_req, "id remote dns");
p->so_serial = ike->sa.st_serialno;
p->md = md_addref(md);
p->callback = callback;
p->logger = clone_logger(ike->sa.logger, HERE);
p->qname = clone_str(qname, "dns qname");
p->log_buf = alloc_printf("IKEv2 DNS query -- %s IN %s --",
p->qname, qtype_name);
p->qclass = C_IN; /* aka ns_c_in */
p->qtype = qtype;
p->cache_hit = true;
p->dns_status = DNS_SUSPEND;
p->cb = dnsr_cb;
p->next = pluto_dns_list;
pluto_dns_list = p;
return p;
}
static struct p_dns_req *ipseckey_qry_st_init(struct ike_sa *ike,
struct msg_digest *md,
dnsr_cb_fn dnsr_cb,
stf_status(*callback)(struct ike_sa *ike,
struct msg_digest *md,
bool err))
{
/* hardcoded RR type to IPSECKEY AA_2017_03 */
struct p_dns_req *p = qry_st_init(ike, md, LDNS_RR_TYPE_IPSECKEY, "IPSECKEY", dnsr_cb, callback);
if (p == NULL) {
return NULL;
}
p->pubkeys_cb = add_dns_pubkeys_to_pluto;
return p;
}
/*
* On initiator fetch IPSECKEY for IDr.
* Fetch ipseckey from dns for IKEv2 initiator from the reverse zone
* 1. leftrsasigkey=%dnsondemand
*
* The returned public key(s) with ip, as keyid, will overwrite the public
* key(s) in pluto's global public key store
*
* If DNS returns multiple IPSECKEY RR add all of keys, with same keyid.
*
* Note libunbound call back quirck, if the data is local or cached
* the call back function will be called without returning.
*/
bool initiator_fetch_idr_ipseckey(struct ike_sa *ike)
{
struct p_dns_req *dnsr = ipseckey_qry_st_init(ike, /*initiator:no-md*/NULL,
initiator_fetch_idr_ipseckey_continue,
NULL/*no-callback-for-ike*/);
if (dnsr == NULL) {
return false;
}
dns_status ret = dns_qry_start(dnsr);
if (ret == DNS_SUSPEND) {
ike->sa.ipseckey_dnsr = dnsr;
return true; /* while querying IDr do not suspend */
}
return ret == DNS_OK;
}
/*
* On responder query IPSECKEY for IDi, it could be FQDN or IP.
* The returned ipsec key(s) will be added to public store, with keyid IDi.
* New key(s) will overwrite any existing one(s) with same keyid in pluto's
* global public key store.
*
* If DNS returns multiple IPSECKEY RR add all of keys, with same keyid.
*
* Note: libunbound call back quirck, if the data is local or cached
* the call back function will be called without returning.
*/
dns_status responder_fetch_idi_ipseckey(struct ike_sa *ike, struct msg_digest *md,
stf_status (*callback)(struct ike_sa *ike,
struct msg_digest *md,
bool err))
{
dns_status ret_idi;
dns_status ret_a = DNS_OK;
struct p_dns_req *dnsr_a = NULL;
struct p_dns_req *dnsr_idi = ipseckey_qry_st_init(ike, md,
responder_fetch_idi_ipseckey_continue,
callback);
if (dnsr_idi == NULL) {
return DNS_FATAL;
}
ret_idi = dns_qry_start(dnsr_idi);
if (ret_idi != DNS_SUSPEND && ret_idi != DNS_OK) {
return ret_idi;
}
if (ret_idi == DNS_SUSPEND) {
ike->sa.ipseckey_dnsr = dnsr_idi;
}
if (ike->sa.st_connection->config->dns_match_id) {
struct id id = ike->sa.st_connection->remote->host.id;
if (id.kind == ID_FQDN) {
dnsr_a = qry_st_init(ike, md, LDNS_RR_TYPE_A, "A",
idi_a_fetch_continue,
callback);
if (dnsr_a == NULL) {
free_ipseckey_dns(dnsr_idi);
return DNS_FATAL;
}
dnsr_a->validate_address_cb = validate_address;
ret_a = dns_qry_start(dnsr_a);
}
}
if (ret_a == DNS_SUSPEND)
ike->sa.ipseckey_fwd_dnsr = dnsr_a;
if (ret_a != DNS_SUSPEND && ret_a != DNS_OK) {
free_ipseckey_dns(dnsr_idi);
} else if (ret_idi == DNS_OK && ret_a == DNS_OK) {
/* cache hit, call back is already called */
return DNS_OK;
} else if (ret_a == DNS_SUSPEND || ret_idi == DNS_SUSPEND) {
return DNS_SUSPEND;
}
return DNS_FATAL;
}
|