mirror of
https://github.com/apple/container.git
synced 2026-08-30 12:25:39 +00:00
- Closes #1206. - Closes #1185. - Closes #507. - Addresses existing log messages for #642. - Nondeterministic CI errors are resulting from very slow launch times for the first runtime helper, which causes ContainersService to be locked for longer than our 20 sec timeout. Bumping the timeout to 60 seconds addresses this case for now. - Since many log messages needed to be changed to troubleshoot the issue, updated all log messages to use structured logging, and implemented consistent entry/exit logging for all service operations. - Added logging for ContainerService lock acquisition to help with finding root cause for the slow service startup. - Plumbed the `--debug` flag on both `container system start` and `container system logs` so that the flag is actually useful. - Updated the `install-init.sh` script so that can install in a custom app root directory.
199 lines
7.4 KiB
Swift
199 lines
7.4 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
// Copyright © 2025-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 ArgumentParser
|
|
import ContainerAPIClient
|
|
import ContainerPersistence
|
|
import ContainerPlugin
|
|
import ContainerXPC
|
|
import ContainerizationError
|
|
import Foundation
|
|
import TerminalProgress
|
|
|
|
extension Application {
|
|
public struct SystemStart: AsyncLoggableCommand {
|
|
public static let configuration = CommandConfiguration(
|
|
commandName: "start",
|
|
abstract: "Start `container` services"
|
|
)
|
|
|
|
@Option(
|
|
name: .shortAndLong,
|
|
help: "Path to the root directory for application data",
|
|
transform: { URL(filePath: $0) })
|
|
var appRoot = ApplicationRoot.defaultURL
|
|
|
|
@Option(
|
|
name: .long,
|
|
help: "Path to the root directory for application executables and plugins",
|
|
transform: { URL(filePath: $0) })
|
|
var installRoot = InstallRoot.defaultURL
|
|
|
|
@Flag(
|
|
name: .long,
|
|
inversion: .prefixedEnableDisable,
|
|
help: "Specify whether the default kernel should be installed or not (default: prompt user)")
|
|
var kernelInstall: Bool?
|
|
|
|
@Option(
|
|
help: "Number of seconds to wait for API service to become responsive",
|
|
transform: {
|
|
guard let timeoutSeconds = Double($0) else {
|
|
throw ValidationError("Invalid timeout value: \($0)")
|
|
}
|
|
return .seconds(timeoutSeconds)
|
|
}
|
|
)
|
|
var timeout: Duration = XPCClient.xpcRegistrationTimeout
|
|
|
|
@OptionGroup
|
|
public var logOptions: Flags.Logging
|
|
|
|
public init() {}
|
|
|
|
public func run() async throws {
|
|
// Without the true path to the binary in the plist, `container-apiserver` won't launch properly.
|
|
// TODO: Can we use the plugin loader to bootstrap the API server?
|
|
let executableUrl = CommandLine.executablePathUrl
|
|
.deletingLastPathComponent()
|
|
.appendingPathComponent("container-apiserver")
|
|
.resolvingSymlinksInPath()
|
|
|
|
var args = [executableUrl.absolutePath()]
|
|
|
|
args.append("start")
|
|
if logOptions.debug {
|
|
args.append("--debug")
|
|
}
|
|
|
|
let apiServerDataUrl = appRoot.appending(path: "apiserver")
|
|
try! FileManager.default.createDirectory(at: apiServerDataUrl, withIntermediateDirectories: true)
|
|
|
|
var env = PluginLoader.filterEnvironment()
|
|
env[ApplicationRoot.environmentName] = appRoot.path(percentEncoded: false)
|
|
env[InstallRoot.environmentName] = installRoot.path(percentEncoded: false)
|
|
|
|
let plist = LaunchPlist(
|
|
label: "com.apple.container.apiserver",
|
|
arguments: args,
|
|
environment: env,
|
|
limitLoadToSessionType: [.Aqua, .Background, .System],
|
|
runAtLoad: true,
|
|
machServices: ["com.apple.container.apiserver"]
|
|
)
|
|
|
|
let plistURL = apiServerDataUrl.appending(path: "apiserver.plist")
|
|
let data = try plist.encode()
|
|
try data.write(to: plistURL)
|
|
|
|
print("Registering API server with launchd...")
|
|
try ServiceManager.register(plistPath: plistURL.path)
|
|
|
|
// Now ping our friendly daemon. Fail if we don't get a response.
|
|
do {
|
|
print("Verifying apiserver is running...")
|
|
_ = try await ClientHealthCheck.ping(timeout: timeout)
|
|
} catch {
|
|
throw ContainerizationError(
|
|
.internalError,
|
|
message: "failed to get a response from apiserver: \(error)"
|
|
)
|
|
}
|
|
|
|
if await !initImageExists() {
|
|
try? await installInitialFilesystem()
|
|
}
|
|
|
|
guard await !kernelExists() else {
|
|
return
|
|
}
|
|
try await installDefaultKernel()
|
|
}
|
|
|
|
private func installInitialFilesystem() async throws {
|
|
let dep = Dependencies.initFs
|
|
var pullCommand = try ImagePull.parse()
|
|
pullCommand.reference = dep.source
|
|
print("Installing base container filesystem...")
|
|
do {
|
|
try await pullCommand.run()
|
|
} catch {
|
|
log.error("failed to install base container filesystem", metadata: ["error": "\(error)"])
|
|
}
|
|
}
|
|
|
|
private func installDefaultKernel() async throws {
|
|
let kernelDependency = Dependencies.kernel
|
|
let defaultKernelURL = kernelDependency.source
|
|
let defaultKernelBinaryPath = DefaultsStore.get(key: .defaultKernelBinaryPath)
|
|
|
|
var shouldInstallKernel = false
|
|
if kernelInstall == nil {
|
|
print("No default kernel configured.")
|
|
print("Install the recommended default kernel from [\(kernelDependency.source)]? [Y/n]: ", terminator: "")
|
|
guard let read = readLine(strippingNewline: true) else {
|
|
throw ContainerizationError(.internalError, message: "failed to read user input")
|
|
}
|
|
guard read.lowercased() == "y" || read.count == 0 else {
|
|
print("Please use the `container system kernel set --recommended` command to configure the default kernel")
|
|
return
|
|
}
|
|
shouldInstallKernel = true
|
|
} else {
|
|
shouldInstallKernel = kernelInstall ?? false
|
|
}
|
|
guard shouldInstallKernel else {
|
|
return
|
|
}
|
|
print("Installing kernel...")
|
|
try await KernelSet.downloadAndInstallWithProgressBar(tarRemoteURL: defaultKernelURL, kernelFilePath: defaultKernelBinaryPath, force: true)
|
|
}
|
|
|
|
private func initImageExists() async -> Bool {
|
|
do {
|
|
let img = try await ClientImage.get(reference: Dependencies.initFs.source)
|
|
let _ = try await img.getSnapshot(platform: .current)
|
|
return true
|
|
} catch {
|
|
return false
|
|
}
|
|
}
|
|
|
|
private func kernelExists() async -> Bool {
|
|
do {
|
|
try await ClientKernel.getDefaultKernel(for: .current)
|
|
return true
|
|
} catch {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
|
|
private enum Dependencies: String {
|
|
case kernel
|
|
case initFs
|
|
|
|
var source: String {
|
|
switch self {
|
|
case .initFs:
|
|
return DefaultsStore.get(key: .defaultInitImage)
|
|
case .kernel:
|
|
return DefaultsStore.get(key: .defaultKernelURL)
|
|
}
|
|
}
|
|
}
|
|
}
|