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
|
/* show functions, for libreswan
*
* Copyright (C) 1997 Angelos D. Keromytis.
* Copyright (C) 1998-2001,2013 D. Hugh Redelmeier <hugh@mimosa.com>
* Copyright (C) 2005-2007 Michael Richardson
* Copyright (C) 2006-2010 Bart Trojanowski
* Copyright (C) 2008-2012 Paul Wouters
* Copyright (C) 2008-2010 David McCullough.
* Copyright (C) 2012 Paul Wouters <paul@libreswan.org>
* Copyright (C) 2013-2019 Paul Wouters <pwouters@redhat.com>
* Copyright (C) 2013 Tuomo Soini <tis@foobar.fi>
* Copyright (C) 2017-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 "sysdep.h"
#include "constants.h"
#include "lswconf.h"
#include "fips_mode.h"
#include "defs.h"
#include "log.h"
#include "server.h"
#include "state.h"
#include "pluto_stats.h"
#include "connections.h"
#include "kernel.h"
#include "virtual_ip.h"
#include "plutoalg.h"
#include "crypto.h"
#include "ikev1_db_ops.h"
#include "ipsec_interface.h"
#include "iface.h"
#include "show.h"
#ifdef USE_SECCOMP
#include "pluto_seccomp.h"
#endif
/*
* We store runtime info for stats/status this way.
* You may be able to do something similar using these hooks.
*/
struct log_conn_info {
struct connection *conn;
struct state *ignore; /* ignore this state */
/* best completed state of connection */
enum {
tun_down=0,
tun_phase1,
tun_phase1up,
tun_phase15,
tun_phase2,
tun_up
} tunnel;
/* best uncompleted state info for each phase */
enum {
p1_none=0,
p1_init,
p1_encrypt,
p1_auth,
p1_up,
p1_down
} phase1;
enum {
p2_none=0,
p2_neg,
p2_up,
} phase2;
};
/*
* we need to make sure we do not saturate the stats daemon
* so we track what we have told it in a long (triple)
*/
#define LOG_CONN_STATSVAL(lci) \
((lci)->tunnel | ((lci)->phase1 << 4) | ((lci)->phase2 << 8))
static void connection_state(struct state *st, struct log_conn_info *lc)
{
if (st == NULL || st == lc->ignore ||
st->st_connection == NULL || lc->conn == NULL)
return;
if (st->st_connection != lc->conn) {
if (!connections_can_share_parent(lc->conn, st->st_connection)) {
return;
}
/* phase1 is shared with another connection */
}
/* ignore undefined states (i.e. just deleted) */
if (st->st_state->kind == STATE_UNDEFINED)
return;
if (IS_IKE_SA(st)) {
if (lc->tunnel < tun_phase1)
lc->tunnel = tun_phase1;
if (IS_IKE_SA_ESTABLISHED(st) ||
IS_V1_ISAKMP_SA_ESTABLISHED(st)) {
if (lc->tunnel < tun_phase1up)
lc->tunnel = tun_phase1up;
lc->phase1 = p1_up;
} else {
if (lc->phase1 < p1_init)
lc->phase1 = p1_init;
#ifdef USE_IKEv1
/* PW: This seems an unintensional flaw of using ikev1 only checks ??? */
if (IS_V1_ISAKMP_ENCRYPTED(st->st_state->kind) &&
lc->phase1 < p1_encrypt)
lc->phase1 = p1_encrypt;
if (IS_V1_ISAKMP_AUTHENTICATED(st->st_state) &&
lc->phase1 < p1_auth)
lc->phase1 = p1_auth;
#endif
}
} else {
lc->phase1 = p1_down;
}
/* only phase one shares across connections, so we can quit now */
if (st->st_connection != lc->conn)
return;
#ifdef USE_IKEv1
if (IS_V1_PHASE15(st->st_state->kind)) {
if (lc->tunnel < tun_phase15)
lc->tunnel = tun_phase15;
}
#endif
if (IS_CHILD_SA(st)) {
if (lc->tunnel < tun_phase2)
lc->tunnel = tun_phase2;
if (IS_IPSEC_SA_ESTABLISHED(st)) {
if (lc->tunnel < tun_up)
lc->tunnel = tun_up;
lc->phase2 = p2_up;
} else {
if (lc->phase2 < p2_neg)
lc->phase2 = p2_neg;
}
}
}
void binlog_state(struct state *st, enum state_kind new_state)
{
if (pluto_stats_binary == NULL)
return;
if (st == NULL) {
dbg("log_state() called without state");
return;
}
struct connection *conn = st->st_connection;
if (conn == NULL || st->st_connection->name == NULL) {
dbg("log_state() called without st->st_connection or without st->st_connection->name");
return;
}
dbg("log_state called for state update for connection %s ", conn->name);
struct log_conn_info lc = {
.conn = conn,
.ignore = NULL,
.tunnel = tun_down,
.phase1 = p1_none,
.phase2 = p2_none
};
{
const struct finite_state *save_state = st->st_state;
st->st_state = finite_states[new_state];
struct state_filter sf = {
.search = {
.order = NEW2OLD,
.verbose.logger = &global_logger,
.where = HERE,
},
};
while (next_state(&sf)) {
connection_state(sf.st, &lc);
}
st->st_state = save_state;
}
const char *tun;
switch (lc.tunnel) {
case tun_phase1: tun = "phase1"; break;
case tun_phase1up: tun = "phase1up"; break;
case tun_phase15: tun = "phase15"; break;
case tun_phase2: tun = "phase2"; break;
case tun_up: tun = "up"; break;
case tun_down: tun = "down"; break;
default: tun = "unchanged"; break;
}
const char *p1;
switch (lc.phase1) {
case p1_init: p1 = "init"; break;
case p1_encrypt:p1 = "encrypt"; break;
case p1_auth: p1 = "auth"; break;
case p1_up: p1 = "up"; break;
case p1_down: p1 = "down"; break;
default: p1 = "unchanged";break;
}
const char *p2;
switch (lc.phase2) {
case p2_neg: p2 = "neg"; break;
case p2_up: p2 = "up"; break;
default: p2 = "down"; break;
}
dbg("log_state calling %s for connection %s with tunnel(%s) phase1(%s) phase2(%s)",
pluto_stats_binary, conn->name, tun, p1, p2);
char buf[1024];
snprintf(buf, sizeof(buf), "%s "
"%s ipsec-tunnel-%s if_stats /proc/net/dev/%s \\; "
"push ipsec-tunnel-%s tunnel %s \\; "
"push ipsec-tunnel-%s phase1 %s \\; "
"push ipsec-tunnel-%s phase2 %s",
pluto_stats_binary,
(conn->iface != NULL ? "push" : "drop"),
conn->name,
(conn->ipsec_interface != NULL ? conn->ipsec_interface->name : ""),
conn->name, tun,
conn->name, p1,
conn->name, p2);
if (system(buf) == -1) {
log_state(RC_LOG, st, "statsbin= failed to send status update notification");
}
dbg("log_state for connection %s completed", conn->name);
}
|