Skip to content

Commit 1d07cee

Browse files
plugins/bcli: use -rpcwait to simplify waiting for bitcoind to warm up
Replaced custom wait logic with the -rpcwait flag in bitcoin-cli to handle waiting for bitcoind to warm up. This simplifies the code and ensures that errors unrelated to warmup are passed up directly without additional checks. Changelog-None Signed-off-by: Nishant Bansal <[email protected]>
1 parent 98679aa commit 1d07cee

File tree

1 file changed

+30
-44
lines changed

1 file changed

+30
-44
lines changed

plugins/bcli.c

+30-44
Original file line numberDiff line numberDiff line change
@@ -1035,59 +1035,45 @@ static void parse_getnetworkinfo_result(struct plugin *p, const char *buf)
10351035

10361036
static void wait_and_check_bitcoind(struct plugin *p)
10371037
{
1038-
int in, from, status, ret;
1038+
int in, from, status;
10391039
pid_t child;
1040-
const char **cmd = gather_args(bitcoind, "getnetworkinfo", NULL);
1041-
bool printed = false;
1040+
const char **cmd = gather_args(
1041+
bitcoind, "-rpcwait", "-rpcwaittimeout=30", "getnetworkinfo", NULL);
10421042
char *output = NULL;
10431043

1044-
for (;;) {
1045-
tal_free(output);
1044+
child = pipecmdarr(&in, &from, &from, cast_const2(char **, cmd));
10461045

1047-
child = pipecmdarr(&in, &from, &from, cast_const2(char **, cmd));
1046+
if (bitcoind->rpcpass)
1047+
write_all(in, bitcoind->rpcpass, strlen(bitcoind->rpcpass));
10481048

1049-
if (bitcoind->rpcpass)
1050-
write_all(in, bitcoind->rpcpass, strlen(bitcoind->rpcpass));
1049+
close(in);
10511050

1052-
close(in);
1051+
if (child < 0) {
1052+
if (errno == ENOENT)
1053+
bitcoind_failure(
1054+
p,
1055+
"bitcoin-cli not found. Is bitcoin-cli "
1056+
"(part of Bitcoin Core) available in your PATH?");
1057+
plugin_err(p, "%s exec failed: %s", cmd[0], strerror(errno));
1058+
}
10531059

1054-
if (child < 0) {
1055-
if (errno == ENOENT)
1056-
bitcoind_failure(p, "bitcoin-cli not found. Is bitcoin-cli "
1057-
"(part of Bitcoin Core) available in your PATH?");
1058-
plugin_err(p, "%s exec failed: %s", cmd[0], strerror(errno));
1059-
}
1060+
output = grab_fd(cmd, from);
10601061

1061-
output = grab_fd(cmd, from);
1062-
1063-
while ((ret = waitpid(child, &status, 0)) < 0 && errno == EINTR);
1064-
if (ret != child)
1065-
bitcoind_failure(p, tal_fmt(bitcoind, "Waiting for %s: %s",
1066-
cmd[0], strerror(errno)));
1067-
if (!WIFEXITED(status))
1068-
bitcoind_failure(p, tal_fmt(bitcoind, "Death of %s: signal %i",
1069-
cmd[0], WTERMSIG(status)));
1070-
1071-
if (WEXITSTATUS(status) == 0)
1072-
break;
1073-
1074-
/* bitcoin/src/rpc/protocol.h:
1075-
* RPC_IN_WARMUP = -28, //!< Client still warming up
1076-
*/
1077-
if (WEXITSTATUS(status) != 28) {
1078-
if (WEXITSTATUS(status) == 1)
1079-
bitcoind_failure(p, "Could not connect to bitcoind using"
1080-
" bitcoin-cli. Is bitcoind running?");
1081-
bitcoind_failure(p, tal_fmt(bitcoind, "%s exited with code %i: %s",
1082-
cmd[0], WEXITSTATUS(status), output));
1083-
}
1062+
waitpid(child, &status, 0);
10841063

1085-
if (!printed) {
1086-
plugin_log(p, LOG_UNUSUAL,
1087-
"Waiting for bitcoind to warm up...");
1088-
printed = true;
1089-
}
1090-
sleep(1);
1064+
if (!WIFEXITED(status))
1065+
bitcoind_failure(p, tal_fmt(bitcoind, "Death of %s: signal %i",
1066+
cmd[0], WTERMSIG(status)));
1067+
1068+
if (WEXITSTATUS(status) != 0) {
1069+
if (WEXITSTATUS(status) == 1)
1070+
bitcoind_failure(p,
1071+
"RPC connection timed out. Could "
1072+
"not connect to bitcoind using "
1073+
"bitcoin-cli. Is bitcoind running?");
1074+
bitcoind_failure(p,
1075+
tal_fmt(bitcoind, "%s exited with code %i: %s",
1076+
cmd[0], WEXITSTATUS(status), output));
10911077
}
10921078

10931079
parse_getnetworkinfo_result(p, output);

0 commit comments

Comments
 (0)