urbit/v/raft.c

1802 lines
44 KiB
C
Raw Normal View History

/* v/raft.c
**
** This file is in the public domain.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <uv.h>
#include "all.h"
#include "v/vere.h"
2014-02-27 03:46:34 +04:00
2014-09-11 04:01:32 +04:00
/* u3_rent: Log entry wire format.
2014-03-06 22:18:36 +04:00
*/
2014-03-05 05:43:40 +04:00
typedef struct {
c3_w tem_w; // Log entry term
c3_w typ_w; // Entry type, %ra|%ov
2014-03-06 22:18:36 +04:00
c3_w len_w; // Word length of blob
2014-03-05 05:43:40 +04:00
c3_w* bob_w; // Blob
2014-09-11 04:01:32 +04:00
} u3_rent;
2014-03-05 05:43:40 +04:00
2014-09-11 04:01:32 +04:00
/* u3_rmsg: Raft RPC wire format.
2014-03-06 22:18:36 +04:00
*/
2014-09-11 04:01:32 +04:00
typedef struct _u3_rmsg {
2014-03-06 22:18:36 +04:00
c3_w ver_w; // version, mug('a')...
2014-03-05 05:43:40 +04:00
c3_d len_d; // Words in message
c3_w tem_w; // Current term
c3_w typ_w; // %apen|%revo|%rasp
union {
struct {
c3_w suc_w; // Request successful
} rasp;
struct {
c3_d lai_d; // Last log index
c3_w lat_w; // Last log term
2014-03-06 22:18:36 +04:00
c3_w nam_w; // Name word length
2014-03-05 05:43:40 +04:00
c3_c* nam_c; // Requestor name
union {
struct {
c3_d cit_d; // Leader commitIndex
c3_d ent_d; // Number of entries
2014-09-11 04:01:32 +04:00
u3_rent* ent_u; // Entries
2014-03-05 05:43:40 +04:00
} apen;
};
} rest;
};
2014-09-11 04:01:32 +04:00
} u3_rmsg;
2014-03-05 05:43:40 +04:00
2014-09-11 04:01:32 +04:00
static ssize_t _raft_rmsg_read(const u3_rbuf* buf_u, u3_rmsg* msg_u);
static void _raft_rmsg_send(u3_rcon* ron_u, const u3_rmsg* msg_u);
static void _raft_rmsg_free(u3_rmsg* msg_u);
static void _raft_conn_dead(u3_rcon* ron_u);
2014-11-06 06:10:22 +03:00
static u3_noun _raft_remove_run(u3_rcon* ron_u);
2014-09-11 04:01:32 +04:00
static void _raft_send_rasp(u3_rcon* ron_u, c3_t suc_t);
static void _raft_rreq_free(u3_rreq* req_u);
2014-08-21 02:09:51 +04:00
static void _raft_time_cb(uv_timer_t* tim_u);
2014-03-06 03:38:06 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_rnam_free(u3_rnam* nam_u)
{
if ( nam_u ) {
c3_assert(0 == nam_u->ron_u);
c3_assert(0 == nam_u->nex_u);
free(nam_u->str_c);
free(nam_u->nam_c);
free(nam_u->por_c);
}
free(nam_u);
}
/* _raft_readname(): parse a raft host:port peer name.
*/
2014-09-11 04:01:32 +04:00
static u3_rnam*
_raft_readname(const c3_c* str_c, c3_w siz_w)
{
2014-09-11 04:01:32 +04:00
u3_rnam* nam_u = calloc(1, sizeof(*nam_u));
c3_c* col_c;
c3_w nam_w;
2014-04-02 04:47:01 +04:00
nam_u->str_c = c3_malloc(siz_w + 1);
2014-08-23 01:33:27 +04:00
strncpy(nam_u->str_c, str_c, siz_w + 1);
nam_u->str_c[siz_w] = '\0';
if ( 0 == (col_c = strchr(nam_u->str_c, ':')) ) {
uL(fprintf(uH, "raft: invalid name %s\n", nam_u->str_c));
_raft_rnam_free(nam_u);
nam_u = 0;
}
else {
2014-02-27 03:46:34 +04:00
nam_w = col_c - nam_u->str_c + 1;
2014-04-02 04:47:01 +04:00
nam_u->nam_c = c3_malloc(nam_w);
2014-08-23 01:33:27 +04:00
strncpy(nam_u->nam_c, nam_u->str_c, nam_w + 1);
*(nam_u->nam_c + nam_w) = 0;
2014-02-27 03:46:34 +04:00
nam_u->por_c = strdup(col_c + 1);
}
return nam_u;
}
2014-09-11 04:01:32 +04:00
/* u3_raft_readopt(): parse a string into a list of raft peers.
2014-02-28 04:35:50 +04:00
*/
2014-09-11 04:01:32 +04:00
u3_rnam*
u3_raft_readopt(const c3_c* arg_c, c3_c* our_c, c3_s oup_s)
{
2014-09-11 04:01:32 +04:00
u3_rnam* nam_u;
u3_rnam* nex_u;
c3_c* com_c;
if ( 0 == (com_c = strchr(arg_c, ',')) ) {
nam_u = _raft_readname(arg_c, strlen(arg_c));
nex_u = 0;
}
else {
nam_u = _raft_readname(arg_c, com_c - arg_c);
2014-09-11 04:01:32 +04:00
nex_u = u3_raft_readopt(com_c + 1, our_c, oup_s);
}
if ( nam_u ) {
c3_c* end_c;
c3_w por_w = strtoul(nam_u->por_c, &end_c, 10);
if ( '\0' == *nam_u->por_c || '\0' != *end_c || por_w >= 65536 ) {
uL(fprintf(uH, "raft: invalid port %s\n", nam_u->por_c));
_raft_rnam_free(nam_u);
_raft_rnam_free(nex_u);
nam_u = 0;
}
else {
if ( oup_s == por_w && 0 == strcmp(our_c, nam_u->nam_c) ) {
_raft_rnam_free(nam_u);
nam_u = nex_u;
}
else nam_u->nex_u = nex_u;
}
}
else _raft_rnam_free(nex_u);
return nam_u;
}
2014-02-27 03:46:34 +04:00
/* _raft_alloc(): libuv-style allocator for raft.
*/
2014-08-21 02:09:51 +04:00
static void
_raft_alloc(uv_handle_t* had_u,
size_t len_i,
uv_buf_t* buf
)
2014-02-27 03:46:34 +04:00
{
2014-08-21 02:09:51 +04:00
void* ptr_v = c3_malloc(len_i);
*buf = uv_buf_init(ptr_v, len_i);
2014-02-27 03:46:34 +04:00
}
2014-08-21 02:09:51 +04:00
/* _raft_election_rand(): election timeout.
*/
static c3_w
_raft_election_rand()
{
c3_w ret = (1.0 + (float) rand() / RAND_MAX) * 150;
//uL(fprintf(uH, "raft: timeout %d\n", ret));
return ret;
}
2014-03-01 02:52:00 +04:00
/* _raft_promote(): actions on raft leader election.
*/
static void
2014-09-11 04:01:32 +04:00
_raft_promote(u3_raft* raf_u)
2014-03-01 02:52:00 +04:00
{
2014-09-11 04:01:32 +04:00
if ( u3_raty_lead == raf_u->typ_e ) {
2014-03-06 07:40:35 +04:00
uL(fprintf(uH, "raft: double promote; ignoring\n"));
}
else {
c3_i sas_i;
if ( 1 == raf_u->pop_w ) {
2014-03-12 23:06:50 +04:00
uL(fprintf(uH, "raft: -> lead\n"));
2014-09-11 04:01:32 +04:00
raf_u->typ_e = u3_raty_lead;
2014-03-12 23:06:50 +04:00
// TODO boot in multiuser mode
2014-09-11 04:01:32 +04:00
u3_sist_boot();
2014-11-05 04:18:47 +03:00
if ( c3n == u3_Host.ops_u.bat ) {
2014-09-11 04:01:32 +04:00
u3_lo_lead();
2014-03-12 23:06:50 +04:00
}
2014-03-06 07:40:35 +04:00
}
else {
2014-09-11 04:01:32 +04:00
c3_assert(u3_raty_cand == raf_u->typ_e);
2014-03-12 23:06:50 +04:00
uL(fprintf(uH, "raft: cand -> lead\n"));
2014-09-11 04:01:32 +04:00
raf_u->typ_e = u3_raty_lead;
2014-03-06 07:40:35 +04:00
2014-03-12 22:54:14 +04:00
sas_i = uv_timer_stop(&raf_u->tim_u);
c3_assert(0 == sas_i);
2014-03-12 22:33:40 +04:00
sas_i = uv_timer_start(&raf_u->tim_u, _raft_time_cb, 50, 50);
2014-03-06 07:40:35 +04:00
c3_assert(0 == sas_i);
}
}
}
/* _raft_demote(): demote to follower.
*/
static void
2014-09-11 04:01:32 +04:00
_raft_demote(u3_raft* raf_u)
2014-03-06 07:40:35 +04:00
{
2014-09-11 04:01:32 +04:00
u3_raty typ_e = raf_u->typ_e;
2014-03-12 23:06:50 +04:00
raf_u->vog_c = 0;
2014-09-11 04:01:32 +04:00
u3_sist_nil("vote");
2014-03-12 23:06:50 +04:00
raf_u->vot_w = 0;
2014-09-11 04:01:32 +04:00
raf_u->typ_e = u3_raty_foll;
2014-03-12 23:06:50 +04:00
2014-09-11 04:01:32 +04:00
if ( u3_raty_lead == typ_e ) {
2014-03-12 23:06:50 +04:00
c3_i sas_i;
uL(fprintf(uH, "raft: lead -> foll\n"));
sas_i = uv_timer_stop(&raf_u->tim_u);
c3_assert(0 == sas_i);
sas_i = uv_timer_start(&raf_u->tim_u, _raft_time_cb,
_raft_election_rand(), 0);
c3_assert(0 == sas_i);
// TODO dump not-yet-committed events
2014-03-06 07:40:35 +04:00
}
else {
2014-09-11 04:01:32 +04:00
c3_assert(u3_raty_cand == typ_e);
2014-03-12 23:06:50 +04:00
uL(fprintf(uH, "raft: cand -> foll\n"));
2014-03-06 07:40:35 +04:00
}
}
2014-03-07 04:04:52 +04:00
/* _raft_note_term(): note a term from the network, demoting if it is newer.
2014-03-06 07:40:35 +04:00
*/
static void
2014-09-11 04:01:32 +04:00
_raft_note_term(u3_raft* raf_u, c3_w tem_w)
2014-03-06 07:40:35 +04:00
{
if ( raf_u->tem_w < tem_w ) {
uL(fprintf(uH, "raft: got term from network: %d\n", tem_w));
raf_u->tem_w = tem_w;
2014-09-11 04:01:32 +04:00
u3_sist_put("term", (c3_y*)&raf_u->tem_w, sizeof(c3_w));
c3_assert(raf_u->typ_e != u3_raty_none);
if ( raf_u->typ_e == u3_raty_foll ) {
2014-03-06 07:40:35 +04:00
c3_assert(0 == raf_u->vot_w);
} else _raft_demote(raf_u);
2014-03-01 02:52:00 +04:00
}
}
2014-03-06 03:38:06 +04:00
/* _raft_rest_name(): update conn name from incoming request.
**
** If this connection already has a name, make sure the passed name
** matches. Otherwise, try to associate it with a name, killing old
** connections to that name.
2014-02-28 04:35:50 +04:00
*/
2014-03-12 22:35:13 +04:00
static void // TODO indicate whether conn died
2014-09-11 04:01:32 +04:00
_raft_rest_name(u3_rcon* ron_u, const c3_c* nam_c)
2014-02-27 03:46:34 +04:00
{
2014-03-06 03:38:06 +04:00
if ( 0 != ron_u->nam_u ) {
if ( 0 != strcmp(ron_u->nam_u->str_c, nam_c) ) {
uL(fprintf(uH, "raft: names disagree o:%s n:%s\n",
ron_u->nam_u->str_c, nam_c));
_raft_conn_dead(ron_u);
}
}
else {
2014-09-11 04:01:32 +04:00
u3_raft* raf_u = ron_u->raf_u;
u3_rnam* nam_u = raf_u->nam_u;
2014-02-27 03:46:34 +04:00
while ( nam_u ) {
2014-03-06 03:38:06 +04:00
if ( 0 == strcmp(nam_u->str_c, nam_c) ) {
2014-02-27 03:46:34 +04:00
if ( nam_u->ron_u ) {
2014-03-03 23:30:00 +04:00
c3_assert(nam_u->ron_u != ron_u);
2014-03-07 05:25:53 +04:00
//uL(fprintf(uH, "raft: closing old conn %p to %s (%p)\n",
// nam_u->ron_u, nam_u->str_c, ron_u));
2014-02-27 03:46:34 +04:00
_raft_conn_dead(nam_u->ron_u);
}
uL(fprintf(uH, "raft: incoming conn from %s\n", nam_u->str_c));
2014-02-27 03:46:34 +04:00
nam_u->ron_u = ron_u;
ron_u->nam_u = nam_u;
_raft_remove_run(ron_u);
break;
}
else nam_u = nam_u->nex_u;
}
2014-03-06 03:38:06 +04:00
if ( 0 == ron_u->nam_u ) {
uL(fprintf(uH, "connection from unkown peer %s\n", nam_c));
_raft_conn_dead(ron_u);
}
2014-02-27 03:46:34 +04:00
}
2014-03-06 03:38:06 +04:00
}
2014-02-27 03:46:34 +04:00
2014-03-06 03:38:06 +04:00
/* _raft_do_rest(): effects of an incoming request.
*/
static void
2014-09-11 04:01:32 +04:00
_raft_do_rest(u3_rcon* ron_u, const u3_rmsg* msg_u)
2014-03-06 03:38:06 +04:00
{
2014-09-11 04:01:32 +04:00
u3_raft* raf_u = ron_u->raf_u;
2014-03-06 03:38:06 +04:00
2014-09-11 04:01:32 +04:00
if ( u3_raty_cand == raf_u->typ_e || u3_raty_foll == raf_u->typ_e ) {
2014-03-07 04:04:52 +04:00
c3_i sas_i;
2014-03-06 03:38:06 +04:00
2014-03-07 04:04:52 +04:00
sas_i = uv_timer_stop(&raf_u->tim_u);
c3_assert(0 == sas_i);
2014-03-12 22:33:40 +04:00
sas_i = uv_timer_start(&raf_u->tim_u, _raft_time_cb,
_raft_election_rand(), 0);
2014-03-07 04:04:52 +04:00
c3_assert(0 == sas_i);
2014-02-27 03:46:34 +04:00
}
2014-03-07 04:04:52 +04:00
2014-03-06 03:38:06 +04:00
_raft_rest_name(ron_u, msg_u->rest.nam_c);
2014-03-07 04:04:52 +04:00
_raft_note_term(raf_u, msg_u->tem_w);
2014-02-27 03:46:34 +04:00
}
2014-03-05 05:43:40 +04:00
/* _raft_do_apen(): Handle incoming AppendEntries.
*/
static void
2014-09-11 04:01:32 +04:00
_raft_do_apen(u3_rcon* ron_u, const u3_rmsg* msg_u)
2014-03-05 05:43:40 +04:00
{
c3_assert(c3__apen == msg_u->typ_w);
2014-03-06 03:38:06 +04:00
_raft_do_rest(ron_u, msg_u);
/* TODO respond */
2014-03-05 05:43:40 +04:00
}
2014-03-06 07:40:35 +04:00
/* _raft_apen_done(): process AppendEntries response.
*/
static void
2014-09-11 04:01:32 +04:00
_raft_apen_done(u3_rreq* req_u, c3_w suc_w)
2014-03-06 07:40:35 +04:00
{
c3_assert(c3__apen == req_u->msg_u->typ_w);
2014-03-06 07:40:35 +04:00
/* TODO */
}
2014-03-05 05:43:40 +04:00
/* _raft_do_revo(): Handle incoming RequestVote.
*/
static void
2014-09-11 04:01:32 +04:00
_raft_do_revo(u3_rcon* ron_u, const u3_rmsg* msg_u)
2014-03-05 05:43:40 +04:00
{
2014-09-11 04:01:32 +04:00
u3_raft* raf_u = ron_u->raf_u;
2014-03-06 07:40:35 +04:00
2014-03-05 05:43:40 +04:00
c3_assert(c3__revo == msg_u->typ_w);
2014-03-06 03:38:06 +04:00
_raft_do_rest(ron_u, msg_u);
2014-03-06 07:40:35 +04:00
c3_assert(0 != ron_u->nam_u);
if ( msg_u->tem_w >= raf_u->tem_w &&
(0 == raf_u->vog_c ||
0 == strcmp(raf_u->vog_c, ron_u->nam_u->str_c)) &&
(raf_u->lat_w < msg_u->rest.lat_w ||
(raf_u->lat_w == msg_u->rest.lat_w &&
2014-04-08 20:25:49 +04:00
raf_u->ent_d <= msg_u->rest.lai_d)) )
2014-03-06 07:40:35 +04:00
{
2014-03-12 22:03:36 +04:00
raf_u->vog_c = ron_u->nam_u->str_c;
2014-09-11 04:01:32 +04:00
u3_sist_put("vote", (c3_y*)raf_u->vog_c, strlen(raf_u->vog_c));
2014-03-08 07:16:08 +04:00
uL(fprintf(uH, "raft: granting vote to %s\n", raf_u->vog_c));
2014-03-06 07:40:35 +04:00
_raft_send_rasp(ron_u, 1);
}
else _raft_send_rasp(ron_u, 0);
}
/* _raft_revo_done(): process RequestVote response.
*/
static void
2014-09-11 04:01:32 +04:00
_raft_revo_done(u3_rreq* req_u, c3_w suc_w)
2014-03-06 07:40:35 +04:00
{
2014-09-11 04:01:32 +04:00
u3_rcon* ron_u = req_u->ron_u;
u3_raft* raf_u = ron_u->raf_u;
2014-03-06 07:40:35 +04:00
c3_assert(c3__revo == req_u->msg_u->typ_w);
2014-03-13 05:22:43 +04:00
if ( suc_w && req_u->msg_u->tem_w == raf_u->tem_w ) {
2014-11-05 04:18:47 +03:00
if ( c3n == ron_u->nam_u->vog ) {
ron_u->nam_u->vog = c3y;
2014-03-10 23:18:18 +04:00
raf_u->vot_w++;
}
else {
uL(fprintf(uH, "XX raft: duplicate response for %s [tem:%d]\n",
ron_u->nam_u->str_c, raf_u->tem_w));
}
2014-03-06 07:40:35 +04:00
}
if ( raf_u->vot_w > raf_u->pop_w / 2 ) {
uL(fprintf(uH, "raft: got majority of %d for term %d\n",
raf_u->vot_w, raf_u->tem_w));
_raft_promote(raf_u);
}
2014-03-05 05:43:40 +04:00
}
2014-02-28 04:35:50 +04:00
/* _raft_do_rasp(): act on an incoming raft RPC response.
*/
2014-02-27 03:46:34 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_do_rasp(u3_rcon* ron_u, u3_rmsg* msg_u)
{
2014-09-11 04:01:32 +04:00
u3_raft* raf_u = ron_u->raf_u;
2014-03-06 07:40:35 +04:00
2014-03-05 05:43:40 +04:00
c3_assert(c3__rasp == msg_u->typ_w);
2014-02-27 03:46:34 +04:00
if ( 0 == ron_u->nam_u ) {
2014-03-06 07:40:35 +04:00
uL(fprintf(uH, "raft: invalid connection from unknown host\n"));
2014-02-27 03:46:34 +04:00
_raft_conn_dead(ron_u);
}
else {
2014-09-11 04:01:32 +04:00
u3_rreq* req_u = ron_u->out_u;
2014-03-06 07:40:35 +04:00
if ( !req_u ) {
uL(fprintf(uH, "raft: response with no request from %s\n",
ron_u->nam_u->str_c));
2014-03-06 07:40:35 +04:00
_raft_conn_dead(ron_u);
}
else {
switch ( req_u->msg_u->typ_w ) {
default: {
uL(fprintf(uH, "raft: bogus request type %x?!\n",
req_u->msg_u->typ_w));
c3_assert(0);
}
case c3__apen: {
_raft_apen_done(req_u, msg_u->rasp.suc_w);
break;
}
case c3__revo: {
_raft_revo_done(req_u, msg_u->rasp.suc_w);
break;
}
}
2014-03-07 04:04:52 +04:00
_raft_note_term(raf_u, msg_u->tem_w);
2014-03-06 07:40:35 +04:00
ron_u->out_u = req_u->nex_u;
if ( 0 == req_u->nex_u ) {
c3_assert(req_u == ron_u->tou_u);
ron_u->tou_u = 0;
}
_raft_rreq_free(req_u);
}
2014-02-27 03:46:34 +04:00
}
}
2014-09-11 04:01:32 +04:00
/* _raft_rmsg_read(): read a u3_rmsg from a buffer.
2014-03-05 05:43:40 +04:00
**
** Returns <0 on parse failure.
2014-03-06 03:38:06 +04:00
** Returns 0 on partial data.
** Returns bytes read on successful read.
2014-03-05 05:43:40 +04:00
**
** If successful, caller must eventually call _raft_free_rmsg() on msg_u.
2014-02-28 04:35:50 +04:00
*/
2014-03-05 05:43:40 +04:00
static ssize_t
2014-09-11 04:01:32 +04:00
_raft_rmsg_read(const u3_rbuf* buf_u, u3_rmsg* msg_u)
2014-02-27 03:46:34 +04:00
{
2014-03-05 05:43:40 +04:00
ssize_t red_i = 0;
2014-03-06 03:38:06 +04:00
c3_d ben_d;
2014-02-27 03:46:34 +04:00
2014-03-06 03:38:06 +04:00
if ( buf_u->len_w < sizeof(c3_w) + sizeof(c3_d) ) {
2014-03-05 05:43:40 +04:00
return 0;
}
2014-03-06 03:38:06 +04:00
memcpy(&msg_u->ver_w, buf_u->buf_y + red_i, sizeof(c3_w));
red_i += sizeof(c3_w);
2014-11-06 03:20:01 +03:00
if ( msg_u->ver_w != u3r_mug('a') ) {
2014-03-06 03:38:06 +04:00
uL(fprintf(uH, "raft: versions don't match: %x %x\n",
2014-11-06 03:20:01 +03:00
msg_u->ver_w, u3r_mug('a')));
2014-03-06 03:38:06 +04:00
return -1;
}
memcpy(&msg_u->len_d, buf_u->buf_y + red_i, sizeof(c3_d));
2014-03-05 05:43:40 +04:00
red_i += sizeof(c3_d);
2014-02-27 03:46:34 +04:00
2014-03-06 03:38:06 +04:00
if ( msg_u->len_d < 4 ) {
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: length too short (a) %llu\n", ( unsigned long long int) msg_u->len_d));
2014-03-05 05:43:40 +04:00
return -1;
}
2014-03-06 03:38:06 +04:00
ben_d = 4ULL * msg_u->len_d;
if ( buf_u->len_w < ben_d ) {
return 0;
2014-03-05 05:43:40 +04:00
}
2014-03-06 03:38:06 +04:00
if ( ben_d < red_i + 2 * sizeof(c3_w) ) {
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: length too short (b) %llu\n", (unsigned long long int) msg_u->len_d));
2014-03-06 03:38:06 +04:00
return -1;
2014-03-05 05:43:40 +04:00
}
memcpy(&msg_u->tem_w, buf_u->buf_y + red_i, sizeof(c3_w));
red_i += sizeof(c3_w);
memcpy(&msg_u->typ_w, buf_u->buf_y + red_i, sizeof(c3_w));
red_i += sizeof(c3_w);
switch ( msg_u->typ_w ) {
default: {
2014-03-06 03:38:06 +04:00
uL(fprintf(uH, "raft: unknown msg type %x\n", msg_u->typ_w));
2014-03-05 05:43:40 +04:00
return -1;
}
case c3__rasp: {
2014-03-06 03:38:06 +04:00
if ( ben_d < red_i + sizeof(c3_w) ) {
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: length too short (c) %llu\n", ( unsigned long long int)msg_u->len_d));
2014-03-06 03:38:06 +04:00
return -1;
2014-02-27 03:46:34 +04:00
}
2014-03-05 05:43:40 +04:00
memcpy(&msg_u->rasp.suc_w, buf_u->buf_y + red_i, sizeof(c3_w));
red_i += sizeof(c3_w);
break;
}
case c3__apen: case c3__revo: {
2014-03-06 03:38:06 +04:00
if ( ben_d < red_i + sizeof(c3_d) + 2 * sizeof(c3_w) ) {
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: length too short (d) %llu\n", ( unsigned long long int)msg_u->len_d));
2014-03-06 03:38:06 +04:00
return -1;
2014-03-05 05:43:40 +04:00
}
memcpy(&msg_u->rest.lai_d, buf_u->buf_y + red_i, sizeof(c3_d));
red_i += sizeof(c3_d);
memcpy(&msg_u->rest.lat_w, buf_u->buf_y + red_i, sizeof(c3_w));
red_i += sizeof(c3_w);
memcpy(&msg_u->rest.nam_w, buf_u->buf_y + red_i, sizeof(c3_w));
red_i += sizeof(c3_w);
2014-03-06 03:38:06 +04:00
if ( ben_d < red_i + 4 * msg_u->rest.nam_w ) {
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: length too short (e) %llu\n", ( unsigned long long int)msg_u->len_d));
2014-03-06 03:38:06 +04:00
return -1;
2014-03-05 05:43:40 +04:00
}
2014-04-02 04:47:01 +04:00
msg_u->rest.nam_c = c3_malloc(4 * msg_u->rest.nam_w);
2014-08-23 01:33:27 +04:00
strncpy(msg_u->rest.nam_c, (const char*)(buf_u->buf_y + red_i), 4 * msg_u->rest.nam_w + 1);
2014-03-06 03:38:06 +04:00
red_i += 4 * msg_u->rest.nam_w;
2014-03-05 05:43:40 +04:00
break;
}
}
2014-02-27 03:46:34 +04:00
2014-03-05 05:43:40 +04:00
if ( c3__apen == msg_u->typ_w ) {
2014-03-06 03:38:06 +04:00
if ( ben_d < red_i + 2 * sizeof(c3_d) ) {
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: length too short (f) %llu\n", ( unsigned long long int)msg_u->len_d));
2014-03-06 03:38:06 +04:00
red_i = -1;
2014-03-05 05:43:40 +04:00
goto fail;
}
memcpy(&msg_u->rest.apen.cit_d, buf_u->buf_y + red_i, sizeof(c3_d));
red_i += sizeof(c3_d);
memcpy(&msg_u->rest.apen.ent_d, buf_u->buf_y + red_i, sizeof(c3_d));
red_i += sizeof(c3_d);
2014-02-27 03:46:34 +04:00
2014-03-05 05:43:40 +04:00
msg_u->rest.apen.ent_u = calloc(
2014-09-11 04:01:32 +04:00
1, msg_u->rest.apen.ent_d * sizeof(u3_rent));
2014-03-05 05:43:40 +04:00
{
c3_d i_d;
2014-09-11 04:01:32 +04:00
u3_rent* ent_u = msg_u->rest.apen.ent_u;
2014-03-05 05:43:40 +04:00
for ( i_d = 0; i_d < msg_u->rest.apen.ent_d; i_d++ ) {
2014-03-06 03:38:06 +04:00
if ( ben_d < red_i + 3 * sizeof(c3_w) ) {
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: length too short (g) %llu\n", ( unsigned long long int)msg_u->len_d));
2014-03-06 03:38:06 +04:00
red_i = -1;
2014-03-05 05:43:40 +04:00
goto fail;
}
memcpy(&ent_u[i_d].tem_w, buf_u->buf_y + red_i, sizeof(c3_w));
red_i += sizeof(c3_w);
memcpy(&ent_u[i_d].typ_w, buf_u->buf_y + red_i, sizeof(c3_w));
red_i += sizeof(c3_w);
memcpy(&ent_u[i_d].len_w, buf_u->buf_y + red_i, sizeof(c3_w));
red_i += sizeof(c3_w);
2014-03-06 08:23:33 +04:00
if ( ben_d < red_i + 4 * ent_u[i_d].len_w ) {
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: length too short (h) %llu\n", ( unsigned long long int)msg_u->len_d));
2014-03-06 03:38:06 +04:00
red_i = -1;
goto fail;
2014-02-27 03:46:34 +04:00
}
2014-04-02 04:47:01 +04:00
ent_u[i_d].bob_w = c3_malloc(4 * ent_u[i_d].len_w);
2014-03-06 08:23:33 +04:00
memcpy(ent_u[i_d].bob_w, buf_u->buf_y + red_i, 4 * ent_u[i_d].len_w);
red_i += 4 * ent_u[i_d].len_w;
2014-03-05 05:43:40 +04:00
}
}
}
2014-03-06 03:38:06 +04:00
if ( red_i != ben_d ) {
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: sizes don't match r:%ld w:%llu\n", (long int) red_i, ( unsigned long long int)ben_d));
2014-03-05 05:43:40 +04:00
red_i = -1;
goto fail;
}
2014-02-27 03:46:34 +04:00
2014-03-05 05:43:40 +04:00
out:
return red_i;
fail:
_raft_rmsg_free(msg_u);
goto out;
}
/* _raft_rbuf_grow(): append data to the buffer, reallocating if needed.
**
** Returns new buffer location, as realloc.
*/
2014-09-11 04:01:32 +04:00
static u3_rbuf*
_raft_rbuf_grow(u3_rbuf* buf_u, const c3_y* buf_y, size_t siz_i)
2014-03-06 03:38:06 +04:00
{
if ( 0 == buf_u ) {
2014-04-02 04:47:01 +04:00
buf_u = c3_malloc(sizeof(*buf_u) + siz_i);
buf_u->len_w = 0;
buf_u->cap_w = siz_i;
}
2014-03-06 03:38:06 +04:00
if ( buf_u->cap_w < buf_u->len_w + siz_i ) {
c3_w cap_w = c3_max(2 * buf_u->cap_w, buf_u->len_w + siz_i);
buf_u = realloc(buf_u, sizeof(*buf_u) + cap_w);
buf_u->cap_w = cap_w;
2014-03-06 03:38:06 +04:00
}
memcpy(buf_u->buf_y + buf_u->len_w, buf_y, siz_i);
buf_u->len_w += siz_i;
return buf_u;
2014-03-06 03:38:06 +04:00
}
/* _raft_bytes_send():
*/
2014-03-06 03:38:06 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_bytes_send(u3_rcon* ron_u, const void* ptr_v, size_t siz_i)
2014-03-06 03:38:06 +04:00
{
ron_u->wri_u = _raft_rbuf_grow(ron_u->wri_u, ptr_v, siz_i);
2014-03-06 03:38:06 +04:00
}
2014-09-11 04:01:32 +04:00
/* _raft_rmsg_send(): send a u3_rmsg over the wire.
2014-03-06 03:38:06 +04:00
*/
static void
2014-09-11 04:01:32 +04:00
_raft_rmsg_send(u3_rcon* ron_u, const u3_rmsg* msg_u)
2014-03-06 03:38:06 +04:00
{
c3_d len_d = sizeof(c3_d) + 3 * sizeof(c3_w);
_raft_bytes_send(ron_u, &msg_u->ver_w, sizeof(c3_w));
_raft_bytes_send(ron_u, &msg_u->len_d, sizeof(c3_d));
_raft_bytes_send(ron_u, &msg_u->tem_w, sizeof(c3_w));
_raft_bytes_send(ron_u, &msg_u->typ_w, sizeof(c3_w));
2014-03-06 03:38:06 +04:00
switch ( msg_u->typ_w ) {
default: {
uL(fprintf(uH, "raft: send: unknown message type\n"));
c3_assert(0);
}
case c3__rasp: {
len_d += sizeof(c3_w);
_raft_bytes_send(ron_u, &msg_u->rasp.suc_w, sizeof(c3_w));
2014-03-06 03:38:06 +04:00
break;
}
case c3__apen: case c3__revo: {
len_d += sizeof(c3_d) + 2 * sizeof(c3_w) + 4 * msg_u->rest.nam_w;
_raft_bytes_send(ron_u, &msg_u->rest.lai_d, sizeof(c3_d));
_raft_bytes_send(ron_u, &msg_u->rest.lat_w, sizeof(c3_w));
_raft_bytes_send(ron_u, &msg_u->rest.nam_w, sizeof(c3_w));
_raft_bytes_send(ron_u, msg_u->rest.nam_c, 4 * msg_u->rest.nam_w);
2014-03-06 03:38:06 +04:00
break;
}
}
if ( c3__apen == msg_u->typ_w ) {
c3_d i_d;
2014-09-11 04:01:32 +04:00
u3_rent* ent_u = msg_u->rest.apen.ent_u;
2014-03-06 03:38:06 +04:00
len_d += 2 * sizeof(c3_d);
_raft_bytes_send(ron_u, &msg_u->rest.apen.cit_d, sizeof(c3_d));
_raft_bytes_send(ron_u, &msg_u->rest.apen.ent_d, sizeof(c3_d));
2014-03-06 03:38:06 +04:00
for ( i_d = 0; i_d < msg_u->rest.apen.ent_d; i_d++ ) {
len_d += 3 * sizeof(c3_w) + ent_u[i_d].len_w;
_raft_bytes_send(ron_u, &ent_u[i_d].tem_w, sizeof(c3_w));
_raft_bytes_send(ron_u, &ent_u[i_d].typ_w, sizeof(c3_w));
_raft_bytes_send(ron_u, &ent_u[i_d].len_w, sizeof(c3_w));
_raft_bytes_send(ron_u, ent_u[i_d].bob_w, ent_u[i_d].len_w);
2014-03-06 03:38:06 +04:00
}
}
2014-03-08 00:17:08 +04:00
//uL(fprintf(uH, "raft: sent %llu (%llu) [%x]\n",
// len_d, msg_u->len_d, msg_u->typ_w));
2014-03-07 05:25:53 +04:00
c3_assert(len_d == 4 * msg_u->len_d);
2014-03-06 03:38:06 +04:00
}
2014-09-11 04:01:32 +04:00
/* _raft_rmsg_free(): free a u3_rmsg's resources (but not the msg itself).
2014-03-07 23:48:06 +04:00
*/
2014-03-05 05:43:40 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_rmsg_free(u3_rmsg* msg_u) {
2014-03-05 05:43:40 +04:00
if ( c3__apen == msg_u->typ_w && msg_u->rest.apen.ent_u ) {
c3_d i_d;
for ( i_d = 0; i_d < msg_u->rest.apen.ent_d; i_d++ ) {
free(msg_u->rest.apen.ent_u[i_d].bob_w);
}
free(msg_u->rest.apen.ent_u);
msg_u->rest.apen.ent_u = 0;
}
if ( c3__apen == msg_u->typ_w || c3__revo == msg_u->typ_w ) {
free(msg_u->rest.nam_c);
msg_u->rest.nam_c = 0;
}
}
2014-03-07 23:48:06 +04:00
/* An unusual lameness in libuv.
*/
2014-09-11 04:01:32 +04:00
struct _u3_write_t {
uv_write_t wri_u;
c3_y* buf_y;
};
2014-03-07 23:48:06 +04:00
/* _raft_write_cb(): generic write callback.
*/
static void
_raft_write_cb(uv_write_t* wri_u, c3_i sas_i)
{
2014-09-11 04:01:32 +04:00
struct _u3_write_t* req_u = (struct _u3_write_t*)wri_u;
if ( 0 != sas_i ) {
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: write_cb: error\n"));
2014-09-11 04:01:32 +04:00
_raft_conn_dead((u3_rcon*)wri_u->handle);
}
free(req_u->buf_y);
free(req_u);
}
2014-03-05 05:43:40 +04:00
/* _raft_conn_work(): read and write requests and responses.
*/
static void
2014-09-11 04:01:32 +04:00
_raft_conn_work(u3_rcon* ron_u)
2014-03-05 05:43:40 +04:00
{
2014-11-05 04:18:47 +03:00
c3_assert(c3y == ron_u->liv);
if ( c3y == ron_u->red ) {
2014-03-06 03:38:06 +04:00
c3_assert(ron_u->red_u);
2014-11-05 04:18:47 +03:00
ron_u->red = c3n;
2014-03-05 05:43:40 +04:00
while (1) {
2014-09-11 04:01:32 +04:00
u3_rmsg msg_u;
2014-03-06 03:38:06 +04:00
ssize_t ret_i = _raft_rmsg_read(ron_u->red_u, &msg_u);
2014-03-05 05:43:40 +04:00
if ( ret_i < 0 ) {
2014-03-06 03:38:06 +04:00
if ( ron_u->nam_u ) {
uL(fprintf(uH, "raft: conn_work: error reading from %s\n",
ron_u->nam_u->str_c));
}
else {
uL(fprintf(uH, "raft: conn_work: error reading\n"));
}
_raft_conn_dead(ron_u);
break;
}
else if ( ret_i == 0 ) {
2014-03-05 05:43:40 +04:00
break;
}
else {
2014-03-06 03:38:06 +04:00
if ( 4 * msg_u.len_d != ret_i ) {
uL(fprintf(uH, "raft: conn_work: lengths don't match\n"));
2014-03-05 05:43:40 +04:00
c3_assert(0);
}
2014-03-06 03:38:06 +04:00
else {
2014-03-05 05:43:40 +04:00
c3_assert(ron_u->red_u->len_w >= ret_i);
memmove(ron_u->red_u->buf_y,
ron_u->red_u->buf_y + ret_i,
ron_u->red_u->len_w - ret_i);
ron_u->red_u->len_w -= ret_i;
switch ( msg_u.typ_w ) {
default: {
2014-03-06 03:38:06 +04:00
uL(fprintf(uH, "raft: work: unknown message type %x\n",
msg_u.typ_w));
2014-03-05 05:43:40 +04:00
break;
}
case c3__apen: {
_raft_do_apen(ron_u, &msg_u);
break;
}
case c3__revo: {
_raft_do_revo(ron_u, &msg_u);
break;
}
case c3__rasp: {
_raft_do_rasp(ron_u, &msg_u);
break;
}
}
_raft_rmsg_free(&msg_u);
2014-02-27 03:46:34 +04:00
}
}
}
}
if ( ron_u->wri_u && ron_u->wri_u->len_w > 0 ) {
uv_buf_t buf_u;
2014-09-11 04:01:32 +04:00
struct _u3_write_t* req_u = c3_malloc(sizeof(*req_u));
2014-03-05 05:43:40 +04:00
2014-04-02 04:47:01 +04:00
req_u->buf_y = c3_malloc(ron_u->wri_u->len_w);
memcpy(req_u->buf_y, ron_u->wri_u->buf_y, ron_u->wri_u->len_w);
buf_u.base = (char*)req_u->buf_y;
buf_u.len = ron_u->wri_u->len_w;
2014-03-05 05:43:40 +04:00
2014-08-21 02:09:51 +04:00
c3_w ret_w;
if ( 0 != (ret_w = uv_write((uv_write_t*)req_u,
(uv_stream_t*)&ron_u->wax_u,
&buf_u,
1,
_raft_write_cb)) )
{
uL(fprintf(uH, "raft: conn_work (write): %s\n",
2014-08-21 02:09:51 +04:00
uv_strerror(ret_w)));
free(req_u->buf_y);
free(req_u);
}
else {
ron_u->wri_u->len_w = 0;
}
2014-03-05 05:43:40 +04:00
}
}
2014-02-28 04:35:50 +04:00
/* _raft_conn_read_cb(): generic connection read callback.
*/
2014-02-27 03:46:34 +04:00
static void
_raft_conn_read_cb(uv_stream_t* tcp_u,
ssize_t siz_i,
2014-08-21 02:09:51 +04:00
const uv_buf_t * buf_u)
2014-02-27 03:46:34 +04:00
{
2014-09-11 04:01:32 +04:00
u3_rcon* ron_u = (u3_rcon*)tcp_u;
2014-02-27 03:46:34 +04:00
2014-09-11 04:01:32 +04:00
u3_lo_open();
2014-02-27 03:46:34 +04:00
{
if ( siz_i < 0 ) {
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: read ERROR"));
2014-02-27 03:46:34 +04:00
_raft_conn_dead(ron_u);
}
2014-03-06 03:38:06 +04:00
else if ( siz_i == 0 ) {
// do nothing
}
2014-02-27 03:46:34 +04:00
else {
2014-11-05 04:18:47 +03:00
if ( c3y == ron_u->liv ) {
2014-08-21 02:09:51 +04:00
ron_u->red_u = _raft_rbuf_grow(ron_u->red_u, (c3_y*)buf_u->base, siz_i);
2014-11-05 04:18:47 +03:00
ron_u->red = c3y;
2014-03-07 05:25:53 +04:00
_raft_conn_work(ron_u);
}
else uL(fprintf(uH, "XX raft: read on dead conn %p\n", ron_u));
2014-02-27 03:46:34 +04:00
}
}
2014-08-21 02:09:51 +04:00
free(buf_u->base);
2014-11-05 04:18:47 +03:00
u3_lo_shut(c3n);
2014-02-27 03:46:34 +04:00
}
2014-02-28 04:35:50 +04:00
/* _raft_conn_new(): allocate a new raft connection.
*/
2014-09-11 04:01:32 +04:00
static u3_rcon*
_raft_conn_new(u3_raft* raf_u)
2014-02-27 03:46:34 +04:00
{
2014-09-11 04:01:32 +04:00
u3_rcon* ron_u = c3_malloc(sizeof(*ron_u));
2014-02-27 03:46:34 +04:00
2014-09-11 04:01:32 +04:00
uv_tcp_init(u3L, &ron_u->wax_u);
2014-03-05 05:43:40 +04:00
ron_u->red_u = 0;
ron_u->out_u = ron_u->tou_u = 0;
ron_u->red_u = 0;
2014-11-05 04:18:47 +03:00
ron_u->red = c3n;
ron_u->wri_u = 0;
2014-03-03 23:30:00 +04:00
ron_u->nam_u = 0;
ron_u->raf_u = raf_u;
ron_u->nex_u = 0;
2014-11-05 04:18:47 +03:00
ron_u->liv = c3n;
2014-02-27 03:46:34 +04:00
2014-03-03 23:30:00 +04:00
return ron_u;
2014-02-27 03:46:34 +04:00
}
2014-02-28 04:35:50 +04:00
/* _raft_remove_run(): remove a connection from the list of unknowns.
*/
2014-11-06 06:10:22 +03:00
static u3_noun
2014-09-11 04:01:32 +04:00
_raft_remove_run(u3_rcon* ron_u)
2014-02-27 03:46:34 +04:00
{
2014-09-11 04:01:32 +04:00
u3_raft* raf_u = ron_u->raf_u;
2014-11-06 06:10:22 +03:00
u3_noun suc = c3n;
2014-02-27 03:46:34 +04:00
if ( raf_u->run_u == ron_u ) {
raf_u->run_u = ron_u->nex_u;
2014-11-05 04:18:47 +03:00
suc = c3y;
2014-02-27 03:46:34 +04:00
}
else {
2014-09-11 04:01:32 +04:00
u3_rcon* pre_u = raf_u->run_u;
2014-02-27 03:46:34 +04:00
while ( pre_u ) {
if ( pre_u->nex_u == ron_u ) {
pre_u->nex_u = ron_u->nex_u;
2014-11-05 04:18:47 +03:00
suc = c3y;
2014-02-27 03:46:34 +04:00
break;
}
else pre_u = pre_u->nex_u;
}
}
2014-03-03 23:30:00 +04:00
return suc;
2014-02-27 03:46:34 +04:00
}
2014-09-11 04:01:32 +04:00
static u3_rreq*
_raft_rreq_new(u3_rcon* ron_u)
2014-03-06 03:38:06 +04:00
{
2014-09-11 04:01:32 +04:00
u3_rreq* req_u = c3_malloc(sizeof(*req_u));
2014-03-06 03:38:06 +04:00
2014-04-02 04:47:01 +04:00
req_u->msg_u = c3_malloc(sizeof(*req_u->msg_u));
2014-03-06 03:38:06 +04:00
req_u->nex_u = 0;
req_u->ron_u = ron_u;
if ( ron_u->tou_u ) {
c3_assert(ron_u->out_u);
ron_u->tou_u->nex_u = req_u;
ron_u->tou_u = req_u;
}
else {
c3_assert(0 == ron_u->out_u);
ron_u->tou_u = ron_u->out_u = req_u;
}
return req_u;
}
2014-03-05 05:43:40 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_rreq_free(u3_rreq* req_u)
2014-03-05 05:43:40 +04:00
{
2014-03-06 07:40:35 +04:00
_raft_rmsg_free(req_u->msg_u);
free(req_u->msg_u); // XX
free(req_u);
2014-03-05 05:43:40 +04:00
}
2014-02-28 04:35:50 +04:00
/* _raft_conn_free(): unlink a connection and free its resources.
*/
2014-02-27 03:46:34 +04:00
static void
_raft_conn_free(uv_handle_t* had_u)
{
2014-09-11 04:01:32 +04:00
u3_rcon* ron_u = (void*)had_u;
u3_raft* raf_u = ron_u->raf_u;
2014-02-27 03:46:34 +04:00
2014-03-03 23:34:20 +04:00
//uL(fprintf(uH, "raft: conn_free %p\n", ron_u));
2014-03-07 05:25:53 +04:00
// Unlink references.
if ( ron_u->nam_u ) {
2014-11-05 04:18:47 +03:00
c3_assert(c3n == _raft_remove_run(ron_u));
2014-03-07 05:25:53 +04:00
if ( ron_u->nam_u->ron_u == ron_u ) {
ron_u->nam_u->ron_u = 0;
}
}
else {
2014-11-06 06:10:22 +03:00
u3_noun suc = _raft_remove_run(ron_u);
2014-11-05 04:18:47 +03:00
c3_assert(c3y == suc);
2014-03-07 05:25:53 +04:00
// Slow, expensive debug assert.
{
2014-09-11 04:01:32 +04:00
u3_rnam* nam_u = raf_u->nam_u;
2014-03-07 05:25:53 +04:00
while ( nam_u ) {
c3_assert(nam_u->ron_u != ron_u);
nam_u = nam_u->nex_u;
}
}
}
// Free requests.
2014-03-06 07:40:35 +04:00
{
2014-09-11 04:01:32 +04:00
u3_rreq* req_u = ron_u->out_u;
2014-03-06 07:40:35 +04:00
if ( 0 == req_u ) {
c3_assert(0 == ron_u->tou_u);
}
else {
while ( req_u ) {
if ( 0 == req_u->nex_u ) {
c3_assert(req_u == ron_u->tou_u);
}
ron_u->out_u = req_u->nex_u;
_raft_rreq_free(req_u);
req_u = ron_u->out_u;
}
}
}
2014-03-06 03:38:06 +04:00
free(ron_u->red_u);
free(ron_u->wri_u);
2014-02-27 03:46:34 +04:00
free(ron_u);
}
2014-02-28 04:35:50 +04:00
/* _raft_conn_dead(): kill a connection.
*/
2014-02-27 03:46:34 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_conn_dead(u3_rcon* ron_u)
2014-02-27 03:46:34 +04:00
{
2014-11-05 04:18:47 +03:00
if ( c3n == ron_u->liv ) {
//uL(fprintf(uH, "raft: conn already dead %p\n", ron_u));
return;
}
2014-03-06 03:38:06 +04:00
else {
2014-03-08 01:24:33 +04:00
uL(fprintf(uH, "raft: conn_dead %p\n", ron_u));
2014-11-05 04:18:47 +03:00
ron_u->liv = c3n;
2014-03-06 03:38:06 +04:00
}
2014-03-07 05:25:53 +04:00
uv_read_stop((uv_stream_t*)&ron_u->wax_u);
2014-02-27 03:46:34 +04:00
uv_close((uv_handle_t*)&ron_u->wax_u, _raft_conn_free);
}
2014-02-28 04:35:50 +04:00
/* _raft_listen_cb(): generic listen callback.
*/
2014-02-27 03:46:34 +04:00
static void
_raft_listen_cb(uv_stream_t* str_u, c3_i sas_i)
{
2014-09-11 04:01:32 +04:00
u3_raft* raf_u = (u3_raft*)str_u;
2014-02-27 03:46:34 +04:00
if ( 0 != sas_i ) {
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: listen_cb: error\n"));
2014-02-27 03:46:34 +04:00
}
else {
2014-09-11 04:01:32 +04:00
u3_rcon* ron_u = _raft_conn_new(raf_u);
2014-03-03 23:30:00 +04:00
if ( 0 != uv_accept((uv_stream_t*)&raf_u->wax_u,
(uv_stream_t*)&ron_u->wax_u) )
{
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: accept: error\n"));
2014-03-03 23:30:00 +04:00
uv_close((uv_handle_t*)&ron_u->wax_u, 0);
free(ron_u);
}
else {
2014-11-05 04:18:47 +03:00
ron_u->liv = c3y;
2014-03-03 23:30:00 +04:00
uv_read_start((uv_stream_t*)&ron_u->wax_u,
_raft_alloc,
_raft_conn_read_cb);
ron_u->nex_u = raf_u->run_u;
raf_u->run_u = ron_u;
}
2014-02-27 03:46:34 +04:00
}
}
2014-03-01 01:22:11 +04:00
/* _raft_connect_cb(): generic connection callback.
*/
static void
_raft_connect_cb(uv_connect_t* con_u, c3_i sas_i)
{
2014-09-11 04:01:32 +04:00
u3_rcon* ron_u = con_u->data;
2014-03-01 01:22:11 +04:00
free(con_u);
if ( 0 != sas_i ) {
2014-03-08 07:11:22 +04:00
uL(fprintf(uH, "raft: connect_cb: %s\n",
2014-08-21 02:09:51 +04:00
uv_strerror(sas_i)));
2014-03-08 07:11:22 +04:00
uv_close((uv_handle_t*)&ron_u->wax_u, _raft_conn_free);
2014-03-01 01:22:11 +04:00
}
else {
c3_assert(ron_u->nam_u);
uL(fprintf(uH, "raft: connected to %s\n", ron_u->nam_u->str_c));
2014-11-05 04:18:47 +03:00
ron_u->liv = c3y;
2014-03-06 05:47:22 +04:00
uv_read_start((uv_stream_t*)&ron_u->wax_u,
_raft_alloc,
_raft_conn_read_cb);
2014-03-01 01:22:11 +04:00
_raft_conn_work(ron_u);
}
}
/* _raft_getaddrinfo_cb(): generic getaddrinfo callback.
2014-02-28 04:35:50 +04:00
*/
2014-02-27 03:46:34 +04:00
static void
2014-03-01 00:30:06 +04:00
_raft_getaddrinfo_cb(uv_getaddrinfo_t* raq_u,
2014-02-27 03:46:34 +04:00
c3_i sas_i,
struct addrinfo* add_u)
{
2014-03-01 00:30:06 +04:00
struct addrinfo* res_u;
2014-04-02 04:47:01 +04:00
uv_connect_t* con_u = c3_malloc(sizeof(*con_u));
2014-09-11 04:01:32 +04:00
u3_rcon* ron_u = raq_u->data;
2014-03-01 00:30:06 +04:00
2014-03-06 03:38:06 +04:00
//uL(fprintf(uH, "getaddrinfo_cb %s\n", ron_u->nam_u->nam_c));
2014-03-01 23:55:46 +04:00
2014-03-01 01:22:11 +04:00
con_u->data = ron_u;
2014-03-01 00:30:06 +04:00
for ( res_u = add_u; res_u; res_u = res_u->ai_next ) {
2014-03-01 01:22:11 +04:00
if ( 0 != uv_tcp_connect(con_u,
&ron_u->wax_u,
2014-08-21 02:09:51 +04:00
(const struct sockaddr*)res_u->ai_addr,
2014-03-01 00:30:06 +04:00
_raft_connect_cb) )
{
2014-03-01 01:22:11 +04:00
uL(fprintf(uH, "raft: getaddrinfo_cb: %s\n",
2014-08-21 02:09:51 +04:00
uv_strerror(sas_i)));
2014-03-01 01:22:11 +04:00
uv_close((uv_handle_t*)&ron_u->wax_u, 0);
continue;
}
else {
2014-03-07 05:25:53 +04:00
#if 0
2014-03-01 23:55:46 +04:00
c3_c add_c[17] = {'\0'};
uv_ip4_name((struct sockaddr_in*)res_u->ai_addr, add_c, 16);
uL(fprintf(uH, "raft: conn %s\n", add_c));
2014-03-07 05:25:53 +04:00
#endif
2014-03-01 01:22:11 +04:00
break; // Found one
2014-03-01 00:30:06 +04:00
}
}
2014-03-01 23:55:46 +04:00
if ( !res_u ) {
uL(fprintf(uH, "raft: getaddrinfo_cb: no address matched\n"));
2014-03-03 23:30:00 +04:00
_raft_conn_free((uv_handle_t*)&ron_u->wax_u);
free(con_u);
2014-03-01 23:55:46 +04:00
}
2014-03-01 01:22:11 +04:00
uv_freeaddrinfo(add_u);
free(raq_u);
2014-02-27 03:46:34 +04:00
}
2014-02-28 04:35:50 +04:00
/* _raft_conn_all(): ensure that we are connected to each peer.
*/
2014-02-27 03:46:34 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_conn_all(u3_raft* raf_u, void (*con_f)(u3_rcon* ron_u))
2014-02-27 03:46:34 +04:00
{
2014-09-11 04:01:32 +04:00
u3_rnam* nam_u = raf_u->nam_u;
u3_rcon* ron_u;
2014-02-27 03:46:34 +04:00
while ( nam_u ) {
2014-11-05 04:18:47 +03:00
if ( 0 == nam_u->ron_u || c3n == nam_u->ron_u->liv ) {
2014-02-27 03:46:34 +04:00
struct addrinfo hit_u;
2014-04-02 04:47:01 +04:00
uv_getaddrinfo_t* raq_u = c3_malloc(sizeof(*raq_u));
2014-02-27 03:46:34 +04:00
2014-03-07 05:25:53 +04:00
ron_u = _raft_conn_new(raf_u);
//uL(fprintf(uH, "raft: new conn to %s:%s %p\n",
// nam_u->nam_c, nam_u->por_c, ron_u));
2014-03-01 23:55:46 +04:00
2014-02-27 03:46:34 +04:00
memset(&hit_u, 0, sizeof(hit_u));
2014-03-01 01:22:11 +04:00
hit_u.ai_family = AF_INET;
2014-02-27 03:46:34 +04:00
hit_u.ai_socktype = SOCK_STREAM;
2014-03-01 23:55:46 +04:00
hit_u.ai_protocol = IPPROTO_TCP;
2014-02-27 03:46:34 +04:00
raq_u->data = ron_u;
2014-08-21 02:09:51 +04:00
int ret;
2014-09-11 04:01:32 +04:00
if ( 0 != (ret = uv_getaddrinfo(u3L,
2014-02-27 03:46:34 +04:00
raq_u,
_raft_getaddrinfo_cb,
nam_u->nam_c,
2014-03-01 23:55:46 +04:00
nam_u->por_c,
2014-08-21 02:09:51 +04:00
&hit_u) ))
2014-02-27 03:46:34 +04:00
{
uL(fprintf(uH, "raft: getaddrinfo: %s\n",
2014-08-21 02:09:51 +04:00
uv_strerror(ret)));
2014-02-27 03:46:34 +04:00
uv_close((uv_handle_t*)&ron_u->wax_u, 0);
free(raq_u);
free(ron_u);
c3_assert(0);
}
else {
ron_u->nam_u = nam_u;
nam_u->ron_u = ron_u;
}
con_f(nam_u->ron_u);
2014-02-27 03:46:34 +04:00
}
2014-03-03 23:30:00 +04:00
else {
2014-03-03 23:34:20 +04:00
//uL(fprintf(uH, "raft: existing connection %p for %s\n",
// nam_u->ron_u, nam_u->str_c));
con_f(nam_u->ron_u);
2014-11-05 04:18:47 +03:00
if ( c3y == nam_u->ron_u->liv ) {
_raft_conn_work(nam_u->ron_u);
}
2014-03-03 23:30:00 +04:00
}
2014-02-27 03:46:34 +04:00
nam_u = nam_u->nex_u;
}
}
2014-09-11 04:01:32 +04:00
/* _raft_write_base(): Populate the base fields of a u3_rmsg.
2014-03-06 22:18:36 +04:00
**
** Should not be called directly.
*/
2014-03-06 07:40:35 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_write_base(u3_rcon* ron_u, u3_rmsg* msg_u)
2014-03-06 07:40:35 +04:00
{
2014-09-11 04:01:32 +04:00
u3_raft* raf_u = ron_u->raf_u;
2014-03-06 07:40:35 +04:00
2014-11-06 03:20:01 +03:00
msg_u->ver_w = u3r_mug('a');
2014-03-06 08:23:33 +04:00
msg_u->tem_w = raf_u->tem_w;
msg_u->len_d = 5;
2014-03-06 07:40:35 +04:00
}
2014-03-06 22:18:36 +04:00
/* _raft_write_rest(): Write fields for an RPC request to msg_u.
**
** Should not be called directly.
*/
2014-02-27 03:46:34 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_write_rest(u3_rcon* ron_u, c3_d lai_d, c3_w lat_w, u3_rmsg* msg_u)
2014-02-27 03:46:34 +04:00
{
2014-09-11 04:01:32 +04:00
u3_raft* raf_u = ron_u->raf_u;
2014-03-06 03:38:06 +04:00
c3_assert(ron_u->nam_u);
2014-03-06 22:18:36 +04:00
_raft_write_base(ron_u, msg_u);
2014-03-06 08:23:33 +04:00
msg_u->rest.lai_d = lai_d;
msg_u->rest.lat_w = lat_w;
2014-03-06 03:38:06 +04:00
msg_u->rest.nam_w = 1 + strlen(raf_u->str_c) / 4;
msg_u->rest.nam_c = calloc(1, 4 * msg_u->rest.nam_w);
2014-08-23 01:33:27 +04:00
strncpy(msg_u->rest.nam_c, raf_u->str_c, 4 * msg_u->rest.nam_w + 1);
2014-03-06 08:23:33 +04:00
msg_u->len_d += 4 + msg_u->rest.nam_w;
}
2014-03-06 03:38:06 +04:00
2014-03-06 22:18:36 +04:00
/* _raft_write_apen(): Write fields for an AppendEntries request.
*/
2014-03-06 08:23:33 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_write_apen(u3_rcon* ron_u,
2014-03-06 08:23:33 +04:00
c3_d lai_d, c3_w lat_w,
2014-09-11 04:01:32 +04:00
c3_d cit_d, c3_d ent_d, u3_rent* ent_u,
u3_rmsg* msg_u)
2014-03-06 08:23:33 +04:00
{
_raft_write_rest(ron_u, lai_d, lat_w, msg_u);
2014-03-06 22:18:36 +04:00
msg_u->typ_w = c3__apen;
2014-03-06 08:23:33 +04:00
msg_u->rest.apen.cit_d = cit_d;
msg_u->rest.apen.ent_d = ent_d;
msg_u->len_d += 4;
msg_u->rest.apen.ent_u = ent_u;
{
c3_d i_d;
for ( i_d = 0; i_d < ent_d; i_d++ ) {
msg_u->len_d += 3 + ent_u[i_d].len_w;
}
}
}
2014-03-06 22:18:36 +04:00
/* _raft_write_revo(): Write fields for a RequestVote request.
*/
2014-03-06 08:23:33 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_write_revo(u3_rcon* ron_u, u3_rmsg* msg_u)
2014-03-06 08:23:33 +04:00
{
2014-09-11 04:01:32 +04:00
u3_raft* raf_u = ron_u->raf_u;
2014-03-06 08:23:33 +04:00
2014-04-08 20:25:49 +04:00
_raft_write_rest(ron_u, raf_u->ent_d, raf_u->lat_w, msg_u);
2014-03-06 22:18:36 +04:00
msg_u->typ_w = c3__revo;
2014-03-06 08:23:33 +04:00
}
2014-03-06 22:18:36 +04:00
/* _raft_send_rasp(): Send a rasp (raft response) to a peer.
*/
2014-03-06 08:23:33 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_send_rasp(u3_rcon* ron_u, c3_t suc_t)
2014-03-06 08:23:33 +04:00
{
2014-09-11 04:01:32 +04:00
u3_rmsg msg_u;
2014-03-06 08:23:33 +04:00
2014-03-06 22:18:36 +04:00
_raft_write_base(ron_u, &msg_u);
msg_u.typ_w = c3__rasp;
2014-03-06 08:23:33 +04:00
msg_u.rasp.suc_w = suc_t;
msg_u.len_d += 1;
_raft_rmsg_send(ron_u, &msg_u);
2014-03-06 08:23:33 +04:00
}
2014-03-06 22:18:36 +04:00
/* _raft_send_beat(): send a heartbeat (empty AppendEntries) to a peer.
**
** Creates a new request.
2014-03-06 08:23:33 +04:00
*/
static void
2014-09-11 04:01:32 +04:00
_raft_send_beat(u3_rcon* ron_u)
2014-03-06 08:23:33 +04:00
{
2014-09-11 04:01:32 +04:00
u3_rreq* req_u = _raft_rreq_new(ron_u);
u3_rmsg* msg_u = req_u->msg_u;
2014-03-08 06:50:01 +04:00
c3_log_every(50, "raft: beat 50\n");
2014-03-06 08:23:33 +04:00
_raft_write_apen(ron_u, 0, 0, 0, 0, 0, msg_u);
_raft_rmsg_send(ron_u, msg_u);
2014-02-27 03:46:34 +04:00
}
2014-03-06 22:18:36 +04:00
/* _raft_send_revo(): send a RequestVote to a peer.
**
** Creates a new request.
2014-02-28 04:35:50 +04:00
*/
2014-02-27 03:46:34 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_send_revo(u3_rcon* ron_u)
2014-02-27 03:46:34 +04:00
{
2014-09-11 04:01:32 +04:00
u3_rreq* req_u = _raft_rreq_new(ron_u);
u3_rmsg* msg_u = req_u->msg_u;
2014-03-06 03:38:06 +04:00
2014-03-06 08:23:33 +04:00
_raft_write_revo(ron_u, msg_u);
_raft_rmsg_send(ron_u, msg_u);
2014-02-27 03:46:34 +04:00
}
2014-02-28 04:35:50 +04:00
/* _raft_start_election(): bump term, vote for self, solicit votes from peers.
*/
2014-02-27 03:46:34 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_start_election(u3_raft* raf_u)
2014-02-27 03:46:34 +04:00
{
2014-03-12 22:33:40 +04:00
c3_i sas_i;
c3_assert(0 == uv_is_active((uv_handle_t*)&raf_u->tim_u));
sas_i = uv_timer_start(&raf_u->tim_u, _raft_time_cb,
_raft_election_rand(), 0);
c3_assert(sas_i == 0);
2014-02-27 03:46:34 +04:00
raf_u->tem_w++;
2014-09-11 04:01:32 +04:00
u3_sist_put("term", (c3_y*)&raf_u->tem_w, sizeof(c3_w));
2014-02-27 03:46:34 +04:00
uL(fprintf(uH, "raft: starting election [tem:%d]\n", raf_u->tem_w));
2014-03-10 23:18:18 +04:00
{
2014-09-11 04:01:32 +04:00
u3_rnam* nam_u;
2014-03-10 23:18:18 +04:00
for ( nam_u = raf_u->nam_u; nam_u; nam_u = nam_u->nex_u ) {
2014-11-05 04:18:47 +03:00
nam_u->vog = c3n;
2014-03-10 23:18:18 +04:00
}
}
2014-02-27 03:46:34 +04:00
raf_u->vot_w = 1;
2014-03-12 22:03:36 +04:00
raf_u->vog_c = raf_u->str_c;
2014-09-11 04:01:32 +04:00
u3_sist_put("vote", (c3_y*)raf_u->vog_c, strlen(raf_u->vog_c));
2014-02-27 03:46:34 +04:00
_raft_conn_all(raf_u, _raft_send_revo);
}
2014-02-28 04:35:50 +04:00
/* _raft_heartbeat(): send a heartbeat to all peers.
*/
2014-02-27 03:46:34 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_heartbeat(u3_raft* raf_u)
2014-02-27 03:46:34 +04:00
{
_raft_conn_all(raf_u, _raft_send_beat);
}
2014-02-28 04:35:50 +04:00
/* _raft_time_cb(): generic timer callback.
**
** Called on election timeouts for non-leaders, and at heartbeat interval for
** leaders.
*/
static void
2014-08-21 02:09:51 +04:00
_raft_time_cb(uv_timer_t* tim_u)
{
2014-09-11 04:01:32 +04:00
u3_raft* raf_u = tim_u->data;
2014-03-03 23:34:20 +04:00
//uL(fprintf(uH, "raft: time\n"));
2014-02-27 03:46:34 +04:00
switch ( raf_u->typ_e ) {
default: {
uL(fprintf(uH, "raft: time_cb: unknown server state\n"));
c3_assert(0);
}
2014-09-11 04:01:32 +04:00
case u3_raty_foll: {
2014-03-12 23:06:50 +04:00
uL(fprintf(uH, "raft: foll -> cand\n"));
2014-09-11 04:01:32 +04:00
raf_u->typ_e = u3_raty_cand;
2014-02-27 03:46:34 +04:00
// continue to cand
}
2014-09-11 04:01:32 +04:00
case u3_raty_cand: {
2014-02-27 03:46:34 +04:00
_raft_start_election(raf_u);
break;
}
2014-09-11 04:01:32 +04:00
case u3_raty_lead: {
2014-02-27 03:46:34 +04:00
_raft_heartbeat(raf_u);
break;
}
}
}
/* _raft_foll_init(): begin, follower mode.
*/
static void
2014-09-11 04:01:32 +04:00
_raft_foll_init(u3_raft* raf_u)
{
2014-03-12 23:06:50 +04:00
uL(fprintf(uH, "raft: none -> foll\n"));
2014-09-11 04:01:32 +04:00
raf_u->typ_e = u3_raty_foll;
// Initialize and count peers.
{
2014-09-11 04:01:32 +04:00
u3_rnam* nam_u = u3_raft_readopt(u3_Host.ops_u.raf_c,
u3_Host.ops_u.nam_c,
u3_Host.ops_u.rop_s);
if ( 0 == nam_u ) {
2014-09-11 04:01:32 +04:00
uL(fprintf(uH, "raft: couldn't parse arg '%s'\n", u3_Host.ops_u.raf_c));
u3_lo_bail();
}
raf_u->pop_w = 1; raf_u->nam_u = nam_u;
while ( nam_u ) {
raf_u->pop_w++; nam_u = nam_u->nex_u;
}
}
// Set our name.
{
c3_i wri_i, siz_i;
2014-09-11 04:01:32 +04:00
siz_i = strlen(u3_Host.ops_u.nam_c) + strlen(":65536") + 1;
2014-04-02 04:47:01 +04:00
raf_u->str_c = c3_malloc(siz_i);
wri_i = snprintf(raf_u->str_c, siz_i, "%s:%d",
2014-09-11 04:01:32 +04:00
u3_Host.ops_u.nam_c, u3_Host.ops_u.rop_s);
c3_assert(wri_i < siz_i);
}
2014-03-12 22:03:36 +04:00
// Load persisted settings.
{
c3_w tem_w = 0;
c3_c* vog_c = 0;
c3_i ret_i;
2014-09-11 04:01:32 +04:00
if ( (ret_i = u3_sist_has("term")) >= 0 ) {
2014-03-12 22:03:36 +04:00
c3_assert(sizeof(c3_w) == ret_i);
2014-09-11 04:01:32 +04:00
u3_sist_get("term", (c3_y*)&tem_w);
2014-03-12 22:03:36 +04:00
uL(fprintf(uH, "raft: term from sist: %u\n", tem_w));
}
2014-09-11 04:01:32 +04:00
if ( (ret_i = u3_sist_has("vote")) >= 0 ) {
2014-03-12 22:03:36 +04:00
c3_assert(ret_i > 0);
2014-04-02 04:47:01 +04:00
vog_c = c3_malloc(ret_i);
2014-09-11 04:01:32 +04:00
u3_sist_get("vote", (c3_y*)vog_c);
2014-03-12 22:03:36 +04:00
uL(fprintf(uH, "raft: vote from sist: %s\n", vog_c));
}
raf_u->tem_w = tem_w;
if ( vog_c ) {
if ( 0 == strcmp(vog_c, raf_u->str_c) ) {
raf_u->vog_c = raf_u->str_c;
raf_u->vot_w = 1;
2014-09-11 04:01:32 +04:00
raf_u->typ_e = u3_raty_cand;
2014-03-12 22:03:36 +04:00
}
else {
2014-09-11 04:01:32 +04:00
u3_rnam* nam_u;
2014-03-12 22:03:36 +04:00
for ( nam_u = raf_u->nam_u; nam_u; nam_u = nam_u->nex_u ) {
if ( 0 == strcmp(vog_c, nam_u->str_c) ) {
raf_u->vog_c = nam_u->str_c;
break;
}
}
if ( 0 == nam_u ) {
uL(fprintf(uH, "raft: discarding unknown vote %s\n", vog_c));
}
}
free(vog_c);
}
2014-03-08 07:25:03 +04:00
}
// Bind the listener.
{
2014-08-21 02:09:51 +04:00
struct sockaddr_in add_u;
c3_w ret_w;
2014-09-11 04:01:32 +04:00
if (0 != (ret_w = uv_ip4_addr("0.0.0.0", u3_Host.ops_u.rop_s, &add_u ))){
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: init: %s\n", uv_strerror(ret_w)));
c3_assert(0);
}
2014-09-11 04:01:32 +04:00
if ( 0 != (ret_w = uv_tcp_init(u3L, &raf_u->wax_u)) ) {
2014-08-21 02:09:51 +04:00
uL(fprintf(uH, "raft: init: %s\n", uv_strerror(ret_w)));
c3_assert(0);
}
2014-08-21 02:09:51 +04:00
if ( 0 != (ret_w = uv_tcp_bind(&raf_u->wax_u, (struct sockaddr *) & add_u, 0)) ) {
uL(fprintf(uH, "raft: bind: %s\n", uv_strerror(ret_w)));
c3_assert(0);
}
2014-08-21 02:09:51 +04:00
if ( 0 != (ret_w = uv_listen((uv_stream_t*)&raf_u->wax_u, 16, _raft_listen_cb)) ) {
uL(fprintf(uH, "raft: listen: %s\n", uv_strerror(ret_w)));
c3_assert(0);
}
else {
2014-09-11 04:01:32 +04:00
uL(fprintf(uH, "raft: on TCP %d\n", u3_Host.ops_u.rop_s));
}
}
// Start the initial election timeout.
2014-03-08 04:47:30 +04:00
uv_timer_start(&raf_u->tim_u, _raft_time_cb, _raft_election_rand(), 0);
}
/* _raft_lone_init(): begin, single-instance mode.
*/
static void
2014-09-11 04:01:32 +04:00
_raft_lone_init(u3_raft* raf_u)
{
uL(fprintf(uH, "raft: single-instance mode\n"));
raf_u->pop_w = 1;
2014-03-01 02:52:00 +04:00
_raft_promote(raf_u);
}
2014-09-11 04:01:32 +04:00
/* u3_raft_init(): start Raft process.
2014-02-28 04:35:50 +04:00
*/
void
2014-09-11 04:01:32 +04:00
u3_raft_init()
{
2014-09-11 04:01:32 +04:00
u3_raft* raf_u = u3Z;
2014-03-06 07:40:35 +04:00
2014-03-08 04:47:30 +04:00
// Initialize timer -- used in both single and multi-instance mode,
// for different things.
2014-09-11 04:01:32 +04:00
uv_timer_init(u3L, &raf_u->tim_u);
2014-03-08 04:46:22 +04:00
raf_u->tim_u.data = raf_u;
2014-09-11 04:01:32 +04:00
if ( 0 == u3_Host.ops_u.raf_c ) {
_raft_lone_init(raf_u);
}
else {
_raft_foll_init(raf_u);
}
}
/* _raft_sure(): apply and save an input ovum and its result.
*/
static void
2014-09-11 04:01:32 +04:00
_raft_sure(u3_noun ovo, u3_noun vir, u3_noun cor)
{
// Whatever worked, save it. (XX - should be concurrent with execute.)
// We'd like more events that don't change the state but need work here.
{
2014-11-06 03:20:01 +03:00
u3r_mug(cor);
u3r_mug(u3A->roc);
2014-11-06 03:20:01 +03:00
if ( c3n == u3r_sing(cor, u3A->roc) ) {
2014-09-11 04:01:32 +04:00
u3A->roe = u3nc(u3nc(vir, ovo), u3A->roe);
2014-09-11 04:01:32 +04:00
u3z(u3A->roc);
u3A->roc = cor;
}
else {
2014-09-11 04:01:32 +04:00
u3z(ovo);
2014-08-21 02:09:51 +04:00
// push a new event into queue
2014-09-11 04:01:32 +04:00
u3A->roe = u3nc(u3nc(vir, u3_nul), u3A->roe);
2014-09-11 04:01:32 +04:00
u3z(cor);
}
}
}
/* _raft_lame(): handle an application failure.
*/
static void
2014-09-11 04:01:32 +04:00
_raft_lame(u3_noun ovo, u3_noun why, u3_noun tan)
{
2014-09-11 04:01:32 +04:00
u3_noun bov, gon;
2014-06-03 22:10:24 +04:00
#if 0
{
2014-11-06 03:20:01 +03:00
c3_c* oik_c = u3r_string(u3h(u3t(ovo)));
// uL(fprintf(uH, "lame: %s\n", oik_c));
free(oik_c);
}
#endif
// Formal error in a network packet generates a hole card.
//
// There should be a separate path for crypto failures,
// to prevent timing attacks, but isn't right now. To deal
// with a crypto failure, just drop the packet.
//
2014-09-11 04:01:32 +04:00
if ( (c3__exit == why) && (c3__hear == u3h(u3t(ovo))) ) {
2014-11-06 22:13:57 +03:00
u3_lo_punt(2, u3kb_flop(u3k(tan)));
2014-09-11 04:01:32 +04:00
bov = u3nc(u3k(u3h(ovo)), u3nc(c3__hole, u3k(u3t(u3t(ovo)))));
u3z(why);
u3z(tan);
}
else {
bov = u3nc(u3k(u3h(ovo)), u3nt(c3__crud, why, tan));
}
2014-09-11 04:01:32 +04:00
// u3_lo_show("data", u3k(u3t(u3t(ovo))));
2014-09-11 04:01:32 +04:00
u3z(ovo);
2014-11-06 03:20:01 +03:00
gon = u3m_soft(0, u3v_poke, u3k(bov));
2014-09-11 04:01:32 +04:00
if ( u3_blip == u3h(gon) ) {
_raft_sure(bov, u3k(u3h(u3t(gon))), u3k(u3t(u3t(gon))));
2014-09-11 04:01:32 +04:00
u3z(gon);
}
else {
2014-09-11 04:01:32 +04:00
u3z(gon);
{
2014-09-11 04:01:32 +04:00
u3_noun vab = u3nc(u3k(u3h(bov)),
2014-11-06 03:20:01 +03:00
u3nc(c3__warn, u3i_tape("crude crash!")));
u3_noun nog = u3m_soft(0, u3v_poke, u3k(vab));
2014-09-11 04:01:32 +04:00
if ( u3_blip == u3h(nog) ) {
_raft_sure(vab, u3k(u3h(u3t(nog))), u3k(u3t(u3t(nog))));
u3z(nog);
}
else {
2014-09-11 04:01:32 +04:00
u3z(nog);
u3z(vab);
uL(fprintf(uH, "crude: all delivery failed!\n"));
2014-11-06 22:13:57 +03:00
u3_lo_punt(2, u3kb_flop(u3k(tan)));
2014-07-24 19:11:40 +04:00
c3_assert(!"crud");
}
}
}
}
/* _raft_punk(): insert and apply an input ovum (unprotected).
*/
static void
2014-09-11 04:01:32 +04:00
_raft_punk(u3_noun ovo)
{
2014-05-30 22:43:48 +04:00
#ifdef GHETTO
2014-11-06 03:20:01 +03:00
c3_c* txt_c = u3r_string(u3h(u3t(ovo)));
2014-05-30 22:43:48 +04:00
#endif
c3_w sec_w;
// static c3_w num_w;
2014-09-11 04:01:32 +04:00
u3_noun gon;
2014-11-06 03:20:01 +03:00
// uL(fprintf(uH, "punk: %s: %d\n", u3r_string(u3h(u3t(ovo))), num_w++));
// XX this is wrong - the timer should be on the original hose.
//
if (c3__term == u3h(u3t(u3h(ovo)))) {
sec_w = 0;
2014-08-27 06:00:09 +04:00
} else sec_w = 600;
// Control alarm loops.
//
2014-09-11 04:01:32 +04:00
if ( c3__wake != u3h(u3t(ovo)) ) {
u3_Host.teh_u.run_w = 0;
}
2014-05-30 22:43:48 +04:00
#ifdef GHETTO
struct timeval b4, f2, d0;
gettimeofday(&b4, 0);
uL(fprintf(uH, "%%soft %s\n", txt_c));
2014-05-30 22:43:48 +04:00
#endif
2014-11-06 03:20:01 +03:00
gon = u3m_soft(sec_w, u3v_poke, u3k(ovo));
2014-05-30 22:43:48 +04:00
#ifdef GHETTO
2014-05-30 23:05:03 +04:00
c3_w ms_w;
2014-05-30 22:43:48 +04:00
gettimeofday(&f2, 0);
timersub(&f2, &b4, &d0);
2014-05-30 23:05:03 +04:00
ms_w = (d0.tv_sec * 1000) + (d0.tv_usec / 1000);
2014-05-30 23:47:47 +04:00
uL(fprintf(uH, "%%punk %s %d.%dms\n", txt_c, ms_w, (d0.tv_usec % 1000) / 10));
2014-05-30 22:43:48 +04:00
free(txt_c);
#endif
2014-09-11 04:01:32 +04:00
if ( u3_blip != u3h(gon) ) {
u3_noun why = u3k(u3h(gon));
u3_noun tan = u3k(u3t(gon));
2014-09-11 04:01:32 +04:00
u3z(gon);
_raft_lame(ovo, why, tan);
}
else {
2014-09-11 04:01:32 +04:00
u3_noun vir = u3k(u3h(u3t(gon)));
u3_noun cor = u3k(u3t(u3t(gon)));
u3_noun nug;
2014-09-11 04:01:32 +04:00
u3z(gon);
2014-11-06 03:20:01 +03:00
nug = u3v_nick(vir, cor);
2014-09-11 04:01:32 +04:00
if ( u3_blip != u3h(nug) ) {
u3_noun why = u3k(u3h(nug));
u3_noun tan = u3k(u3t(nug));
2014-09-11 04:01:32 +04:00
u3z(nug);
_raft_lame(ovo, why, tan);
}
else {
2014-09-11 04:01:32 +04:00
vir = u3k(u3h(u3t(nug)));
cor = u3k(u3t(u3t(nug)));
2014-09-11 04:01:32 +04:00
u3z(nug);
_raft_sure(ovo, vir, cor);
}
}
// uL(fprintf(uH, "punk oot %s\n", txt_c));
// free(txt_c);
}
2014-08-21 02:09:51 +04:00
static void
2014-09-11 04:01:32 +04:00
_raft_comm(c3_d bid_d)
{
2014-11-06 03:20:01 +03:00
u3p(u3v_cart) egg_p;
2014-09-11 04:01:32 +04:00
u3_lo_open();
2014-11-04 21:39:56 +03:00
egg_p = u3A->ova.egg_p;
while ( egg_p ) {
2014-11-06 03:20:01 +03:00
u3v_cart* egg_u = u3to(u3v_cart, egg_p);
2014-04-08 20:25:49 +04:00
if ( egg_u->ent_d <= bid_d ) {
2014-11-05 04:18:47 +03:00
egg_u->cit = c3y;
} else break;
2014-11-04 21:39:56 +03:00
egg_p = egg_u->nex_p;
}
2014-11-05 04:18:47 +03:00
u3_lo_shut(c3y);
}
static void
2014-08-21 02:09:51 +04:00
_raft_comm_cb(uv_timer_t* tim_u)
{
2014-09-11 04:01:32 +04:00
u3_raft* raf_u = tim_u->data;
2014-09-11 04:01:32 +04:00
_raft_comm(raf_u->ent_d);
}
2014-08-21 02:09:51 +04:00
2014-04-08 20:25:49 +04:00
static c3_d
2014-09-11 04:01:32 +04:00
_raft_push(u3_raft* raf_u, c3_w* bob_w, c3_w len_w)
{
2014-09-11 04:01:32 +04:00
c3_assert(raf_u->typ_e == u3_raty_lead);
c3_assert(0 != bob_w && 0 < len_w);
if ( 1 == raf_u->pop_w ) {
2014-09-11 04:01:32 +04:00
c3_assert(u3_raty_lead == raf_u->typ_e);
raf_u->ent_d = u3_sist_pack(raf_u->tem_w, c3__ov, bob_w, len_w);
2014-03-06 07:40:35 +04:00
raf_u->lat_w = raf_u->tem_w; // XX
if ( !uv_is_active((uv_handle_t*)&raf_u->tim_u) ) {
uv_timer_start(&raf_u->tim_u, _raft_comm_cb, 0, 0);
}
2014-04-08 20:25:49 +04:00
return raf_u->ent_d;
}
else {
2014-03-12 22:35:13 +04:00
// TODO
uL(fprintf(uH, "raft: multi-instance push\n"));
c3_assert(0);
}
}
2014-08-21 02:09:51 +04:00
/* _raft_kick_all(): kick a list of events, transferring.
*/
static void
2014-09-11 04:01:32 +04:00
_raft_kick_all(u3_noun vir)
{
2014-09-11 04:01:32 +04:00
while ( u3_nul != vir ) {
u3_noun ovo = u3k(u3h(vir));
u3_noun nex = u3k(u3t(vir));
u3z(vir); vir = nex;
2014-09-11 04:01:32 +04:00
u3_reck_kick(ovo);
}
}
2014-09-11 04:01:32 +04:00
/* u3_raft_work(): work.
*/
void
2014-09-11 04:01:32 +04:00
u3_raft_work(void)
{
2014-09-11 04:01:32 +04:00
if ( u3Z->typ_e != u3_raty_lead ) {
2014-11-04 21:39:56 +03:00
c3_assert(u3A->ova.egg_p == 0);
2014-09-11 04:01:32 +04:00
if ( u3_nul != u3A->roe ) {
2014-02-27 03:46:34 +04:00
uL(fprintf(uH, "raft: dropping roe!!\n"));
2014-09-11 04:01:32 +04:00
u3z(u3A->roe);
u3A->roe = u3_nul;
2014-02-27 03:46:34 +04:00
}
}
else {
2014-09-11 04:01:32 +04:00
u3_noun ova;
u3_noun vir;
u3_noun nex;
// Delete finished events.
//
2014-11-04 21:39:56 +03:00
while ( u3A->ova.egg_p ) {
2014-11-06 03:20:01 +03:00
u3p(u3v_cart) egg_p = u3A->ova.egg_p;
u3v_cart* egg_u = u3to(u3v_cart, u3A->ova.egg_p);
2014-11-05 04:18:47 +03:00
if ( c3y == egg_u->did ) {
vir = egg_u->vir;
2014-11-04 21:39:56 +03:00
if ( egg_p == u3A->ova.geg_p ) {
c3_assert(egg_u->nex_p == 0);
u3A->ova.geg_p = u3A->ova.egg_p = 0;
}
else {
2014-11-04 21:39:56 +03:00
c3_assert(egg_u->nex_p != 0);
u3A->ova.egg_p = egg_u->nex_p;
}
2014-11-05 04:18:47 +03:00
egg_u->cit = c3y;
2014-11-06 03:20:01 +03:00
u3a_free(egg_u);
}
else break;
}
2014-09-11 04:01:32 +04:00
// Poke pending events, leaving the poked events and errors on u3A->roe.
//
{
2014-09-11 04:01:32 +04:00
if ( 0 == u3Z->lug_u.len_d ) {
return;
}
2014-11-06 22:13:57 +03:00
ova = u3kb_flop(u3A->roe);
2014-09-11 04:01:32 +04:00
u3A->roe = u3_nul;
2014-09-11 04:01:32 +04:00
while ( u3_nul != ova ) {
_raft_punk(u3k(u3t(u3h(ova))));
c3_assert(u3_nul == u3h(u3h(ova)));
2014-09-11 04:01:32 +04:00
nex = u3k(u3t(ova));
u3z(ova); ova = nex;
}
}
// Cartify, jam, and encrypt this batch of events. Take a number, Raft will
// be with you shortly.
{
2014-04-08 20:25:49 +04:00
c3_d bid_d;
c3_w len_w;
c3_w* bob_w;
2014-09-11 04:01:32 +04:00
u3_noun ron;
u3_noun ovo;
2014-11-06 22:13:57 +03:00
ova = u3kb_flop(u3A->roe);
2014-09-11 04:01:32 +04:00
u3A->roe = u3_nul;
2014-09-11 04:01:32 +04:00
while ( u3_nul != ova ) {
ovo = u3k(u3t(u3h(ova)));
vir = u3k(u3h(u3h(ova)));
nex = u3k(u3t(ova));
u3z(ova); ova = nex;
2014-09-11 04:01:32 +04:00
if ( u3_nul != ovo ) {
2014-11-06 03:20:01 +03:00
u3v_cart* egg_u = u3a_malloc(sizeof(*egg_u));
u3p(u3v_cart) egg_p = u3of(u3v_cart, egg_u);
2014-11-04 21:39:56 +03:00
egg_u->nex_p = 0;
2014-11-05 04:18:47 +03:00
egg_u->cit = c3n;
egg_u->did = c3n;
egg_u->vir = vir;
2014-11-06 22:13:57 +03:00
ron = u3ke_jam(u3nc(u3k(u3A->now), ovo));
2014-09-11 04:01:32 +04:00
c3_assert(u3A->key);
2014-11-06 06:10:22 +03:00
ron = u3dc("en:crua", u3k(u3A->key), ron);
2014-11-06 03:20:01 +03:00
len_w = u3r_met(5, ron);
2014-04-02 04:47:01 +04:00
bob_w = c3_malloc(len_w * 4L);
2014-11-06 03:20:01 +03:00
u3r_words(0, len_w, bob_w, ron);
2014-09-11 04:01:32 +04:00
u3z(ron);
2014-09-11 04:01:32 +04:00
bid_d = _raft_push(u3Z, bob_w, len_w);
2014-04-08 20:25:49 +04:00
egg_u->ent_d = bid_d;
2014-11-04 21:39:56 +03:00
if ( 0 == u3A->ova.geg_p ) {
c3_assert(0 == u3A->ova.egg_p);
u3A->ova.geg_p = u3A->ova.egg_p = egg_p;
}
else {
2014-11-06 03:20:01 +03:00
c3_assert(0 == u3to(u3v_cart, u3A->ova.geg_p)->nex_p);
u3to(u3v_cart, u3A->ova.geg_p)->nex_p = egg_p;
2014-11-04 21:39:56 +03:00
u3A->ova.geg_p = egg_p;
}
2014-09-11 04:01:32 +04:00
_raft_kick_all(vir);
2014-11-05 04:18:47 +03:00
egg_u->did = c3y;
2014-10-10 05:27:02 +04:00
egg_u->vir = 0;
}
}
}
}
}