mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
fe30193a97
* it lives? * clean up * add readme and add x86_64 to abi filters * disable route poking on android * make it compile on android * it compiles!!111 * typofix * re-enable ccache for android
87 lines
2.4 KiB
C++
87 lines
2.4 KiB
C++
#include "network_loki_lokinet_LokinetDaemon.h"
|
|
#include "lokinet_jni_common.hpp"
|
|
#include "lokinet_jni_vpnio.hpp"
|
|
#include <llarp.hpp>
|
|
|
|
extern "C"
|
|
{
|
|
JNIEXPORT jobject JNICALL
|
|
Java_network_loki_lokinet_LokinetDaemon_Obtain(JNIEnv* env, jclass)
|
|
{
|
|
auto* ptr = new llarp::Context();
|
|
if (ptr == nullptr)
|
|
return nullptr;
|
|
return env->NewDirectByteBuffer(ptr, sizeof(llarp::Context));
|
|
}
|
|
|
|
JNIEXPORT void JNICALL
|
|
Java_network_loki_lokinet_LokinetDaemon_Free(JNIEnv* env, jclass, jobject buf)
|
|
{
|
|
auto ptr = FromBuffer<llarp::Context>(env, buf);
|
|
delete ptr;
|
|
}
|
|
|
|
JNIEXPORT jboolean JNICALL
|
|
Java_network_loki_lokinet_LokinetDaemon_Configure(JNIEnv* env, jobject self, jobject conf)
|
|
{
|
|
auto ptr = GetImpl<llarp::Context>(env, self);
|
|
auto config = GetImpl<llarp::Config>(env, conf);
|
|
if (ptr == nullptr || config == nullptr)
|
|
return JNI_FALSE;
|
|
try
|
|
{
|
|
llarp::RuntimeOptions opts{};
|
|
ptr->Configure(*config);
|
|
ptr->Setup(opts);
|
|
}
|
|
catch (...)
|
|
{
|
|
return JNI_FALSE;
|
|
}
|
|
return JNI_TRUE;
|
|
}
|
|
|
|
JNIEXPORT jint JNICALL
|
|
Java_network_loki_lokinet_LokinetDaemon_Mainloop(JNIEnv* env, jobject self)
|
|
{
|
|
auto ptr = GetImpl<llarp::Context>(env, self);
|
|
if (ptr == nullptr)
|
|
return -1;
|
|
llarp::RuntimeOptions opts{};
|
|
return ptr->Run(opts);
|
|
}
|
|
|
|
JNIEXPORT jboolean JNICALL
|
|
Java_network_loki_lokinet_LokinetDaemon_IsRunning(JNIEnv* env, jobject self)
|
|
{
|
|
auto ptr = GetImpl<llarp::Context>(env, self);
|
|
return (ptr != nullptr && ptr->IsUp()) ? JNI_TRUE : JNI_FALSE;
|
|
}
|
|
|
|
JNIEXPORT jboolean JNICALL
|
|
Java_network_loki_lokinet_LokinetDaemon_Stop(JNIEnv* env, jobject self)
|
|
{
|
|
auto ptr = GetImpl<llarp::Context>(env, self);
|
|
if (ptr == nullptr)
|
|
return JNI_FALSE;
|
|
if (not ptr->IsUp())
|
|
return JNI_FALSE;
|
|
ptr->CloseAsync();
|
|
ptr->Wait();
|
|
return ptr->IsUp() ? JNI_FALSE : JNI_TRUE;
|
|
}
|
|
|
|
JNIEXPORT jboolean JNICALL
|
|
Java_network_loki_lokinet_LokinetDaemon_InjectVPN(JNIEnv* env, jobject self, jobject vpn)
|
|
{
|
|
auto ptr = GetImpl<llarp::Context>(env, self);
|
|
auto impl = GetImpl<lokinet_jni_vpnio>(env, vpn);
|
|
if (ptr == nullptr || impl == nullptr)
|
|
return JNI_FALSE;
|
|
if (impl->info.netmask == 0)
|
|
return JNI_FALSE;
|
|
if (not impl->Init(ptr))
|
|
return JNI_FALSE;
|
|
return llarp_main_inject_default_vpn(ptr, &impl->io, impl->info) ? JNI_TRUE : JNI_FALSE;
|
|
}
|
|
} |