// // Interface+Extension.swift // WireGuard // // Created by Eric Kuck on 8/15/18. // Copyright © 2018 Jason A. Donenfeld . All rights reserved. // import Foundation extension Interface { func validate() throws { guard let privateKey = privateKey, !privateKey.isEmpty else { throw InterfaceValidationError.emptyPrivateKey } guard privateKey.isBase64() else { throw InterfaceValidationError.invalidPrivateKey } try addresses?.commaSeparatedToArray().forEach { address in do { try _ = CIDRAddress(stringRepresentation: address) } catch { throw InterfaceValidationError.invalidAddress(cause: error) } } try dns?.commaSeparatedToArray().forEach { address in do { try _ = Endpoint(endpointString: address, needsPort: false) } catch { throw InterfaceValidationError.invalidDNSServer(cause: error) } } } func parse(attribute: Attribute) throws { switch attribute.key { case .address: addresses = attribute.stringValue case .dns: dns = attribute.stringValue case .listenPort: if let port = Int16(attribute.stringValue) { listenPort = port } case .mtu: if let mtu = Int32(attribute.stringValue) { self.mtu = mtu } case .privateKey: privateKey = attribute.stringValue default: throw TunnelParseError.invalidLine(attribute.line) } } } enum InterfaceValidationError: Error { case emptyPrivateKey case invalidPrivateKey case invalidAddress(cause: Error) case invalidDNSServer(cause: Error) }