2022-05-18 07:09:29 +00:00
|
|
|
//
|
2023-09-09 22:52:39 +00:00
|
|
|
// SandboxChecker.swift
|
2022-05-18 07:09:29 +00:00
|
|
|
// Passepartout
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 5/18/22.
|
2023-03-17 15:56:19 +00:00
|
|
|
// Copyright (c) 2023 Davide De Rosa. All rights reserved.
|
2022-05-18 07:09:29 +00:00
|
|
|
//
|
|
|
|
// https://github.com/passepartoutvpn
|
|
|
|
//
|
|
|
|
// This file is part of Passepartout.
|
|
|
|
//
|
|
|
|
// Passepartout is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Passepartout is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
// https://stackoverflow.com/a/32238344/784615
|
|
|
|
// https://gist.github.com/lukaskubanek/cbfcab29c0c93e0e9e0a16ab09586996
|
|
|
|
|
2023-09-09 22:52:39 +00:00
|
|
|
@MainActor
|
|
|
|
public final class SandboxChecker: ObservableObject {
|
|
|
|
private let bundle: Bundle
|
|
|
|
|
|
|
|
@Published public private(set) var isSandbox = false
|
|
|
|
|
|
|
|
public init(bundle: Bundle) {
|
|
|
|
self.bundle = bundle
|
|
|
|
}
|
|
|
|
|
|
|
|
public func check() {
|
|
|
|
Task {
|
|
|
|
isSandbox = await isSandboxBuild()
|
|
|
|
pp_log.info("Sandbox build: \(isSandbox)")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private func isSandboxBuild() async -> Bool {
|
|
|
|
#if os(iOS)
|
|
|
|
bundle.appStoreReceiptURL?.lastPathComponent == "sandboxReceipt"
|
2022-05-18 07:09:29 +00:00
|
|
|
#elseif targetEnvironment(macCatalyst) || os(macOS)
|
|
|
|
var status = noErr
|
|
|
|
|
|
|
|
var code: SecStaticCode?
|
2023-09-09 22:52:39 +00:00
|
|
|
status = SecStaticCodeCreateWithPath(bundle.bundleURL as CFURL, [], &code)
|
2022-05-18 07:09:29 +00:00
|
|
|
guard status == noErr else {
|
|
|
|
return false
|
|
|
|
}
|
2023-09-09 22:52:39 +00:00
|
|
|
guard let code else {
|
2022-05-18 07:09:29 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
var requirement: SecRequirement?
|
|
|
|
status = SecRequirementCreateWithString(
|
|
|
|
"anchor apple generic and certificate leaf[field.1.2.840.113635.100.6.1.25.1]" as CFString,
|
|
|
|
[], // default
|
|
|
|
&requirement
|
|
|
|
)
|
|
|
|
guard status == noErr else {
|
|
|
|
return false
|
|
|
|
}
|
2023-09-09 22:52:39 +00:00
|
|
|
guard let requirement else {
|
2022-05-18 07:09:29 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
status = SecStaticCodeCheckValidity(
|
|
|
|
code,
|
|
|
|
[], // default
|
|
|
|
requirement
|
|
|
|
)
|
|
|
|
return status == errSecSuccess
|
|
|
|
#else
|
2022-09-04 18:09:31 +00:00
|
|
|
false
|
2022-05-18 07:09:29 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|