6d3ff37d9e
Input handling, building on macOS/iOS/tvOS: - macOS recapture after navigating out: engageCapture no longer latches captured=true when the cursor grab is refused mid app-activation (which left a free cursor that no later click could re-grab); cursorCapture.capture() now reports success. + canBecomeKeyView. - iOS/iPadOS recapture: restore the prior capture on didBecomeActive (nothing re-grabbed mouse/keyboard on return before). - iPad indirect pointer (no lock) is forwarded as an absolute MOUSE (move + buttons + scroll via hover / UITouch.indirectPointer), not as touch, with the local cursor visible; GCMouse owns the locked regime, gated so the two never double-send. Adds the MouseMoveAbs wire helper. - Trackpad scroll on iOS (was entirely missing): GCMouse scroll dpad when locked + a scroll-only UIPanGestureRecognizer otherwise. - tvOS: no focusable control during play (a focusable Disconnect button ate the controller's A in the focus engine); Siri Remote Menu disconnects. - Don't leak touch to the host under the TOFU trust prompt (gate on captureEnabled). LAN discovery: HostDiscovery (NWBrowser over _punktfunk._udp, the host's crate::discovery advert) resolves each service to IP:port and parses the TXT (fp advisory, pair, id); an "On this network" section in the grid (tap to save + connect, or pair if required). iOS/tvOS get NSBonjourServices via a merged Config/Info.plist. Integration-tested end to end against a fake NWListener advert. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
184 lines
7.4 KiB
Swift
184 lines
7.4 KiB
Swift
// LAN auto-discovery of punktfunk/1 hosts over mDNS — the client side of the host's
|
|
// `crate::discovery` advert (`_punktfunk._udp`). Browses with NWBrowser (TXT rides in the
|
|
// result metadata), resolves each service to a connectable IP:port with a throwaway
|
|
// NWConnection, and publishes the live set.
|
|
//
|
|
// The advertised `fp` (host cert SHA-256) is ADVISORY: mDNS is unauthenticated, so TOFU /
|
|
// pinning still verifies the host on connect — it's surfaced only so a picker can show it and
|
|
// pre-fill. `pair=required` lets the UI route straight to the pairing ceremony.
|
|
//
|
|
// iOS/tvOS gate Bonjour browsing on Info.plist `NSBonjourServices` listing `_punktfunk._udp`
|
|
// (Config/Info.plist) — without it the system blocks the browse and nothing is returned.
|
|
|
|
#if canImport(Network)
|
|
import Foundation
|
|
import Network
|
|
|
|
/// A punktfunk/1 host found on the LAN. `fingerprintHex` is advisory (see file header).
|
|
public struct DiscoveredHost: Identifiable, Sendable, Equatable {
|
|
/// Stable host id (mDNS `id` TXT); falls back to the Bonjour instance name.
|
|
public let id: String
|
|
/// Bonjour instance name (the host's chosen label).
|
|
public let name: String
|
|
/// Resolved address to hand to `PunktfunkConnection`.
|
|
public let host: String
|
|
public let port: UInt16
|
|
/// Host cert SHA-256 (lowercase hex) the host advertised, or nil if absent.
|
|
public let fingerprintHex: String?
|
|
/// The host advertised `pair=required` — a client must pair before it can stream.
|
|
public let requiresPairing: Bool
|
|
}
|
|
|
|
@MainActor
|
|
public final class HostDiscovery: ObservableObject {
|
|
/// Currently-visible hosts, deduped by `id`, sorted by name. Main-actor.
|
|
@Published public private(set) var hosts: [DiscoveredHost] = []
|
|
|
|
private var browser: NWBrowser?
|
|
/// Keyed by the service endpoint's description (a stable, Sendable handle we can capture
|
|
/// into the resolve callbacks without smuggling non-Sendable Network types across hops).
|
|
private var resolved: [String: DiscoveredHost] = [:]
|
|
private var connections: [String: NWConnection] = [:]
|
|
|
|
public init() {}
|
|
|
|
/// Start browsing `_punktfunk._udp`. Idempotent — a second call while live is a no-op.
|
|
public func start() {
|
|
guard browser == nil else { return }
|
|
let browser = NWBrowser(
|
|
for: .bonjourWithTXTRecord(type: "_punktfunk._udp", domain: nil),
|
|
using: NWParameters())
|
|
browser.browseResultsChangedHandler = { results, _ in
|
|
MainActor.assumeIsolated { [weak self] in self?.reconcile(results) }
|
|
}
|
|
browser.stateUpdateHandler = { state in
|
|
// A failed browser never recovers on its own; tear down and re-arm so transient
|
|
// network changes (Wi-Fi flip, VPN) don't leave discovery silently dead.
|
|
MainActor.assumeIsolated { [weak self] in
|
|
if case .failed = state { self?.restart() }
|
|
}
|
|
}
|
|
self.browser = browser
|
|
browser.start(queue: .main)
|
|
}
|
|
|
|
/// Stop browsing and drop all discovered state.
|
|
public func stop() {
|
|
browser?.cancel()
|
|
browser = nil
|
|
for conn in connections.values { conn.cancel() }
|
|
connections.removeAll()
|
|
resolved.removeAll()
|
|
if !hosts.isEmpty { hosts = [] }
|
|
}
|
|
|
|
deinit {
|
|
browser?.cancel()
|
|
for conn in connections.values { conn.cancel() }
|
|
}
|
|
|
|
private func restart() {
|
|
stop()
|
|
start()
|
|
}
|
|
|
|
/// Diff the browser's current result set against what we're tracking: drop departed
|
|
/// services, resolve newly-seen ones.
|
|
private func reconcile(_ results: Set<NWBrowser.Result>) {
|
|
let live = Set(results.map { Self.key($0) })
|
|
for key in resolved.keys where !live.contains(key) { resolved[key] = nil }
|
|
for key in connections.keys where !live.contains(key) {
|
|
connections[key]?.cancel()
|
|
connections[key] = nil
|
|
}
|
|
for result in results {
|
|
let key = Self.key(result)
|
|
if resolved[key] == nil, connections[key] == nil { resolve(result) }
|
|
}
|
|
publish()
|
|
}
|
|
|
|
/// Resolve one service to IP:port via a short UDP connection (it reaches `.ready` once the
|
|
/// path is established — no data is sent), reading the TXT up front so the callback only
|
|
/// captures Sendable values + the endpoint key.
|
|
private func resolve(_ result: NWBrowser.Result) {
|
|
let key = Self.key(result)
|
|
let name = Self.instanceName(result.endpoint)
|
|
var fp: String?
|
|
var pair: String?
|
|
var id: String?
|
|
if case let .bonjour(txt) = result.metadata {
|
|
fp = Self.entry(txt, "fp")
|
|
pair = Self.entry(txt, "pair")
|
|
id = Self.entry(txt, "id")
|
|
}
|
|
let conn = NWConnection(to: result.endpoint, using: .udp)
|
|
connections[key] = conn
|
|
conn.stateUpdateHandler = { state in
|
|
MainActor.assumeIsolated { [weak self] in
|
|
guard let self, let conn = self.connections[key] else { return }
|
|
switch state {
|
|
case .ready:
|
|
if case let .hostPort(host, port)? = conn.currentPath?.remoteEndpoint,
|
|
let address = Self.hostString(host) {
|
|
self.resolved[key] = DiscoveredHost(
|
|
id: (id?.isEmpty == false) ? id! : name,
|
|
name: name, host: address, port: port.rawValue,
|
|
fingerprintHex: fp, requiresPairing: pair == "required")
|
|
self.publish()
|
|
}
|
|
conn.cancel()
|
|
self.connections[key] = nil
|
|
case .failed, .cancelled:
|
|
self.connections[key] = nil
|
|
default:
|
|
break
|
|
}
|
|
}
|
|
}
|
|
conn.start(queue: .main)
|
|
}
|
|
|
|
/// Publish the resolved set, deduped by `id` (a host on several interfaces / re-advertising
|
|
/// collapses to one row), sorted by name.
|
|
private func publish() {
|
|
var byID: [String: DiscoveredHost] = [:]
|
|
for host in resolved.values { byID[host.id] = host }
|
|
let next = byID.values.sorted {
|
|
$0.name.localizedCaseInsensitiveCompare($1.name) == .orderedAscending
|
|
}
|
|
if next != hosts { hosts = next }
|
|
}
|
|
|
|
private static func key(_ result: NWBrowser.Result) -> String {
|
|
"\(result.endpoint)"
|
|
}
|
|
|
|
private static func instanceName(_ endpoint: NWEndpoint) -> String {
|
|
if case let .service(name, _, _, _) = endpoint { return name }
|
|
return "punktfunk host"
|
|
}
|
|
|
|
private static func entry(_ txt: NWTXTRecord, _ field: String) -> String? {
|
|
if case let .string(value) = txt.getEntry(for: field), !value.isEmpty { return value }
|
|
return nil
|
|
}
|
|
|
|
/// A resolved `NWEndpoint.Host` → a plain address string for `PunktfunkConnection` (the
|
|
/// scope id on a link-local address is stripped — the host+port pair is resolved again on
|
|
/// the Rust side, which can't parse the `%iface` suffix).
|
|
private static func hostString(_ host: NWEndpoint.Host) -> String? {
|
|
switch host {
|
|
case .ipv4(let address):
|
|
return "\(address)".split(separator: "%").first.map(String.init)
|
|
case .ipv6(let address):
|
|
return "\(address)".split(separator: "%").first.map(String.init)
|
|
case .name(let name, _):
|
|
return name
|
|
@unknown default:
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
#endif
|