1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
//
// KeychainSettingsStore.swift
// MullvadVPN
//
// Created by Sajad Vishkai on 2022-11-22.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import Foundation
import MullvadTypes
import Security
final public class KeychainSettingsStore: SettingsStore, Sendable {
public let serviceName: String
public let accessGroup: String
public init(serviceName: String, accessGroup: String) {
self.serviceName = serviceName
self.accessGroup = accessGroup
}
public func read(key: SettingsKey) throws -> Data {
try readItemData(key)
}
public func write(_ data: Data, for key: SettingsKey) throws {
try addOrUpdateItem(key, data: data)
}
public func delete(key: SettingsKey) throws {
try deleteItem(key)
}
private func addItem(_ item: SettingsKey, data: Data) throws {
var query = createDefaultAttributes(item: item)
query.merge(createAccessAttributes()) { current, _ in
current
}
query[kSecValueData] = data
let status = SecItemAdd(query as CFDictionary, nil)
if status != errSecSuccess {
throw KeychainError(code: status)
}
}
private func updateItem(_ item: SettingsKey, data: Data) throws {
let query = createDefaultAttributes(item: item)
let status = SecItemUpdate(
query as CFDictionary,
[kSecValueData: data] as CFDictionary
)
if status != errSecSuccess {
throw KeychainError(code: status)
}
}
private func addOrUpdateItem(_ item: SettingsKey, data: Data) throws {
do {
try updateItem(item, data: data)
} catch let error as KeychainError where error == .itemNotFound {
try addItem(item, data: data)
} catch {
throw error
}
}
private func readItemData(_ item: SettingsKey) throws -> Data {
var query = createDefaultAttributes(item: item)
query[kSecReturnData] = true
var result: CFTypeRef?
let status = SecItemCopyMatching(query as CFDictionary, &result)
if status == errSecSuccess {
return result as? Data ?? Data()
} else {
throw KeychainError(code: status)
}
}
private func deleteItem(_ item: SettingsKey) throws {
let query = createDefaultAttributes(item: item)
let status = SecItemDelete(query as CFDictionary)
if status != errSecSuccess {
throw KeychainError(code: status)
}
}
private func createDefaultAttributes(item: SettingsKey) -> [CFString: Any] {
[
kSecClass: kSecClassGenericPassword,
kSecAttrService: serviceName,
kSecAttrAccount: item.rawValue,
]
}
private func createAccessAttributes() -> [CFString: Any] {
[
kSecAttrAccessGroup: accessGroup,
kSecAttrAccessible: kSecAttrAccessibleAfterFirstUnlock,
]
}
}
|