mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
a82907bc6c
Apple supports anything here that Clang supports and should have them set the same as everywhere else. Most importantly this gives apple the -Wno-deprecated-declarations flag which has been driving me nuts on macos. This also version-gates the -Wno-deprecated-declarations so that it will turn on again when we bump the version beyond .10.
401 lines
14 KiB
Objective-C
401 lines
14 KiB
Objective-C
#include <Foundation/Foundation.h>
|
|
#include <NetworkExtension/NetworkExtension.h>
|
|
#include "context_wrapper.h"
|
|
#include "DNSTrampoline.h"
|
|
|
|
#define LLARP_APPLE_PACKET_BUF_SIZE 64
|
|
|
|
@interface LLARPPacketTunnel : NEPacketTunnelProvider
|
|
{
|
|
void* lokinet;
|
|
llarp_incoming_packet packet_buf[LLARP_APPLE_PACKET_BUF_SIZE];
|
|
@public
|
|
NEPacketTunnelNetworkSettings* settings;
|
|
@public
|
|
NEIPv4Route* tun_route4;
|
|
@public
|
|
NEIPv6Route* tun_route6;
|
|
LLARPDNSTrampoline* dns_tramp;
|
|
}
|
|
|
|
- (void)startTunnelWithOptions:(NSDictionary<NSString*, NSObject*>*)options
|
|
completionHandler:(void (^)(NSError* error))completionHandler;
|
|
|
|
- (void)stopTunnelWithReason:(NEProviderStopReason)reason
|
|
completionHandler:(void (^)(void))completionHandler;
|
|
|
|
- (void)handleAppMessage:(NSData*)messageData
|
|
completionHandler:(void (^)(NSData* responseData))completionHandler;
|
|
|
|
- (void)readPackets;
|
|
|
|
- (void)updateNetworkSettings;
|
|
|
|
@end
|
|
|
|
static void
|
|
nslogger(const char* msg)
|
|
{
|
|
NSLog(@"%s", msg);
|
|
}
|
|
|
|
static void
|
|
packet_writer(int af, const void* data, size_t size, void* ctx)
|
|
{
|
|
if (ctx == nil || data == nil)
|
|
return;
|
|
|
|
NSData* buf = [NSData dataWithBytesNoCopy:(void*)data length:size freeWhenDone:NO];
|
|
LLARPPacketTunnel* t = (__bridge LLARPPacketTunnel*)ctx;
|
|
[t.packetFlow writePackets:@[buf] withProtocols:@[[NSNumber numberWithInt:af]]];
|
|
}
|
|
|
|
static void
|
|
start_packet_reader(void* ctx)
|
|
{
|
|
if (ctx == nil)
|
|
return;
|
|
|
|
LLARPPacketTunnel* t = (__bridge LLARPPacketTunnel*)ctx;
|
|
[t readPackets];
|
|
}
|
|
|
|
static void
|
|
add_ipv4_route(const char* addr, const char* netmask, void* ctx)
|
|
{
|
|
NSLog(@"Adding IPv4 route %s:%s to packet tunnel", addr, netmask);
|
|
NEIPv4Route* route =
|
|
[[NEIPv4Route alloc] initWithDestinationAddress:[NSString stringWithUTF8String:addr]
|
|
subnetMask:[NSString stringWithUTF8String:netmask]];
|
|
|
|
LLARPPacketTunnel* t = (__bridge LLARPPacketTunnel*)ctx;
|
|
for (NEIPv4Route* r in t->settings.IPv4Settings.includedRoutes)
|
|
if ([r.destinationAddress isEqualToString:route.destinationAddress] &&
|
|
[r.destinationSubnetMask isEqualToString:route.destinationSubnetMask])
|
|
return; // Already in the settings, nothing to add.
|
|
|
|
t->settings.IPv4Settings.includedRoutes =
|
|
[t->settings.IPv4Settings.includedRoutes arrayByAddingObject:route];
|
|
|
|
[t updateNetworkSettings];
|
|
}
|
|
|
|
static void
|
|
del_ipv4_route(const char* addr, const char* netmask, void* ctx)
|
|
{
|
|
NSLog(@"Removing IPv4 route %s:%s to packet tunnel", addr, netmask);
|
|
NEIPv4Route* route =
|
|
[[NEIPv4Route alloc] initWithDestinationAddress:[NSString stringWithUTF8String:addr]
|
|
subnetMask:[NSString stringWithUTF8String:netmask]];
|
|
|
|
LLARPPacketTunnel* t = (__bridge LLARPPacketTunnel*)ctx;
|
|
NSMutableArray<NEIPv4Route*>* routes =
|
|
[NSMutableArray arrayWithArray:t->settings.IPv4Settings.includedRoutes];
|
|
for (size_t i = 0; i < routes.count; i++)
|
|
{
|
|
if ([routes[i].destinationAddress isEqualToString:route.destinationAddress] &&
|
|
[routes[i].destinationSubnetMask isEqualToString:route.destinationSubnetMask])
|
|
{
|
|
[routes removeObjectAtIndex:i];
|
|
i--;
|
|
}
|
|
}
|
|
|
|
if (routes.count != t->settings.IPv4Settings.includedRoutes.count)
|
|
{
|
|
t->settings.IPv4Settings.includedRoutes = routes;
|
|
[t updateNetworkSettings];
|
|
}
|
|
}
|
|
|
|
static void
|
|
add_ipv6_route(const char* addr, int prefix, void* ctx)
|
|
{
|
|
NEIPv6Route* route =
|
|
[[NEIPv6Route alloc] initWithDestinationAddress:[NSString stringWithUTF8String:addr]
|
|
networkPrefixLength:[NSNumber numberWithInt:prefix]];
|
|
|
|
LLARPPacketTunnel* t = (__bridge LLARPPacketTunnel*)ctx;
|
|
for (NEIPv6Route* r in t->settings.IPv6Settings.includedRoutes)
|
|
if ([r.destinationAddress isEqualToString:route.destinationAddress] &&
|
|
[r.destinationNetworkPrefixLength isEqualToNumber:route.destinationNetworkPrefixLength])
|
|
return; // Already in the settings, nothing to add.
|
|
|
|
t->settings.IPv6Settings.includedRoutes =
|
|
[t->settings.IPv6Settings.includedRoutes arrayByAddingObject:route];
|
|
|
|
[t updateNetworkSettings];
|
|
}
|
|
|
|
static void
|
|
del_ipv6_route(const char* addr, int prefix, void* ctx)
|
|
{
|
|
NEIPv6Route* route =
|
|
[[NEIPv6Route alloc] initWithDestinationAddress:[NSString stringWithUTF8String:addr]
|
|
networkPrefixLength:[NSNumber numberWithInt:prefix]];
|
|
|
|
LLARPPacketTunnel* t = (__bridge LLARPPacketTunnel*)ctx;
|
|
NSMutableArray<NEIPv6Route*>* routes =
|
|
[NSMutableArray arrayWithArray:t->settings.IPv6Settings.includedRoutes];
|
|
for (size_t i = 0; i < routes.count; i++)
|
|
{
|
|
if ([routes[i].destinationAddress isEqualToString:route.destinationAddress] &&
|
|
[routes[i].destinationNetworkPrefixLength
|
|
isEqualToNumber:route.destinationNetworkPrefixLength])
|
|
{
|
|
[routes removeObjectAtIndex:i];
|
|
i--;
|
|
}
|
|
}
|
|
|
|
if (routes.count != t->settings.IPv6Settings.includedRoutes.count)
|
|
{
|
|
t->settings.IPv6Settings.includedRoutes = routes;
|
|
[t updateNetworkSettings];
|
|
}
|
|
}
|
|
|
|
static void
|
|
add_default_route(void* ctx)
|
|
{
|
|
NSLog(@"Making the tunnel the default route");
|
|
LLARPPacketTunnel* t = (__bridge LLARPPacketTunnel*)ctx;
|
|
|
|
t->settings.IPv4Settings.includedRoutes = @[NEIPv4Route.defaultRoute];
|
|
t->settings.IPv6Settings.includedRoutes = @[NEIPv6Route.defaultRoute];
|
|
|
|
[t updateNetworkSettings];
|
|
}
|
|
|
|
static void
|
|
del_default_route(void* ctx)
|
|
{
|
|
NSLog(@"Removing default route from tunnel");
|
|
LLARPPacketTunnel* t = (__bridge LLARPPacketTunnel*)ctx;
|
|
|
|
t->settings.IPv4Settings.includedRoutes = @[t->tun_route4];
|
|
t->settings.IPv6Settings.includedRoutes = @[t->tun_route6];
|
|
|
|
[t updateNetworkSettings];
|
|
}
|
|
|
|
@implementation LLARPPacketTunnel
|
|
|
|
- (void)readPackets
|
|
{
|
|
[self.packetFlow readPacketObjectsWithCompletionHandler:^(NSArray<NEPacket*>* packets) {
|
|
if (lokinet == nil)
|
|
return;
|
|
|
|
size_t size = 0;
|
|
for (NEPacket* p in packets)
|
|
{
|
|
packet_buf[size].bytes = p.data.bytes;
|
|
packet_buf[size].size = p.data.length;
|
|
size++;
|
|
if (size >= LLARP_APPLE_PACKET_BUF_SIZE)
|
|
{
|
|
llarp_apple_incoming(lokinet, packet_buf, size);
|
|
size = 0;
|
|
}
|
|
}
|
|
if (size > 0)
|
|
llarp_apple_incoming(lokinet, packet_buf, size);
|
|
|
|
[self readPackets];
|
|
}];
|
|
}
|
|
|
|
- (void)startTunnelWithOptions:(NSDictionary<NSString*, NSObject*>*)options
|
|
completionHandler:(void (^)(NSError*))completionHandler
|
|
{
|
|
NSString* default_bootstrap = [NSBundle.mainBundle pathForResource:@"bootstrap" ofType:@"signed"];
|
|
NSString* home = NSHomeDirectory();
|
|
|
|
llarp_apple_config conf = {
|
|
.config_dir = home.UTF8String,
|
|
.default_bootstrap = default_bootstrap.UTF8String,
|
|
.ns_logger = nslogger,
|
|
.packet_writer = packet_writer,
|
|
.start_reading = start_packet_reader,
|
|
.route_callbacks =
|
|
{.add_ipv4_route = add_ipv4_route,
|
|
.del_ipv4_route = del_ipv4_route,
|
|
.add_ipv6_route = add_ipv6_route,
|
|
.del_ipv6_route = del_ipv6_route,
|
|
.add_default_route = add_default_route,
|
|
.del_default_route = del_default_route},
|
|
};
|
|
|
|
lokinet = llarp_apple_init(&conf);
|
|
if (!lokinet)
|
|
{
|
|
NSError* init_failure = [NSError errorWithDomain:error_domain
|
|
code:500
|
|
userInfo:@{@"Error": @"Failed to initialize lokinet"}];
|
|
NSLog(@"%@", [init_failure localizedDescription]);
|
|
return completionHandler(init_failure);
|
|
}
|
|
|
|
NSString* ip = [NSString stringWithUTF8String:conf.tunnel_ipv4_ip];
|
|
NSString* mask = [NSString stringWithUTF8String:conf.tunnel_ipv4_netmask];
|
|
|
|
// We don't have a fixed address so just stick some bogus value here:
|
|
settings = [[NEPacketTunnelNetworkSettings alloc] initWithTunnelRemoteAddress:@"127.3.2.1"];
|
|
|
|
#ifdef MACOS_SYSTEM_EXTENSION
|
|
NSString* dns_ip = [NSString stringWithUTF8String:conf.dns_bind_ip];
|
|
#else
|
|
// TODO: placeholder
|
|
NSString* dns_ip = ip;
|
|
#endif
|
|
NSLog(@"setting dns to %@", dns_ip);
|
|
NEDNSSettings* dns = [[NEDNSSettings alloc] initWithServers:@[dns_ip]];
|
|
dns.domainName = @"localhost.loki";
|
|
dns.matchDomains = @[@""];
|
|
// In theory, matchDomains is supposed to be set to DNS suffixes that we resolve. This seems
|
|
// highly unreliable, though: often it just doesn't work at all (perhaps only if we make ourselves
|
|
// the default route?), and even when it does work, it seems there are secret reasons that some
|
|
// domains (such as instagram.com) still won't work because there's some magic sauce in the OS
|
|
// that Apple engineers don't want to disclose ("This is what I expected, actually. Although I
|
|
// will not comment on what I believe is happening here", from
|
|
// https://developer.apple.com/forums/thread/685410).
|
|
//
|
|
// So the documentation sucks and the feature doesn't appear to work, so as much as it would be
|
|
// nice to capture only .loki and .snode when not in exit mode, we can't, so capture everything
|
|
// and use our default upstream.
|
|
dns.matchDomains = @[@""];
|
|
dns.matchDomainsNoSearch = true;
|
|
dns.searchDomains = @[];
|
|
settings.DNSSettings = dns;
|
|
|
|
NWHostEndpoint* upstreamdns_ep;
|
|
if (strlen(conf.upstream_dns))
|
|
upstreamdns_ep =
|
|
[NWHostEndpoint endpointWithHostname:[NSString stringWithUTF8String:conf.upstream_dns]
|
|
port:@(conf.upstream_dns_port).stringValue];
|
|
|
|
NEIPv4Settings* ipv4 = [[NEIPv4Settings alloc] initWithAddresses:@[ip] subnetMasks:@[mask]];
|
|
tun_route4 = [[NEIPv4Route alloc] initWithDestinationAddress:ip subnetMask:mask];
|
|
ipv4.includedRoutes = @[tun_route4];
|
|
settings.IPv4Settings = ipv4;
|
|
|
|
NSString* ip6 = [NSString stringWithUTF8String:conf.tunnel_ipv6_ip];
|
|
NSNumber* ip6_prefix = [NSNumber numberWithUnsignedInt:conf.tunnel_ipv6_prefix];
|
|
NEIPv6Settings* ipv6 = [[NEIPv6Settings alloc] initWithAddresses:@[ip6]
|
|
networkPrefixLengths:@[ip6_prefix]];
|
|
tun_route6 = [[NEIPv6Route alloc] initWithDestinationAddress:ip6 networkPrefixLength:ip6_prefix];
|
|
ipv6.includedRoutes = @[tun_route6];
|
|
settings.IPv6Settings = ipv6;
|
|
|
|
__weak LLARPPacketTunnel* weakSelf = self;
|
|
[self setTunnelNetworkSettings:settings
|
|
completionHandler:^(NSError* err) {
|
|
if (err)
|
|
{
|
|
NSLog(@"Failed to configure lokinet tunnel: %@", err);
|
|
return completionHandler(err);
|
|
}
|
|
LLARPPacketTunnel* strongSelf = weakSelf;
|
|
if (!strongSelf)
|
|
return completionHandler(nil);
|
|
|
|
int start_ret = llarp_apple_start(strongSelf->lokinet, (__bridge void*)strongSelf);
|
|
if (start_ret != 0)
|
|
{
|
|
NSError* start_failure =
|
|
[NSError errorWithDomain:error_domain
|
|
code:start_ret
|
|
userInfo:@{@"Error": @"Failed to start lokinet"}];
|
|
NSLog(@"%@", start_failure);
|
|
lokinet = nil;
|
|
return completionHandler(start_failure);
|
|
}
|
|
|
|
NSString* dns_tramp_ip = @"127.0.0.1";
|
|
NSLog(
|
|
@"Starting DNS exit mode trampoline to %@ on %@:%d",
|
|
upstreamdns_ep,
|
|
dns_tramp_ip,
|
|
dns_trampoline_port);
|
|
NWUDPSession* upstreamdns =
|
|
[strongSelf createUDPSessionThroughTunnelToEndpoint:upstreamdns_ep
|
|
fromEndpoint:nil];
|
|
strongSelf->dns_tramp = [LLARPDNSTrampoline alloc];
|
|
[strongSelf->dns_tramp
|
|
startWithUpstreamDns:upstreamdns
|
|
listenIp:dns_tramp_ip
|
|
listenPort:dns_trampoline_port
|
|
uvLoop:llarp_apple_get_uv_loop(strongSelf->lokinet)
|
|
completionHandler:^(NSError* error) {
|
|
if (error)
|
|
NSLog(@"Error starting dns trampoline: %@", error);
|
|
return completionHandler(error);
|
|
}];
|
|
}];
|
|
}
|
|
|
|
- (void)stopTunnelWithReason:(NEProviderStopReason)reason
|
|
completionHandler:(void (^)(void))completionHandler
|
|
{
|
|
if (lokinet)
|
|
{
|
|
llarp_apple_shutdown(lokinet);
|
|
lokinet = nil;
|
|
}
|
|
completionHandler();
|
|
}
|
|
|
|
- (void)handleAppMessage:(NSData*)messageData
|
|
completionHandler:(void (^)(NSData* responseData))completionHandler
|
|
{
|
|
NSData* response = [NSData dataWithBytesNoCopy:"ok" length:3 freeWhenDone:NO];
|
|
completionHandler(response);
|
|
}
|
|
|
|
- (void)updateNetworkSettings
|
|
{
|
|
self.reasserting = YES;
|
|
__weak LLARPPacketTunnel* weakSelf = self;
|
|
// Apple documentation says that setting network settings to nil isn't required before setting it
|
|
// to a new value. Apple lies: both end up with a routing table that looks exactly the same (from
|
|
// both `netstat -rn` and from everything that happens in `route -n monitor`), but if we don't
|
|
// call with nil first then everything fails to route to either lokinet *and* clearnet through the
|
|
// exit, so there is apparently some special magic internal Apple state that actually *does*
|
|
// require the tunnel settings being reset with nil first.
|
|
//
|
|
// Thanks for the accurate documentation, Apple.
|
|
//
|
|
[self setTunnelNetworkSettings:nil
|
|
completionHandler:^(NSError* err) {
|
|
if (err)
|
|
NSLog(@"Failed to clear lokinet tunnel settings: %@", err);
|
|
LLARPPacketTunnel* strongSelf = weakSelf;
|
|
if (strongSelf)
|
|
{
|
|
[weakSelf
|
|
setTunnelNetworkSettings:strongSelf->settings
|
|
completionHandler:^(NSError* err) {
|
|
LLARPPacketTunnel* strongSelf = weakSelf;
|
|
if (strongSelf)
|
|
strongSelf.reasserting = NO;
|
|
if (err)
|
|
NSLog(@"Failed to reconfigure lokinet tunnel settings: %@", err);
|
|
}];
|
|
}
|
|
}];
|
|
}
|
|
|
|
@end
|
|
|
|
#ifdef MACOS_SYSTEM_EXTENSION
|
|
|
|
int
|
|
main()
|
|
{
|
|
[NEProvider startSystemExtensionMode];
|
|
dispatch_main();
|
|
}
|
|
|
|
#endif
|