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
|
/* 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 "lswfips.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 "kernel_xfrm_interface.h"
#include "iface.h"
#include "show.h"
#ifdef HAVE_SECCOMP
#include "pluto_seccomp.h"
#endif
struct show {
/*
* where to send the output
*/
struct logger *logger;
/*
* Should the next output be preceded by a blank line?
*/
enum separation { NO_SEPARATOR = 1, HAD_OUTPUT, SEPARATE_NEXT_OUTPUT, } separator;
/*
* Where to build the messages.
*/
char scratch_array[LOG_WIDTH];
struct jambuf scratch_jambuf;
};
struct show *alloc_show(struct logger *logger)
{
struct show s = {
.separator = NO_SEPARATOR,
.logger = logger,
};
return clone_thing(s, "on show");
}
static void blank_line(struct show *s)
{
/* XXX: must not use s->jambuf */
char blank_buf[sizeof(" "/*\0*/) + 1/*canary*/ + 1/*why-not*/];
struct jambuf buf = ARRAY_AS_JAMBUF(blank_buf);
jam_string(&buf, " ");
jambuf_to_logger(&buf, s->logger, RC_COMMENT|WHACK_STREAM);
}
void free_show(struct show **sp)
{
{
struct show *s = *sp;
switch (s->separator) {
case NO_SEPARATOR:
case HAD_OUTPUT:
break;
case SEPARATE_NEXT_OUTPUT:
blank_line(s);
break;
default:
bad_case(s->separator);
}
}
pfree(*sp);
*sp = NULL;
}
void show_separator(struct show *s)
{
switch (s->separator) {
case NO_SEPARATOR:
break;
case HAD_OUTPUT:
case SEPARATE_NEXT_OUTPUT:
s->separator = SEPARATE_NEXT_OUTPUT;
break;
default:
bad_case(s->separator);
break;
}
}
struct jambuf *show_jambuf(struct show *s)
{
s->scratch_jambuf = ARRAY_AS_JAMBUF(s->scratch_array);
return &s->scratch_jambuf;
}
struct logger *show_logger(struct show *s)
{
return s->logger;
}
void jambuf_to_show(struct jambuf *buf, struct show *s, enum rc_type rc)
{
switch (s->separator) {
case NO_SEPARATOR:
case HAD_OUTPUT:
break;
case SEPARATE_NEXT_OUTPUT:
blank_line(s);
break;
default:
bad_case(s->separator);
}
pexpect(rc == RC_RAW ||
rc == RC_COMMENT ||
rc == RC_INFORMATIONAL_TRAFFIC/*show_state_traffic()*/ ||
rc == RC_UNKNOWN_NAME/*show_traffic_status()*/);
jambuf_to_logger(buf, s->logger, rc|WHACK_STREAM);
s->separator = HAD_OUTPUT;
}
void show_comment(struct show *s, const char *message, ...)
{
struct jambuf *buf = show_jambuf(s);
va_list args;
va_start(args, message);
jam_va_list(buf, message, args);
va_end(args);
jambuf_to_show(buf, s, RC_COMMENT);
}
void show_raw(struct show *s, const char *message, ...)
{
struct jambuf *buf = show_jambuf(s);
va_list args;
va_start(args, message);
jam_va_list(buf, message, args);
va_end(args);
jambuf_to_show(buf, s, RC_RAW);
}
static void show_system_security(struct show *s)
{
int selinux = libreswan_selinux(show_logger(s));
bool fips = libreswan_fipsmode();
show_separator(s);
show_comment(s, "fips mode=%s;", fips ? "enabled" : "disabled");
show_comment(s, "SElinux=%s",
selinux == 0 ? "disabled" : selinux == 1 ? "enabled" : "indeterminate");
#ifdef HAVE_SECCOMP
show_comment(s, "seccomp=%s",
pluto_seccomp_mode == SECCOMP_ENABLED ? "enabled" :
pluto_seccomp_mode == SECCOMP_TOLERANT ? "tolerant" : "disabled");
#else
show_comment(s, "seccomp=unsupported");
#endif
}
void show_global_status(struct show *s)
{
show_globalstate_status(s);
show_pluto_stats(s);
}
void show_status(struct show *s)
{
show_kernel_interface(s);
show_ifaces_status(s);
show_system_security(s);
show_setup_plutomain(s);
show_debug_status(s);
show_setup_natt(s);
show_virtual_private(s);
show_kernel_alg_status(s);
show_ike_alg_status(s);
show_db_ops_status(s);
show_connections_status(s);
show_brief_status(s);
show_states(s);
#if defined(XFRM_SUPPORT)
show_shunt_status(s);
#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, void *data)
{
struct log_conn_info *lc = data;
if (st == NULL || st == lc->ignore ||
st->st_connection == NULL || lc->conn == NULL)
return;
if (st->st_connection != lc->conn) {
if (lc->conn->host_pair != st->st_connection->host_pair ||
!same_peer_ids(lc->conn, st->st_connection, NULL))
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)) {
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_ISAKMP_ENCRYPTED(st->st_state->kind) &&
lc->phase1 < p1_encrypt)
lc->phase1 = p1_encrypt;
if (IS_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_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];
for_each_state(connection_state, &lc, __func__);
st->st_state = save_state;
}
{
uint32_t sv = IPsecSAref2NFmark(st->st_ref) | LOG_CONN_STATSVAL(&lc);
if (conn->statsval == sv) {
dbg("log_state for connection %s state change signature (%d) matches last one - skip logging",
conn->name, sv);
return;
}
conn->statsval = sv;
dbg("log_state set state change signature for connection %s to %d",
conn->name, sv);
}
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);
/* ??? tun, p1, p2 cannot be NULL -- why handle that case? */
char buf[1024];
snprintf(buf, sizeof(buf), "%s "
"%s ipsec-tunnel-%s if_stats /proc/net/dev/%s \\; "
"%s ipsec-tunnel-%s tunnel %s \\; "
"%s ipsec-tunnel-%s phase1 %s \\; "
"%s ipsec-tunnel-%s phase2 %s \\; "
"%s ipsec-tunnel-%s nfmark-me/peer 0x%x/0x%x",
pluto_stats_binary,
conn->interface ? "push" : "drop", conn->name,
(conn->xfrmi != NULL && conn->xfrmi->name != NULL) ? conn->xfrmi->name : "",
tun ? "push" : "drop", conn->name, tun ? tun : "",
p1 ? "push" : "drop", conn->name, p1 ? p1 : "",
p2 ? "push" : "drop", conn->name, p2 ? p2 : "",
(st->st_ref || st->st_ref_peer) ? "push" : "drop", conn->name,
st->st_ref == IPSEC_SAREF_NA ? IPSEC_SAREF_NA :
st->st_ref == IPSEC_SAREF_NULL ? 0u :
IPsecSAref2NFmark(st->st_ref) | IPSEC_NFMARK_IS_SAREF_BIT
,
st->st_ref_peer == IPSEC_SAREF_NA ? IPSEC_SAREF_NA :
st->st_ref_peer == IPSEC_SAREF_NULL ? 0u :
IPsecSAref2NFmark(st->st_ref_peer) | IPSEC_NFMARK_IS_SAREF_BIT);
if (system(buf) == -1) {
log_state(RC_LOG_SERIOUS, st, "statsbin= failed to send status update notification");
}
dbg("log_state for connection %s completed", conn->name);
}
|