| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432 | /* * ZeroTier One - Network Virtualization Everywhere * Copyright (C) 2011-2015  ZeroTier, Inc. * * This program is free software: you can redistribute it 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/>. * * -- * * ZeroTier may be used and distributed under the terms of the GPLv3, which * are available at: http://www.gnu.org/licenses/gpl-3.0.html * * If you would like to embed ZeroTier into a commercial application or * redistribute it in a modified binary form, please contact ZeroTier Networks * LLC. Start here: http://www.zerotier.com/ */#include "com_zerotierone_sdk_Node.h"#include "ZT_jnicache.h"#include "ZT_jniutils.h"#include <ZeroTierOne.h>#include "Mutex.hpp"#include <map>#include <string>#include <cassert>#include <cstring>#include <cinttypes> // for PRId64#define LOG_TAG "Node"namespace {    struct JniRef    {        JniRef(            int64_t id,            JavaVM *jvm,            jobject dataStoreGetListenerLocalIn,            jobject dataStorePutListenerLocalIn,            jobject packetSenderLocalIn,            jobject eventListenerLocalIn,            jobject frameListenerLocalIn,            jobject configListenerLocalIn,            jobject pathCheckerLocalIn)            : id(id)            , jvm(jvm)            , node()            , dataStoreGetListener()            , dataStorePutListener()            , packetSender()            , eventListener()            , frameListener()            , configListener()            , pathChecker()            , inited() {            JNIEnv *env;            GETENV(env, jvm);            dataStoreGetListener = env->NewGlobalRef(dataStoreGetListenerLocalIn);            dataStorePutListener = env->NewGlobalRef(dataStorePutListenerLocalIn);            packetSender = env->NewGlobalRef(packetSenderLocalIn);            eventListener = env->NewGlobalRef(eventListenerLocalIn);            frameListener = env->NewGlobalRef(frameListenerLocalIn);            configListener = env->NewGlobalRef(configListenerLocalIn);            pathChecker = env->NewGlobalRef(pathCheckerLocalIn);        };        ~JniRef()        {            JNIEnv *env;            GETENV(env, jvm);            env->DeleteGlobalRef(dataStoreGetListener);            env->DeleteGlobalRef(dataStorePutListener);            env->DeleteGlobalRef(packetSender);            env->DeleteGlobalRef(eventListener);            env->DeleteGlobalRef(frameListener);            env->DeleteGlobalRef(configListener);            env->DeleteGlobalRef(pathChecker);        }        int64_t id;        JavaVM *jvm;        ZT_Node *node;        jobject dataStoreGetListener;        jobject dataStorePutListener;        jobject packetSender;        jobject eventListener;        jobject frameListener;        jobject configListener;        jobject pathChecker;        bool inited;        bool finishInitializing();    };    //    // RAII construct for calling AttachCurrentThread and DetachCurrent automatically    //    struct ScopedJNIThreadAttacher {        JavaVM *jvm;        JNIEnv **env_p;        jint getEnvRet;        ScopedJNIThreadAttacher(JavaVM *jvmIn, JNIEnv **env_pIn, jint getEnvRetIn) :        jvm(jvmIn),        env_p(env_pIn),        getEnvRet(getEnvRetIn) {            if (getEnvRet != JNI_EDETACHED) {                return;            }            jint attachCurrentThreadRet;            if ((attachCurrentThreadRet = jvm->AttachCurrentThread(env_p, NULL)) != JNI_OK) {                LOGE("Error calling AttachCurrentThread: %d", attachCurrentThreadRet);                assert(false && "Error calling AttachCurrentThread");            }        }        ~ScopedJNIThreadAttacher() {            if (getEnvRet != JNI_EDETACHED) {                return;            }            jint detachCurrentThreadRet;            if ((detachCurrentThreadRet = jvm->DetachCurrentThread()) != JNI_OK) {                LOGE("Error calling DetachCurrentThread: %d", detachCurrentThreadRet);                assert(false && "Error calling DetachCurrentThread");            }        }    };    /*    * This must return 0 on success. It can return any OS-dependent error code    * on failure, and this results in the network being placed into the    * PORT_ERROR state.    */    int VirtualNetworkConfigFunctionCallback(        ZT_Node *node,        void *userData,        void *threadData,        uint64_t nwid,        void **nuptr,        enum ZT_VirtualNetworkConfigOperation operation,        const ZT_VirtualNetworkConfig *config)    {        LOGV("VirtualNetworkConfigFunctionCallback");        JniRef *ref = (JniRef*)userData;        assert(ref);        JNIEnv *env;        GETENV(env, ref->jvm);        if (env->ExceptionCheck()) {            LOGE("Unhandled pending exception");            return -100;        }        if (ref->configListener == NULL) {            LOGE("configListener is NULL");            return -101;        }        jobject operationObject = createVirtualNetworkConfigOperation(env, operation);        if(env->ExceptionCheck() || operationObject == NULL)        {            return -102;        }        if (config == NULL) {            LOGE("Config is NULL");            return -103;        }        jobject networkConfigObject = newNetworkConfig(env, *config);        if(env->ExceptionCheck() || networkConfigObject == NULL)        {            return -104;        }        jint ret = env->CallIntMethod(            ref->configListener,            VirtualNetworkConfigListener_onNetworkConfigurationUpdated_method,            (jlong)nwid, (jobject)operationObject, (jobject)networkConfigObject);        if (env->ExceptionCheck()) {            LOGE("Exception calling onNetworkConfigurationUpdated");            return -105;        }        return ret;    }    void VirtualNetworkFrameFunctionCallback(ZT_Node *node,        void *userData,        void *threadData,        uint64_t nwid,        void** nuptr,        uint64_t sourceMac,        uint64_t destMac,        unsigned int etherType,        unsigned int vlanid,        const void *frameData,        unsigned int frameLength)    {        LOGV("VirtualNetworkFrameFunctionCallback");#ifndef NDEBUG        if (frameLength >= 14) {            unsigned char* local = (unsigned char*)frameData;            LOGV("Type Bytes: 0x%02x%02x", local[12], local[13]);        }#endif        JniRef *ref = (JniRef*)userData;        assert(ref);        assert(ref->node == node);        JNIEnv *env;                jint getEnvRet;        assert(ref->jvm);        getEnvRet = ref->jvm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6);        if (!(getEnvRet == JNI_OK || getEnvRet == JNI_EDETACHED)) {            LOGE("Error calling GetEnv: %d", getEnvRet);            assert(false && "Error calling GetEnv");        }        //        // Thread might actually be detached.        //        // e.g:        // https://github.com/zerotier/ZeroTierOne/blob/91e7ce87f09ac1cfdeaf6ff22c3cedcd93574c86/node/Switch.cpp#L519        //        // Make sure to attach if needed        //        ScopedJNIThreadAttacher attacher{ref->jvm, &env, getEnvRet};        if (env->ExceptionCheck()) {            LOGE("Unhandled pending exception");            return;        }        if (ref->frameListener == NULL) {            LOGE("frameListener is NULL");            return;        }        const unsigned char *bytes = static_cast<const unsigned char*>(frameData);        jbyteArray dataArray = newByteArray(env, bytes, frameLength);        if(env->ExceptionCheck() || dataArray == NULL)        {            return;        }        env->CallVoidMethod(ref->frameListener, VirtualNetworkFrameListener_onVirtualNetworkFrame_method, (jlong)nwid, (jlong)sourceMac, (jlong)destMac, (jlong)etherType, (jlong)vlanid, (jbyteArray)dataArray);        if (env->ExceptionCheck()) {            LOGE("Exception calling onVirtualNetworkFrame");            return;        }    }    void EventCallback(ZT_Node *node,        void *userData,        void *threadData,        enum ZT_Event event,        const void *data) {        LOGV("EventCallback");        JniRef *ref = (JniRef *) userData;        assert(ref);        if (ref->node != node && event != ZT_EVENT_UP) {            LOGE("Nodes not equal. ref->node %p, node %p. Event: %d", ref->node, node, event);            return;        }        JNIEnv *env;        GETENV(env, ref->jvm);        if (env->ExceptionCheck()) {            LOGE("Unhandled pending exception");            return;        }        if (ref->eventListener == NULL) {            LOGE("eventListener is NULL");            return;        }        jobject eventObject = createEvent(env, event);        if (env->ExceptionCheck() || eventObject == NULL) {            return;        }        switch (event) {            case ZT_EVENT_UP: {                LOGD("Event Up");                env->CallVoidMethod(ref->eventListener, EventListener_onEvent_method, (jobject)eventObject);                if (env->ExceptionCheck()) {                    LOGE("Exception calling onEvent");                    return;                }                break;            }            case ZT_EVENT_OFFLINE: {                LOGD("Event Offline");                env->CallVoidMethod(ref->eventListener, EventListener_onEvent_method, (jobject)eventObject);                if (env->ExceptionCheck()) {                    LOGE("Exception calling onEvent");                    return;                }                break;            }            case ZT_EVENT_ONLINE: {                LOGD("Event Online");                env->CallVoidMethod(ref->eventListener, EventListener_onEvent_method, (jobject)eventObject);                if (env->ExceptionCheck()) {                    LOGE("Exception calling onEvent");                    return;                }                break;            }            case ZT_EVENT_DOWN: {                LOGD("Event Down");                env->CallVoidMethod(ref->eventListener, EventListener_onEvent_method, (jobject)eventObject);                if (env->ExceptionCheck()) {                    LOGE("Exception calling onEvent");                    return;                }                break;            }            case ZT_EVENT_FATAL_ERROR_IDENTITY_COLLISION: {                LOGV("Identity Collision");                // call onEvent()                env->CallVoidMethod(ref->eventListener, EventListener_onEvent_method, (jobject)eventObject);                if (env->ExceptionCheck()) {                    LOGE("Exception calling onEvent");                    return;                }            }                break;            case ZT_EVENT_TRACE: {                LOGV("Trace Event");                // call onTrace()                if (data == NULL) {                    break;                }                const char *message = (const char *) data;                jstring messageStr = env->NewStringUTF(message);                if (env->ExceptionCheck() || messageStr == NULL) {                    LOGE("Exception creating new string");                    return;                }                env->CallVoidMethod(ref->eventListener, EventListener_onTrace_method, (jstring)messageStr);                if (env->ExceptionCheck()) {                    LOGE("Exception calling onTrace");                    return;                }            }                break;            case ZT_EVENT_USER_MESSAGE:            case ZT_EVENT_REMOTE_TRACE:                break;        }    }    void StatePutFunction(            ZT_Node *node,            void *userData,            void *threadData,            enum ZT_StateObjectType type,            const uint64_t id[2],            const void *buffer,            int bufferLength) {        LOGV("StatePutFunction");                char p[4096] = {0};        bool secure = false;        int res = 0;        switch (type) {            case ZT_STATE_OBJECT_IDENTITY_PUBLIC:                res = snprintf(p, sizeof(p), "identity.public");                break;            case ZT_STATE_OBJECT_IDENTITY_SECRET:                res = snprintf(p, sizeof(p), "identity.secret");                secure = true;                break;            case ZT_STATE_OBJECT_PLANET:                res = snprintf(p, sizeof(p), "planet");                break;            case ZT_STATE_OBJECT_MOON:                res = snprintf(p, sizeof(p), "moons.d/%.16" PRIx64 ".moon", id[0]);                break;            case ZT_STATE_OBJECT_NETWORK_CONFIG:                res = snprintf(p, sizeof(p), "networks.d/%.16" PRIx64 ".conf", id[0]);                break;            case ZT_STATE_OBJECT_PEER:                res = snprintf(p, sizeof(p), "peers.d/%.10" PRIx64, id[0]);                break;            case ZT_STATE_OBJECT_NULL:                return;        }        if (!(0 <= res && res < sizeof(p))) {            LOGE("snprintf error: %d", res);            return;        }        JniRef *ref = (JniRef*)userData;        assert(ref);        JNIEnv *env;        GETENV(env, ref->jvm);        if (env->ExceptionCheck()) {            LOGE("Unhandled pending exception");            return;        }        if (ref->dataStorePutListener == NULL) {            LOGE("dataStorePutListener is NULL");            return;        }        jstring nameStr = env->NewStringUTF(p);        if (env->ExceptionCheck() || nameStr == NULL) {            LOGE("Exception creating new string");            return;        }        if (bufferLength >= 0) {            LOGD("JNI: Write file: %s", p);            const unsigned char *bytes = static_cast<const unsigned char *>(buffer);            jbyteArray bufferObj = newByteArray(env, bytes, bufferLength);            if(env->ExceptionCheck() || bufferObj == NULL)            {                return;            }            int retval = env->CallIntMethod(ref->dataStorePutListener,                               DataStorePutListener_onDataStorePut_method,                               (jstring)nameStr, (jbyteArray)bufferObj, (jboolean)secure);            if (env->ExceptionCheck()) {                LOGE("Exception calling onDataStorePut");                return;            }            if (retval != 0) {                LOGE("onDataStorePut error: %d", retval);            }        } else {            LOGD("JNI: Delete file: %s", p);            int retval = env->CallIntMethod(ref->dataStorePutListener, DataStorePutListener_onDelete_method, (jstring)nameStr);            if (env->ExceptionCheck()) {                LOGE("Exception calling onDelete");                return;            }            if (retval != 0) {                LOGE("onDelete error: %d", retval);            }        }    }    /**     * This function should return the number of bytes actually stored to the     * buffer or -1 if the state object was not found or the buffer was too     * small to store it.     */    int StateGetFunction(            ZT_Node *node,            void *userData,            void *threadData,            ZT_StateObjectType type,            const uint64_t id[2],            void *buffer,            unsigned int bufferLength) {        LOGV("StateGetFunction");        char p[4096] = {0};        int res = 0;        switch (type) {            case ZT_STATE_OBJECT_IDENTITY_PUBLIC:                res = snprintf(p, sizeof(p), "identity.public");                break;            case ZT_STATE_OBJECT_IDENTITY_SECRET:                res = snprintf(p, sizeof(p), "identity.secret");                break;            case ZT_STATE_OBJECT_PLANET:                res = snprintf(p, sizeof(p), "planet");                break;            case ZT_STATE_OBJECT_MOON:                res = snprintf(p, sizeof(p), "moons.d/%.16" PRIx64 ".moon", id[0]);                break;            case ZT_STATE_OBJECT_NETWORK_CONFIG:                res = snprintf(p, sizeof(p), "networks.d/%.16" PRIx64 ".conf", id[0]);                break;            case ZT_STATE_OBJECT_PEER:                res = snprintf(p, sizeof(p), "peers.d/%.10" PRIx64, id[0]);                break;            case ZT_STATE_OBJECT_NULL:                return -100;        }        if (!(0 <= res && res < sizeof(p))) {            LOGE("snprintf error: %d", res);            return -101;        }        JniRef *ref = (JniRef*)userData;        assert(ref);        JNIEnv *env;        GETENV(env, ref->jvm);        if (env->ExceptionCheck()) {            LOGE("Unhandled pending exception");            return -102;        }        if (ref->dataStoreGetListener == NULL) {            LOGE("dataStoreGetListener is NULL");            return -103;        }        jstring nameStr = env->NewStringUTF(p);        if(env->ExceptionCheck() || nameStr == NULL)        {            LOGE("Error creating name string object");            return -104; // out of memory        }        jbyteArray bufferObj = newByteArray(env, bufferLength);        if(env->ExceptionCheck() || bufferObj == NULL)        {            return -105;        }        LOGV("Calling onDataStoreGet(%s, %p)", p, buffer);        int retval = (int)env->CallLongMethod(                ref->dataStoreGetListener,                DataStoreGetListener_onDataStoreGet_method,                (jstring)nameStr,                (jbyteArray)bufferObj);        if (env->ExceptionCheck()) {            LOGE("Exception calling onDataStoreGet");            return -106;        }        LOGV("onDataStoreGet returned %d", retval);        if(retval > 0)        {            if (retval > bufferLength) {                LOGE("retval > bufferLength. retval: %d, bufferLength: %u", retval, bufferLength);                return -107;            }            void *data = env->GetPrimitiveArrayCritical(bufferObj, NULL);            memcpy(buffer, data, retval);            env->ReleasePrimitiveArrayCritical(bufferObj, data, 0);        }        return retval;    }    /**     * The function must return zero on success and may return any error code     * on failure. Note that success does not (of course) guarantee packet     * delivery. It only means that the packet appears to have been sent.     */    int WirePacketSendFunction(ZT_Node *node,        void *userData,        void *threadData,        int64_t localSocket,        const struct sockaddr_storage *remoteAddress,        const void *buffer,        unsigned int bufferSize,        unsigned int ttl)    {        LOGV("WirePacketSendFunction(%" PRId64 ", %p, %p, %u, %u)", localSocket, remoteAddress, buffer, bufferSize, ttl);        JniRef *ref = (JniRef*)userData;        assert(ref);        assert(ref->node == node);        JNIEnv *env;        GETENV(env, ref->jvm);        if (env->ExceptionCheck()) {            LOGE("Unhandled pending exception");            return -100;        }        if (ref->packetSender == NULL) {            LOGE("packetSender is NULL");            return -101;        }        //        // may be NULL        //        jobject remoteAddressObj = newInetSocketAddress(env, *remoteAddress);        if (env->ExceptionCheck()) {            return -102;        }        const unsigned char *bytes = static_cast<const unsigned char *>(buffer);        jbyteArray bufferObj = newByteArray(env, bytes, bufferSize);        if (env->ExceptionCheck() || bufferObj == NULL)        {            return -103;        }                int retval = env->CallIntMethod(ref->packetSender, PacketSender_onSendPacketRequested_method, (jlong)localSocket, (jobject)remoteAddressObj, (jbyteArray)bufferObj, (jint)0);        if (env->ExceptionCheck()) {            LOGE("Exception calling onSendPacketRequested");            return -104;        }        LOGV("JNI Packet Sender returned: %d", retval);        return retval;    }    /**     * This function must return nonzero (true) if the path should be used.     */    int PathCheckFunction(ZT_Node *node,        void *userPtr,        void *threadPtr,        uint64_t address,        int64_t localSocket,        const struct sockaddr_storage *remoteAddress)    {        LOGV("PathCheckFunction");        JniRef *ref = (JniRef*)userPtr;        assert(ref);        assert(ref->node == node);        if(ref->pathChecker == NULL) {            return true;        }        JNIEnv *env;        GETENV(env, ref->jvm);        if (env->ExceptionCheck()) {            LOGE("Unhandled pending exception");            return true;        }        //        // may be NULL        //        jobject remoteAddressObj = newInetSocketAddress(env, *remoteAddress);        if (env->ExceptionCheck()) {            return true;        }        jboolean ret = env->CallBooleanMethod(ref->pathChecker, PathChecker_onPathCheck_method, (jlong)address, (jlong)localSocket, (jobject)remoteAddressObj);        if (env->ExceptionCheck()) {            LOGE("Exception calling onPathCheck");            return true;        }        return ret;    }    /**     * It must return a nonzero (true) value if the result buffer has been filled with an address.     */    int PathLookupFunction(ZT_Node *node,        void *userPtr,        void *threadPtr,        uint64_t address,        int ss_family,        struct sockaddr_storage *result)    {        LOGV("PathLookupFunction");        JniRef *ref = (JniRef*)userPtr;        assert(ref);        assert(ref->node == node);        if(ref->pathChecker == NULL) {            return false;        }        JNIEnv *env;        GETENV(env, ref->jvm);        if (env->ExceptionCheck()) {            LOGE("Unhandled pending exception");            return false;        }                //        // may be NULL        //        jobject sockAddressObject = env->CallObjectMethod(ref->pathChecker, PathChecker_onPathLookup_method, (jlong)address, (jint)ss_family);        if (env->ExceptionCheck()) {            LOGE("Unable to call onPathLookup implementation");            return false;        }        if(sockAddressObject == NULL)        {            LOGE("Unable to call onPathLookup implementation");            return false;        }        *result = fromSocketAddressObject(env, sockAddressObject);        if (env->ExceptionCheck() || isSocketAddressEmpty(*result)) {            return false;        }        return true;    }    typedef std::map<int64_t, JniRef*> NodeMap;    NodeMap nodeMap;    ZeroTier::Mutex nodeMapMutex;    bool isInited(int64_t nodeId) {        ZeroTier::Mutex::Lock lock(nodeMapMutex);        NodeMap::iterator found = nodeMap.find(nodeId);        if (found == nodeMap.end()) {            //            // not in map yet, or has been removed from map            //            return false;        }                JniRef *ref = found->second;        assert(ref);        return ref->inited;    }    bool JniRef::finishInitializing() {        ZeroTier::Mutex::Lock lock(nodeMapMutex);        NodeMap::iterator found = nodeMap.find(id);        if (found != nodeMap.end()) {            //            // already in map            //            LOGE("Cannot finish initializing; node is already in map");            return false;        }        nodeMap.insert(std::make_pair(id, this));        assert(!inited);        inited = true;        return true;    }    ZT_Node* findNode(int64_t nodeId)    {        ZeroTier::Mutex::Lock lock(nodeMapMutex);        NodeMap::iterator found = nodeMap.find(nodeId);        assert(found != nodeMap.end());        JniRef *ref = found->second;        assert(ref);        return ref->node;    }    JniRef *removeRef(int64_t nodeId) {        ZeroTier::Mutex::Lock lock(nodeMapMutex);        NodeMap::iterator found = nodeMap.find(nodeId);        if (found == nodeMap.end()) {            return nullptr;        }        JniRef *ref = found->second;        assert(ref);        nodeMap.erase(nodeId);        return ref;    }}#ifdef __cplusplusextern "C" {#endifJNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved){    setupJNICache(vm);    return JNI_VERSION_1_6;}JNIEXPORT void JNICALL JNI_OnUnload(JavaVM *vm, void *reserved){    teardownJNICache(vm);}/* * Class:     com_zerotier_sdk_Node * Method:    node_init * Signature: (JLcom/zerotier/sdk/DataStoreGetListener;Lcom/zerotier/sdk/DataStorePutListener;Lcom/zerotier/sdk/PacketSender;Lcom/zerotier/sdk/EventListener;Lcom/zerotier/sdk/VirtualNetworkFrameListener;Lcom/zerotier/sdk/VirtualNetworkConfigListener;Lcom/zerotier/sdk/PathChecker;)Lcom/zerotier/sdk/ResultCode; */JNIEXPORT jobject JNICALL Java_com_zerotier_sdk_Node_node_1init(    JNIEnv *env, jobject obj, jlong now, jobject dataStoreGetListener,    jobject dataStorePutListener, jobject packetSender, jobject eventListener,    jobject frameListener, jobject configListener,    jobject pathChecker){    LOGV("Creating ZT_Node struct");    jobject resultObject = ResultCode_RESULT_OK_enum;    JavaVM *vm;    GETJAVAVM(env, vm);    assert(dataStoreGetListener != NULL);    assert(dataStorePutListener != NULL);    assert(packetSender != NULL);    assert(frameListener != NULL);    assert(configListener != NULL);    assert(eventListener != NULL);    //    // OPTIONAL, pathChecker may be NULL    ////    assert(pathChecker != NULL);    ZT_Node_Callbacks callbacks{};    callbacks.stateGetFunction = &StateGetFunction;    callbacks.statePutFunction = &StatePutFunction;    callbacks.wirePacketSendFunction = &WirePacketSendFunction;    callbacks.virtualNetworkFrameFunction = &VirtualNetworkFrameFunctionCallback;    callbacks.virtualNetworkConfigFunction = &VirtualNetworkConfigFunctionCallback;    callbacks.eventCallback = &EventCallback;    callbacks.pathCheckFunction = &PathCheckFunction;    callbacks.pathLookupFunction = &PathLookupFunction;    //    // a bit of a confusing dance here where ref and node both know about each other    //    JniRef *ref = new JniRef(            now,            vm,            dataStoreGetListener,            dataStorePutListener,            packetSender,            eventListener,            frameListener,            configListener,            pathChecker);    ZT_Node *node;    ZT_ResultCode rc = ZT_Node_new(        &node,        ref,        NULL,        &callbacks,        (int64_t)now);    if (env->ExceptionCheck()) {        LOGE("Exception creating Node");        if(node)        {            ZT_Node_delete(node);            node = NULL;        }        delete ref;        ref = NULL;        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    if(rc != ZT_RESULT_OK)    {        LOGE("Error creating Node: %d", rc);        resultObject = createResultObject(env, rc);        if (env->ExceptionCheck() || resultObject == NULL) {            return NULL;        }        if(node)        {            ZT_Node_delete(node);            node = NULL;        }        delete ref;        ref = NULL;        return resultObject;    }    //    // node is now updated    //    ref->node = node;    if (!ref->finishInitializing()) {        LOGE("finishInitializing() failed");        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    return resultObject;}/* * Class:     com_zerotier_sdk_Node * Method:    node_isInited * Signature: (J)Z */JNIEXPORT jboolean JNICALL Java_com_zerotier_sdk_Node_node_1isInited        (JNIEnv *env, jobject obj, jlong nodeId) {    return isInited(nodeId);}/* * Class:     com_zerotier_sdk_Node * Method:    node_delete * Signature: (J)V */JNIEXPORT void JNICALL Java_com_zerotier_sdk_Node_node_1delete(    JNIEnv *env, jobject obj, jlong id){    LOGV("Destroying ZT_Node struct");    int64_t nodeId = (int64_t)id;    JniRef *ref = removeRef(nodeId);    if (!ref) {        return;    }    ZT_Node_delete(ref->node);    delete ref;}/* * Class:     com_zerotier_sdk_Node * Method:    processVirtualNetworkFrame * Signature: (JJJJJII[B[J)Lcom/zerotier/sdk/ResultCode; */JNIEXPORT jobject JNICALL Java_com_zerotier_sdk_Node_processVirtualNetworkFrame(    JNIEnv *env, jobject obj,    jlong id,    jlong in_now,    jlong in_nwid,    jlong in_sourceMac,    jlong in_destMac,    jint in_etherType,    jint in_vlanId,    jbyteArray in_frameData,    jlongArray out_nextBackgroundTaskDeadline){    int64_t nodeId = (int64_t) id;    ZT_Node *node = findNode(nodeId);    unsigned int nbtd_len = env->GetArrayLength(out_nextBackgroundTaskDeadline);    if(nbtd_len < 1)    {        // array for next background task length has 0 elements!        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    int64_t now = (int64_t)in_now;    uint64_t nwid = (uint64_t)in_nwid;    uint64_t sourceMac = (uint64_t)in_sourceMac;    uint64_t destMac = (uint64_t)in_destMac;    unsigned int etherType = (unsigned int)in_etherType;    unsigned int vlanId = (unsigned int)in_vlanId;    unsigned int frameLength = env->GetArrayLength(in_frameData);    void *frameData = env->GetPrimitiveArrayCritical(in_frameData, NULL);    //    // need local copy of frameData because arbitrary code may run in ZT_Node_processVirtualNetworkFrame and no other JNI work may happen between GetPrimitiveArrayCritical / ReleasePrimitiveArrayCritical    //    void *localData = malloc(frameLength);    memcpy(localData, frameData, frameLength);    env->ReleasePrimitiveArrayCritical(in_frameData, frameData, 0);    int64_t nextBackgroundTaskDeadline = 0;    ZT_ResultCode rc = ZT_Node_processVirtualNetworkFrame(        node,        NULL,        now,        nwid,        sourceMac,        destMac,        etherType,        vlanId,        (const void*)localData,        frameLength,        &nextBackgroundTaskDeadline);    if (env->ExceptionCheck()) {        LOGE("Exception calling ZT_Node_processVirtualNetworkFrame");        free(localData);        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    if (rc != ZT_RESULT_OK) {        LOGE("ZT_Node_processVirtualNetworkFrame returned: %d", rc);    }    free(localData);    jlong *outDeadline = (jlong*)env->GetPrimitiveArrayCritical(out_nextBackgroundTaskDeadline, NULL);    outDeadline[0] = (jlong)nextBackgroundTaskDeadline;    env->ReleasePrimitiveArrayCritical(out_nextBackgroundTaskDeadline, outDeadline, 0);    return createResultObject(env, rc);}/* * Class:     com_zerotier_sdk_Node * Method:    processWirePacket * Signature: (JJJLjava/net/InetSocketAddress;[B[J)Lcom/zerotier/sdk/ResultCode; */JNIEXPORT jobject JNICALL Java_com_zerotier_sdk_Node_processWirePacket(    JNIEnv *env, jobject obj,    jlong id,    jlong in_now,    jlong in_localSocket,    jobject in_remoteAddress,    jbyteArray in_packetData,    jlongArray out_nextBackgroundTaskDeadline){    int64_t nodeId = (int64_t) id;    ZT_Node *node = findNode(nodeId);    unsigned int nbtd_len = (unsigned int)env->GetArrayLength(out_nextBackgroundTaskDeadline);    if(nbtd_len < 1)    {        LOGE("nbtd_len < 1");        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    int64_t now = (int64_t)in_now;    sockaddr_storage remoteAddress = fromSocketAddressObject(env, in_remoteAddress);    if (env->ExceptionCheck() || isSocketAddressEmpty(remoteAddress)) {        return NULL;    }    unsigned int packetLength = (unsigned int)env->GetArrayLength(in_packetData);    if(packetLength == 0)    {        LOGE("Empty packet?!?");        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    void *packetData = env->GetPrimitiveArrayCritical(in_packetData, NULL);    //    // need local copy of packetData because arbitrary code may run in ZT_Node_processWirePacket and no other JNI work may happen between GetPrimitiveArrayCritical / ReleasePrimitiveArrayCritical    //    void *localData = malloc(packetLength);    memcpy(localData, packetData, packetLength);    env->ReleasePrimitiveArrayCritical(in_packetData, packetData, 0);    int64_t nextBackgroundTaskDeadline = 0;    ZT_ResultCode rc = ZT_Node_processWirePacket(        node,        NULL,        now,        in_localSocket,        &remoteAddress,        localData,        packetLength,        &nextBackgroundTaskDeadline);    if (env->ExceptionCheck()) {        LOGE("Exception calling ZT_Node_processWirePacket");        free(localData);        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    if(rc != ZT_RESULT_OK)    {        LOGE("ZT_Node_processWirePacket returned: %d", rc);    }    free(localData);    jlong *outDeadline = (jlong*)env->GetPrimitiveArrayCritical(out_nextBackgroundTaskDeadline, NULL);    outDeadline[0] = (jlong)nextBackgroundTaskDeadline;    env->ReleasePrimitiveArrayCritical(out_nextBackgroundTaskDeadline, outDeadline, 0);    return createResultObject(env, rc);}/* * Class:     com_zerotier_sdk_Node * Method:    processBackgroundTasks * Signature: (JJ[J)Lcom/zerotier/sdk/ResultCode; */JNIEXPORT jobject JNICALL Java_com_zerotier_sdk_Node_processBackgroundTasks(    JNIEnv *env, jobject obj,    jlong id,    jlong in_now,    jlongArray out_nextBackgroundTaskDeadline){    int64_t nodeId = (int64_t) id;    ZT_Node *node = findNode(nodeId);    unsigned int nbtd_len = env->GetArrayLength(out_nextBackgroundTaskDeadline);    if(nbtd_len < 1)    {        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    int64_t now = (int64_t)in_now;    int64_t nextBackgroundTaskDeadline = 0;    ZT_ResultCode rc = ZT_Node_processBackgroundTasks(node, NULL, now, &nextBackgroundTaskDeadline);    if (env->ExceptionCheck()) {        LOGE("Exception calling ZT_Node_processBackgroundTasks");        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    if (rc != ZT_RESULT_OK) {        LOGE("ZT_Node_processBackgroundTasks returned: %d", rc);    }    jlong *outDeadline = (jlong*)env->GetPrimitiveArrayCritical(out_nextBackgroundTaskDeadline, NULL);    outDeadline[0] = (jlong)nextBackgroundTaskDeadline;    env->ReleasePrimitiveArrayCritical(out_nextBackgroundTaskDeadline, outDeadline, 0);    return createResultObject(env, rc);}/* * Class:     com_zerotier_sdk_Node * Method:    join * Signature: (JJ)Lcom/zerotier/sdk/ResultCode; */JNIEXPORT jobject JNICALL Java_com_zerotier_sdk_Node_join(    JNIEnv *env, jobject obj, jlong id, jlong in_nwid){    int64_t nodeId = (int64_t) id;    ZT_Node *node = findNode(nodeId);    uint64_t nwid = (uint64_t)in_nwid;    ZT_ResultCode rc = ZT_Node_join(node, nwid, NULL, NULL);    if (env->ExceptionCheck()) {        LOGE("Exception calling ZT_Node_join");        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    return createResultObject(env, rc);}/* * Class:     com_zerotier_sdk_Node * Method:    leave * Signature: (JJ)Lcom/zerotier/sdk/ResultCode; */JNIEXPORT jobject JNICALL Java_com_zerotier_sdk_Node_leave(    JNIEnv *env, jobject obj, jlong id, jlong in_nwid){    int64_t nodeId = (int64_t) id;    ZT_Node *node = findNode(nodeId);    uint64_t nwid = (uint64_t)in_nwid;    ZT_ResultCode rc = ZT_Node_leave(node, nwid, NULL, NULL);    if (env->ExceptionCheck()) {        LOGE("Exception calling ZT_Node_leave");        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    return createResultObject(env, rc);}/* * Class:     com_zerotier_sdk_Node * Method:    multicastSubscribe * Signature: (JJJJ)Lcom/zerotier/sdk/ResultCode; */JNIEXPORT jobject JNICALL Java_com_zerotier_sdk_Node_multicastSubscribe(    JNIEnv *env, jobject obj,    jlong id,    jlong in_nwid,    jlong in_multicastGroup,    jlong in_multicastAdi){    int64_t nodeId = (int64_t) id;    ZT_Node *node = findNode(nodeId);    uint64_t nwid = (uint64_t)in_nwid;    uint64_t multicastGroup = (uint64_t)in_multicastGroup;    unsigned long multicastAdi = (unsigned long)in_multicastAdi;    ZT_ResultCode rc = ZT_Node_multicastSubscribe(        node, NULL, nwid, multicastGroup, multicastAdi);    if (env->ExceptionCheck()) {        LOGE("Exception calling ZT_Node_multicastSubscribe");        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    return createResultObject(env, rc);}/* * Class:     com_zerotier_sdk_Node * Method:    multicastUnsubscribe * Signature: (JJJJ)Lcom/zerotier/sdk/ResultCode; */JNIEXPORT jobject JNICALL Java_com_zerotier_sdk_Node_multicastUnsubscribe(    JNIEnv *env, jobject obj,    jlong id,    jlong in_nwid,    jlong in_multicastGroup,    jlong in_multicastAdi){    int64_t nodeId = (int64_t) id;    ZT_Node *node = findNode(nodeId);    uint64_t nwid = (uint64_t)in_nwid;    uint64_t multicastGroup = (uint64_t)in_multicastGroup;    unsigned long multicastAdi = (unsigned long)in_multicastAdi;    ZT_ResultCode rc = ZT_Node_multicastUnsubscribe(        node, nwid, multicastGroup, multicastAdi);    if (env->ExceptionCheck()) {        LOGE("Exception calling ZT_Node_multicastUnsubscribe");        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    return createResultObject(env, rc);}/* * Class:   com_zerotier_sdk_Node * Method:  orbit * Signature: (JJJ)Lcom/zerotier/sdk/ResultCode; */JNIEXPORT jobject JNICALL Java_com_zerotier_sdk_Node_orbit(    JNIEnv *env, jobject obj,    jlong id,    jlong in_moonWorldId,    jlong in_moonSeed){    int64_t nodeId = (int64_t)id;    ZT_Node *node = findNode(nodeId);    uint64_t moonWorldId = (uint64_t)in_moonWorldId;    uint64_t moonSeed = (uint64_t)in_moonSeed;    ZT_ResultCode rc = ZT_Node_orbit(node, NULL, moonWorldId, moonSeed);    if (env->ExceptionCheck()) {        LOGE("Exception calling ZT_Node_orbit");        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    return createResultObject(env, rc);}/* * Class:   com_zerotier_sdk_Node * Method:  deorbit * Signature: (JJ)L/com/zerotier/sdk/ResultCode; */JNIEXPORT jobject JNICALL Java_com_zerotier_sdk_Node_deorbit(    JNIEnv *env, jobject obj,    jlong id,    jlong in_moonWorldId){    int64_t nodeId = (int64_t)id;    ZT_Node *node = findNode(nodeId);    uint64_t moonWorldId = (uint64_t)in_moonWorldId;    ZT_ResultCode rc = ZT_Node_deorbit(node, NULL, moonWorldId);    if (env->ExceptionCheck()) {        LOGE("Exception calling ZT_Node_deorbit");        return ResultCode_RESULT_FATAL_ERROR_INTERNAL_enum;    }    return createResultObject(env, rc);}/* * Class:     com_zerotier_sdk_Node * Method:    address * Signature: (J)J */JNIEXPORT jlong JNICALL Java_com_zerotier_sdk_Node_address(    JNIEnv *env , jobject obj, jlong id){    int64_t nodeId = (int64_t) id;    ZT_Node *node = findNode(nodeId);    uint64_t address = ZT_Node_address(node);    return (jlong)address;}/* * Class:     com_zerotier_sdk_Node * Method:    status * Signature: (J)Lcom/zerotier/sdk/NodeStatus; */JNIEXPORT jobject JNICALL Java_com_zerotier_sdk_Node_status   (JNIEnv *env, jobject obj, jlong id){    int64_t nodeId = (int64_t) id;    ZT_Node *node = findNode(nodeId);    ZT_NodeStatus nodeStatus;    ZT_Node_status(node, &nodeStatus);    return newNodeStatus(env, nodeStatus);}/* * Class:     com_zerotier_sdk_Node * Method:    networkConfig * Signature: (JJ)Lcom/zerotier/sdk/VirtualNetworkConfig; */JNIEXPORT jobject JNICALL Java_com_zerotier_sdk_Node_networkConfig(    JNIEnv *env, jobject obj, jlong id, jlong nwid){    int64_t nodeId = (int64_t) id;    ZT_Node *node = findNode(nodeId);    ZT_VirtualNetworkConfig *vnetConfig = ZT_Node_networkConfig(node, nwid);    if (vnetConfig == NULL) {        LOGE("vnetConfig == NULL");        return NULL;    }    jobject vnetConfigObject = newNetworkConfig(env, *vnetConfig);    ZT_Node_freeQueryResult(node, vnetConfig);    return vnetConfigObject;}/* * Class:     com_zerotier_sdk_Node * Method:    version * Signature: ()Lcom/zerotier/sdk/Version; */JNIEXPORT jobject JNICALL Java_com_zerotier_sdk_Node_version(    JNIEnv *env, jobject obj){    int major = 0;    int minor = 0;    int revision = 0;    ZT_version(&major, &minor, &revision);    return newVersion(env, major, minor, revision);}/* * Class:     com_zerotier_sdk_Node * Method:    peers * Signature: (J)[Lcom/zerotier/sdk/Peer; */JNIEXPORT jobjectArray JNICALL Java_com_zerotier_sdk_Node_peers(    JNIEnv *env, jobject obj, jlong id){    int64_t nodeId = (int64_t) id;    ZT_Node *node = findNode(nodeId);    ZT_PeerList *peerList = ZT_Node_peers(node);    if(peerList == NULL)    {        LOGE("ZT_Node_peers returned NULL");        return NULL;    }    jobjectArray peerArrayObj = newPeerArray(env, peerList->peers, peerList->peerCount);    ZT_Node_freeQueryResult(node, peerList);    peerList = NULL;    return peerArrayObj;}/* * Class:     com_zerotier_sdk_Node * Method:    networkConfigs * Signature: (J)[Lcom/zerotier/sdk/VirtualNetworkConfig; */JNIEXPORT jobjectArray JNICALL Java_com_zerotier_sdk_Node_networkConfigs(    JNIEnv *env, jobject obj, jlong id){    int64_t nodeId = (int64_t) id;    ZT_Node *node = findNode(nodeId);    ZT_VirtualNetworkList *networkList = ZT_Node_networks(node);    if(networkList == NULL)    {        LOGE("ZT_Node_networks returned NULL");        return NULL;    }    jobjectArray networkListObject = newVirtualNetworkConfigArray(env, networkList->networks, networkList->networkCount);    ZT_Node_freeQueryResult(node, networkList);    return networkListObject;}#ifdef __cplusplus} // extern "C"#endif
 |