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
|
/* shutdown connections: IKEv1/IKEv2
*
* Copyright (C) 1998-2002,2013 D. Hugh Redelmeier <hugh@mimosa.com>
* Copyright (C) 2008 Michael Richardson <mcr@xelerance.com>
* Copyright (C) 2009 Paul Wouters <paul@xelerance.com>
* Copyright (C) 2012 Paul Wouters <paul@libreswan.org>
* Copyright (C) 2013-2019 Paul Wouters <pwouters@redhat.com>
* Copyright (C) 2019 Andrew Cagney <cagney@gnu.org>
*
* 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 <string.h>
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <unistd.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "sysdep.h"
#include "constants.h"
#include "lswalloc.h"
#include "id.h"
#include "x509.h"
#include "certs.h"
#include "defs.h"
#include "connections.h" /* needs id.h */
#include "pending.h"
#include "foodgroups.h"
#include "packet.h"
#include "demux.h" /* needs packet.h */
#include "state.h"
#include "timer.h"
#include "ipsec_doi.h" /* needs demux.h and state.h */
#include "server.h"
#include "kernel.h" /* needs connections.h */
#include "log.h"
#include "keys.h"
#include "whack.h"
#include "ike_alg.h"
#include "kernel_alg.h"
#include "plutoalg.h"
#include "ikev1_xauth.h"
#include "nat_traversal.h"
#include "hostpair.h"
static int terminate_a_connection(struct connection *c, struct fd *whackfd,
void *unused_arg UNUSED)
{
/* XXX: something better? */
close_any(&c->logger->global_whackfd);
c->logger->global_whackfd = dup_any(whackfd);
llog(RC_LOG, c->logger,
"terminating SAs using this connection");
dbg("%s() connection '%s' -POLICY_UP", __func__, c->name);
c->policy &= ~POLICY_UP;
flush_pending_by_connection(c);
bool connection_still_exists;
if (shared_phase1_connection(c)) {
connection_still_exists = true;
llog(RC_LOG, c->logger,
"IKE SA is shared - only terminating IPsec SA");
if (c->newest_ipsec_sa != SOS_NOBODY) {
struct state *st = state_with_serialno(c->newest_ipsec_sa);
/* XXX: something better? */
close_any(&st->st_logger->global_whackfd);
st->st_logger->global_whackfd = dup_any(whackfd);
delete_state(st);
}
} else {
/*
* CK_INSTANCE is deleted simultaneous to deleting
* state :-/
*/
connection_still_exists = c->kind != CK_INSTANCE;
dbg("connection not shared - terminating IKE and IPsec SA");
delete_states_by_connection(c, false, whackfd);
}
if (connection_still_exists) {
/* XXX: something better? */
close_any(&c->logger->global_whackfd);
}
return 1;
}
void terminate_connection(const char *name, bool quiet, struct fd *whackfd)
{
/*
* Loop because more than one may match (template and
* instances). But at least one is required (enforced by
* conn_by_name). Don't log an error if not found before we
* checked aliases
*/
struct connection *c = conn_by_name(name, true/*strict*/);
if (c != NULL) {
while (c != NULL) {
struct connection *n = c->ac_next; /* grab this before c might disappear */
if (streq(c->name, name) &&
c->kind >= CK_PERMANENT &&
!NEVER_NEGOTIATE(c->policy))
(void) terminate_a_connection(c, whackfd, NULL);
c = n;
}
} else {
int count = foreach_connection_by_alias(name, whackfd, terminate_a_connection, NULL);
if (count == 0) {
if (!quiet)
log_global(RC_UNKNOWN_NAME, whackfd,
"no such connection or aliased connection named \"%s\"", name);
} else {
log_global(RC_COMMENT, whackfd,
"terminated %d connections from aliased connection \"%s\"",
count, name);
}
}
}
|