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
|
/* routines for reviving connections, for libreswan
*
* Copyright (C) 1997 Angelos D. Keromytis.
* Copyright (C) 1998-2001, 2013-2017 D. Hugh Redelmeier <hugh@mimosa.com>
* Copyright (C) 2003-2008 Michael C Richardson <mcr@xelerance.com>
* Copyright (C) 2003-2010 Paul Wouters <paul@xelerance.com>
* Copyright (C) 2008-2009 David McCullough <david_mccullough@securecomputing.com>
* Copyright (C) 2009, 2012 Avesh Agarwal <avagarwa@redhat.com>
* Copyright (C) 2012-2019 Paul Wouters <pwouters@redhat.com>
* Copyright (C) 2012 Wes Hardaker <opensource@hardakers.net>
* Copyright (C) 2012 Bram <bram-bcrafjna-erqzvar@spam.wizbit.be>
* Copyright (C) 2012-2013 Paul Wouters <paul@libreswan.org>
* Copyright (C) 2013 Tuomo Soini <tis@foobar.fi>
* Copyright (C) 2013 Matt Rogers <mrogers@redhat.com>
* Copyright (C) 2013 Florian Weimer <fweimer@redhat.com>
* Copyright (C) 2015-2019 Andrew Cagney <cagney@gnu.org>
* Copyright (C) 2015-2018 Antony Antony <antony@phenome.org>
* Copyright (C) 2015-2019 Paul Wouters <pwouters@redhat.com>
* Copyright (C) 2017 Richard Guy Briggs <rgb@tricolour.ca>
* Copyright (C) 2017 Vukasin Karadzic <vukasin.karadzic@gmail.com>
* Copyright (C) 2017 Mayank Totale <mtotale@gmail.com>
*
* 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.
*/
#include "connections.h"
#include "connection_event.h"
#include "state.h"
#include "log.h"
#include "iface.h"
#include "initiate.h" /* for initiate_connection() */
#include "revival.h"
#include "whack_shutdown.h" /* for exiting_pluto; */
#include "ikev2_replace.h"
#include "orient.h"
#include "ikev1.h" /* for established_isakmp_sa_for_state() */
/*
* This code path can't tell if the flush is due to an initiate or a
* revival (would need to pass bit into initiate). Hence always
* silently flush.
*/
void flush_routed_ondemand_revival(struct connection *c)
{
PEXPECT(c->logger, c->routing.state == RT_ROUTED_ONDEMAND);
flush_connection_event(c, CONNECTION_REVIVAL);
}
void flush_unrouted_revival(struct connection *c)
{
PEXPECT(c->logger, c->routing.state == RT_UNROUTED);
flush_connection_event(c, CONNECTION_REVIVAL);
}
static bool revival_plausable(struct connection *c, struct logger *logger)
{
if (exiting_pluto) {
ldbg(logger, "revival: skilling, pluto is going down");
return false;
}
if (!c->policy.up &&
!c->policy.keep) {
ldbg(logger, "revival: skipping, POLICY_UP and/or POLICY_KEEP disabled");
return false;
}
if (is_labeled(c)) {
/* not supported for now */
ldbg(logger, "revival: skipping, labeled IPsec is too hard");
return false;
}
if (!oriented(c)) {
/* e.x., interface deleted while up */
ldbg(logger, "revival: skipping, not oriented");
return false;
}
if (c->iface->ifd_change == IFD_DELETE) {
/*
* The oriented() isn't sufficient.
*
* An interface is first marked as dead and then
* deleted. As a result a connection will check for
* revival when the interface is attached but dead.
*/
ldbg(logger, "revival: skipping, interface being deleted");
return false;
}
if (c->policy.keep &&
c->revival.attempt == 1/*note: not yet incremented*/) {
ldbg(logger, "revival: skipping, auto=keep and made one attempt");
return false;
}
/*
* XXX: should this be a pexpect()?
*/
if (connection_event_is_scheduled(c, CONNECTION_REVIVAL)) {
llog(RC_LOG, logger,
"event CONNECTION_REVIVAL already scheduled");
return false;
}
/* not completely ruled out */
return true;
}
static void update_remote_port(struct state *st)
{
struct connection *c = st->st_connection;
/*
* Need to find the IKE/ISAKMP SA that is being used to
* exchange messages, and then extract its port.
*
* But first dismiss a few edge cases.
*/
if (!is_instance(c)) {
ldbg(st->logger, "revival: skip %s(), not an instance", __func__);
return;
}
if (!IS_PARENT_SA_ESTABLISHED(st) &&
!IS_IPSEC_SA_ESTABLISHED(st)) {
ldbg(st->logger, "revival: skip %s(), not established",
__func__);
return;
}
struct ike_sa *ike =
(st->st_ike_version > IKEv1 ? ike_sa(st, HERE) :
established_isakmp_sa_for_state(st, /*viable-parent*/false));
if (ike == NULL) {
ldbg(st->logger, "revival: skip %s(), no %s",
__func__, c->config->ike_info->parent_sa_name);
return;
}
if (!IS_PARENT_SA_ESTABLISHED(&ike->sa)) {
/* should always be true? */
ldbg(st->logger, "revival: skip %s(), %s is not established",
__func__, c->config->ike_info->parent_sa_name);
return;
}
/*
* Why isn't the host_port set by instantiation?
*
* XXX: it is, but it is set to 500; better question
* is why isn't the host_port updated once things have
* established and nat has been detected.
*/
c->revival.remote = st->st_remote_endpoint;
c->revival.local = iface_endpoint_addref(st->st_iface_endpoint);
endpoint_pair_buf eb;
ldbg(st->logger, "revival: %s() %s",
__func__,
str_endpoint_pair(&c->revival.local->local_endpoint, &c->revival.remote, &eb));
}
static void schedule_revival_event(struct connection *c, struct logger *logger, const char *subplot)
{
deltatime_buf db;
deltatime_t delay = c->revival.delay;
c->revival.delay =
deltatime_min(deltatime_add(delay, REVIVE_CONN_DELAY),
REVIVE_CONN_DELAY_MAX);
c->revival.attempt++;
llog(RC_LOG, logger,
"connection is supposed to remain up; revival attempt %u scheduled in %s seconds",
c->revival.attempt,
str_deltatime(delay, &db));
schedule_connection_event(c, CONNECTION_REVIVAL, subplot, delay,
(impair.revival ? "revival" : NULL), logger);
}
static bool scheduled_revival(struct connection *c, struct state *st/*can be NULL*/,
const char *subplot, struct logger *logger)
{
if (!revival_plausable(c, logger)) {
return false;
}
if (st != NULL && st->st_ike_version == IKEv2) {
struct ike_sa *ike = ike_sa(st, HERE);
if (PEXPECT(logger, ike != NULL) &&
ike->sa.st_skip_revival_as_redirecting) {
address_buf ab;
llog(RC_LOG, logger,
"scheduling redirect %u to %s",
c->redirect.attempt,
str_address_sensitive(&c->redirect.ip, &ab));
schedule_connection_event(c, CONNECTION_REVIVAL, subplot, deltatime_zero,
(impair.revival ? "redirect" : NULL), logger);
return true;
}
}
/* revival means start redirects from scratch */
c->redirect.attempt = 0;
if (st != NULL) {
update_remote_port(st);
}
schedule_revival_event(c, logger, subplot);
return true;
}
bool scheduled_connection_revival(struct connection *c, const char *subplot)
{
return scheduled_revival(c, NULL, subplot, c->logger);
}
bool scheduled_child_revival(struct child_sa *child, const char *subplot)
{
struct connection *c = child->sa.st_connection;
if (c->negotiating_child_sa != SOS_NOBODY &&
c->negotiating_child_sa != child->sa.st_serialno) {
/*
* There's a newer SA playing with the routing.
* Presumably this is an old Child SA that is in the
* process of being rekeyed or replaced.
*/
llog_pexpect(child->sa.logger, HERE,
"revival: skipping, .negotiating_child_sa "PRI_SO" is not us",
pri_so(c->negotiating_child_sa));
return false;
}
if (c->established_child_sa != SOS_NOBODY &&
c->established_child_sa != child->sa.st_serialno) {
/* should be covered by above */
llog_pexpect(child->sa.logger, HERE,
"revival: skipping, .established_child_sa "PRI_SO" is not us",
pri_so(c->established_child_sa));
return false;
}
return scheduled_revival(c, &child->sa, subplot, child->sa.logger);
}
bool scheduled_ike_revival(struct ike_sa *ike, const char *subplot)
{
struct connection *c = ike->sa.st_connection;
if (c->routing_sa != ike->sa.st_serialno) {
llog_pexpect(ike->sa.logger, HERE,
"revival: skipping, .routing_sa "PRI_SO" is is not us",
pri_so(c->routing_sa));
return false;
}
if (c->negotiating_ike_sa != SOS_NOBODY &&
c->negotiating_ike_sa != ike->sa.st_serialno) {
/*
* For instance, crossing stream establishes IKE SA,
* but some other Child SA, leaving .routing_sa
* hanging.
*/
ldbg(ike->sa.logger, "revival: .negotiating_ike_sa "PRI_SO" is is not us",
pri_so(c->negotiating_ike_sa));
}
if (c->established_ike_sa != SOS_NOBODY &&
c->established_ike_sa != ike->sa.st_serialno) {
ldbg(ike->sa.logger, "revival: .established_ike_sa "PRI_SO" is is not us",
pri_so(c->established_ike_sa));
}
return scheduled_revival(c, &ike->sa, subplot, ike->sa.logger);
}
void revive_connection(struct connection *c, const char *subplot,
const threadtime_t *inception)
{
if (c->redirect.attempt > 0) {
ldbg(c->logger, "redirecting connection %s", subplot);
} else {
llog(RC_LOG, c->logger,
"reviving connection which %s but must remain up per local policy (serial "PRI_CO")",
subplot, pri_co(c->serialno));
}
/*
* See ikev2-removed-iface-01
*
* The established connection is losing its interface which
* triggers a delete. That in turn causes the connection to
* go onto the revival queue expecting to then initiate a
* connection via the interface that was just deleted. Oh.
*
* What saves things from the inevitable core dump is
* initiate_connection() being sprinkled with oriented()
* checks.
*
* It should instead wait until the interface comes back and
* then, assuming UP, initiate.
*/
if (!PEXPECT(c->logger, oriented(c))) {
return;
}
shunk_t sec_label = null_shunk;
struct logger *logger = c->logger;
so_serial_t replacing = SOS_NOBODY;
const struct child_policy policy = child_sa_policy(c);
bool background = false;
initiate(c, &policy, replacing, inception,
sec_label, background, logger,
INITIATED_BY_REVIVE, HERE);
}
|