Browse Source

gossipd: don't create a new chain of timers on every connect command.

When a connect fails, if it's an important peer, we set a timer.  If
we have a manual connect command, this means we do this again, leading
to another timer.

For a manual command, free any existing timer; the normal fail logic
will start another if necessary.

Reported-by: @ZmnSCPxj
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ppa-0.6.1
Rusty Russell 7 years ago
parent
commit
3b29d2b75a
  1. 14
      gossipd/gossip.c

14
gossipd/gossip.c

@ -64,6 +64,9 @@ struct important_peerid {
/* How long to wait after failed connect */ /* How long to wait after failed connect */
unsigned int wait_seconds; unsigned int wait_seconds;
/* The timer we're using to reconnect */
struct oneshot *reconnect_timer;
}; };
/* We keep a set of peer ids we're always trying to reach. */ /* We keep a set of peer ids we're always trying to reach. */
@ -1730,7 +1733,8 @@ static void connect_failed(struct io_conn *conn, struct reaching *reach)
status_trace("...will try again in %u seconds", status_trace("...will try again in %u seconds",
imp->wait_seconds); imp->wait_seconds);
/* If important_id freed, this will be removed too */ /* If important_id freed, this will be removed too */
new_reltimer(&reach->daemon->timers, imp, imp->reconnect_timer
= new_reltimer(&reach->daemon->timers, imp,
time_from_sec(imp->wait_seconds), time_from_sec(imp->wait_seconds),
retry_important, imp); retry_important, imp);
} }
@ -1896,6 +1900,9 @@ static void try_reach_peer(struct daemon *daemon, const struct pubkey *id,
/* Called from timer, so needs single-arg declaration */ /* Called from timer, so needs single-arg declaration */
static void retry_important(struct important_peerid *imp) static void retry_important(struct important_peerid *imp)
{ {
/* In case we've come off a timer, don't leave dangling pointer */
imp->reconnect_timer = NULL;
#if DEVELOPER #if DEVELOPER
/* With --dev-no-reconnect, we only want explicit /* With --dev-no-reconnect, we only want explicit
* connects */ * connects */
@ -1909,10 +1916,15 @@ static struct io_plan *connect_to_peer(struct io_conn *conn,
struct daemon *daemon, const u8 *msg) struct daemon *daemon, const u8 *msg)
{ {
struct pubkey id; struct pubkey id;
struct important_peerid *imp;
if (!fromwire_gossipctl_connect_to_peer(msg, &id)) if (!fromwire_gossipctl_connect_to_peer(msg, &id))
master_badmsg(WIRE_GOSSIPCTL_CONNECT_TO_PEER, msg); master_badmsg(WIRE_GOSSIPCTL_CONNECT_TO_PEER, msg);
/* If this is an important peer, free any outstanding timer */
imp = important_peerid_map_get(&daemon->important_peerids, &id);
if (imp)
imp->reconnect_timer = tal_free(imp->reconnect_timer);
try_reach_peer(daemon, &id, true); try_reach_peer(daemon, &id, true);
return daemon_conn_read_next(conn, &daemon->master); return daemon_conn_read_next(conn, &daemon->master);
} }

Loading…
Cancel
Save