Skip to content

Commit

Permalink
connectd+: Flake/race fix for new channels
Browse files Browse the repository at this point in the history
1) dualopen has fd to connectd
2) channeld needs to take over
3) dualopen passes fd that leads to a connectd over for channeld to use
4) lightningd must receive the fd transfer request and process
5) dualopen shuts down and closes everything it owns

4 & 5 end up in a race. If 5 happens before 4, channeld ends up with an invalid fd for connectd — leaving it in a position to not receive messages.

Lingering for a second makes 4 win the race. Since the daemon is closing anyway, waiting for a second should be alright.

Changelog-Fixed: Fixed a condition for newly created channels that could trigger a need for reconnect.
  • Loading branch information
ddustin committed Sep 17, 2022
1 parent 74cd0a7 commit e479100
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions channeld/channeld.c
Original file line number Diff line number Diff line change
Expand Up @@ -955,6 +955,10 @@ static void send_shutdown_complete(struct peer *peer)
wire_sync_write(MASTER_FD,
take(towire_channeld_shutdown_complete(NULL)));
per_peer_state_fdpass_send(MASTER_FD, peer->pps);

/* Give master a chance to pass the fd along */
sleep(1);

close(MASTER_FD);
}

Expand Down
6 changes: 6 additions & 0 deletions openingd/dualopend.c
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,9 @@ static void dualopen_shutdown(struct state *state)
status_debug("Sent %s with fds",
dualopend_wire_name(fromwire_peektype(msg)));

/* Give master a chance to pass the fd along */
sleep(1);

/* This frees the entire tal tree. */
tal_free(state);
daemon_shutdown();
Expand Down Expand Up @@ -3989,6 +3992,9 @@ int main(int argc, char *argv[])
dualopend_wire_name(fromwire_peektype(msg)));
tal_free(msg);

/* Give master a chance to pass the fd along */
sleep(1);

/* This frees the entire tal tree. */
tal_free(state);
daemon_shutdown();
Expand Down
3 changes: 3 additions & 0 deletions openingd/openingd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1485,6 +1485,9 @@ int main(int argc, char *argv[])
status_debug("Sent %s with fd",
openingd_wire_name(fromwire_peektype(msg)));

/* Give master a chance to pass the fd along */
sleep(1);

/* This frees the entire tal tree. */
tal_free(state);

Expand Down

0 comments on commit e479100

Please sign in to comment.