Files
container/Sources/Services/ContainerNetworkService/NetworkClient.swift
T
Kathryn Baldauf 8e9670c8f8 Initial commit
Co-authored-by: Aditya Ramani <a_ramani@apple.com>
Co-authored-by: Agam Dua <agam_dua@apple.com>
Co-authored-by: Danny Canter <danny_canter@apple.com>
Co-authored-by: Dmitry Kovba <dkovba@apple.com>
Co-authored-by: Eric Ernst <eric_ernst@apple.com>
Co-authored-by: Evan Hazlett <ehazlett@apple.com>
Co-authored-by: Gilbert Song <gilbertsong@apple.com>
Co-authored-by: Hugh Bussell <hbussell@apple.com>
Co-authored-by: John Logan <john_logan@apple.com>
Co-authored-by: Kathryn Baldauf <k_baldauf@apple.com>
Co-authored-by: Madhu Venugopal <mvenugopal@apple.com>
Co-authored-by: Michael Crosby <michael_crosby@apple.com>
Co-authored-by: Sidhartha Mani <sidhartha_mani@apple.com>
Co-authored-by: Tanweer Noor <tnoor@apple.com>
Co-authored-by: Ximena Perez Diaz <xperez528@gmail.com>
Co-authored-by: Yibo Zhuang <yzhuang@apple.com>
2025-06-05 15:51:55 -07:00

136 lines
4.7 KiB
Swift

//===----------------------------------------------------------------------===//
// Copyright © 2025 Apple Inc. and the container project authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//===----------------------------------------------------------------------===//
import ContainerXPC
import ContainerizationError
import Foundation
/// A client for interacting with a single network.
public struct NetworkClient: Sendable {
// FIXME: need more flexibility than a hard-coded constant?
static let label = "com.apple.container.network.container-network-vmnet"
private var machServiceLabel: String {
"\(Self.label).\(id)"
}
let id: String
/// Create a client for a network.
public init(id: String) {
self.id = id
}
}
// Runtime Methods
extension NetworkClient {
public func state() async throws -> NetworkState {
let request = XPCMessage(route: NetworkRoutes.state.rawValue)
let client = createClient()
defer { client.close() }
let response = try await client.send(request)
let state = try response.state()
return state
}
public func allocate(hostname: String) async throws -> (attachment: Attachment, additionalData: XPCMessage?) {
let request = XPCMessage(route: NetworkRoutes.allocate.rawValue)
request.set(key: NetworkKeys.hostname.rawValue, value: hostname)
let client = createClient()
defer { client.close() }
let response = try await client.send(request)
let attachment = try response.attachment()
let additionalData = response.additionalData()
return (attachment, additionalData)
}
public func deallocate(hostname: String) async throws {
let request = XPCMessage(route: NetworkRoutes.deallocate.rawValue)
request.set(key: NetworkKeys.hostname.rawValue, value: hostname)
let client = createClient()
defer { client.close() }
try await client.send(request)
}
public func lookup(hostname: String) async throws -> Attachment? {
let request = XPCMessage(route: NetworkRoutes.lookup.rawValue)
request.set(key: NetworkKeys.hostname.rawValue, value: hostname)
let client = createClient()
defer { client.close() }
let response = try await client.send(request)
return try response.dataNoCopy(key: NetworkKeys.attachment.rawValue).map {
try JSONDecoder().decode(Attachment.self, from: $0)
}
}
public func disableAllocator() async throws -> Bool {
let request = XPCMessage(route: NetworkRoutes.disableAllocator.rawValue)
let client = createClient()
defer { client.close() }
let response = try await client.send(request)
return try response.allocatorDisabled()
}
private func createClient() -> XPCClient {
XPCClient(service: machServiceLabel)
}
}
extension XPCMessage {
func additionalData() -> XPCMessage? {
guard let additionalData = xpc_dictionary_get_dictionary(self.underlying, NetworkKeys.additionalData.rawValue) else {
return nil
}
return XPCMessage(object: additionalData)
}
func allocatorDisabled() throws -> Bool {
self.bool(key: NetworkKeys.allocatorDisabled.rawValue)
}
func attachment() throws -> Attachment {
let data = self.dataNoCopy(key: NetworkKeys.attachment.rawValue)
guard let data else {
throw ContainerizationError(.invalidArgument, message: "No network attachment snapshot data in message")
}
return try JSONDecoder().decode(Attachment.self, from: data)
}
func hostname() throws -> String {
let hostname = self.string(key: NetworkKeys.hostname.rawValue)
guard let hostname else {
throw ContainerizationError(.invalidArgument, message: "No hostname data in message")
}
return hostname
}
func state() throws -> NetworkState {
let data = self.dataNoCopy(key: NetworkKeys.state.rawValue)
guard let data else {
throw ContainerizationError(.invalidArgument, message: "No network snapshot data in message")
}
return try JSONDecoder().decode(NetworkState.self, from: data)
}
}