123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709 |
- /* vim: set expandtab ts=4 sw=4: */
- /*
- * You may redistribute this program and/or modify it under the terms of
- * the GNU General Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- #include "subnode/ReachabilityAnnouncer.h"
- #include "util/events/Timeout.h"
- #include "util/Identity.h"
- #include "util/events/Time.h"
- #include "wire/Announce.h"
- #include "crypto/AddressCalc.h"
- #include "crypto/Sign.h"
- #include "util/AddrTools.h"
- #include "crypto_hash_sha512.h"
- // This is the time between the timestamp of the newest message and the point where
- // snode and subnode agree to drop messages from the snode state.
- #define AGREED_TIMEOUT_MS (1000 * 60 * 60 * 20)
- #define ArrayList_TYPE struct Message
- #define ArrayList_NAME OfMessages
- #include "util/ArrayList.h"
- #define ArrayList_TYPE struct Announce_Peer
- #define ArrayList_NAME OfPeers
- #include "util/ArrayList.h"
- // -- Generic Functions -- //
- static struct Announce_Peer* peerFromMsg(struct Message* msg, uint8_t ip[16])
- {
- if (!msg) { return NULL; }
- struct Announce_Peer* p = NULL;
- do {
- p = Announce_Peer_next(msg, p);
- if (p && !Bits_memcmp(p->ipv6, ip, 16)) { return p; }
- } while (p);
- return NULL;
- }
- static struct Announce_Peer* peerFromLocalState(struct ArrayList_OfPeers* localState,
- uint8_t addr[16])
- {
- for (int i = 0; i < localState->length; i++) {
- struct Announce_Peer* peer = ArrayList_OfPeers_get(localState, i);
- if (!Bits_memcmp(peer->ipv6, addr, 16)) { return peer; }
- }
- return NULL;
- }
- static int64_t timestampFromMsg(struct Message* msg)
- {
- struct Announce_Header* hdr = (struct Announce_Header*) msg->bytes;
- Assert_true(msg->length >= Announce_Header_SIZE);
- return Announce_Header_getTimestamp(hdr);
- }
- static struct Announce_Peer* peerFromSnodeState(struct ArrayList_OfMessages* snodeState,
- uint8_t ip[16],
- int64_t sinceTime)
- {
- for (int i = snodeState->length - 1; i >= 0; i--) {
- struct Message* msg = ArrayList_OfMessages_get(snodeState, i);
- if (sinceTime && sinceTime <= timestampFromMsg(msg)) { return NULL; }
- struct Announce_Peer* p = peerFromMsg(msg, ip);
- if (p) { return p; }
- }
- return NULL;
- }
- // Calculate the sha512 of a message list where a given set of signed messages will corrispond
- // to a given hash.
- static void hashMsgList(struct ArrayList_OfMessages* msgList, uint8_t out[64])
- {
- uint8_t hash[64] = {0};
- for (int i = 0; i < msgList->length; i++) {
- struct Message* msg = ArrayList_OfMessages_get(msgList, i);
- Message_push(msg, hash, 64, NULL);
- crypto_hash_sha512(hash, msg->bytes, msg->length);
- Message_pop(msg, NULL, 64, NULL);
- }
- Bits_memcpy(out, hash, 64);
- }
- static int64_t estimateClockSkew(int64_t sentTime, int64_t snodeRecvTime, int64_t now)
- {
- // We estimate that the snode received our message at time: 1/2 the RTT
- int64_t halfRtt = sentTime + ((now - sentTime) / 2);
- return halfRtt - snodeRecvTime;
- }
- // We'll try to halve our estimated clock skew each RTT so on average it should eventually
- // target in on the exact skew. Ideal would be to use a rolling average such that one
- // screwy RTT has little effect but that's more work.
- static int64_t estimateImprovedClockSkew(int64_t sentTime,
- int64_t snodeRecvTime,
- int64_t now,
- int64_t lastSkew)
- {
- int64_t thisSkew = estimateClockSkew(sentTime, snodeRecvTime, now);
- int64_t skewDiff = thisSkew - lastSkew;
- return lastSkew + (skewDiff / 2);
- }
- // -- Context -- //
- // Depending on what news we have learned, we will adopt one of a set of possible states
- // whcih inform how often we contact our supernode. The numeric representation of the
- // state corrisponds to the number of milliseconds between messages to be sent to our
- // supernode.
- enum ReachabilityAnnouncer_State
- {
- // The message we build up from our local state is full, we obviously need to send it
- // asap in order that we can finish informing the snode of our peers.
- ReachabilityAnnouncer_State_MSGFULL = 500,
- // In this state we know how to reach the snode but we have no announced reachability
- // (so we are effectively offline) we have to announce quickly in order to be online.
- ReachabilityAnnouncer_State_FIRSTPEER = 1000,
- // We have just dropped a peer, we should announce quickly in order to help the snode
- // know that our link is dead.
- ReachabilityAnnouncer_State_PEERGONE = 6000,
- // We have picked up a new peer, we should announce moderately fast in order to make
- // sure that the snode picks the best path out of the possible options.
- ReachabilityAnnouncer_State_NEWPEER = 12000,
- // No new peers or dropped peers, we'll just send announcements at a low interval in
- // order to keep our snode up to date on latencies and drop percentages of different
- // links.
- ReachabilityAnnouncer_State_NORMAL = 60000
- };
- struct ReachabilityAnnouncer_pvt
- {
- struct ReachabilityAnnouncer pub;
- struct Timeout* announceCycle;
- struct Allocator* alloc;
- struct Log* log;
- struct EventBase* base;
- struct MsgCore* msgCore;
- struct Random* rand;
- struct SupernodeHunter* snh;
- struct EncodingScheme* myScheme;
- String* encodingSchemeStr;
- uint8_t signingKeypair[64];
- uint8_t pubSigningKey[32];
- struct ArrayList_OfPeers* localState;
- int64_t timeOfLastReply;
- // The cjdns clock is monotonic and is calibrated once on launch so clockSkew
- // will be reliable even if the machine also has NTP and NTP also changes the clock
- // clockSkew is literally the number of milliseconds which we believe our clock is ahead of
- // our supernode's clock.
- int64_t clockSkew;
- struct Address snode;
- // This is effectively a log which means we add messages to it as time goes but we remove
- // messages which are more than AGREED_TIMEOUT_MS (20 minutes) older than the most recent
- // message in the list (the one at the highest index). We also identify messages in the list
- // which update only peers that have been updated again since and we remove those as well.
- // IMPORTANT: The removal of messages from this list is using the same algorithm that is used
- // on the supernode and if it changes then they will desync and go into a reset
- // loop.
- struct ArrayList_OfMessages* snodeState;
- // This message has a head pad of size Announce_Header_SIZE but that pad is garbage
- // the point of the pad is so that it will work correctly with peerFromMsg()
- struct Message* nextMsg;
- struct Message* msgOnWire;
- // this is by our clock, not skewed to the snode time.
- int64_t msgOnWireSentTime;
- // If true then when we send nextMsg, it will be a state reset of the node.
- bool resetState;
- enum ReachabilityAnnouncer_State state;
- Identity
- };
- // -- "Methods" -- //
- static int64_t ourTime(struct ReachabilityAnnouncer_pvt* rap)
- {
- uint64_t now = Time_currentTimeMilliseconds(rap->base);
- Assert_true(!(now >> 63));
- return (int64_t) now;
- }
- static int64_t snTime(struct ReachabilityAnnouncer_pvt* rap)
- {
- return ourTime(rap) - rap->clockSkew;
- }
- // Insert or update the state information for a peer in a msgList
- #define updatePeer_NOOP 0
- #define updatePeer_ADD 1
- #define updatePeer_UPDATE 2
- #define updatePeer_ENOSPACE -1
- static int updatePeer(struct ReachabilityAnnouncer_pvt* rap,
- struct Announce_Peer* refPeer,
- int64_t sinceTime)
- {
- if (Defined(Log_DEBUG)) {
- uint8_t peerIpPrinted[40];
- AddrTools_printIp(peerIpPrinted, refPeer->ipv6);
- Log_debug(rap->log, "updatePeer [%s]", peerIpPrinted);
- }
- struct Announce_Peer* peer = peerFromMsg(rap->nextMsg, refPeer->ipv6);
- if (!peer) {
- // not in nextMsg
- } else if (Bits_memcmp(peer, refPeer, Announce_Peer_SIZE)) {
- // Already exists in the nextMsg but is different, update it.
- Bits_memcpy(peer, refPeer, Announce_Peer_SIZE);
- return updatePeer_UPDATE;
- } else {
- return updatePeer_NOOP;
- }
- peer = peerFromMsg(rap->msgOnWire, refPeer->ipv6);
- if (!peer) {
- peer = peerFromSnodeState(rap->snodeState, refPeer->ipv6, sinceTime);
- if (peer && !Bits_memcmp(peer, refPeer, Announce_Peer_SIZE)) {
- Log_debug(rap->log, "Peer found in snodeState, noop");
- return updatePeer_NOOP;
- } else if (peer) {
- Log_debug(rap->log, "Peer found in snodeState but needs update");
- } else {
- Log_debug(rap->log, "Peer not found in snodeState");
- }
- } else if (!Bits_memcmp(peer, refPeer, Announce_Peer_SIZE)) {
- Log_debug(rap->log, "Peer found in msgOnWire, noop");
- return updatePeer_NOOP;
- } else {
- Log_debug(rap->log, "Peer found in msgOnWire but needs update");
- }
- if (rap->nextMsg->length > 700) {
- Log_debug(rap->log, "nextMsg is too big to [%s] peer",
- peer ? "UPDATE" : "INSERT");
- return updatePeer_ENOSPACE;
- }
- Message_pop(rap->nextMsg, NULL, Announce_Header_SIZE, NULL);
- Message_push(rap->nextMsg, refPeer, Announce_Peer_SIZE, NULL);
- Message_push(rap->nextMsg, NULL, Announce_Header_SIZE, NULL);
- return (peer) ? updatePeer_UPDATE : updatePeer_ADD;
- }
- static void stateUpdate(struct ReachabilityAnnouncer_pvt* rap, enum ReachabilityAnnouncer_State st)
- {
- if (rap->state < st) { return; }
- rap->state = st;
- }
- static void removeLocalStatePeer(struct ReachabilityAnnouncer_pvt* rap, int i)
- {
- struct Announce_Peer* peer = ArrayList_OfPeers_remove(rap->localState, i);
- Allocator_realloc(rap->alloc, peer, 0);
- }
- static struct Announce_Peer* addLocalStatePeer(struct ReachabilityAnnouncer_pvt* rap,
- struct Announce_Peer* p)
- {
- struct Announce_Peer* peer = Allocator_clone(rap->alloc, p);
- ArrayList_OfPeers_add(rap->localState, peer);
- Log_debug(rap->log, "addLocalStatePeer() now [%u] peers", rap->localState->length);
- return peer;
- }
- static void loadAllState(struct ReachabilityAnnouncer_pvt* rap, bool assertNoChange)
- {
- Log_debug(rap->log, "loadAllState() [%u] peers", rap->localState->length);
- for (int i = rap->localState->length - 1; i >= 0; i--) {
- struct Announce_Peer* peer = ArrayList_OfPeers_get(rap->localState, i);
- int ret = updatePeer(rap, peer, 0);
- Assert_true(!assertNoChange || !ret);
- if (updatePeer_ENOSPACE == ret) {
- stateUpdate(rap, ReachabilityAnnouncer_State_MSGFULL);
- return;
- }
- }
- }
- static void setupNextMsg(struct ReachabilityAnnouncer_pvt* rap)
- {
- struct Allocator* msgAlloc = Allocator_child(rap->alloc);
- struct Message* nextMsg = Message_new(0, 1024, msgAlloc);
- Message_push(nextMsg, NULL, Announce_Header_SIZE, NULL);
- rap->nextMsg = nextMsg;
- }
- static void stateReset(struct ReachabilityAnnouncer_pvt* rap)
- {
- for (int i = rap->snodeState->length - 1; i >= 0; i--) {
- struct Message* msg = ArrayList_OfMessages_remove(rap->snodeState, i);
- Allocator_free(msg->alloc);
- }
- if (rap->nextMsg) {
- struct Message* nm = rap->nextMsg;
- setupNextMsg(rap);
- Assert_true(nm != rap->nextMsg);
- Allocator_free(nm->alloc);
- }
- if (rap->msgOnWire) {
- Allocator_free(rap->msgOnWire->alloc);
- rap->msgOnWire = NULL;
- }
- for (int i = rap->localState->length - 1; i >= 0; i--) {
- struct Announce_Peer* peer = ArrayList_OfPeers_get(rap->localState, i);
- if (!peer->label_be) { removeLocalStatePeer(rap, i); }
- }
- // we must force the state to FIRSTPEER
- //stateUpdate(rap, ReachabilityAnnouncer_State_FIRSTPEER);
- rap->state = ReachabilityAnnouncer_State_FIRSTPEER;
- loadAllState(rap, false);
- rap->resetState = true;
- }
- static void addServerStateMsg(struct ReachabilityAnnouncer_pvt* rap, struct Message* msg)
- {
- Assert_true(msg->length >= Announce_Header_SIZE);
- int64_t mostRecentTime = timestampFromMsg(msg);
- int64_t sinceTime = mostRecentTime - AGREED_TIMEOUT_MS;
- ArrayList_OfMessages_add(rap->snodeState, msg);
- // Filter completely redundant messages and messages older than sinceTime
- struct Allocator* tempAlloc = Allocator_child(rap->alloc);
- struct ArrayList_OfPeers* peerList = ArrayList_OfPeers_new(tempAlloc);
- for (int i = rap->snodeState->length - 1; i >= 0; i--) {
- bool redundant = true;
- struct Message* m = ArrayList_OfMessages_get(rap->snodeState, i);
- struct Announce_Peer* p;
- for (p = Announce_Peer_next(m, NULL); p; p = Announce_Peer_next(m, p)) {
- bool inList = false;
- for (int j = 0; j < peerList->length; j++) {
- struct Announce_Peer* knownPeer = ArrayList_OfPeers_get(peerList, j);
- if (!Bits_memcmp(knownPeer->ipv6, p->ipv6, 16)) {
- inList = true;
- break;
- }
- }
- if (!inList) {
- ArrayList_OfPeers_add(peerList, p);
- redundant = false;
- break;
- }
- }
- if (redundant) {
- ArrayList_OfMessages_remove(rap->snodeState, i);
- Allocator_free(m->alloc);
- // TODO(cjd): else if the peer is dropped...
- } else {
- // We should be adding back all of the peers necessary to make redundant anything older
- // than the most recent message, make sure that is the case.
- Assert_true(timestampFromMsg(m) >= sinceTime);
- }
- }
- Allocator_free(tempAlloc);
- }
- // -- Public -- //
- void ReachabilityAnnouncer_updatePeer(struct ReachabilityAnnouncer* ra,
- uint8_t ipv6[16],
- uint64_t pathThemToUs,
- uint64_t pathUsToThem,
- uint32_t mtu,
- uint16_t drops,
- uint16_t latency,
- uint16_t penalty)
- {
- struct ReachabilityAnnouncer_pvt* rap = Identity_check((struct ReachabilityAnnouncer_pvt*) ra);
- uint8_t ipPrinted[40];
- AddrTools_printIp(ipPrinted, ipv6);
- Log_debug(rap->log, "Update peer [%s] [%08llx]", ipPrinted, (long long) pathThemToUs);
- if (pathThemToUs > 0xffffffff) {
- Log_warn(rap->log, "oversize path for [%08llx]", (long long) pathThemToUs);
- return;
- }
- struct Announce_Peer refPeer;
- Announce_Peer_init(&refPeer);
- refPeer.label_be = Endian_hostToBigEndian32(pathThemToUs);
- refPeer.mtu8_be = Endian_hostToBigEndian16((mtu / 8));
- refPeer.drops_be = Endian_hostToBigEndian16(drops);
- refPeer.latency_be = Endian_hostToBigEndian16(latency);
- refPeer.penalty_be = Endian_hostToBigEndian16(penalty);
- refPeer.encodingFormNum = EncodingScheme_getFormNum(rap->myScheme, pathUsToThem);
- Bits_memcpy(refPeer.ipv6, ipv6, 16);
- struct Announce_Peer* peer = NULL;
- bool unreachable = true;
- for (int i = 0; i < rap->localState->length; i++) {
- peer = ArrayList_OfPeers_get(rap->localState, i);
- if (peer->label_be) { unreachable = false; }
- if (Bits_memcmp(refPeer.ipv6, peer->ipv6, 16)) {
- peer = NULL;
- continue;
- }
- if (!Bits_memcmp(&refPeer, peer, Announce_Peer_SIZE)) {
- Log_debug(rap->log, "Update peer [%s] peer exists and needs no update", ipPrinted);
- return;
- }
- Bits_memcpy(peer, &refPeer, Announce_Peer_SIZE);
- break;
- }
- if (!peer) {
- if (!pathThemToUs) {
- Log_debug(rap->log, "[%s] didnt exist before and is now unreachable", ipPrinted);
- return;
- }
- peer = addLocalStatePeer(rap, &refPeer);
- }
- switch (updatePeer(rap, &refPeer, 0)) {
- case updatePeer_NOOP: {
- Log_debug(rap->log, "noop");
- return;
- }
- case updatePeer_UPDATE: {
- if (drops == 0xffff) {
- Log_debug(rap->log, "update (peergone)");
- stateUpdate(rap, ReachabilityAnnouncer_State_PEERGONE);
- } else {
- Log_debug(rap->log, "update");
- }
- return;
- }
- case updatePeer_ADD: {
- if (unreachable) {
- Log_debug(rap->log, "first peer");
- stateUpdate(rap, ReachabilityAnnouncer_State_FIRSTPEER);
- } else {
- Log_debug(rap->log, "new peer");
- stateUpdate(rap, ReachabilityAnnouncer_State_NEWPEER);
- }
- return;
- }
- case updatePeer_ENOSPACE: {
- Log_debug(rap->log, "msgfull");
- stateUpdate(rap, ReachabilityAnnouncer_State_MSGFULL);
- return;
- }
- default: break;
- }
- Assert_failure("wut");
- }
- // -- Event Callbacks -- //
- static void onReplyTimeout(struct ReachabilityAnnouncer_pvt* rap, struct Address* snodeAddr)
- {
- // time out -> re-integrate the content of the message onWire into unsent
- struct Message* mow = rap->msgOnWire;
- rap->msgOnWire = NULL;
- struct Announce_Peer* p;
- for (p = Announce_Peer_next(mow, NULL); p; p = Announce_Peer_next(mow, p)) {
- struct Announce_Peer* lPeer = peerFromLocalState(rap->localState, p->ipv6);
- if (!lPeer) { continue; }
- int ret = updatePeer(rap, lPeer, 0);
- if (updatePeer_ENOSPACE == ret) {
- stateUpdate(rap, ReachabilityAnnouncer_State_MSGFULL);
- break;
- }
- }
- Allocator_free(mow->alloc);
- if (!Bits_memcmp(snodeAddr, &rap->snode, Address_SIZE)) {
- rap->snh->snodeIsReachable = false;
- if (rap->snh->onSnodeUnreachable) {
- rap->snh->onSnodeUnreachable(rap->snh, 0, 0);
- }
- }
- }
- struct Query {
- struct Address target;
- struct ReachabilityAnnouncer_pvt* rap;
- };
- static void onReply(Dict* msg, struct Address* src, struct MsgCore_Promise* prom)
- {
- struct Query* q = (struct Query*) prom->userData;
- struct ReachabilityAnnouncer_pvt* rap = Identity_check(q->rap);
- if (!rap->msgOnWire) {
- Log_debug(rap->log,"local reset but not send the peers out");
- Log_warn(rap->log,"Drop the snode response before ann cycle deal the reset");
- return;
- }
- if (!src) {
- onReplyTimeout(rap, &q->target);
- return;
- }
- int64_t* snodeRecvTime = Dict_getIntC(msg, "recvTime");
- if (!snodeRecvTime) {
- Log_warn(rap->log, "snode did not send back recvTime");
- onReplyTimeout(rap, &q->target);
- return;
- }
- int64_t sentTime = rap->msgOnWireSentTime;
- addServerStateMsg(rap, rap->msgOnWire);
- rap->msgOnWire = NULL;
- rap->resetState = false;
- int64_t now = rap->timeOfLastReply = ourTime(rap);
- int64_t oldClockSkew = rap->clockSkew;
- Log_debug(rap->log, "sentTime [%lld]", (long long int) sentTime);
- Log_debug(rap->log, "snodeRecvTime [%lld]", (long long int) *snodeRecvTime);
- Log_debug(rap->log, "now [%lld]", (long long int) now);
- Log_debug(rap->log, "oldClockSkew [%lld]", (long long int) oldClockSkew);
- rap->clockSkew = estimateImprovedClockSkew(sentTime, *snodeRecvTime, now, oldClockSkew);
- Log_debug(rap->log, "Adjusting clock skew by [%lld]",
- (long long int) (rap->clockSkew - oldClockSkew));
- // We reset the state to NORMAL unless the synchronization of state took more space than
- // the last message could hold, however if the state was MSGFULL but then another message
- // was sent and now all state is synced (nothing new to send), we set to NORMAL.
- // TODO(cjd): This implies a risk of oscillation wherein there is always a tiny bit of
- // additional state keeps being added (bouncing link?)
- if (ReachabilityAnnouncer_State_MSGFULL != rap->state ||
- Announce_Header_SIZE == rap->nextMsg->length)
- {
- rap->state = ReachabilityAnnouncer_State_NORMAL;
- }
- String* snodeStateHash = Dict_getStringC(msg, "stateHash");
- uint8_t ourStateHash[64];
- hashMsgList(rap->snodeState, ourStateHash);
- if (!snodeStateHash) {
- Log_warn(rap->log, "no stateHash in reply from snode");
- } else if (snodeStateHash->len != 64) {
- Log_warn(rap->log, "bad stateHash in reply from snode");
- } else if (Bits_memcmp(snodeStateHash->bytes, ourStateHash, 64)) {
- Log_warn(rap->log, "state mismatch with snode, [%u] announces", rap->snodeState->length);
- } else {
- return;
- }
- Log_warn(rap->log, "desynchronized with snode, resetting state");
- stateReset(rap);
- }
- static void onAnnounceCycle(void* vRap)
- {
- struct ReachabilityAnnouncer_pvt* rap =
- Identity_check((struct ReachabilityAnnouncer_pvt*) vRap);
- // Message out on the wire...
- if (rap->msgOnWire) { return; }
- if (!rap->snode.path) { return; }
- int64_t now = ourTime(rap);
- int64_t snNow = snTime(rap);
- // Not time to send yet?
- if (now < rap->timeOfLastReply + rap->state) { return; }
- struct Message* msg = rap->msgOnWire = rap->nextMsg;
- rap->msgOnWireSentTime = now;
- // re-announce any peer which is older than AGREED_TIMEOUT_MS
- int64_t sinceTime = snNow - AGREED_TIMEOUT_MS;
- for (int i = 0; i < rap->snodeState->length; i++) {
- struct Message* snm = ArrayList_OfMessages_get(rap->snodeState, i);
- int64_t msgTime = timestampFromMsg(snm);
- if (msgTime < sinceTime) { break; }
- struct Announce_Peer* p;
- int ret = updatePeer_NOOP;
- for (p = Announce_Peer_next(msg, NULL); p; p = Announce_Peer_next(msg, p)) {
- struct Announce_Peer* lPeer = peerFromLocalState(rap->localState, p->ipv6);
- if (!lPeer) { continue; }
- ret = updatePeer(rap, lPeer, sinceTime);
- if (updatePeer_ENOSPACE == ret) {
- stateUpdate(rap, ReachabilityAnnouncer_State_MSGFULL);
- break;
- }
- }
- if (updatePeer_ENOSPACE == ret) {
- break;
- }
- }
- setupNextMsg(rap);
- if (ReachabilityAnnouncer_State_MSGFULL == rap->state) {
- // there was lost state, load everything we can into the next message...
- loadAllState(rap, false);
- } else if (Defined(PARANOIA)) {
- // Purely a test, this will blow up if anything is changed by loading all peers in.
- loadAllState(rap, true);
- }
- if (rap->resetState) {
- Message_pop(msg, NULL, Announce_Header_SIZE, NULL);
- Announce_EncodingScheme_push(msg, rap->encodingSchemeStr);
- struct Announce_Version version;
- Announce_Version_init(&version);
- Message_push(msg, &version, Announce_Version_SIZE, NULL);
- Message_push(msg, NULL, Announce_Header_SIZE, NULL);
- }
- struct Announce_Header* hdr = (struct Announce_Header*) msg->bytes;
- Bits_memset(hdr, 0, Announce_Header_SIZE);
- Announce_Header_setVersion(hdr, Announce_Header_CURRENT_VERSION);
- Announce_Header_setReset(hdr, rap->resetState);
- Assert_true(Announce_Header_isReset(hdr) == rap->resetState);
- Announce_Header_setTimestamp(hdr, snNow);
- Bits_memcpy(hdr->pubSigningKey, rap->pubSigningKey, 32);
- Bits_memcpy(hdr->snodeIp, rap->snode.ip6.bytes, 16);
- Message_pop(msg, NULL, 64, NULL);
- Sign_signMsg(rap->signingKeypair, msg, rap->rand);
- struct MsgCore_Promise* qp = MsgCore_createQuery(rap->msgCore, 0, rap->alloc);
- Dict* dict = qp->msg = Dict_new(qp->alloc);
- qp->cb = onReply;
- struct Query* q = Allocator_calloc(qp->alloc, sizeof(struct Query), 1);
- q->rap = rap;
- Assert_true(AddressCalc_validAddress(rap->snode.ip6.bytes));
- Bits_memcpy(&q->target, &rap->snode, Address_SIZE);
- qp->userData = q;
- qp->target = &q->target;
- Dict_putStringCC(dict, "sq", "ann", qp->alloc);
- String* annString = String_newBinary(msg->bytes, msg->length, qp->alloc);
- Dict_putStringC(dict, "ann", annString, qp->alloc);
- }
- static void onSnodeChange(struct SupernodeHunter* sh,
- int64_t sendTime,
- int64_t snodeRecvTime)
- {
- struct ReachabilityAnnouncer_pvt* rap =
- Identity_check((struct ReachabilityAnnouncer_pvt*) sh->userData);
- int64_t clockSkew = estimateClockSkew(sendTime, snodeRecvTime, ourTime(rap));
- uint64_t clockSkewDiff = (clockSkew - rap->clockSkew) & ~(((uint64_t)1)<<63);
- // If the node is the same and the clock skew difference is less than 10 seconds,
- // just change path and continue.
- if (!Bits_memcmp(rap->snode.key, sh->snodeAddr.key, 32) && clockSkewDiff < 5000) {
- Log_debug(rap->log, "Change Supernode (path only)");
- Bits_memcpy(&rap->snode, &sh->snodeAddr, Address_SIZE);
- return;
- }
- Log_debug(rap->log, "Change Supernode");
- Bits_memcpy(&rap->snode, &sh->snodeAddr, Address_SIZE);
- rap->clockSkew = estimateClockSkew(sendTime, snodeRecvTime, ourTime(rap));
- stateReset(rap);
- }
- struct ReachabilityAnnouncer* ReachabilityAnnouncer_new(struct Allocator* allocator,
- struct Log* log,
- struct EventBase* base,
- struct Random* rand,
- struct MsgCore* msgCore,
- struct SupernodeHunter* snh,
- uint8_t* privateKey,
- struct EncodingScheme* myScheme)
- {
- struct Allocator* alloc = Allocator_child(allocator);
- struct ReachabilityAnnouncer_pvt* rap =
- Allocator_calloc(alloc, sizeof(struct ReachabilityAnnouncer_pvt), 1);
- Identity_set(rap);
- rap->alloc = alloc;
- rap->log = log;
- rap->base = base;
- rap->msgCore = msgCore;
- rap->announceCycle = Timeout_setInterval(onAnnounceCycle, rap, 1000, base, alloc);
- rap->rand = rand;
- rap->snodeState = ArrayList_OfMessages_new(alloc);
- rap->localState = ArrayList_OfPeers_new(alloc);
- rap->myScheme = myScheme;
- rap->encodingSchemeStr = EncodingScheme_serialize(myScheme, alloc);
- rap->snh = snh;
- snh->onSnodeChange = onSnodeChange;
- snh->userData = rap;
- setupNextMsg(rap);
- Sign_signingKeyPairFromCurve25519(rap->signingKeypair, privateKey);
- Sign_publicKeyFromKeyPair(rap->pubSigningKey, rap->signingKeypair);
- return &rap->pub;
- }
|