|
| 1 | +/* |
| 2 | + Copyright The containerd Authors. |
| 3 | +
|
| 4 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + you may not use this file except in compliance with the License. |
| 6 | + You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | + Unless required by applicable law or agreed to in writing, software |
| 11 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + See the License for the specific language governing permissions and |
| 14 | + limitations under the License. |
| 15 | +*/ |
| 16 | + |
| 17 | +package v2 |
| 18 | + |
| 19 | +import ( |
| 20 | + "context" |
| 21 | + "strings" |
| 22 | + |
| 23 | + eventstypes "github.com/containerd/containerd/api/events" |
| 24 | + "github.com/containerd/containerd/events/exchange" |
| 25 | + "github.com/containerd/containerd/runtime" |
| 26 | + client "github.com/containerd/containerd/runtime/v2/shim" |
| 27 | + "github.com/containerd/containerd/runtime/v2/task" |
| 28 | + "github.com/containerd/ttrpc" |
| 29 | + "github.com/pkg/errors" |
| 30 | +) |
| 31 | + |
| 32 | +func shimBinary(ctx context.Context, bundle *Bundle, runtime, containerdAddress string, events *exchange.Exchange, rt *runtime.TaskList) *binary { |
| 33 | + return &binary{ |
| 34 | + bundle: bundle, |
| 35 | + runtime: runtime, |
| 36 | + containerdAddress: containerdAddress, |
| 37 | + events: events, |
| 38 | + rtTasks: rt, |
| 39 | + } |
| 40 | +} |
| 41 | + |
| 42 | +type binary struct { |
| 43 | + runtime string |
| 44 | + containerdAddress string |
| 45 | + bundle *Bundle |
| 46 | + events *exchange.Exchange |
| 47 | + rtTasks *runtime.TaskList |
| 48 | +} |
| 49 | + |
| 50 | +func (b *binary) Start(ctx context.Context) (*shim, error) { |
| 51 | + cmd, err := client.Command(ctx, b.runtime, b.containerdAddress, b.bundle.Path, "-id", b.bundle.ID, "start") |
| 52 | + if err != nil { |
| 53 | + return nil, err |
| 54 | + } |
| 55 | + out, err := cmd.CombinedOutput() |
| 56 | + if err != nil { |
| 57 | + return nil, errors.Wrapf(err, "%s", out) |
| 58 | + } |
| 59 | + address := strings.TrimSpace(string(out)) |
| 60 | + conn, err := client.Connect(address, client.AnonDialer) |
| 61 | + if err != nil { |
| 62 | + return nil, err |
| 63 | + } |
| 64 | + client := ttrpc.NewClient(conn) |
| 65 | + client.OnClose(func() { conn.Close() }) |
| 66 | + return &shim{ |
| 67 | + bundle: b.bundle, |
| 68 | + client: client, |
| 69 | + task: task.NewTaskClient(client), |
| 70 | + events: b.events, |
| 71 | + rtTasks: b.rtTasks, |
| 72 | + }, nil |
| 73 | +} |
| 74 | + |
| 75 | +func (b *binary) Delete(ctx context.Context) (*runtime.Exit, error) { |
| 76 | + cmd, err := client.Command(ctx, b.runtime, b.containerdAddress, b.bundle.Path, "-id", b.bundle.ID, "delete") |
| 77 | + if err != nil { |
| 78 | + return nil, err |
| 79 | + } |
| 80 | + out, err := cmd.CombinedOutput() |
| 81 | + if err != nil { |
| 82 | + return nil, errors.Wrapf(err, "%s", out) |
| 83 | + } |
| 84 | + var response task.DeleteResponse |
| 85 | + if err := response.Unmarshal(out); err != nil { |
| 86 | + return nil, err |
| 87 | + } |
| 88 | + if err := b.bundle.Delete(); err != nil { |
| 89 | + return nil, err |
| 90 | + } |
| 91 | + // remove self from the runtime task list |
| 92 | + // this seems dirty but it cleans up the API across runtimes, tasks, and the service |
| 93 | + b.rtTasks.Delete(ctx, b.bundle.ID) |
| 94 | + // shim will send the exit event |
| 95 | + b.events.Publish(ctx, runtime.TaskDeleteEventTopic, &eventstypes.TaskDelete{ |
| 96 | + ContainerID: b.bundle.ID, |
| 97 | + ExitStatus: response.ExitStatus, |
| 98 | + ExitedAt: response.ExitedAt, |
| 99 | + Pid: response.Pid, |
| 100 | + }) |
| 101 | + return &runtime.Exit{ |
| 102 | + Status: response.ExitStatus, |
| 103 | + Timestamp: response.ExitedAt, |
| 104 | + Pid: response.Pid, |
| 105 | + }, nil |
| 106 | +} |
0 commit comments