]> git.ipfire.org Git - thirdparty/wireguard-apple.git/commitdiff
WireGuardApp: do not delete unverifying profiles ever
authorJason A. Donenfeld <Jason@zx2c4.com>
Wed, 22 Sep 2021 05:11:32 +0000 (07:11 +0200)
committerJason A. Donenfeld <Jason@zx2c4.com>
Wed, 22 Sep 2021 05:13:48 +0000 (07:13 +0200)
The Keychain code is much too fragile, and it's better to err on the
safe side. Instead just log an error when this happens.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Sources/WireGuardApp/Tunnel/TunnelsManager.swift

index 83c48c9bd2bf726b651d19f7d90daf270ea4a7b3..152d26ed5b48db6555c1ce4be924e04c09769bac 100644 (file)
@@ -56,21 +56,19 @@ class TunnelsManager {
                     tunnelManager.saveToPreferences { _ in }
                 }
                 #if os(iOS)
-                let passwordRef = proto.verifyConfigurationReference() ? proto.passwordReference : nil
+                let verify = true
                 #elseif os(macOS)
-                let passwordRef: Data?
-                if proto.providerConfiguration?["UID"] as? uid_t == getuid() {
-                    passwordRef = proto.verifyConfigurationReference() ? proto.passwordReference : nil
-                } else {
-                    passwordRef = proto.passwordReference // To handle multiple users in macOS, we skip verifying
-                }
+                let verify = proto.providerConfiguration?["UID"] as? uid_t == getuid()
                 #else
                 #error("Unimplemented")
                 #endif
-                if let ref = passwordRef {
+                if verify && !proto.verifyConfigurationReference() {
+                    wg_log(.error, message: "Unable to verify keychain entry of tunnel: \(tunnelManager.localizedDescription ?? "<unknown>")")
+                }
+                if let ref = proto.passwordReference {
                     refs.insert(ref)
                 } else {
-                    wg_log(.info, message: "Removing orphaned tunnel with non-verifying keychain entry: \(tunnelManager.localizedDescription ?? "<unknown>")")
+                    wg_log(.error, message: "Removing orphaned tunnel with missing keychain entry: \(tunnelManager.localizedDescription ?? "<unknown>")")
                     tunnelManager.removeFromPreferences { _ in }
                     tunnelManagers.remove(at: index)
                 }