2018-11-06 18:04:53 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// Copyright © 2018 WireGuard LLC. All Rights Reserved.
|
2018-06-22 06:23:39 +00:00
|
|
|
|
2018-11-29 10:16:21 +00:00
|
|
|
import Foundation
|
2018-12-11 22:12:04 +00:00
|
|
|
import Network
|
|
|
|
import NetworkExtension
|
2018-07-07 20:54:44 +00:00
|
|
|
import os.log
|
2018-06-22 06:23:39 +00:00
|
|
|
|
|
|
|
class PacketTunnelProvider: NEPacketTunnelProvider {
|
2018-12-21 22:34:56 +00:00
|
|
|
|
2018-09-26 09:22:54 +00:00
|
|
|
private var wgHandle: Int32?
|
2018-12-11 22:12:04 +00:00
|
|
|
private var networkMonitor: NWPathMonitor?
|
2018-12-21 14:56:03 +00:00
|
|
|
private var lastFirstInterface: NWInterface?
|
|
|
|
private var packetTunnelSettingsGenerator: PacketTunnelSettingsGenerator?
|
2018-09-26 09:22:54 +00:00
|
|
|
|
2018-12-13 03:09:52 +00:00
|
|
|
override func startTunnel(options: [String: NSObject]?, completionHandler startTunnelCompletionHandler: @escaping (Error?) -> Void) {
|
2018-12-13 20:54:53 +00:00
|
|
|
let activationAttemptId = options?["activationAttemptId"] as? String
|
2018-12-22 02:41:54 +00:00
|
|
|
let errorNotifier = ErrorNotifier(activationAttemptId: activationAttemptId)
|
2018-12-13 20:54:53 +00:00
|
|
|
|
2018-12-14 23:12:59 +00:00
|
|
|
guard let tunnelProviderProtocol = protocolConfiguration as? NETunnelProviderProtocol,
|
2018-12-21 23:28:18 +00:00
|
|
|
let tunnelConfiguration = tunnelProviderProtocol.asTunnelConfiguration() else {
|
2018-12-13 20:54:53 +00:00
|
|
|
errorNotifier.notify(PacketTunnelProviderError.savedProtocolConfigurationIsInvalid)
|
2018-11-08 12:20:47 +00:00
|
|
|
startTunnelCompletionHandler(PacketTunnelProviderError.savedProtocolConfigurationIsInvalid)
|
|
|
|
return
|
2018-08-27 20:32:47 +00:00
|
|
|
}
|
2018-08-16 19:26:24 +00:00
|
|
|
|
2018-11-29 10:16:21 +00:00
|
|
|
configureLogger()
|
|
|
|
|
2018-12-21 21:05:47 +00:00
|
|
|
wg_log(.info, message: "Starting tunnel from the " + (activationAttemptId == nil ? "OS directly, rather than the app" : "app"))
|
2018-12-21 10:10:04 +00:00
|
|
|
|
2018-11-08 12:20:47 +00:00
|
|
|
let endpoints = tunnelConfiguration.peers.map { $0.endpoint }
|
2018-12-21 13:53:16 +00:00
|
|
|
guard let resolvedEndpoints = DNSResolver.resolveSync(endpoints: endpoints) else {
|
|
|
|
errorNotifier.notify(PacketTunnelProviderError.dnsResolutionFailure)
|
|
|
|
startTunnelCompletionHandler(PacketTunnelProviderError.dnsResolutionFailure)
|
2018-11-08 12:20:47 +00:00
|
|
|
return
|
2018-10-27 09:32:32 +00:00
|
|
|
}
|
2018-11-08 12:20:47 +00:00
|
|
|
assert(endpoints.count == resolvedEndpoints.count)
|
|
|
|
|
2018-12-21 14:56:03 +00:00
|
|
|
packetTunnelSettingsGenerator = PacketTunnelSettingsGenerator(tunnelConfiguration: tunnelConfiguration, resolvedEndpoints: resolvedEndpoints)
|
2018-11-08 12:20:47 +00:00
|
|
|
|
2018-12-12 21:33:14 +00:00
|
|
|
let fileDescriptor = packetFlow.value(forKeyPath: "socket.fileDescriptor") as! Int32 //swiftlint:disable:this force_cast
|
2018-12-12 18:28:27 +00:00
|
|
|
if fileDescriptor < 0 {
|
2018-12-04 10:28:02 +00:00
|
|
|
wg_log(.error, staticMessage: "Starting tunnel failed: Could not determine file descriptor")
|
2018-12-22 02:41:54 +00:00
|
|
|
errorNotifier.notify(PacketTunnelProviderError.couldNotDetermineFileDescriptor)
|
|
|
|
startTunnelCompletionHandler(PacketTunnelProviderError.couldNotDetermineFileDescriptor)
|
2018-11-06 14:46:44 +00:00
|
|
|
return
|
|
|
|
}
|
2018-11-08 12:20:47 +00:00
|
|
|
|
2018-12-21 14:56:03 +00:00
|
|
|
let wireguardSettings = packetTunnelSettingsGenerator!.uapiConfiguration()
|
2018-12-21 12:02:44 +00:00
|
|
|
|
2018-12-11 22:59:15 +00:00
|
|
|
networkMonitor = NWPathMonitor()
|
2018-12-21 14:56:03 +00:00
|
|
|
lastFirstInterface = networkMonitor!.currentPath.availableInterfaces.first
|
|
|
|
networkMonitor!.pathUpdateHandler = pathUpdate
|
|
|
|
networkMonitor!.start(queue: DispatchQueue(label: "NetworkMonitor"))
|
2018-08-05 20:58:48 +00:00
|
|
|
|
2018-12-21 21:05:47 +00:00
|
|
|
let handle = wireguardSettings.withGoString { return wgTurnOn($0, fileDescriptor) }
|
2018-08-27 20:32:47 +00:00
|
|
|
if handle < 0 {
|
2018-12-22 01:21:07 +00:00
|
|
|
wg_log(.error, message: "Starting tunnel failed with wgTurnOn returning \(handle)")
|
2018-12-22 02:41:54 +00:00
|
|
|
errorNotifier.notify(PacketTunnelProviderError.couldNotStartBackend)
|
|
|
|
startTunnelCompletionHandler(PacketTunnelProviderError.couldNotStartBackend)
|
2018-08-27 20:32:47 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
wgHandle = handle
|
2018-08-15 20:57:40 +00:00
|
|
|
|
2018-12-21 14:56:03 +00:00
|
|
|
let networkSettings: NEPacketTunnelNetworkSettings = packetTunnelSettingsGenerator!.generateNetworkSettings()
|
2018-12-12 21:33:14 +00:00
|
|
|
setTunnelNetworkSettings(networkSettings) { error in
|
2018-08-27 20:32:47 +00:00
|
|
|
if let error = error {
|
2018-12-22 01:21:07 +00:00
|
|
|
wg_log(.error, message: "Starting tunnel failed with setTunnelNetworkSettings returning \(error.localizedDescription)")
|
2018-12-22 02:41:54 +00:00
|
|
|
errorNotifier.notify(PacketTunnelProviderError.couldNotSetNetworkSettings)
|
|
|
|
startTunnelCompletionHandler(PacketTunnelProviderError.couldNotSetNetworkSettings)
|
2018-08-27 20:32:47 +00:00
|
|
|
} else {
|
2018-12-17 05:51:25 +00:00
|
|
|
startTunnelCompletionHandler(nil)
|
2018-08-27 20:32:47 +00:00
|
|
|
}
|
2018-07-07 20:54:44 +00:00
|
|
|
}
|
2018-06-22 06:23:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
override func stopTunnel(with reason: NEProviderStopReason, completionHandler: @escaping () -> Void) {
|
2018-12-11 22:12:04 +00:00
|
|
|
networkMonitor?.cancel()
|
|
|
|
networkMonitor = nil
|
2018-12-12 17:40:57 +00:00
|
|
|
|
2018-12-13 20:54:53 +00:00
|
|
|
ErrorNotifier.removeLastErrorFile()
|
|
|
|
|
2018-12-04 10:28:02 +00:00
|
|
|
wg_log(.info, staticMessage: "Stopping tunnel")
|
2018-08-27 20:32:47 +00:00
|
|
|
if let handle = wgHandle {
|
|
|
|
wgTurnOff(handle)
|
|
|
|
}
|
2018-06-22 06:23:39 +00:00
|
|
|
completionHandler()
|
|
|
|
}
|
|
|
|
|
2018-08-28 12:03:53 +00:00
|
|
|
private func configureLogger() {
|
2018-12-14 21:53:42 +00:00
|
|
|
Logger.configureGlobal(withFilePath: FileManager.networkExtensionLogFileURL?.path)
|
2018-12-13 14:26:04 +00:00
|
|
|
wgSetLogger { level, msgC in
|
|
|
|
guard let msgC = msgC else { return }
|
2018-08-28 12:03:53 +00:00
|
|
|
let logType: OSLogType
|
|
|
|
switch level {
|
|
|
|
case 0:
|
|
|
|
logType = .debug
|
|
|
|
case 1:
|
|
|
|
logType = .info
|
|
|
|
case 2:
|
|
|
|
logType = .error
|
|
|
|
default:
|
|
|
|
logType = .default
|
|
|
|
}
|
2018-12-13 14:26:04 +00:00
|
|
|
wg_log(logType, message: String(cString: msgC))
|
2018-08-28 12:03:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-21 14:56:03 +00:00
|
|
|
private func pathUpdate(path: Network.NWPath) {
|
|
|
|
guard let handle = wgHandle, let packetTunnelSettingsGenerator = packetTunnelSettingsGenerator else { return }
|
|
|
|
var listenPort: UInt16?
|
|
|
|
if path.availableInterfaces.isEmpty || lastFirstInterface != path.availableInterfaces.first {
|
|
|
|
listenPort = wgGetListenPort(handle)
|
|
|
|
lastFirstInterface = path.availableInterfaces.first
|
|
|
|
}
|
|
|
|
guard path.status == .satisfied else { return }
|
|
|
|
wg_log(.debug, message: "Network change detected, re-establishing sockets and IPs: \(path.availableInterfaces)")
|
|
|
|
let endpointString = packetTunnelSettingsGenerator.endpointUapiConfiguration(currentListenPort: listenPort)
|
2018-12-21 21:05:47 +00:00
|
|
|
let err = endpointString.withGoString { return wgSetConfig(handle, $0) }
|
2018-12-21 14:56:03 +00:00
|
|
|
if err == -EADDRINUSE && listenPort != nil {
|
|
|
|
let endpointString = packetTunnelSettingsGenerator.endpointUapiConfiguration(currentListenPort: 0)
|
2018-12-21 21:05:47 +00:00
|
|
|
_ = endpointString.withGoString { return wgSetConfig(handle, $0) }
|
2018-12-21 14:56:03 +00:00
|
|
|
}
|
2018-08-28 12:04:38 +00:00
|
|
|
}
|
2018-06-22 06:23:39 +00:00
|
|
|
}
|
2018-08-27 20:32:47 +00:00
|
|
|
|
2018-12-21 21:05:47 +00:00
|
|
|
extension String {
|
|
|
|
func withGoString<R>(_ call: (gostring_t) -> R) -> R {
|
|
|
|
func helper(_ pointer: UnsafePointer<Int8>?, _ call: (gostring_t) -> R) -> R {
|
|
|
|
return call(gostring_t(p: pointer, n: utf8.count))
|
|
|
|
}
|
|
|
|
return helper(self, call)
|
2018-08-27 20:32:47 +00:00
|
|
|
}
|
|
|
|
}
|