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 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
|
/* information about connections between hosts and clients
*
* Copyright (C) 1998-2002,2010,2013,2018 D. Hugh Redelmeier <hugh@mimosa.com>
* Copyright (C) 2003-2008 Michael Richardson <mcr@xelerance.com>
* Copyright (C) 2003-2011 Paul Wouters <paul@xelerance.com>
* Copyright (C) 2008-2009 David McCullough <david_mccullough@securecomputing.com>
* Copyright (C) 2009-2011 Avesh Agarwal <avagarwa@redhat.com>
* Copyright (C) 2010 Bart Trojanowski <bart@jukie.net>
* Copyright (C) 2010 Shinichi Furuso <Shinichi.Furuso@jp.sony.com>
* Copyright (C) 2010,2013 Tuomo Soini <tis@foobar.fi>
* Copyright (C) 2012-2017 Paul Wouters <paul@libreswan.org>
* Copyright (C) 2012 Philippe Vouters <Philippe.Vouters@laposte.net>
* Copyright (C) 2012 Bram <bram-bcrafjna-erqzvar@spam.wizbit.be>
* Copyright (C) 2013 Kim B. Heino <b@bbbs.net>
* Copyright (C) 2013,2017 Antony Antony <antony@phenome.org>
* Copyright (C) 2013,2018 Matt Rogers <mrogers@redhat.com>
* Copyright (C) 2013 Florian Weimer <fweimer@redhat.com>
* Copyright (C) 2015-2020 Paul Wouters <pwouters@redhat.com>
* Copyright (C) 2016-2022 Andrew Cagney <cagney@gnu.org>
* Copyright (C) 2017 Mayank Totale <mtotale@gmail.com>
* Copyright (C) 20212-2022 Paul Wouters <paul.wouters@aiven.io>
* Copyright (C) 2020 Nupur Agrawal <nupur202000@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 "whack_connectionstatus.h"
#include "visit_connection.h"
#include "ike_alg.h"
#include "defs.h"
#include "connections.h"
#include "orient.h"
#include "virtual_ip.h" /* needs connections.h */
#include "ipsec_interface.h"
#include "iface.h"
#include "nat_traversal.h"
#include "log.h"
#include "show.h"
#include "crypto.h" /* for show_ike_alg_connection() */
#include "plutoalg.h" /* for show_kernel_alg_connection() */
#include "kernel.h" /* for enum direction */
#include "sparse_names.h"
#include "monotime.h"
#include "ikev2_ike_session_resume.h" /* for show_session_resume() */
/* Passed in to jam_end_client() */
static const char END_SEPARATOR[] = "===";
/*
* Format the topology of a connection end, leaving out defaults.
* Used to construct strings of the form:
*
* [this]LOCAL_END ...END_REMOTE[that]
*
* where END_REMOTE is roughly formatted as the mirror image of
* LOCAL_END. SIDE is used to determine if the LHS or RHS
* string is being emitted (however, note that the LHS here is _not_
* the configuration file's left*=).
*
* LOCAL_END's longest string is:
*
* client === host : port [ host_id ] --- HOP
*
* Note: if that == NULL, skip nexthop Returns strlen of formatted
* result (length excludes NUL at end).
*/
void jam_end_host(struct jambuf *buf,
const struct connection *c,
const struct host_end *end)
{
/* HOST */
if (!address_is_specified(end->addr)) {
if (end->config->type == KH_IPHOSTNAME) {
jam_string(buf, "%dns");
jam(buf, "<%s>", end->config->addr_name);
} else {
if (is_group(c)) {
if (is_opportunistic(c)) {
jam_string(buf, "%opportunisticgroup");
} else {
jam_string(buf, "%group");
}
} else if (is_opportunistic(c)) {
jam_string(buf, "%opportunistic");
} else {
jam_string(buf, "%any");
}
}
/*
* XXX: only print anomalies: since the host address
* is zero, so too should be the port.
*/
if (end->port != 0) {
jam(buf, ":%u", end->port);
}
} else {
/* ADDRESS[:PORT][<HOSTNAME>] */
/*
* XXX: only print anomalies: when the host address is
* valid, any hardwired IKEPORT or a port other than
* IKE_UDP_PORT.
*/
bool include_port = (end->config->ikeport != 0 ||
end->port != IKE_UDP_PORT);
if (!log_ip) {
/* ADDRESS(SENSITIVE) */
jam_string(buf, "<address>");
} else if (include_port) {
/* [ADDRESS]:PORT */
jam_address_wrapped(buf, &end->addr);
jam(buf, ":%u", end->port);
} else {
/* ADDRESS */
jam_address(buf, &end->addr);
}
/* [<HOSTNAME>] */
address_buf ab;
if (end->config->addr_name != NULL &&
!streq(str_address(&end->addr, &ab),
end->config->addr_name)) {
jam(buf, "<%s>", end->config->addr_name);
}
}
}
static struct connection_client connection_spd_client(const struct spd_end *spd)
{
struct connection_client client = {
.client = spd->client,
.virt = spd->virt,
.host = spd->host,
.child = spd->child,
.sourceip = spd_end_sourceip(spd),
.is_addresspool = (spd->child->config->addresspools.len > 0),
};
return client;
}
static struct connection_client connection_config_client(const struct connection_end *this,
const ip_selector *this_selector)
{
struct connection_client client = {
.client = *this_selector,
.virt = this->child.config->virt,
.host = &this->host,
.child = &this->child,
.sourceip = config_end_sourceip(*this_selector, this->child.config),
.is_addresspool = (this->child.config->addresspools.len > 0),
};
return client;
}
void jam_end_client(struct jambuf *buf,
const struct connection *c,
const struct connection_client *this,
enum end side,
const char *separator)
{
/* left: [CLIENT/PROTOCOL:PORT===] or right: [===CLIENT/PROTOCOL:PORT] */
if (!this->client.is_set) {
return;
}
if (selector_eq_address(this->client, this->host->addr)) {
return;
}
if (selector_is_all(this->client)) {
if (is_group(c) || is_opportunistic(c)) {
/* booring */
return;
}
if (this->child->config->addresspools.len > 0) {
/*
* Suppress zero selectors that were probably derived
* from the address pool.
*/
return;
}
}
if (side == RIGHT_END && separator != NULL) {
jam_string(buf, separator);
}
if (is_virtual_host(this->virt)) {
jam_string(buf, "vhost:?");
} else if (is_virtual_net(this->virt)) {
jam_string(buf, "vnet:?");
} else {
if (this->is_addresspool) {
jam_string(buf, "{");
}
jam_selector(buf, &this->client);
if (selector_is_zero(this->client)) {
jam_string(buf, "?");
}
if (this->is_addresspool) {
jam_string(buf, "}");
}
}
if (side == LEFT_END && separator != NULL) {
jam_string(buf, separator);
}
}
static void jam_end_id(struct jambuf *buf,
const struct host_end *host,
const struct child_end *child)
{
/* id, if different from host */
bool open_paren = false;
if (!(host->id.kind == ID_NONE ||
(id_is_ipaddr(&host->id) &&
sameaddr(&host->id.ip_addr, &host->addr)))) {
open_paren = true;
jam_string(buf, "[");
jam_id_bytes(buf, &host->id, jam_sanitized_bytes);
}
if (host->config->modecfg.server ||
host->config->modecfg.client ||
host->config->xauth.server ||
host->config->xauth.client ||
host->config->sendcert != cert_defaultcertpolicy) {
if (open_paren) {
jam_string(buf, ",");
} else {
open_paren = true;
jam_string(buf, "[");
}
if (host->config->modecfg.server)
jam_string(buf, "MS");
if (host->config->modecfg.client)
jam_string(buf, "+MC");
if (child->config->has_client_address_translation)
jam_string(buf, "+CAT");
if (host->config->xauth.server)
jam_string(buf, "+XS");
if (host->config->xauth.client)
jam_string(buf, "+XC");
switch (host->config->sendcert) {
case CERT_NEVERSEND:
jam(buf, "+S-C");
break;
case CERT_SENDIFASKED:
jam(buf, "+S?C");
break;
case CERT_ALWAYSSEND:
jam(buf, "+S=C");
break;
default:
jam(buf, "+UNKNOWN");
}
}
if (open_paren) {
jam_string(buf, "]");
}
}
static void jam_end_nexthop(struct jambuf *buf,
const struct host_end *this,
const struct host_end *that,
bool skip_next_hop,
enum end side)
{
/* [---hop] */
if (!skip_next_hop &&
address_is_specified(this->nexthop) &&
!address_eq_address(this->nexthop, that->addr)) {
if (side == LEFT_END) {
jam_string(buf, "---");
}
jam_address(buf, &this->nexthop);
if (side == RIGHT_END) {
jam_string(buf, "---");
}
}
}
static void jam_client_end(struct jambuf *buf, const struct connection *c,
const struct connection_client *this,
const struct connection_client *that,
enum end side, bool skip_next_hop)
{
switch (side) {
case LEFT_END:
/* CLIENT/PROTOCOL:PORT=== */
jam_end_client(buf, c, this, side, END_SEPARATOR);
/* HOST */
jam_end_host(buf, c, this->host);
/* [ID+OPTS] */
jam_end_id(buf, this->host, this->child);
/* ---NEXTHOP */
jam_end_nexthop(buf, this->host, that->host, skip_next_hop, side);
break;
case RIGHT_END:
/* HOPNEXT--- */
jam_end_nexthop(buf, this->host, that->host, skip_next_hop, side);
/* HOST */
jam_end_host(buf, c, this->host);
/* [ID+OPTS] */
jam_end_id(buf, this->host, this->child);
/* ===CLIENT/PROTOCOL:PORT */
jam_end_client(buf, c, this, side, END_SEPARATOR);
break;
}
}
static void jam_client_ends(struct jambuf *buf, const struct connection *c,
const struct connection_client *this,
const char *sep,
const struct connection_client *that)
{
jam_client_end(buf, c, this, that, LEFT_END, false);
jam_string(buf, sep);
jam_client_end(buf, c, that, this, RIGHT_END, oriented(c));
}
void jam_spd_ends(struct jambuf *buf, const struct connection *c,
const struct spd_end *this_spd,
const char *sep,
const struct spd_end *that_spd)
{
struct connection_client this = connection_spd_client(this_spd);
struct connection_client that = connection_spd_client(that_spd);
jam_client_ends(buf, c, &this, sep, &that);
}
static void jam_routing(struct jambuf *buf, const struct connection *c)
{
if (!oriented(c)) {
jam_string(buf, "unoriented");
pexpect(c->routing.state == RT_UNROUTED);
} else {
jam_enum_human(buf, &routing_names, c->routing.state);
}
}
/*
* format topology of a connection.
* Two symmetric ends separated by ...
*/
static void show_connection_client(struct show *s,
const struct connection *c,
const struct connection_client *this,
const struct connection_client *that)
{
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ":");
/* one SPD */
jam_string(buf, " ");
jam_client_ends(buf, c, this, "...", that);
jam_string(buf, ";");
/* routing/orienting */
jam_string(buf, " ");
jam_routing(buf, c);
jam_string(buf, ";");
#define OPT_HOST(H) \
if (address_is_specified(H)) { \
jam_address(buf, &(H)); \
} else { \
jam_string(buf, "unset"); \
}
/* my_ip */
jam_string(buf, " my_ip=");
OPT_HOST(this->sourceip);
jam_string(buf, ";");
/* their_ip */
jam_string(buf, " their_ip=");
OPT_HOST(that->sourceip);
jam_string(buf, ";");
#undef OPT_HOST
}
}
static void jam_connection_owners(struct jambuf *buf,
const struct connection *c,
enum connection_owner owner_floor,
enum connection_owner owner_roof)
{
for (enum connection_owner owner = owner_floor;
owner < owner_roof; owner++) {
if (c->routing.owner[owner] == SOS_NOBODY) {
continue;
}
if (owner + 1 < owner_roof &&
c->routing.owner[owner] == c->routing.owner[owner+1]) {
continue;
}
jam_string(buf, " ");
switch (owner) {
case NEGOTIATING_IKE_SA:
case NEGOTIATING_CHILD_SA:
jam_string(buf, "negotiating");
break;
case ESTABLISHED_IKE_SA:
case ESTABLISHED_CHILD_SA:
jam_string(buf, "established");
break;
case ROUTING_SA:
jam_string(buf, "routing");
break;
}
jam_string(buf, " ");
switch (owner) {
case NEGOTIATING_IKE_SA:
case ESTABLISHED_IKE_SA:
jam_string(buf, c->config->ike_info->parent_sa_name);
break;
case NEGOTIATING_CHILD_SA:
case ESTABLISHED_CHILD_SA:
jam_string(buf, c->config->ike_info->child_sa_name);
break;
case ROUTING_SA:
jam_string(buf, "SA");
break;
}
jam_string(buf, ": ");
jam_so(buf, c->routing.owner[owner]);
jam_string(buf, ";");
}
}
void show_connection_clients(struct show *s, const struct connection *c,
void (*show_client)(struct show *s,
const struct connection *c,
const struct connection_client *this,
const struct connection_client *that))
{
/* Show topology. */
if (oriented(c)) {
FOR_EACH_ITEM(spd, &c->child.spds) {
struct connection_client this =
connection_spd_client(spd->local);
struct connection_client that =
connection_spd_client(spd->remote);
show_client(s, c, &this, &that);
}
} else {
FOR_EACH_ITEM(local, &c->local->child.selectors.proposed) {
struct connection_client this =
connection_config_client(c->local, local);
FOR_EACH_ITEM(remote, &c->remote->child.selectors.proposed) {
struct connection_client that =
connection_config_client(c->remote, remote);
show_client(s, c, &this, &that);
}
}
}
}
static void show_connection_status(struct show *s, const struct connection *c)
{
/* Show topology. */
show_connection_clients(s, c, show_connection_client);
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
jam_string(buf, " host: ");
jam_string(buf, (oriented(c) ? "oriented" : "unoriented"));
jam_string(buf, ";");
/* details */
if (oriented(c)) {
jam_string(buf, " local: ");
jam_end_host(buf, c, &c->local->host);
jam_string(buf, ";");
jam_string(buf, " remote: ");
jam_end_host(buf, c, &c->remote->host);
jam_string(buf, ";");
} else {
jam_string(buf, " left: ");
jam_end_host(buf, c, &c->end[LEFT_END].host);
jam_string(buf, ";");
jam_string(buf, " right: ");
jam_end_host(buf, c, &c->end[RIGHT_END].host);
jam_string(buf, ";");
}
jam_connection_owners(buf, c, IKE_SA_OWNER_FLOOR, IKE_SA_OWNER_ROOF);
}
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
const char *local_cert = cert_nickname(&c->local->host.config->cert);
if (local_cert != NULL) {
jam(buf, " mycert=%s;", local_cert);
}
const char *remote_cert = cert_nickname(&c->remote->host.config->cert);
if (remote_cert != NULL) {
jam(buf, " peercert=%s;", remote_cert);
}
#define JAM_UPDOWN(BUF, E) \
{ \
if ((E)->config->child.updown == NULL) { \
jam_string(BUF, "<disabled>"); \
} else { \
jam_string(BUF, (E)->config->child.updown); \
} \
jam_string(BUF, ";"); \
}
if (oriented(c)) {
/* left? */
jam_string(buf, " my_updown=");
JAM_UPDOWN(buf, c->local);
} else {
jam_string(buf, " leftupdown=");
JAM_UPDOWN(buf, &c->end[LEFT_END]);
jam_string(buf, " rightupdown=");
JAM_UPDOWN(buf, &c->end[RIGHT_END]);
}
#undef JAM_UPDOWN
}
/*
* Both should not be set, but if they are, we want
* to know.
*
* XXX: better way to do this would be to PBAD() the first
* check! Then we'd really know.
*/
#define COMBO(END) \
((END).server && (END).client ? "BOTH!?!" : \
(END).server ? "server" : \
(END).client ? "client" : \
"none")
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/*
* Both should not be set, but if they are, we
* want to know.
*/
/* us */
jam_string(buf, " xauth us:");
jam_string(buf, COMBO(c->local->config->host.xauth));
jam_string(buf, ",");
/* them */
jam_string(buf, " xauth them:");
jam_string(buf, COMBO(c->remote->config->host.xauth));
jam_string(buf, ",");
/* should really be an enum name */
jam_string(buf, " ");
jam_string(buf, (c->local->config->host.xauth.server ?
c->config->xauthby == XAUTHBY_FILE ? "xauthby:file;" :
c->config->xauthby == XAUTHBY_PAM ? "xauthby:pam;" :
"xauthby:alwaysok;" :
""));
jam_string(buf, " my_username=");
jam_string(buf, (c->local->config->host.xauth.username == NULL ? "[any]" :
c->local->config->host.xauth.username));
jam_string(buf, ";");
jam_string(buf, " their_username=");
jam_string(buf, (c->remote->config->host.xauth.username == NULL ? "[any]" :
c->remote->config->host.xauth.username));
/* jam_string(buf, ";"); */
}
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/*
* When showing the AUTH try to show just the AUTH=
* text (and append the AUTHBY mask when things don't
* match).
*
* For instance, given authby=null and auth=null, just
* show "null".
*
* But there's a twist: when the oriented peer AUTH
* and AUTHBY don't match, show just AUTHBY. When
* authenticating (at least for IKEv2) AUTH is
* actually ignored - it's AUTHBY that counts.
*/
const char *who = "our";
FOR_EACH_THING(end, c->local->host.config, c->remote->host.config) {
jam(buf, "%s auth:", who);
/*
* EXPECT everything except rsasig_v1_5.
*/
struct authby expect = authby_from_auth(end->auth);
struct authby mask = (oriented(c) && end == c->local->host.config ? expect : AUTHBY_ALL);
expect.rsasig_v1_5 = false;
struct authby authby = authby_and(end->authby, mask);
if (authby_eq(authby, expect)) {
jam_enum_short(buf, &keyword_auth_names, end->auth);
} else if (oriented(c) && end == c->remote->host.config) {
jam_authby(buf, end->authby);
} else {
jam_enum_short(buf, &keyword_auth_names, end->auth);
jam_string(buf, "(");
jam_authby(buf, authby);
jam_string(buf, ")");
}
who = ", their";
}
/* eap */
who = ", our";
FOR_EACH_THING(end, c->local->host.config, c->remote->host.config) {
jam(buf, "%s autheap:%s", who,
(end->eap == IKE_EAP_NONE ? "none" :
end->eap == IKE_EAP_TLS ? "tls" : "???"));
who = ", their";
}
jam_string(buf, ";");
}
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* mode config */
jam(buf, " modecfg info:");
jam(buf, " us:%s,", COMBO(c->local->config->host.modecfg));
jam(buf, " them:%s,", COMBO(c->remote->config->host.modecfg));
jam(buf, " modecfg policy:%s,", (c->config->modecfg.pull ? "pull" : "push"));
jam_string(buf, " dns:");
if (c->config->modecfg.dns.len == 0) {
jam_string(buf, "unset,");
} else {
const char *sep = "";
FOR_EACH_ITEM(dns, &c->config->modecfg.dns) {
jam_string(buf, sep);
sep = ", ";
jam_address(buf, dns);
}
jam_string(buf, ",");
}
jam_string(buf, " domains:");
if (c->config->modecfg.domains == NULL) {
jam_string(buf, "unset,");
} else {
for (const shunk_t *domain = c->config->modecfg.domains;
domain->ptr != NULL; domain++) {
jam_sanitized_hunk(buf, *domain);
jam_string(buf, ",");
}
}
jam(buf, " cat:%s;", c->local->config->child.has_client_address_translation ? "set" : "unset");
}
#undef COMBO
/* the banner */
if (c->config->modecfg.banner != NULL) {
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* banner */
jam_string(buf, " banner:");
jam_string(buf, c->config->modecfg.banner);
jam_string(buf, ";");
}
}
/* The first valid sec_label. */
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
jam_string(buf, " sec_label:");
if (is_labeled_child(c)) {
/* negotiated (IKEv2) */
jam_shunk(buf, c->child.sec_label);
/* jam_string(buf, ";"); */
} else if (is_labeled_template(c) ||
is_labeled_parent(c)) {
/* configured */
jam_shunk(buf, c->config->sec_label);
/* jam_string(buf, ";"); */
} else {
jam_string(buf, "unset;");
}
}
/* Show CAs */
if (c->local->host.config->ca.ptr != NULL ||
c->remote->host.config->ca.ptr != NULL) {
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* CAs */
jam_string(buf, " CAs: ");
/* this */
jam_string(buf, "'");
jam_dn_or_null(buf, ASN1(c->local->host.config->ca), "%any", jam_sanitized_bytes);
jam_string(buf, "'");
/* sep */
jam_string(buf, "...");
/* that */
jam_string(buf, "'");
jam_dn_or_null(buf, ASN1(c->remote->host.config->ca), "%any", jam_sanitized_bytes);
jam_string(buf, "'");
}
}
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
jam(buf, " ike_life: %jds;", deltasecs(c->config->sa_ike_max_lifetime));
jam(buf, " ipsec_life: %jds;", deltasecs(c->config->sa_ipsec_max_lifetime));
jam_humber_uintmax(buf, " ipsec_max_bytes: ", c->config->sa_ipsec_max_bytes, "B;");
jam_humber_uintmax(buf, " ipsec_max_packets: ", c->config->sa_ipsec_max_packets, ";");
jam(buf, " replay_window: %ju;", c->config->child_sa.replay_window);
jam(buf, " rekey_margin: %jds;", deltasecs(c->config->sa_rekey_margin));
jam(buf, " rekey_fuzz: %lu%%;", c->config->sa_rekey_fuzz);
}
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
jam(buf, " iptfs: %s;", bool_str(c->config->child_sa.iptfs.enabled));
jam(buf, " fragmentation: %s;", bool_str(c->config->child_sa.iptfs.fragmentation));
jam(buf, " packet-size: %ju;", c->config->child_sa.iptfs.packet_size);
jam(buf, " max-queue-size: %ju;", c->config->child_sa.iptfs.max_queue_size);
/* */
jam(buf, " drop-time: ");
jam_deltatime(buf, c->config->child_sa.iptfs.drop_time);
jam_string(buf, ";");
/* */
jam_string(buf, " init-delay: ");
jam_deltatime(buf, c->config->child_sa.iptfs.init_delay);
jam_string(buf, ";");
/* */
jam(buf, " reorder-window: %ju;", c->config->child_sa.iptfs.reorder_window);
}
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
jam(buf, " retransmit-interval: %jdms;",
milliseconds_from_deltatime(c->config->retransmit_interval));
jam(buf, " retransmit-timeout: %jds;",
deltasecs(c->config->retransmit_timeout));
/* tcp? */
jam_string(buf, " iketcp:");
jam_sparse(buf, &tcp_option_names, c->local->config->host.iketcp);
jam_string(buf, ";");
/* tcp-port */
jam_string(buf, " iketcp-port:");
jam_hport(buf, c->config->remote_tcpport);
jam_string(buf, ";");
}
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
jam(buf, " initial-contact:%s;", bool_str(c->config->send_initial_contact));
jam(buf, " cisco-unity:%s;", bool_str(c->config->send_vid_cisco_unity));
jam(buf, " fake-strongswan:%s;", bool_str(c->config->send_vid_fake_strongswan));
jam(buf, " send-vendorid:%s;", bool_str(c->config->send_vendorid));
jam(buf, " send-no-esp-tfc:%s;", bool_str(c->config->send_no_esp_tfc));
}
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* policy */
jam_string(buf, " policy: ");
jam_connection_policies(buf, c);
if (c->local->host.config->key_from_DNS_on_demand ||
c->remote->host.config->key_from_DNS_on_demand) {
jam_string(buf, "; ");
if (c->local->host.config->key_from_DNS_on_demand) {
jam_string(buf, "+lKOD");
}
if (c->remote->host.config->key_from_DNS_on_demand) {
jam_string(buf, "+rKOD");
}
}
jam_string(buf, ";");
}
if (c->config->ike_version == IKEv2) {
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* policy */
jam_string(buf, " v2-auth-hash-policy: ");
jam_lset_short(buf, &ikev2_hash_algorithm_names, "+",
c->config->sighash_policy);
jam_string(buf, ";");
}
}
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* priority */
jam_string(buf, " conn_prio: ");
jam_connection_priority(buf, c);
jam_string(buf, ";");
/* .interface: [id_rname@][id_vname] */
jam_string(buf, " interface: ");
if (c->config->ipsec_interface.enabled) {
jam_ipsec_interface_id(buf, c->config->ipsec_interface.id);
jam_string(buf, "@");
}
if (oriented(c)) {
jam_string(buf, c->iface->real_device_name);
}
jam_string(buf, ";");
/* .metric */
jam(buf, " metric: %u;", c->config->child_sa.metric);
/* .connmtu */
jam_string(buf, " mtu: ");
if (c->config->child_sa.mtu == 0) {
jam_string(buf, "unset");
} else {
jam(buf, "%d", c->config->child_sa.mtu);
}
jam_string(buf, ";");
/* .sa_priority */
jam_string(buf, " sa_prio:");
if (c->config->child_sa.priority == 0) {
jam_string(buf, "auto");
} else {
jam(buf, "%ju", c->config->child_sa.priority);
}
jam_string(buf, ";");
/* .sa_tfcpad */
jam_string(buf, " sa_tfc:");
if (c->config->child_sa.tfcpad == 0) {
jam_string(buf, "none");
} else {
jam(buf, "%ju", c->config->child_sa.tfcpad);
}
jam_string(buf, ";");
}
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* .nflog_group */
jam_string(buf, " nflog-group: ");
if (c->nflog_group == 0) {
jam_string(buf, "unset");
} else {
jam(buf, "%d", c->nflog_group);
}
jam_string(buf, ";");
/* .sa_marks */
jam_string(buf, " mark: ");
if (c->sa_marks.in.val == 0 && c->sa_marks.out.val == 0 ) {
jam_string(buf, "unset");
} else {
jam(buf, "%" PRIu32 "/%#08" PRIx32 ", %" PRIu32 "/%#08" PRIx32,
c->sa_marks.in.val, c->sa_marks.in.mask,
c->sa_marks.out.val, c->sa_marks.out.mask);
}
jam_string(buf, ";");
/* ... */
jam(buf, " vti-iface:%s;", (c->config->vti.interface == NULL ? "unset" :
c->config->vti.interface));
jam(buf, " vti-routing:%s;", bool_str(c->config->vti.routing));
jam(buf, " vti-shared:%s;", bool_str(c->config->vti.shared));
jam_string(buf, " nic-offload:");
jam_sparse(buf, &nic_offload_option_names, c->config->nic_offload);
jam_string(buf, ";");
}
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* our id */
jam_string(buf, " our idtype: ");
jam_enum(buf, &ike_id_type_names, c->local->host.id.kind);
jam_string(buf, ";");
jam_string(buf, " our id=");
jam_id(buf, &c->local->host.id);
jam_string(buf, ";");
/* our id */
jam_string(buf, " their idtype: ");
jam_enum(buf, &ike_id_type_names, c->remote->host.id.kind);
jam_string(buf, ";");
jam_string(buf, " their id=");
jam_id(buf, &c->remote->host.id);
}
switch (c->config->ike_version) {
case IKEv1:
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* dpd */
jam(buf, " dpd: %s;", (deltasecs(c->config->dpd.delay) > 0 &&
deltasecs(c->config->dpd.timeout) > 0 ? "active" : "passive"));
jam(buf, " delay:%jds;", deltasecs(c->config->dpd.delay));
jam(buf, " timeout:%jds", deltasecs(c->config->dpd.timeout));
}
break;
case IKEv2:
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* liveness */
jam(buf, " liveness: %s;", (deltasecs(c->config->dpd.delay) > 0 ? "active" : "passive"));
jam(buf, " dpddelay:%jds;", deltasecs(c->config->dpd.delay));
jam(buf, " retransmit-timeout:%jds", deltasecs(c->config->retransmit_timeout));
}
break;
}
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* nat */
jam(buf, " nat-traversal:");
/* encapsulation= */
jam_string(buf, " encapsulation:");
jam_sparse(buf, &yna_option_names, c->config->encapsulation);
jam_string(buf, ";");
/* nat-keepalive= + keep-alive= */
jam_string(buf, " keepalive:");
if (c->config->nat_keepalive) {
jam(buf, "%jds", deltasecs(nat_keepalive_period));
} else {
jam_string(buf, bool_str(false));
}
/* nat-ikev1-method= */
if (c->config->ike_version == IKEv1) {
jam_string(buf, "; ikev1-method:");
switch (c->config->ikev1_natt) {
case NATT_BOTH: jam_string(buf, "rfc+drafts"); break;
case NATT_RFC: jam_string(buf, "rfc"); break;
case NATT_DRAFTS: jam_string(buf, "drafts"); break;
case NATT_NONE: jam_string(buf, "none"); break;
default: bad_case(c->config->ikev1_natt);
}
}
}
if (c->logger->debugging != LEMPTY) {
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* debug */
jam_string(buf, " debug: ");
jam_lset_short(buf, &debug_names, "+", c->logger->debugging);
/* strip off connection debugging bits */
lset_t global_debugging = cur_debugging & ~c->logger->debugging;
if (global_debugging != LEMPTY) {
jam_string(buf, " + ");
jam_lset_short(buf, &debug_names, "+", global_debugging);
}
}
}
/* routing */
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* routing */
jam_string(buf, " routing: ");
jam_enum_human(buf, &routing_names, c->routing.state);
jam_string(buf, ";");
struct state *sa = state_by_serialno(c->routing_sa);
if (sa != NULL) {
jam_string(buf, " owner: ");
jam_string(buf, state_sa_name(sa));
jam_string(buf, " ");
jam_so(buf, sa->st_serialno);
jam_string(buf, ";");
}
jam_connection_owners(buf, c, IKE_SA_OWNER_FLOOR, IKE_SA_OWNER_ROOF);
jam_connection_owners(buf, c, CHILD_SA_OWNER_FLOOR, CHILD_SA_OWNER_ROOF);
}
if (c->config->session_resumption) {
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* ticket */
jam_string(buf, " ");
jam_resume_ticket(buf, c->session);
}
}
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* serial */
jam(buf, " conn serial: "PRI_CO,
pri_co(c->serialno));
if (c->clonedfrom != COS_NOBODY) {
jam(buf, ", instantiated from: "PRI_CO,
pri_connection_co(c->clonedfrom));
}
jam_string(buf, ";");
}
if (c->config->connalias != NULL) {
SHOW_JAMBUF(s, buf) {
jam_connection_short(buf, c);
jam_string(buf, ": ");
/* aliases */
jam_string(buf, " aliases: ");
jam_string(buf, c->config->connalias);
}
}
show_ike_alg_connection(s, c);
show_kernel_alg_connection(s, c);
}
void show_connection_statuses(struct show *s)
{
show_separator(s);
show(s, "Connection list:");
show_separator(s);
int count = 0;
int active = 0;
struct connection **connections = sort_connections();
if (connections != NULL) {
/* make an array of connections, sort it, and report it */
for (struct connection **c = connections; *c != NULL; c++) {
count++;
if ((*c)->routing.state == RT_ROUTED_TUNNEL) {
active++;
}
show_connection_status(s, *c);
}
pfree(connections);
show_separator(s);
}
show(s, "Total IPsec connections: loaded %d, active %d",
count, active);
}
static unsigned whack_connection_status(const struct whack_message *m UNUSED,
struct show *s,
struct connection *c)
{
show_connection_status(s, c);
return 1; /* the connection counts */
}
void whack_connectionstatus(const struct whack_message *m, struct show *s)
{
if (m->name == NULL) {
show_connection_statuses(s);
return;
}
whack_connections_bottom_up(m, s, whack_connection_status,
(struct each) {
.log_unknown_name = true,
});
}
|