summaryrefslogtreecommitdiffstats
path: root/src/fastd.c
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-09-01 22:27:51 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-09-01 22:27:51 +0200
commitedbfeca6cedb55872f8a92b790e1a989a3cf47e5 (patch)
tree3930f5bc59b0783ead16e114ed12c533bfcd614b /src/fastd.c
parent715f2e467f1c8990bb6a80652b1ad98d0369ff51 (diff)
downloadfastd-edbfeca6cedb55872f8a92b790e1a989a3cf47e5.tar
fastd-edbfeca6cedb55872f8a92b790e1a989a3cf47e5.zip
Remove old state dump feature
It will be replaced by a nicer version.
Diffstat (limited to 'src/fastd.c')
-rw-r--r--src/fastd.c54
1 files changed, 4 insertions, 50 deletions
diff --git a/src/fastd.c b/src/fastd.c
index de3f2df..83d360b 100644
--- a/src/fastd.c
+++ b/src/fastd.c
@@ -66,7 +66,6 @@ fastd_context_t ctx = {};
static volatile bool sighup = false; /**< Is set to true when a SIGHUP is received */
static volatile bool terminate = false; /**< Is set to true when a SIGTERM, SIGQUIT or SIGINT is received */
-static volatile bool dump = false; /**< Is set to true when a SIGUSR1 is received */
static volatile bool sigchld = false; /**< Is set to true when a SIGCHLD is received */
@@ -77,10 +76,6 @@ static void on_signal(int signo) {
sighup = true;
break;
- case SIGUSR1:
- dump = true;
- break;
-
case SIGCHLD:
sigchld = true;
break;
@@ -114,8 +109,6 @@ static void init_signals(void) {
action.sa_handler = on_signal;
if (sigaction(SIGHUP, &action, NULL))
exit_errno("sigaction");
- if (sigaction(SIGUSR1, &action, NULL))
- exit_errno("sigaction");
if (sigaction(SIGCHLD, &action, NULL))
exit_errno("sigaction");
if (sigaction(SIGTERM, &action, NULL))
@@ -132,6 +125,10 @@ static void init_signals(void) {
exit_errno("sigaction");
if (sigaction(SIGTTOU, &action, NULL))
exit_errno("sigaction");
+ if (sigaction(SIGUSR1, &action, NULL))
+ exit_errno("sigaction");
+ if (sigaction(SIGUSR2, &action, NULL))
+ exit_errno("sigaction");
}
@@ -199,44 +196,6 @@ static inline void on_post_down(void) {
fastd_shell_command_exec(&conf.on_post_down, NULL);
}
-/** Dumps statistics and the list of known peers to the logs */
-static void dump_state(void) {
- pr_info("TX stats: %U packet(s), %U byte(s); dropped: %U packet(s), %U byte(s); error: %U packet(s), %U byte(s)",
- ctx.tx.packets, ctx.tx.bytes, ctx.tx_dropped.packets, ctx.tx_dropped.bytes, ctx.tx_error.packets, ctx.tx_error.bytes);
- pr_info("RX stats: %U packet(s), %U byte(s)", ctx.rx.packets, ctx.rx.bytes);
-
- pr_info("dumping peers:");
-
- size_t i;
- for (i = 0; i < VECTOR_LEN(ctx.peers); i++) {
- fastd_peer_t *peer = VECTOR_INDEX(ctx.peers, i);
-
- if (!fastd_peer_is_enabled(peer))
- continue;
-
- if (!fastd_peer_is_established(peer)) {
- pr_info("peer %P not connected, address: %I", peer, &peer->address);
- continue;
- }
-
- if (conf.mode == MODE_TAP) {
- unsigned eth_addresses = 0;
- size_t j;
- for (j = 0; j < VECTOR_LEN(ctx.eth_addrs); j++) {
- if (VECTOR_INDEX(ctx.eth_addrs, j).peer == peer)
- eth_addresses++;
- }
-
- pr_info("peer %P connected, address: %I, associated MAC addresses: %u", peer, &peer->address, eth_addresses);
- }
- else {
- pr_info("peer %P connected, address: %I", peer, &peer->address);
- }
- }
-
- pr_info("dump finished.");
-}
-
/** Closes all open FDs except stdin, stdout and stderr */
void fastd_close_all_fds(void) {
@@ -585,11 +544,6 @@ static inline void handle_signals(void) {
fastd_config_load_peer_dirs();
}
- if (dump) {
- dump = false;
- dump_state();
- }
-
if (sigchld) {
sigchld = false;
reap_zombies();