@@ -120,26 +120,52 @@ static struct command_result *reckless_result(struct io_conn *conn,
120
120
return command_finished (reckless -> cmd , response );
121
121
}
122
122
123
+ static struct command_result * reckless_fail (struct reckless * reckless ,
124
+ char * err )
125
+ {
126
+ struct json_stream * resp ;
127
+ resp = jsonrpc_stream_fail (reckless -> cmd , PLUGIN_ERROR , err );
128
+ return command_finished (reckless -> cmd , resp );
129
+ }
130
+
123
131
static void reckless_conn_finish (struct io_conn * conn ,
124
132
struct reckless * reckless )
125
133
{
126
134
/* FIXME: avoid EBADFD - leave stdin fd open? */
127
135
if (errno && errno != 9 )
128
136
plugin_log (plugin , LOG_DBG , "err: %s" , strerror (errno ));
129
- reckless_result (conn , reckless );
130
137
if (reckless -> pid > 0 ) {
131
- int status ;
138
+ int status = 0 ;
132
139
pid_t p ;
133
140
p = waitpid (reckless -> pid , & status , WNOHANG );
134
141
/* Did the reckless process exit? */
135
142
if (p != reckless -> pid && reckless -> pid ) {
136
- plugin_log (plugin , LOG_DBG , "reckless failed to exit "
137
- "(%i), killing now." , status );
143
+ plugin_log (plugin , LOG_DBG , "reckless failed to exit, "
144
+ "killing now." );
138
145
kill (reckless -> pid , SIGKILL );
146
+ reckless_fail (reckless , "reckless process hung" );
147
+ /* Reckless process exited and with normal status? */
148
+ } else if (WIFEXITED (status ) && !WEXITSTATUS (status )) {
149
+ plugin_log (plugin , LOG_DBG ,
150
+ "Reckless subprocess complete: %s" ,
151
+ reckless -> stdoutbuf );
152
+ reckless_result (conn , reckless );
153
+ /* Don't try to process json if python raised an error. */
154
+ } else {
155
+ plugin_log (plugin , LOG_DBG ,
156
+ "Reckless process has crashed (%i)." ,
157
+ WEXITSTATUS (status ));
158
+ char * err ;
159
+ if (reckless -> process_failed )
160
+ err = reckless -> process_failed ;
161
+ else
162
+ err = tal_strdup (tmpctx , "the reckless process "
163
+ "has crashed" );
164
+ reckless_fail (reckless , err );
165
+ plugin_log (plugin , LOG_UNUSUAL ,
166
+ "The reckless subprocess has failed." );
139
167
}
140
168
}
141
- plugin_log (plugin , LOG_DBG , "Reckless subprocess complete." );
142
- plugin_log (plugin , LOG_DBG , "output: %s" , reckless -> stdoutbuf );
143
169
io_close (conn );
144
170
tal_free (reckless );
145
171
}
0 commit comments