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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
|
//
// PreferencesViewModel.swift
// MullvadVPN
//
// Created by pronebird on 11/10/2021.
// Copyright © 2021 Mullvad VPN AB. All rights reserved.
//
import MullvadSettings
import MullvadTypes
import UIKit
enum CustomDNSPrecondition {
/// Custom DNS can be enabled
case satisfied
/// Custom DNS cannot be enabled as it would conflict with other settings.
case conflictsWithOtherSettings
/// No valid DNS server entries.
case emptyDNSDomains
/// Returns localized description explaining how to enable Custom DNS.
func localizedDescription(isEditing: Bool) -> String? {
attributedLocalizedDescription(
isEditing: isEditing,
preferredFont: UIFont.systemFont(ofSize: UIFont.systemFontSize)
)?.string
}
/// Returns attributed localized description explaining how to enable Custom DNS.
func attributedLocalizedDescription(
isEditing: Bool,
preferredFont: UIFont
) -> NSAttributedString? {
switch self {
case .satisfied:
return nil
case .emptyDNSDomains:
if isEditing {
return NSAttributedString(
string: NSLocalizedString(
"CUSTOM_DNS_NO_DNS_ENTRIES_EDITING_ON_FOOTNOTE",
tableName: "Preferences",
value: "To enable this setting, add at least one server.",
comment: "Foot note displayed if there are no DNS entries and table view is in editing mode."
),
attributes: [.font: preferredFont]
)
} else {
return NSAttributedString(
markdownString: NSLocalizedString(
"CUSTOM_DNS_NO_DNS_ENTRIES_EDITING_OFF_FOOTNOTE",
tableName: "Preferences",
value: "Tap **Edit** to add at least one DNS server.",
comment:
"Foot note displayed if there are no DNS entries, but table view is not in editing mode."
),
options: MarkdownStylingOptions(font: preferredFont)
)
}
case .conflictsWithOtherSettings:
return NSAttributedString(
string: NSLocalizedString(
"CUSTOM_DNS_DISABLE_CONTENT_BLOCKERS_FOOTNOTE",
tableName: "Preferences",
value: "Disable all content blockers (under VPN settings) to activate this setting.",
comment: """
Foot note displayed when custom DNS cannot be enabled, because content blockers should be \
disabled first.
"""
),
attributes: [.font: preferredFont]
)
}
}
}
struct DNSServerEntry: Equatable, Hashable {
var identifier = UUID()
var address: String
}
struct PreferencesViewModel: Equatable {
private(set) var blockAdvertising: Bool
private(set) var blockTracking: Bool
private(set) var blockMalware: Bool
private(set) var blockAdultContent: Bool
private(set) var blockGambling: Bool
private(set) var blockSocialMedia: Bool
private(set) var enableCustomDNS: Bool
private(set) var wireGuardPort: UInt16?
var customDNSDomains: [DNSServerEntry]
var availableWireGuardPortRanges: [[UInt16]] = []
private(set) var obfuscationState: WireGuardObfuscationState
private(set) var obfuscationPort: WireGuardObfuscationPort
static let defaultWireGuardPorts: [UInt16] = [51820, 53]
mutating func setBlockAdvertising(_ newValue: Bool) {
blockAdvertising = newValue
enableCustomDNS = false
}
mutating func setBlockTracking(_ newValue: Bool) {
blockTracking = newValue
enableCustomDNS = false
}
mutating func setBlockMalware(_ newValue: Bool) {
blockMalware = newValue
enableCustomDNS = false
}
mutating func setBlockAdultContent(_ newValue: Bool) {
blockAdultContent = newValue
enableCustomDNS = false
}
mutating func setBlockGambling(_ newValue: Bool) {
blockGambling = newValue
enableCustomDNS = false
}
mutating func setBlockSocialMedia(_ newValue: Bool) {
blockSocialMedia = newValue
enableCustomDNS = false
}
mutating func setEnableCustomDNS(_ newValue: Bool) {
blockTracking = false
blockAdvertising = false
enableCustomDNS = newValue
}
mutating func setWireGuardPort(_ newValue: UInt16?) {
wireGuardPort = newValue
}
mutating func setWireGuardObfuscationState(_ newState: WireGuardObfuscationState) {
obfuscationState = newState
}
mutating func setWireGuardObfuscationPort(_ newPort: WireGuardObfuscationPort) {
obfuscationPort = newPort
}
/// Precondition for enabling Custom DNS.
var customDNSPrecondition: CustomDNSPrecondition {
if blockAdvertising || blockTracking || blockMalware ||
blockAdultContent || blockGambling || blockSocialMedia {
return .conflictsWithOtherSettings
} else {
let hasValidDNSDomains = customDNSDomains.contains { entry in
AnyIPAddress(entry.address) != nil
}
if hasValidDNSDomains {
return .satisfied
} else {
return .emptyDNSDomains
}
}
}
/// Effective state of the custom DNS setting.
var effectiveEnableCustomDNS: Bool {
customDNSPrecondition == .satisfied && enableCustomDNS
}
var customWireGuardPort: UInt16? {
wireGuardPort.flatMap { port in
Self.defaultWireGuardPorts.contains(port) ? nil : port
}
}
init(from tunnelSettings: LatestTunnelSettings = LatestTunnelSettings()) {
let dnsSettings = tunnelSettings.dnsSettings
blockAdvertising = dnsSettings.blockingOptions.contains(.blockAdvertising)
blockTracking = dnsSettings.blockingOptions.contains(.blockTracking)
blockMalware = dnsSettings.blockingOptions.contains(.blockMalware)
blockAdultContent = dnsSettings.blockingOptions.contains(.blockAdultContent)
blockGambling = dnsSettings.blockingOptions.contains(.blockGambling)
blockSocialMedia = dnsSettings.blockingOptions.contains(.blockSocialMedia)
enableCustomDNS = dnsSettings.enableCustomDNS
customDNSDomains = dnsSettings.customDNSDomains.map { ipAddress in
DNSServerEntry(identifier: UUID(), address: "\(ipAddress)")
}
wireGuardPort = tunnelSettings.relayConstraints.port.value
obfuscationState = tunnelSettings.wireGuardObfuscation.state
obfuscationPort = tunnelSettings.wireGuardObfuscation.port
}
/// Produce merged view model keeping entry `identifier` for matching DNS entries.
func merged(_ other: PreferencesViewModel) -> PreferencesViewModel {
var mergedViewModel = other
mergedViewModel.customDNSDomains = merge(customDNSDomains, with: other.customDNSDomains)
return mergedViewModel
}
/// Sanitize custom DNS entries.
mutating func sanitizeCustomDNSEntries() {
// Sanitize DNS domains, drop invalid entries.
customDNSDomains = customDNSDomains.compactMap { entry in
if let canonicalAddress = AnyIPAddress(entry.address) {
var newEntry = entry
newEntry.address = "\(canonicalAddress)"
return newEntry
} else {
return nil
}
}
// Toggle off custom DNS when no domains specified.
if customDNSDomains.isEmpty {
enableCustomDNS = false
}
}
func dnsEntry(entryIdentifier: UUID) -> DNSServerEntry? {
customDNSDomains.first { entry in
entry.identifier == entryIdentifier
}
}
/// Returns an index of entry in `customDNSDomains`, otherwise `nil`.
func indexOfDNSEntry(entryIdentifier: UUID) -> Int? {
customDNSDomains.firstIndex { entry in
entry.identifier == entryIdentifier
}
}
/// Update the address for the DNS entry with the given UUID.
mutating func updateDNSEntry(entryIdentifier: UUID, newAddress: String) {
guard let index = indexOfDNSEntry(entryIdentifier: entryIdentifier) else { return }
var entry = customDNSDomains[index]
entry.address = newAddress
customDNSDomains[index] = entry
}
/// Converts view model into `DNSSettings`.
func asDNSSettings() -> DNSSettings {
var blockingOptions = DNSBlockingOptions()
if blockAdvertising {
blockingOptions.insert(.blockAdvertising)
}
if blockTracking {
blockingOptions.insert(.blockTracking)
}
if blockMalware {
blockingOptions.insert(.blockMalware)
}
if blockAdultContent {
blockingOptions.insert(.blockAdultContent)
}
if blockGambling {
blockingOptions.insert(.blockGambling)
}
if blockSocialMedia {
blockingOptions.insert(.blockSocialMedia)
}
var dnsSettings = DNSSettings()
dnsSettings.blockingOptions = blockingOptions
dnsSettings.enableCustomDNS = enableCustomDNS
dnsSettings.customDNSDomains = customDNSDomains.compactMap { entry in
AnyIPAddress(entry.address)
}
return dnsSettings
}
/// Returns true if the given string is empty or a valid IP address.
func isDNSDomainUserInputValid(_ string: String) -> Bool {
string.isEmpty || AnyIPAddress(string) != nil
}
/// Returns true if the given port is in within the supported ranges.
func isPortWithinValidWireGuardRanges(_ port: UInt16) -> Bool {
availableWireGuardPortRanges.contains { range in
if let minPort = range.first, let maxPort = range.last {
return (minPort ... maxPort).contains(port)
}
return false
}
}
/// Replaces all old domains with new, keeping only those that share the same id and updating their content.
private func merge(_ oldDomains: [DNSServerEntry], with newDomains: [DNSServerEntry]) -> [DNSServerEntry] {
var oldDomains = oldDomains
return newDomains.map { otherEntry in
let sameEntryIndex = oldDomains.firstIndex { entry in
entry.address == otherEntry.address
}
if let sameEntryIndex {
let sourceEntry = oldDomains[sameEntryIndex]
oldDomains.remove(at: sameEntryIndex)
return sourceEntry
} else {
return otherEntry
}
}
}
}
|