summaryrefslogtreecommitdiff
path: root/DomainDig/LookupRuntime.swift
blob: b70a1342773a45e18b0ef000278ecfe8d19a270a (plain) (blame)
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
import Foundation

struct CachedLookupResult<Value> {
    let value: Value
    let source: LookupResultSource
}

actor LookupRuntime {
    static let shared = LookupRuntime()

    private let ttl: TimeInterval = 300

    private enum RequestKey: Hashable {
        case domain(String, LookupSectionKind)
        case subject(String, LookupSectionKind)
    }

    private enum RateLimitBucket: Hashable {
        case crtsh
        case rdap
        case ipGeolocation

        var minimumSpacing: TimeInterval {
            switch self {
            case .crtsh:
                return 1.0
            case .rdap:
                return 0.75
            case .ipGeolocation:
                return 0.75
            }
        }
    }

    private enum CachedPayload {
        case dns(ServiceResult<[DNSSection]>)
        case availability(DomainAvailabilityResult)
        case ssl(ServiceResult<SSLCertificateInfo>)
        case hsts(Bool?)
        case http(ServiceResult<HTTPHeadersResult>)
        case reachability(ServiceResult<[PortReachability]>)
        case ownership(ServiceResult<DomainOwnership>)
        case redirect(ServiceResult<[RedirectHop]>)
        case subdomains(ServiceResult<[DiscoveredSubdomain]>)
        case portScan(ServiceResult<[PortScanResult]>)
        case email(ServiceResult<EmailSecurityResult>)
        case ptr(ServiceResult<String>)
        case ipGeolocation(ServiceResult<IPGeolocation>)
        case suggestions([DomainSuggestionResult])
    }

    private struct CacheEntry {
        let payload: CachedPayload
        let expiresAt: Date
    }

    private var cache: [RequestKey: CacheEntry] = [:]
    private var inFlight: [RequestKey: Task<CachedPayload, Never>] = [:]
    private var nextAllowedAt: [RateLimitBucket: Date] = [:]

    func dns(domain: String) async -> CachedLookupResult<ServiceResult<[DNSSection]>> {
        await execute(
            key: .domain(domain, .dns),
            extract: { payload in
                guard case let .dns(result) = payload else { return nil }
                return result
            },
            operation: {
                .dns(await DNSLookupService.lookupAll(domain: domain))
            }
        )
    }

    func availability(domain: String) async -> CachedLookupResult<DomainAvailabilityResult> {
        await execute(
            key: .domain(domain, .availability),
            extract: { payload in
                guard case let .availability(result) = payload else { return nil }
                return result
            },
            operation: {
                .availability(await DomainAvailabilityService.check(domain: domain))
            }
        )
    }

    func ssl(domain: String) async -> CachedLookupResult<ServiceResult<SSLCertificateInfo>> {
        await execute(
            key: .domain(domain, .ssl),
            extract: { payload in
                guard case let .ssl(result) = payload else { return nil }
                return result
            },
            operation: {
                .ssl(await SSLCheckService.check(domain: domain))
            }
        )
    }

    func hsts(domain: String) async -> CachedLookupResult<Bool?> {
        await execute(
            key: .domain(domain, .hsts),
            extract: { payload in
                guard case let .hsts(result) = payload else { return nil }
                return result
            },
            operation: {
                .hsts(await SSLCheckService.checkHSTSPreload(domain: domain))
            }
        )
    }

    func http(domain: String) async -> CachedLookupResult<ServiceResult<HTTPHeadersResult>> {
        await execute(
            key: .domain(domain, .httpHeaders),
            extract: { payload in
                guard case let .http(result) = payload else { return nil }
                return result
            },
            operation: {
                .http(await HTTPHeadersService.fetch(domain: domain))
            }
        )
    }

    func reachability(domain: String) async -> CachedLookupResult<ServiceResult<[PortReachability]>> {
        await execute(
            key: .domain(domain, .reachability),
            extract: { payload in
                guard case let .reachability(result) = payload else { return nil }
                return result
            },
            operation: {
                .reachability(await ReachabilityService.checkAll(domain: domain))
            }
        )
    }

    func ownership(domain: String) async -> CachedLookupResult<ServiceResult<DomainOwnership>> {
        await execute(
            key: .domain(domain, .ownership),
            rateLimitBucket: .rdap,
            extract: { payload in
                guard case let .ownership(result) = payload else { return nil }
                return result
            },
            operation: {
                .ownership(await DomainOwnershipService.lookup(domain: domain))
            }
        )
    }

    func redirectChain(domain: String) async -> CachedLookupResult<ServiceResult<[RedirectHop]>> {
        await execute(
            key: .domain(domain, .redirectChain),
            extract: { payload in
                guard case let .redirect(result) = payload else { return nil }
                return result
            },
            operation: {
                .redirect(await RedirectChainService.trace(domain: domain))
            }
        )
    }

    func subdomains(domain: String) async -> CachedLookupResult<ServiceResult<[DiscoveredSubdomain]>> {
        await execute(
            key: .domain(domain, .subdomains),
            rateLimitBucket: .crtsh,
            extract: { payload in
                guard case let .subdomains(result) = payload else { return nil }
                return result
            },
            operation: {
                .subdomains(await SubdomainDiscoveryService.discover(for: domain))
            }
        )
    }

    func portScan(domain: String) async -> CachedLookupResult<ServiceResult<[PortScanResult]>> {
        await execute(
            key: .domain(domain, .portScan),
            extract: { payload in
                guard case let .portScan(result) = payload else { return nil }
                return result
            },
            operation: {
                .portScan(await PortScanService.scanAll(domain: domain))
            }
        )
    }

    func email(domain: String, txtRecords: [DNSRecord]) async -> CachedLookupResult<ServiceResult<EmailSecurityResult>> {
        await execute(
            key: .domain(domain, .emailSecurity),
            extract: { payload in
                guard case let .email(result) = payload else { return nil }
                return result
            },
            operation: {
                .email(await EmailSecurityService.analyze(domain: domain, txtRecords: txtRecords))
            }
        )
    }

    func ptr(ip: String, resolverURLString: String) async -> CachedLookupResult<ServiceResult<String>> {
        await execute(
            key: .subject("\(resolverURLString)|\(ip)", .ptr),
            extract: { payload in
                guard case let .ptr(result) = payload else { return nil }
                return result
            },
            operation: {
                .ptr(await ReverseDNSService.lookup(ip: ip, resolverURLString: resolverURLString))
            }
        )
    }

    func ipGeolocation(ip: String) async -> CachedLookupResult<ServiceResult<IPGeolocation>> {
        await execute(
            key: .subject(ip, .ipGeolocation),
            rateLimitBucket: .ipGeolocation,
            extract: { payload in
                guard case let .ipGeolocation(result) = payload else { return nil }
                return result
            },
            operation: {
                .ipGeolocation(await IPGeolocationService.lookup(ip: ip))
            }
        )
    }

    func suggestions(domain: String) async -> CachedLookupResult<[DomainSuggestionResult]> {
        await execute(
            key: .domain(domain, .suggestions),
            extract: { payload in
                guard case let .suggestions(result) = payload else { return nil }
                return result
            },
            operation: {
                .suggestions(await DomainAvailabilityService.suggestions(for: domain))
            }
        )
    }

    private func execute<T>(
        key: RequestKey,
        rateLimitBucket: RateLimitBucket? = nil,
        extract: @escaping (CachedPayload) -> T?,
        operation: @escaping @Sendable () async -> CachedPayload
    ) async -> CachedLookupResult<T> {
        if let cachedEntry = cache[key], cachedEntry.expiresAt > Date(), let value = extract(cachedEntry.payload) {
            return CachedLookupResult(value: value, source: .cached)
        }

        if let task = inFlight[key], let value = extract(await task.value) {
            return CachedLookupResult(value: value, source: .mixed)
        }

        let task = Task<CachedPayload, Never> {
            if let rateLimitBucket {
                await self.enforceRateLimit(for: rateLimitBucket)
            }
            return await operation()
        }
        inFlight[key] = task

        let payload = await task.value
        cache[key] = CacheEntry(payload: payload, expiresAt: Date().addingTimeInterval(ttl))
        inFlight[key] = nil

        guard let value = extract(payload) else {
            fatalError("LookupRuntime payload extraction mismatch")
        }

        return CachedLookupResult(value: value, source: .live)
    }

    private func enforceRateLimit(for bucket: RateLimitBucket) async {
        let now = Date()
        if let nextAllowed = nextAllowedAt[bucket], nextAllowed > now {
            let delay = nextAllowed.timeIntervalSince(now)
            if delay > 0 {
                try? await Task.sleep(nanoseconds: UInt64(delay * 1_000_000_000))
            }
        }
        nextAllowedAt[bucket] = Date().addingTimeInterval(bucket.minimumSpacing)
    }
}