mirror of
https://github.com/apple/container.git
synced 2026-07-13 21:17:05 +00:00
afeceb05d4
## Type of Change - [x] Bug fix - [ ] New feature - [ ] Breaking change - [ ] Documentation update ## Motivation and Context Closes #1569 Separates generic runtime infrastructure from Linux-specific implementation into distinct SPM targets: - ContainerRuntimeClient — generic runtime plugin client API - ContainerRuntimeLinuxClient — Linux-specific types - ContainerRuntimeLinuxServer — Linux runtime service + interface strategy implementations Renames types to reflect the runtime/sandbox distinction: - SandboxClient → RuntimeClient - SandboxService → RuntimeService - SandboxRoutes → RuntimeRoutes - SandboxKeys → RuntimeKeys Breaking for external consumers: - ContainerSandboxService removed, replaced by ContainerRuntimeClient + ContainerRuntimeLinuxServer - Public types renamed ## Testing - [x] Tested locally - [ ] Added/updated tests - [ ] Added/updated docs
377 lines
13 KiB
Swift
377 lines
13 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
// Copyright © 2026 Apple Inc. and the container project authors.
|
|
//
|
|
// 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 ContainerAPIClient
|
|
import ContainerResource
|
|
import ContainerXPC
|
|
import Containerization
|
|
import ContainerizationError
|
|
import ContainerizationOS
|
|
import Foundation
|
|
import TerminalProgress
|
|
|
|
/// A client for interacting with a container runtime service instance.
|
|
public struct RuntimeClient: Sendable {
|
|
static let label = "com.apple.container.runtime"
|
|
|
|
public static func machServiceLabel(runtime: String, id: String) -> String {
|
|
"\(Self.label).\(runtime).\(id)"
|
|
}
|
|
|
|
private var machServiceLabel: String {
|
|
Self.machServiceLabel(runtime: runtime, id: id)
|
|
}
|
|
|
|
let id: String
|
|
let runtime: String
|
|
let client: XPCClient
|
|
|
|
init(id: String, runtime: String, client: XPCClient) {
|
|
self.id = id
|
|
self.runtime = runtime
|
|
self.client = client
|
|
}
|
|
|
|
/// Create a RuntimeClient by ID and runtime string. The returned client is ready to be used
|
|
/// without additional steps.
|
|
public static func create(id: String, runtime: String, timeout: Duration = XPCClient.xpcRegistrationTimeout) async throws -> RuntimeClient {
|
|
let label = Self.machServiceLabel(runtime: runtime, id: id)
|
|
let client = XPCClient(service: label)
|
|
let request = XPCMessage(route: RuntimeRoutes.createEndpoint.rawValue)
|
|
|
|
let response: XPCMessage
|
|
do {
|
|
response = try await client.send(request, responseTimeout: timeout)
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to create container \(id)",
|
|
cause: error
|
|
)
|
|
}
|
|
guard let endpoint = response.endpoint(key: RuntimeKeys.runtimeServiceEndpoint.rawValue) else {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to get endpoint for runtime service"
|
|
)
|
|
}
|
|
|
|
let endpointConnection = xpc_connection_create_from_endpoint(endpoint)
|
|
let xpcClient = XPCClient(connection: endpointConnection, label: label)
|
|
return RuntimeClient(id: id, runtime: runtime, client: xpcClient)
|
|
}
|
|
}
|
|
|
|
// Runtime Methods
|
|
extension RuntimeClient {
|
|
public func bootstrap(
|
|
stdio: [FileHandle?],
|
|
networkBootstrapInfos: [NetworkBootstrapInfo],
|
|
dynamicEnv: [String: String] = [:]
|
|
) async throws {
|
|
let request = XPCMessage(route: RuntimeRoutes.bootstrap.rawValue)
|
|
|
|
for (i, h) in stdio.enumerated() {
|
|
let key: RuntimeKeys = try {
|
|
switch i {
|
|
case 0: .stdin
|
|
case 1: .stdout
|
|
case 2: .stderr
|
|
default:
|
|
throw ContainerizationError(.invalidArgument, message: "invalid fd \(i)")
|
|
}
|
|
}()
|
|
|
|
if let h {
|
|
request.set(key: key.rawValue, value: h)
|
|
}
|
|
}
|
|
|
|
do {
|
|
let dynamicEnv = try JSONEncoder().encode(dynamicEnv)
|
|
request.set(key: RuntimeKeys.dynamicEnv.rawValue, value: dynamicEnv)
|
|
|
|
let infosData = try JSONEncoder().encode(networkBootstrapInfos)
|
|
request.set(key: RuntimeKeys.networkBootstrapInfos.rawValue, value: infosData)
|
|
try await self.client.send(request)
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to bootstrap container \(self.id)",
|
|
cause: error
|
|
)
|
|
}
|
|
}
|
|
|
|
public func state() async throws -> SandboxSnapshot {
|
|
let request = XPCMessage(route: RuntimeRoutes.state.rawValue)
|
|
let response: XPCMessage
|
|
do {
|
|
response = try await self.client.send(request)
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to get state for container \(self.id)",
|
|
cause: error
|
|
)
|
|
}
|
|
return try response.sandboxSnapshot()
|
|
}
|
|
|
|
public func createProcess(_ id: String, config: ProcessConfiguration, stdio: [FileHandle?]) async throws {
|
|
let request = XPCMessage(route: RuntimeRoutes.createProcess.rawValue)
|
|
request.set(key: RuntimeKeys.id.rawValue, value: id)
|
|
let data = try JSONEncoder().encode(config)
|
|
request.set(key: RuntimeKeys.processConfig.rawValue, value: data)
|
|
|
|
for (i, h) in stdio.enumerated() {
|
|
let key: RuntimeKeys = try {
|
|
switch i {
|
|
case 0: .stdin
|
|
case 1: .stdout
|
|
case 2: .stderr
|
|
default:
|
|
throw ContainerizationError(.invalidArgument, message: "invalid fd \(i)")
|
|
}
|
|
}()
|
|
|
|
if let h {
|
|
request.set(key: key.rawValue, value: h)
|
|
}
|
|
}
|
|
|
|
do {
|
|
try await self.client.send(request)
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to create process \(id) in container \(self.id)",
|
|
cause: error
|
|
)
|
|
}
|
|
}
|
|
|
|
public func startProcess(_ id: String) async throws {
|
|
let request = XPCMessage(route: RuntimeRoutes.start.rawValue)
|
|
request.set(key: RuntimeKeys.id.rawValue, value: id)
|
|
do {
|
|
try await self.client.send(request)
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to start process \(id) in container \(self.id)",
|
|
cause: error
|
|
)
|
|
}
|
|
}
|
|
|
|
public func stop(options: ContainerStopOptions) async throws {
|
|
let request = XPCMessage(route: RuntimeRoutes.stop.rawValue)
|
|
|
|
let data = try JSONEncoder().encode(options)
|
|
request.set(key: RuntimeKeys.stopOptions.rawValue, value: data)
|
|
|
|
do {
|
|
try await self.client.send(request)
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to stop container \(self.id)",
|
|
cause: error
|
|
)
|
|
}
|
|
}
|
|
|
|
public func kill(_ id: String, signal: Int64) async throws {
|
|
let request = XPCMessage(route: RuntimeRoutes.kill.rawValue)
|
|
request.set(key: RuntimeKeys.id.rawValue, value: id)
|
|
request.set(key: RuntimeKeys.signal.rawValue, value: signal)
|
|
|
|
do {
|
|
try await self.client.send(request)
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to send signal \(signal) to process \(id) in container \(self.id)",
|
|
cause: error
|
|
)
|
|
}
|
|
}
|
|
|
|
public func resize(_ id: String, size: Terminal.Size) async throws {
|
|
let request = XPCMessage(route: RuntimeRoutes.resize.rawValue)
|
|
request.set(key: RuntimeKeys.id.rawValue, value: id)
|
|
request.set(key: RuntimeKeys.width.rawValue, value: UInt64(size.width))
|
|
request.set(key: RuntimeKeys.height.rawValue, value: UInt64(size.height))
|
|
|
|
do {
|
|
try await self.client.send(request)
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to resize pty for process \(id) in container \(self.id)",
|
|
cause: error
|
|
)
|
|
}
|
|
}
|
|
|
|
public func wait(_ id: String) async throws -> ExitStatus {
|
|
let request = XPCMessage(route: RuntimeRoutes.wait.rawValue)
|
|
request.set(key: RuntimeKeys.id.rawValue, value: id)
|
|
|
|
let response: XPCMessage
|
|
do {
|
|
response = try await self.client.send(request)
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to wait for process \(id) in container \(self.id)",
|
|
cause: error
|
|
)
|
|
}
|
|
let code = response.int64(key: RuntimeKeys.exitCode.rawValue)
|
|
let date = response.date(key: RuntimeKeys.exitedAt.rawValue)
|
|
return ExitStatus(exitCode: Int32(code), exitedAt: date)
|
|
}
|
|
|
|
public func dial(_ port: UInt32) async throws -> FileHandle {
|
|
let request = XPCMessage(route: RuntimeRoutes.dial.rawValue)
|
|
request.set(key: RuntimeKeys.port.rawValue, value: UInt64(port))
|
|
|
|
let response: XPCMessage
|
|
do {
|
|
response = try await self.client.send(request)
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to dial \(port) on \(self.id)",
|
|
cause: error
|
|
)
|
|
}
|
|
guard let fh = response.fileHandle(key: RuntimeKeys.fd.rawValue) else {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to get fd for vsock port \(port)"
|
|
)
|
|
}
|
|
return fh
|
|
}
|
|
|
|
public func shutdown() async throws {
|
|
let request = XPCMessage(route: RuntimeRoutes.shutdown.rawValue)
|
|
|
|
do {
|
|
_ = try await self.client.send(request)
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to shutdown container \(self.id)",
|
|
cause: error
|
|
)
|
|
}
|
|
}
|
|
|
|
public func copyIn(source: String, destination: String, mode: UInt32, createParents: Bool = true) async throws {
|
|
let request = XPCMessage(route: RuntimeRoutes.copyIn.rawValue)
|
|
request.set(key: RuntimeKeys.sourcePath.rawValue, value: source)
|
|
request.set(key: RuntimeKeys.destinationPath.rawValue, value: destination)
|
|
request.set(key: RuntimeKeys.fileMode.rawValue, value: UInt64(mode))
|
|
request.set(key: RuntimeKeys.createParents.rawValue, value: createParents)
|
|
|
|
do {
|
|
try await self.client.send(request, responseTimeout: .seconds(300))
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to copy into container \(self.id)",
|
|
cause: error
|
|
)
|
|
}
|
|
}
|
|
|
|
public func copyOut(source: String, destination: String, createParents: Bool = true) async throws {
|
|
let request = XPCMessage(route: RuntimeRoutes.copyOut.rawValue)
|
|
request.set(key: RuntimeKeys.sourcePath.rawValue, value: source)
|
|
request.set(key: RuntimeKeys.destinationPath.rawValue, value: destination)
|
|
request.set(key: RuntimeKeys.createParents.rawValue, value: createParents)
|
|
|
|
do {
|
|
try await self.client.send(request, responseTimeout: .seconds(300))
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to copy from container \(self.id)",
|
|
cause: error
|
|
)
|
|
}
|
|
}
|
|
|
|
public func statistics() async throws -> ContainerStats {
|
|
let request = XPCMessage(route: RuntimeRoutes.statistics.rawValue)
|
|
|
|
let response: XPCMessage
|
|
do {
|
|
response = try await self.client.send(request)
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to get statistics for container \(self.id)",
|
|
cause: error
|
|
)
|
|
}
|
|
|
|
guard let data = response.dataNoCopy(key: RuntimeKeys.statistics.rawValue) else {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "no statistics data returned"
|
|
)
|
|
}
|
|
|
|
return try JSONDecoder().decode(ContainerStats.self, from: data)
|
|
}
|
|
}
|
|
|
|
extension XPCMessage {
|
|
public func id() throws -> String {
|
|
let id = self.string(key: RuntimeKeys.id.rawValue)
|
|
guard let id else {
|
|
throw ContainerizationError(
|
|
.invalidArgument,
|
|
message: "no id"
|
|
)
|
|
}
|
|
return id
|
|
}
|
|
|
|
func sandboxSnapshot() throws -> SandboxSnapshot {
|
|
let data = self.dataNoCopy(key: RuntimeKeys.snapshot.rawValue)
|
|
guard let data else {
|
|
throw ContainerizationError(
|
|
.invalidArgument,
|
|
message: "no state data returned"
|
|
)
|
|
}
|
|
return try JSONDecoder().decode(SandboxSnapshot.self, from: data)
|
|
}
|
|
|
|
public func networkBootstrapInfos() throws -> [NetworkBootstrapInfo] {
|
|
guard let data = self.dataNoCopy(key: RuntimeKeys.networkBootstrapInfos.rawValue) else {
|
|
throw ContainerizationError(.invalidArgument, message: "missing networkBootstrapInfos in bootstrap message")
|
|
}
|
|
return try JSONDecoder().decode([NetworkBootstrapInfo].self, from: data)
|
|
}
|
|
}
|