summaryrefslogtreecommitdiff
path: root/src/swanctl/commands
diff options
context:
space:
mode:
authorYves-Alexis Perez <corsac@debian.org>2015-06-01 14:46:30 +0200
committerYves-Alexis Perez <corsac@debian.org>2015-06-01 14:46:30 +0200
commitfc556ec2bc92a9d476c11406fad2c33db8bf7cb0 (patch)
tree7360889e50de867d72741213d534a756c73902c8 /src/swanctl/commands
parent83b8aebb19fe6e49e13a05d4e8f5ab9a06177642 (diff)
downloadvyos-strongswan-fc556ec2bc92a9d476c11406fad2c33db8bf7cb0.tar.gz
vyos-strongswan-fc556ec2bc92a9d476c11406fad2c33db8bf7cb0.zip
Imported Upstream version 5.3.1
Diffstat (limited to 'src/swanctl/commands')
-rw-r--r--src/swanctl/commands/list_sas.c86
1 files changed, 84 insertions, 2 deletions
diff --git a/src/swanctl/commands/list_sas.c b/src/swanctl/commands/list_sas.c
index 81e1b7cca..1aca6d212 100644
--- a/src/swanctl/commands/list_sas.c
+++ b/src/swanctl/commands/list_sas.c
@@ -13,6 +13,28 @@
* for more details.
*/
+/*
+ * Copyright (C) 2014 Timo Teräs <timo.teras@iki.fi>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
#define _GNU_SOURCE
#include <stdio.h>
#include <errno.h>
@@ -126,7 +148,7 @@ CALLBACK(child_sas, int,
}
printf("\n");
- printf(" installed %s ago", child->get(child, "install-time"));
+ printf(" installed %ss ago", child->get(child, "install-time"));
if (child->get(child, "rekey-time"))
{
printf(", rekeying in %ss", child->get(child, "rekey-time"));
@@ -262,9 +284,12 @@ CALLBACK(ike_sas, int,
CALLBACK(list_cb, void,
command_format_options_t *format, char *name, vici_res_t *res)
{
+ char buf[256];
+
if (*format & COMMAND_FORMAT_RAW)
{
- vici_dump(res, "list-sa event", *format & COMMAND_FORMAT_PRETTY,
+ snprintf(buf, sizeof(buf), "%s event", name);
+ vici_dump(res, buf, *format & COMMAND_FORMAT_PRETTY,
stdout);
}
else
@@ -348,6 +373,50 @@ static int list_sas(vici_conn_t *conn)
return 0;
}
+static int monitor_sas(vici_conn_t *conn)
+{
+ command_format_options_t format = COMMAND_FORMAT_NONE;
+ char *arg;
+
+ while (TRUE)
+ {
+ switch (command_getopt(&arg))
+ {
+ case 'h':
+ return command_usage(NULL);
+ case 'P':
+ format |= COMMAND_FORMAT_PRETTY;
+ /* fall through to raw */
+ case 'r':
+ format |= COMMAND_FORMAT_RAW;
+ continue;
+ case EOF:
+ break;
+ default:
+ return command_usage("invalid --monitor-sa option");
+ }
+ break;
+ }
+ if (vici_register(conn, "ike-updown", list_cb, &format) != 0)
+ {
+ fprintf(stderr, "registering for IKE_SAs failed: %s\n",
+ strerror(errno));
+ return errno;
+ }
+ if (vici_register(conn, "child-updown", list_cb, &format) != 0)
+ {
+ fprintf(stderr, "registering for CHILD_SAs failed: %s\n",
+ strerror(errno));
+ return errno;
+ }
+
+ wait_sigint();
+
+ fprintf(stderr, "disconnecting...\n");
+
+ return 0;
+}
+
/**
* Register the command.
*/
@@ -366,3 +435,16 @@ static void __attribute__ ((constructor))reg()
}
});
}
+
+static void __attribute__ ((constructor))reg_monitor_sa()
+{
+ command_register((command_t) {
+ monitor_sas, 'm', "monitor-sa", "monitor for IKE_SA and CHILD_SA changes",
+ {"[--raw|--pretty]"},
+ {
+ {"help", 'h', 0, "show usage information"},
+ {"raw", 'r', 0, "dump raw response message"},
+ {"pretty", 'P', 0, "dump raw response message in pretty print"},
+ }
+ });
+}