From b730dcf6c04b11dbb86f18adb0f0de0acd76a0c2 Mon Sep 17 00:00:00 2001 From: Jeroen Leenarts Date: Mon, 27 Aug 2018 13:52:02 +0200 Subject: [PATCH] Select correct IP version identifier based on packet contents. --- WireGuardNetworkExtension/WireGuardGoWrapper.m | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/WireGuardNetworkExtension/WireGuardGoWrapper.m b/WireGuardNetworkExtension/WireGuardGoWrapper.m index 7631365..17c549e 100644 --- a/WireGuardNetworkExtension/WireGuardGoWrapper.m +++ b/WireGuardNetworkExtension/WireGuardGoWrapper.m @@ -171,9 +171,19 @@ static ssize_t do_write(const void *ctx, const unsigned char *buf, size_t len) os_log_debug([WireGuardGoWrapper log], "do_write - start"); WireGuardGoWrapper *wrapper = (__bridge WireGuardGoWrapper *)ctx; - //TODO: determine IPv4 or IPv6 status. + + //determine IPv4 or IPv6 status. + NSInteger ipVersionBits = (buf[0] & 0xf0) >> 4; + NSNumber *ipVersion = NSDecimalNumber.zero; + if (ipVersionBits == 4) { + ipVersion = @AF_INET; + } else if (ipVersionBits == 6) { + ipVersion = @AF_INET6; + } else { + return 0; + } NSData *packet = [[NSData alloc] initWithBytes:buf length:len]; - [wrapper.packetFlow writePackets:@[packet] withProtocols:@[@AF_INET]]; + [wrapper.packetFlow writePackets:@[packet] withProtocols:@[ipVersion]]; return len; } }