-
Notifications
You must be signed in to change notification settings - Fork 755
Expand file tree
/
Copy pathContainersHarness.swift
More file actions
384 lines (346 loc) · 12.6 KB
/
ContainersHarness.swift
File metadata and controls
384 lines (346 loc) · 12.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
//===----------------------------------------------------------------------===//
// 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 ContainerResource
import ContainerXPC
import Containerization
import ContainerizationError
import ContainerizationOS
import Foundation
import Logging
public struct ContainersHarness: Sendable {
let log: Logging.Logger
let service: ContainersService
public init(service: ContainersService, log: Logging.Logger) {
self.log = log
self.service = service
}
@Sendable
public func list(_ message: XPCMessage) async throws -> XPCMessage {
var filters = ContainerListFilters.all
if let filterData = message.dataNoCopy(key: .listFilters) {
filters = try JSONDecoder().decode(ContainerListFilters.self, from: filterData)
}
let containers = try await service.list(filters: filters)
let data = try JSONEncoder().encode(containers)
let reply = message.reply()
reply.set(key: .containers, value: data)
return reply
}
@Sendable
public func bootstrap(_ message: XPCMessage) async throws -> XPCMessage {
let id = message.string(key: .id)
guard let id else {
throw ContainerizationError(
.invalidArgument,
message: "id cannot be empty"
)
}
let stdio = message.stdio()
try await service.bootstrap(id: id, stdio: stdio)
return message.reply()
}
@Sendable
public func stop(_ message: XPCMessage) async throws -> XPCMessage {
let stopOptions = try message.stopOptions()
let id = message.string(key: .id)
guard let id else {
throw ContainerizationError(
.invalidArgument,
message: "id cannot be empty"
)
}
try await service.stop(id: id, options: stopOptions)
return message.reply()
}
@Sendable
public func dial(_ message: XPCMessage) async throws -> XPCMessage {
let id = message.string(key: .id)
guard let id else {
throw ContainerizationError(
.invalidArgument,
message: "id cannot be empty"
)
}
let port = message.uint64(key: .port)
let fh = try await service.dial(id: id, port: UInt32(port))
let reply = message.reply()
reply.setFileHandle(fh)
return reply
}
@Sendable
public func wait(_ message: XPCMessage) async throws -> XPCMessage {
let id = message.string(key: .id)
guard let id else {
throw ContainerizationError(
.invalidArgument,
message: "id cannot be empty"
)
}
let processID = message.string(key: .processIdentifier)
guard let processID else {
throw ContainerizationError(
.invalidArgument,
message: "process ID cannot be empty"
)
}
let exitStatus = try await service.wait(id: id, processID: processID)
let reply = message.reply()
reply.set(key: .exitCode, value: Int64(exitStatus.exitCode))
reply.set(key: .exitedAt, value: exitStatus.exitedAt)
return reply
}
@Sendable
public func resize(_ message: XPCMessage) async throws -> XPCMessage {
let id = message.string(key: .id)
guard let id else {
throw ContainerizationError(
.invalidArgument,
message: "id cannot be empty"
)
}
let processID = message.string(key: .processIdentifier)
guard let processID else {
throw ContainerizationError(
.invalidArgument,
message: "process ID cannot be empty"
)
}
let width = message.uint64(key: .width)
let height = message.uint64(key: .height)
try await service.resize(
id: id,
processID: processID,
size: Terminal.Size(width: UInt16(width), height: UInt16(height))
)
return message.reply()
}
@Sendable
public func kill(_ message: XPCMessage) async throws -> XPCMessage {
let id = message.string(key: .id)
guard let id else {
throw ContainerizationError(
.invalidArgument,
message: "id cannot be empty"
)
}
let processID = message.string(key: .processIdentifier)
guard let processID else {
throw ContainerizationError(
.invalidArgument,
message: "process ID cannot be empty"
)
}
try await service.kill(
id: id,
processID: processID,
signal: try message.signal()
)
return message.reply()
}
@Sendable
public func create(_ message: XPCMessage) async throws -> XPCMessage {
let data = message.dataNoCopy(key: .containerConfig)
guard let data else {
throw ContainerizationError(
.invalidArgument,
message: "container configuration cannot be empty"
)
}
let kdata = message.dataNoCopy(key: .kernel)
guard let kdata else {
throw ContainerizationError(
.invalidArgument,
message: "kernel cannot be empty"
)
}
let odata = message.dataNoCopy(key: .containerOptions)
var options: ContainerCreateOptions = .default
if let odata {
options = try JSONDecoder().decode(ContainerCreateOptions.self, from: odata)
}
let config = try JSONDecoder().decode(ContainerConfiguration.self, from: data)
let kernel = try JSONDecoder().decode(Kernel.self, from: kdata)
let initImage = message.string(key: .initImage)
try await service.create(configuration: config, kernel: kernel, options: options, initImage: initImage)
return message.reply()
}
@Sendable
public func createProcess(_ message: XPCMessage) async throws -> XPCMessage {
let id = message.string(key: .id)
guard let id else {
throw ContainerizationError(
.invalidArgument,
message: "id cannot be empty"
)
}
let processID = message.string(key: .processIdentifier)
guard let processID else {
throw ContainerizationError(
.invalidArgument,
message: "process ID cannot be empty"
)
}
let config = try message.processConfig()
let stdio = message.stdio()
try await service.createProcess(
id: id,
processID: processID,
config: config,
stdio: stdio
)
return message.reply()
}
@Sendable
public func startProcess(_ message: XPCMessage) async throws -> XPCMessage {
let id = message.string(key: .id)
guard let id else {
throw ContainerizationError(
.invalidArgument,
message: "id cannot be empty"
)
}
let processID = message.string(key: .processIdentifier)
guard let processID else {
throw ContainerizationError(
.invalidArgument,
message: "process ID cannot be empty"
)
}
try await service.startProcess(
id: id,
processID: processID,
)
return message.reply()
}
@Sendable
public func delete(_ message: XPCMessage) async throws -> XPCMessage {
let id = message.string(key: .id)
guard let id else {
throw ContainerizationError(.invalidArgument, message: "id cannot be empty")
}
let forceDelete = message.bool(key: .forceDelete)
try await service.delete(id: id, force: forceDelete)
return message.reply()
}
@Sendable
public func diskUsage(_ message: XPCMessage) async throws -> XPCMessage {
guard let containerId = message.string(key: .id) else {
throw ContainerizationError(.invalidArgument, message: "id cannot be empty")
}
let size = try await service.containerDiskUsage(id: containerId)
let reply = message.reply()
reply.set(key: .containerSize, value: size)
return reply
}
@Sendable
public func logs(_ message: XPCMessage) async throws -> XPCMessage {
let id = message.string(key: .id)
guard let id else {
throw ContainerizationError(
.invalidArgument,
message: "id cannot be empty"
)
}
let fds = try await service.logs(id: id)
let reply = message.reply()
try reply.set(key: .logs, value: fds)
return reply
}
@Sendable
public func copyIn(_ message: XPCMessage) async throws -> XPCMessage {
guard let id = message.string(key: .id) else {
throw ContainerizationError(
.invalidArgument,
message: "id cannot be empty"
)
}
guard let sourcePath = message.string(key: .sourcePath) else {
throw ContainerizationError(
.invalidArgument,
message: "source path cannot be empty"
)
}
guard let destinationPath = message.string(key: .destinationPath) else {
throw ContainerizationError(
.invalidArgument,
message: "destination path cannot be empty"
)
}
let mode = UInt32(message.uint64(key: .fileMode))
let destinationIsDirectory = message.bool(key: .destinationIsDirectory)
try await service.copyIn(id: id, source: sourcePath, destination: destinationPath, mode: mode, destinationIsDirectory: destinationIsDirectory)
return message.reply()
}
@Sendable
public func copyOut(_ message: XPCMessage) async throws -> XPCMessage {
guard let id = message.string(key: .id) else {
throw ContainerizationError(
.invalidArgument,
message: "id cannot be empty"
)
}
guard let sourcePath = message.string(key: .sourcePath) else {
throw ContainerizationError(
.invalidArgument,
message: "source path cannot be empty"
)
}
guard let destinationPath = message.string(key: .destinationPath) else {
throw ContainerizationError(
.invalidArgument,
message: "destination path cannot be empty"
)
}
let destinationIsDirectory = message.bool(key: .destinationIsDirectory)
try await service.copyOut(id: id, source: sourcePath, destination: destinationPath, destinationIsDirectory: destinationIsDirectory)
return message.reply()
}
@Sendable
public func stats(_ message: XPCMessage) async throws -> XPCMessage {
let id = message.string(key: .id)
guard let id else {
throw ContainerizationError(
.invalidArgument,
message: "id cannot be empty"
)
}
let stats = try await service.stats(id: id)
let data = try JSONEncoder().encode(stats)
let reply = message.reply()
reply.set(key: .statistics, value: data)
return reply
}
@Sendable
public func export(_ message: XPCMessage) async throws -> XPCMessage {
let id = message.string(key: .id)
guard let id else {
throw ContainerizationError(
.invalidArgument,
message: "id cannot be empty"
)
}
let archive = message.string(key: .archive)
guard let archive else {
throw ContainerizationError(
.invalidArgument,
message: "archive cannot be empty"
)
}
let archiveUrl = URL(fileURLWithPath: archive)
try await service.exportRootfs(id: id, archive: archiveUrl)
return message.reply()
}
}