123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595 |
- /* 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 <http://www.gnu.org/licenses/>.
- */
- #include "memory/Allocator.h"
- #include "wire/PFChan.h"
- #include "net/SessionManager.h"
- #include "crypto/AddressCalc.h"
- #include "util/AddrTools.h"
- #include "wire/Error.h"
- #include "util/events/Time.h"
- #include "util/Defined.h"
- #include "wire/RouteHeader.h"
- #include "util/events/Timeout.h"
- /** Handle numbers 0-3 are reserved for CryptoAuth nonces. */
- #define MIN_FIRST_HANDLE 4
- #define MAX_FIRST_HANDLE 100000
- struct BufferedMessage
- {
- struct Message* msg;
- struct Allocator* alloc;
- uint64_t timeSentMilliseconds;
- };
- struct Ip6 {
- uint8_t bytes[16];
- };
- #define Map_KEY_TYPE struct Ip6
- #define Map_VALUE_TYPE struct BufferedMessage*
- #define Map_NAME BufferedMessages
- #include "util/Map.h"
- #define Map_KEY_TYPE struct Ip6
- #define Map_VALUE_TYPE struct SessionManager_Session_pvt*
- #define Map_NAME OfSessionsByIp6
- #define Map_ENABLE_HANDLES
- #include "util/Map.h"
- struct SessionManager_pvt
- {
- struct SessionManager pub;
- struct Iface eventIf;
- struct Allocator* alloc;
- struct Map_BufferedMessages bufMap;
- struct Map_OfSessionsByIp6 ifaceMap;
- struct Log* log;
- struct CryptoAuth* cryptoAuth;
- struct EventBase* eventBase;
- uint32_t firstHandle;
- Identity
- };
- struct SessionManager_Session_pvt
- {
- struct SessionManager_Session pub;
- struct SessionManager_pvt* sessionManager;
- struct Allocator* alloc;
- Identity
- };
- #define debugHandlesAndLabel(logger, session, label, message, ...) \
- do { \
- if (!Defined(Log_DEBUG)) { break; } \
- uint8_t path[20]; \
- AddrTools_printPath(path, label); \
- uint8_t ip[40]; \
- AddrTools_printIp(ip, session->pub.caSession->herIp6); \
- Log_debug(logger, "ver[%u] send[%d] recv[%u] ip[%s] path[%s] " message, \
- session->pub.version, \
- session->pub.sendHandle, \
- session->pub.receiveHandle, \
- ip, \
- path, \
- __VA_ARGS__); \
- } while (0)
- //CHECKFILES_IGNORE expecting a ;
- #define debugHandlesAndLabel0(logger, session, label, message) \
- debugHandlesAndLabel(logger, session, label, "%s", message)
- static void sendSession(struct SessionManager_Session_pvt* sess,
- uint64_t path,
- uint32_t destPf,
- enum PFChan_Core ev)
- {
- struct PFChan_Node session = {
- .path_be = Endian_hostToBigEndian64(path),
- .metric_be = 0xffffffff,
- .version_be = Endian_hostToBigEndian32(sess->pub.version)
- };
- Bits_memcpyConst(session.ip6, sess->pub.caSession->herIp6, 16);
- Bits_memcpyConst(session.publicKey, sess->pub.caSession->herPublicKey, 32);
- struct Allocator* alloc = Allocator_child(sess->alloc);
- struct Message* msg = Message_new(0, PFChan_Node_SIZE + 512, alloc);
- Message_push(msg, &session, PFChan_Node_SIZE, NULL);
- Message_push32(msg, destPf, NULL);
- Message_push32(msg, ev, NULL);
- Iface_send(&sess->sessionManager->eventIf, msg);
- Allocator_free(alloc);
- }
- static inline void check(struct SessionManager_pvt* sm, int mapIndex)
- {
- Assert_true(sm->ifaceMap.keys[mapIndex].bytes[0] == 0xfc);
- uint8_t* herPubKey = sm->ifaceMap.values[mapIndex]->pub.caSession->herPublicKey;
- if (!Bits_isZero(herPubKey, 32)) {
- uint8_t ip6[16];
- AddressCalc_addressForPublicKey(ip6, herPubKey);
- Assert_true(!Bits_memcmp(&sm->ifaceMap.keys[mapIndex], ip6, 16));
- }
- }
- static inline struct SessionManager_Session_pvt* sessionForHandle(uint32_t handle,
- struct SessionManager_pvt* sm)
- {
- int index = Map_OfSessionsByIp6_indexForHandle(handle - sm->firstHandle, &sm->ifaceMap);
- if (index < 0) { return NULL; }
- check(sm, index);
- return Identity_check(sm->ifaceMap.values[index]);
- }
- struct SessionManager_Session* SessionManager_sessionForHandle(uint32_t handle,
- struct SessionManager* manager)
- {
- struct SessionManager_pvt* sm = Identity_check((struct SessionManager_pvt*) manager);
- return (struct SessionManager_Session*) sessionForHandle(handle, sm);
- }
- static inline struct SessionManager_Session_pvt* sessionForIp6(uint8_t ip6[16],
- struct SessionManager_pvt* sm)
- {
- int ifaceIndex = Map_OfSessionsByIp6_indexForKey((struct Ip6*)ip6, &sm->ifaceMap);
- if (ifaceIndex == -1) { return NULL; }
- check(sm, ifaceIndex);
- return Identity_check(sm->ifaceMap.values[ifaceIndex]);
- }
- struct SessionManager_Session* SessionManager_sessionForIp6(uint8_t* ip6,
- struct SessionManager* manager)
- {
- struct SessionManager_pvt* sm = Identity_check((struct SessionManager_pvt*) manager);
- return (struct SessionManager_Session*) sessionForIp6(ip6, sm);
- }
- struct SessionManager_HandleList* SessionManager_getHandleList(struct SessionManager* manager,
- struct Allocator* alloc)
- {
- struct SessionManager_pvt* sm = Identity_check((struct SessionManager_pvt*) manager);
- struct SessionManager_HandleList* out =
- Allocator_calloc(alloc, sizeof(struct SessionManager_HandleList), 1);
- uint32_t* buff = Allocator_calloc(alloc, 4, sm->ifaceMap.count);
- out->length = sm->ifaceMap.count;
- out->handles = buff;
- for (int i = 0; i < out->length; i++) {
- buff[i] = sm->ifaceMap.handles[i] + sm->firstHandle;
- }
- return out;
- }
- static struct SessionManager_Session_pvt* getSession(struct SessionManager_pvt* sm,
- uint8_t ip6[16],
- uint8_t pubKey[32],
- uint32_t version,
- uint64_t label)
- {
- struct SessionManager_Session_pvt* sess = sessionForIp6(ip6, sm);
- if (sess) {
- sess->pub.version = (sess->pub.version) ? sess->pub.version : version;
- sess->pub.sendSwitchLabel = (sess->pub.sendSwitchLabel) ? sess->pub.sendSwitchLabel : label;
- return sess;
- }
- struct Allocator* alloc = Allocator_child(sm->alloc);
- sess = Allocator_calloc(alloc, sizeof(struct SessionManager_Session_pvt), 1);
- Identity_set(sess);
- sess->pub.caSession = CryptoAuth_newSession(sm->cryptoAuth, alloc, pubKey, ip6, false, "inner");
- int ifaceIndex = Map_OfSessionsByIp6_put((struct Ip6*)ip6, &sess, &sm->ifaceMap);
- sess->pub.receiveHandle = sm->ifaceMap.handles[ifaceIndex] + sm->firstHandle;
- sess->alloc = alloc;
- sess->sessionManager = sm;
- sess->pub.version = version;
- sess->pub.timeOfLastIn = Time_currentTimeMilliseconds(sm->eventBase);
- sess->pub.timeOfLastOut = Time_currentTimeMilliseconds(sm->eventBase);
- sess->pub.sendSwitchLabel = label;
- //Allocator_onFree(alloc, sessionCleanup, sess);
- sendSession(sess, label, 0xffffffff, PFChan_Core_SESSION);
- check(sm, ifaceIndex);
- return sess;
- }
- static Iface_DEFUN incomingFromSwitchIf(struct Message* msg, struct Iface* iface)
- {
- struct SessionManager_pvt* sm =
- Identity_containerOf(iface, struct SessionManager_pvt, pub.switchIf);
- // SwitchHeader, handle, small cryptoAuth header
- if (msg->length < SwitchHeader_SIZE + 4 + 20) {
- // This is triggered by Benchmark.c so we really don't want to print log lines constantly.
- //Log_debug(sm->log, "DROP runt");
- return NULL;
- }
- struct SwitchHeader* switchHeader = (struct SwitchHeader*) msg->bytes;
- Message_shift(msg, -SwitchHeader_SIZE, NULL);
- struct SessionManager_Session_pvt* session;
- uint32_t nonceOrHandle = Endian_bigEndianToHost32(((uint32_t*)msg->bytes)[0]);
- if (nonceOrHandle > 3) {
- // > 3 it's a handle.
- session = sessionForHandle(nonceOrHandle, sm);
- if (!session) {
- Log_debug(sm->log, "DROP message with unrecognized handle");
- return NULL;
- }
- Message_shift(msg, -4, NULL);
- } else {
- // handle + big cryptoauth header
- if (msg->length < CryptoHeader_SIZE + 4) {
- Log_debug(sm->log, "DROP runt");
- return NULL;
- }
- union CryptoHeader* caHeader = (union CryptoHeader*) msg->bytes;
- uint8_t* herKey = caHeader->handshake.publicKey;
- uint8_t ip6[16];
- // a packet which claims to be "from us" causes problems
- if (!AddressCalc_addressForPublicKey(ip6, herKey)) {
- Log_debug(sm->log, "DROP Handshake with non-fc key");
- return NULL;
- }
- if (!Bits_memcmp(herKey, sm->cryptoAuth->publicKey, 32)) {
- Log_debug(sm->log, "DROP Handshake from 'ourselves'");
- return NULL;
- }
- uint64_t label = Endian_bigEndianToHost64(switchHeader->label_be);
- session = getSession(sm, ip6, herKey, 0, label);
- debugHandlesAndLabel(sm->log, session, label, "new session nonce[%d]", nonceOrHandle);
- }
- if (CryptoAuth_decrypt(session->pub.caSession, msg)) {
- debugHandlesAndLabel(sm->log, session,
- Endian_bigEndianToHost64(switchHeader->label_be),
- "DROP Failed decrypting message NoH[%d] state[%s]",
- nonceOrHandle,
- CryptoAuth_stateString(CryptoAuth_getState(session->pub.caSession)));
- return NULL;
- }
- session->pub.timeOfLastIn = Time_currentTimeMilliseconds(sm->eventBase);
- session->pub.bytesIn += msg->length;
- bool currentMessageSetup = (nonceOrHandle <= 3);
- if (currentMessageSetup) {
- session->pub.sendHandle = Message_pop32(msg, NULL);
- }
- Message_shift(msg, RouteHeader_SIZE, NULL);
- struct RouteHeader* header = (struct RouteHeader*) msg->bytes;
- if (currentMessageSetup) {
- Bits_memcpyConst(&header->sh, switchHeader, SwitchHeader_SIZE);
- debugHandlesAndLabel0(sm->log,
- session,
- Endian_bigEndianToHost64(switchHeader->label_be),
- "received start message");
- } else {
- // RouteHeader is laid out such that no copy of switch header should be needed.
- Assert_true(&header->sh == switchHeader);
- if (0) { // noisey
- debugHandlesAndLabel0(sm->log,
- session,
- Endian_bigEndianToHost64(switchHeader->label_be),
- "received run message");
- }
- }
- header->version_be = Endian_hostToBigEndian32(session->pub.version);
- Bits_memcpyConst(header->ip6, session->pub.caSession->herIp6, 16);
- Bits_memcpyConst(header->publicKey, session->pub.caSession->herPublicKey, 32);
- uint64_t path = Endian_bigEndianToHost64(switchHeader->label_be);
- if (!session->pub.sendSwitchLabel) {
- session->pub.sendSwitchLabel = path;
- }
- if (path != session->pub.recvSwitchLabel) {
- session->pub.recvSwitchLabel = path;
- sendSession(session, path, 0xffffffff, PFChan_Core_DISCOVERED_PATH);
- }
- return Iface_next(&sm->pub.insideIf, msg);
- }
- static void checkTimedOutBuffers(struct SessionManager_pvt* sm)
- {
- for (int i = 0; i < (int)sm->bufMap.count; i++) {
- struct BufferedMessage* buffered = sm->bufMap.values[i];
- int64_t lag = Time_currentTimeMilliseconds(sm->eventBase) - buffered->timeSentMilliseconds;
- if (lag < 10000) { continue; }
- Map_BufferedMessages_remove(i, &sm->bufMap);
- Allocator_free(buffered->alloc);
- i--;
- }
- }
- static void triggerSearch(struct SessionManager_pvt* sm, uint8_t target[16])
- {
- struct Allocator* eventAlloc = Allocator_child(sm->alloc);
- struct Message* eventMsg = Message_new(0, 512, eventAlloc);
- Message_push(eventMsg, target, 16, NULL);
- Message_push32(eventMsg, 0xffffffff, NULL);
- Message_push32(eventMsg, PFChan_Core_SEARCH_REQ, NULL);
- Iface_send(&sm->eventIf, eventMsg);
- Allocator_free(eventAlloc);
- }
- static void checkTimedOutSessions(struct SessionManager_pvt* sm)
- {
- bool searchTriggered = false;
- for (int i = 0; i < (int)sm->ifaceMap.count; i++) {
- struct SessionManager_Session_pvt* sess = sm->ifaceMap.values[i];
- int64_t now = Time_currentTimeMilliseconds(sm->eventBase);
- if (now - sess->pub.timeOfLastOut >= sm->pub.sessionIdleAfterMilliseconds &&
- now - sess->pub.timeOfLastIn >= sm->pub.sessionIdleAfterMilliseconds)
- {
- // Session is in idle state
- } else if (now - sess->pub.lastSearchTime >= sm->pub.sessionSearchAfterMilliseconds) {
- // Session is not in idle state and requires a search
- // But we're only going to trigger one search per cycle.
- if (searchTriggered) { continue; }
- triggerSearch(sm, sess->pub.caSession->herIp6);
- sess->pub.lastSearchTime = now;
- searchTriggered = true;
- }
- // Session is in idle state or doesn't need a search right now, check if it's timed out.
- if (now - sess->pub.timeOfLastIn < sm->pub.sessionTimeoutMilliseconds) {
- sendSession(sess, sess->pub.sendSwitchLabel, 0xffffffff, PFChan_Core_SESSION_ENDED);
- Map_OfSessionsByIp6_remove(i, &sm->ifaceMap);
- Allocator_free(sess->alloc);
- i--;
- }
- }
- }
- static void periodically(void* vSessionManager)
- {
- struct SessionManager_pvt* sm = Identity_check((struct SessionManager_pvt*) vSessionManager);
- checkTimedOutSessions(sm);
- checkTimedOutBuffers(sm);
- }
- static void needsLookup(struct SessionManager_pvt* sm, struct Message* msg)
- {
- struct RouteHeader* header = (struct RouteHeader*) msg->bytes;
- if (Defined(Log_DEBUG)) {
- uint8_t ipStr[40];
- AddrTools_printIp(ipStr, header->ip6);
- Log_debug(sm->log, "Buffering a packet to [%s] and beginning a search", ipStr);
- }
- int index = Map_BufferedMessages_indexForKey((struct Ip6*)header->ip6, &sm->bufMap);
- if (index > -1) {
- struct BufferedMessage* buffered = sm->bufMap.values[index];
- Map_BufferedMessages_remove(index, &sm->bufMap);
- Allocator_free(buffered->alloc);
- Log_debug(sm->log, "DROP message which needs lookup because new one received");
- }
- if ((int)sm->bufMap.count >= sm->pub.maxBufferedMessages) {
- checkTimedOutBuffers(sm);
- if ((int)sm->bufMap.count >= sm->pub.maxBufferedMessages) {
- Log_debug(sm->log, "DROP message needing lookup maxBufferedMessages ([%d]) is reached",
- sm->pub.maxBufferedMessages);
- return;
- }
- }
- struct Allocator* lookupAlloc = Allocator_child(sm->alloc);
- struct BufferedMessage* buffered =
- Allocator_calloc(lookupAlloc, sizeof(struct BufferedMessage), 1);
- buffered->msg = msg;
- buffered->alloc = lookupAlloc;
- buffered->timeSentMilliseconds = Time_currentTimeMilliseconds(sm->eventBase);
- Allocator_adopt(lookupAlloc, msg->alloc);
- Assert_true(Map_BufferedMessages_put((struct Ip6*)header->ip6, &buffered, &sm->bufMap) > -1);
- triggerSearch(sm, header->ip6);
- }
- static Iface_DEFUN readyToSend(struct Message* msg,
- struct SessionManager_pvt* sm,
- struct SessionManager_Session_pvt* sess)
- {
- struct RouteHeader* header = (struct RouteHeader*) msg->bytes;
- Message_shift(msg, -RouteHeader_SIZE, NULL);
- struct SwitchHeader* sh;
- CryptoAuth_resetIfTimeout(sess->pub.caSession);
- if (CryptoAuth_getState(sess->pub.caSession) < CryptoAuth_HANDSHAKE3) {
- // Put the handle into the message so that it's authenticated.
- Message_push32(msg, sess->pub.receiveHandle, NULL);
- // Copy back the SwitchHeader so it is not clobbered.
- Message_shift(msg, (CryptoHeader_SIZE + SwitchHeader_SIZE), NULL);
- Bits_memcpyConst(msg->bytes, &header->sh, SwitchHeader_SIZE);
- sh = (struct SwitchHeader*) msg->bytes;
- Message_shift(msg, -(CryptoHeader_SIZE + SwitchHeader_SIZE), NULL);
- } else {
- sh = &header->sh;
- }
- // This pointer ceases to be useful.
- header = NULL;
- sess->pub.timeOfLastOut = Time_currentTimeMilliseconds(sm->eventBase);
- sess->pub.bytesOut += msg->length;
- Assert_true(!CryptoAuth_encrypt(sess->pub.caSession, msg));
- if (CryptoAuth_getState(sess->pub.caSession) >= CryptoAuth_HANDSHAKE3) {
- if (0) { // Noisy
- debugHandlesAndLabel0(sm->log,
- sess,
- Endian_bigEndianToHost64(sh->label_be),
- "sending run message");
- }
- Message_push32(msg, sess->pub.sendHandle, NULL);
- } else {
- debugHandlesAndLabel0(sm->log,
- sess,
- Endian_bigEndianToHost64(sh->label_be),
- "sending start message");
- }
- // The SwitchHeader should have been moved to the correct location.
- Message_shift(msg, SwitchHeader_SIZE, NULL);
- Assert_true((uint8_t*)sh == msg->bytes);
- return Iface_next(&sm->pub.switchIf, msg);
- }
- static Iface_DEFUN incomingFromInsideIf(struct Message* msg, struct Iface* iface)
- {
- struct SessionManager_pvt* sm =
- Identity_containerOf(iface, struct SessionManager_pvt, pub.insideIf);
- Assert_true(msg->length >= RouteHeader_SIZE);
- struct RouteHeader* header = (struct RouteHeader*) msg->bytes;
- struct SessionManager_Session_pvt* sess = sessionForIp6(header->ip6, sm);
- if (!sess) {
- if (!Bits_isZero(header->publicKey, 32) && header->version_be) {
- sess = getSession(sm,
- header->ip6,
- header->publicKey,
- Endian_bigEndianToHost32(header->version_be),
- Endian_bigEndianToHost64(header->sh.label_be));
- } else {
- needsLookup(sm, msg);
- return NULL;
- }
- }
- if (header->version_be) { sess->pub.version = Endian_bigEndianToHost32(header->version_be); }
- if (!sess->pub.version) {
- needsLookup(sm, msg);
- return NULL;
- }
- if (header->sh.label_be) {
- // fallthrough
- } else if (sess->pub.sendSwitchLabel) {
- header->sh.label_be = Endian_hostToBigEndian64(sess->pub.sendSwitchLabel);
- } else {
- needsLookup(sm, msg);
- return NULL;
- }
- return readyToSend(msg, sm, sess);
- }
- static Iface_DEFUN sessions(struct SessionManager_pvt* sm,
- uint32_t sourcePf,
- struct Allocator* tempAlloc)
- {
- for (int i = 0; i < (int)sm->ifaceMap.count; i++) {
- struct SessionManager_Session_pvt* sess = sm->ifaceMap.values[i];
- sendSession(sess, sess->pub.sendSwitchLabel, sourcePf, PFChan_Core_SESSION);
- }
- return NULL;
- }
- static Iface_DEFUN incomingFromEventIf(struct Message* msg, struct Iface* iface)
- {
- struct SessionManager_pvt* sm = Identity_containerOf(iface, struct SessionManager_pvt, eventIf);
- enum PFChan_Pathfinder ev = Message_pop32(msg, NULL);
- uint32_t sourcePf = Message_pop32(msg, NULL);
- if (ev == PFChan_Pathfinder_SESSIONS) {
- Assert_true(!msg->length);
- return sessions(sm, sourcePf, msg->alloc);
- }
- Assert_true(ev == PFChan_Pathfinder_NODE);
- struct PFChan_Node node;
- Message_pop(msg, &node, PFChan_Node_SIZE, NULL);
- Assert_true(!msg->length);
- int index = Map_BufferedMessages_indexForKey((struct Ip6*)node.ip6, &sm->bufMap);
- struct SessionManager_Session_pvt* sess;
- if (index == -1) {
- sess = sessionForIp6(node.ip6, sm);
- // If we discovered a node we're not interested in ...
- if (!sess) { return NULL; }
- if (node.metric_be == 0xffffffff) {
- // this is a broken path
- if (sess->pub.sendSwitchLabel == Endian_bigEndianToHost64(node.path_be)) {
- if (sess->pub.sendSwitchLabel == sess->pub.recvSwitchLabel) {
- sess->pub.sendSwitchLabel = 0;
- } else {
- sess->pub.sendSwitchLabel = sess->pub.recvSwitchLabel;
- }
- }
- } else {
- sess->pub.sendSwitchLabel = Endian_bigEndianToHost64(node.path_be);
- sess->pub.version = Endian_bigEndianToHost32(node.version_be);
- }
- } else {
- sess = getSession(sm,
- node.ip6,
- node.publicKey,
- Endian_bigEndianToHost32(node.version_be),
- Endian_bigEndianToHost64(node.path_be));
- }
- // Send what's on the buffer...
- if (index > -1) {
- struct BufferedMessage* bm = sm->bufMap.values[index];
- Iface_CALL(readyToSend, bm->msg, sm, sess);
- Map_BufferedMessages_remove(index, &sm->bufMap);
- Allocator_free(bm->alloc);
- }
- return NULL;
- }
- struct SessionManager* SessionManager_new(struct Allocator* allocator,
- struct EventBase* eventBase,
- struct CryptoAuth* cryptoAuth,
- struct Random* rand,
- struct Log* log,
- struct EventEmitter* ee)
- {
- struct Allocator* alloc = Allocator_child(allocator);
- struct SessionManager_pvt* sm = Allocator_calloc(alloc, sizeof(struct SessionManager_pvt), 1);
- sm->alloc = alloc;
- sm->pub.switchIf.send = incomingFromSwitchIf;
- sm->pub.insideIf.send = incomingFromInsideIf;
- sm->bufMap.allocator = alloc;
- sm->ifaceMap.allocator = alloc;
- sm->log = log;
- sm->cryptoAuth = cryptoAuth;
- sm->eventBase = eventBase;
- sm->pub.sessionTimeoutMilliseconds = SessionManager_SESSION_TIMEOUT_MILLISECONDS_DEFAULT;
- sm->pub.maxBufferedMessages = SessionManager_MAX_BUFFERED_MESSAGES_DEFAULT;
- sm->pub.sessionIdleAfterMilliseconds = SessionManager_SESSION_IDLE_AFTER_MILLISECONDS_DEFAULT;
- sm->pub.sessionSearchAfterMilliseconds =
- SessionManager_SESSION_SEARCH_AFTER_MILLISECONDS_DEFAULT;
- sm->eventIf.send = incomingFromEventIf;
- EventEmitter_regCore(ee, &sm->eventIf, PFChan_Pathfinder_NODE);
- EventEmitter_regCore(ee, &sm->eventIf, PFChan_Pathfinder_SESSIONS);
- sm->firstHandle =
- (Random_uint32(rand) % (MAX_FIRST_HANDLE - MIN_FIRST_HANDLE)) + MIN_FIRST_HANDLE;
- Timeout_setInterval(periodically, sm, 10000, eventBase, alloc);
- Identity_set(sm);
- return &sm->pub;
- }
|