mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
a37c165cb9
Basically all files shared by different daemons. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
99 lines
2.4 KiB
C
99 lines
2.4 KiB
C
#include <ccan/fdpass/fdpass.h>
|
|
#include <ccan/io/fdpass/fdpass.h>
|
|
#include <ccan/take/take.h>
|
|
#include <common/daemon_conn.h>
|
|
#include <wire/wire_io.h>
|
|
#include <wire/wire_sync.h>
|
|
|
|
struct io_plan *daemon_conn_read_next(struct io_conn *conn,
|
|
struct daemon_conn *dc)
|
|
{
|
|
dc->msg_in = tal_free(dc->msg_in);
|
|
return io_read_wire(conn, dc->ctx, &dc->msg_in, dc->daemon_conn_recv,
|
|
dc);
|
|
}
|
|
|
|
struct io_plan *daemon_conn_write_next(struct io_conn *conn,
|
|
struct daemon_conn *dc)
|
|
{
|
|
const u8 *msg = msg_dequeue(&dc->out);
|
|
if (msg) {
|
|
int fd = msg_extract_fd(msg);
|
|
if (fd >= 0)
|
|
return io_send_fd(conn, fd, true,
|
|
daemon_conn_write_next, dc);
|
|
return io_write_wire(conn, take(msg), daemon_conn_write_next,
|
|
dc);
|
|
} else if (dc->msg_queue_cleared_cb) {
|
|
return dc->msg_queue_cleared_cb(conn, dc);
|
|
} else {
|
|
return msg_queue_wait(conn, &dc->out,
|
|
daemon_conn_write_next, dc);
|
|
}
|
|
}
|
|
|
|
bool daemon_conn_sync_flush(struct daemon_conn *dc)
|
|
{
|
|
const u8 *msg;
|
|
int daemon_fd;
|
|
|
|
/* Flush any current packet. */
|
|
if (!io_flush_sync(dc->conn))
|
|
return false;
|
|
|
|
/* Make fd blocking for the duration */
|
|
daemon_fd = io_conn_fd(dc->conn);
|
|
if (!io_fd_block(daemon_fd, true))
|
|
return false;
|
|
|
|
/* Flush existing messages. */
|
|
while ((msg = msg_dequeue(&dc->out)) != NULL) {
|
|
int fd = msg_extract_fd(msg);
|
|
if (fd >= 0) {
|
|
if (!fdpass_send(daemon_fd, fd))
|
|
break;
|
|
} else if (!wire_sync_write(daemon_fd, take(msg)))
|
|
break;
|
|
}
|
|
io_fd_block(daemon_fd, false);
|
|
|
|
/* Success iff we flushed them all. */
|
|
return msg == NULL;
|
|
}
|
|
|
|
static struct io_plan *daemon_conn_start(struct io_conn *conn,
|
|
struct daemon_conn *dc)
|
|
{
|
|
dc->conn = conn;
|
|
return io_duplex(conn, daemon_conn_read_next(conn, dc),
|
|
daemon_conn_write_next(conn, dc));
|
|
}
|
|
|
|
void daemon_conn_init(tal_t *ctx, struct daemon_conn *dc, int fd,
|
|
struct io_plan *(*daemon_conn_recv)(struct io_conn *,
|
|
struct daemon_conn *),
|
|
void (*finish)(struct io_conn *, struct daemon_conn *dc))
|
|
{
|
|
struct io_conn *conn;
|
|
|
|
dc->daemon_conn_recv = daemon_conn_recv;
|
|
|
|
dc->ctx = ctx;
|
|
dc->msg_in = NULL;
|
|
msg_queue_init(&dc->out, dc->ctx);
|
|
dc->msg_queue_cleared_cb = NULL;
|
|
conn = io_new_conn(ctx, fd, daemon_conn_start, dc);
|
|
if (finish)
|
|
io_set_finish(conn, finish, dc);
|
|
}
|
|
|
|
void daemon_conn_send(struct daemon_conn *dc, const u8 *msg)
|
|
{
|
|
msg_enqueue(&dc->out, msg);
|
|
}
|
|
|
|
void daemon_conn_send_fd(struct daemon_conn *dc, int fd)
|
|
{
|
|
msg_enqueue_fd(&dc->out, fd);
|
|
}
|