152 lines
4.4 KiB
Go
152 lines
4.4 KiB
Go
/*
|
|
Copyright The containerd 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
|
|
|
|
http://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.
|
|
*/
|
|
|
|
package podsandbox
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/containerd/typeurl/v2"
|
|
|
|
containerd "github.com/containerd/containerd/v2/client"
|
|
"github.com/containerd/containerd/v2/core/containers"
|
|
"github.com/containerd/containerd/v2/core/sandbox"
|
|
"github.com/containerd/containerd/v2/internal/cri/server/podsandbox/types"
|
|
critypes "github.com/containerd/containerd/v2/internal/cri/types"
|
|
"github.com/containerd/errdefs"
|
|
)
|
|
|
|
func (c *Controller) Status(ctx context.Context, sandboxID string, verbose bool) (sandbox.ControllerStatus, error) {
|
|
sb := c.store.Get(sandboxID)
|
|
if sb == nil {
|
|
return sandbox.ControllerStatus{}, fmt.Errorf("unable to find sandbox %q: %w", sandboxID, errdefs.ErrNotFound)
|
|
}
|
|
status := sb.Status.Get()
|
|
cstatus := sandbox.ControllerStatus{
|
|
SandboxID: sandboxID,
|
|
Pid: status.Pid,
|
|
State: status.State.String(),
|
|
CreatedAt: status.CreatedAt,
|
|
ExitedAt: status.ExitedAt,
|
|
Extra: nil,
|
|
}
|
|
|
|
if verbose {
|
|
info, err := toCRISandboxInfo(ctx, sb)
|
|
if err != nil {
|
|
return sandbox.ControllerStatus{}, err
|
|
}
|
|
|
|
cstatus.Info = info
|
|
}
|
|
|
|
return cstatus, nil
|
|
}
|
|
|
|
// toCRISandboxInfo converts internal container object information to CRI sandbox status response info map.
|
|
func toCRISandboxInfo(ctx context.Context, sb *types.PodSandbox) (map[string]string, error) {
|
|
si := &critypes.SandboxInfo{
|
|
Pid: sb.Status.Get().Pid,
|
|
Config: sb.Metadata.Config,
|
|
CNIResult: sb.Metadata.CNIResult,
|
|
Metadata: &sb.Metadata,
|
|
}
|
|
|
|
if container := sb.Container; container != nil {
|
|
task, err := container.Task(ctx, nil)
|
|
if err != nil && !errdefs.IsNotFound(err) {
|
|
return nil, fmt.Errorf("failed to get sandbox container task: %w", err)
|
|
}
|
|
|
|
var processStatus containerd.ProcessStatus
|
|
if task != nil {
|
|
if taskStatus, err := task.Status(ctx); err != nil {
|
|
if !errdefs.IsNotFound(err) {
|
|
return nil, fmt.Errorf("failed to get task status: %w", err)
|
|
}
|
|
processStatus = containerd.Unknown
|
|
} else {
|
|
processStatus = taskStatus.Status
|
|
}
|
|
}
|
|
si.Status = string(processStatus)
|
|
|
|
spec, err := container.Spec(ctx)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to get sandbox container runtime spec: %w", err)
|
|
}
|
|
si.RuntimeSpec = spec
|
|
|
|
ctrInfo, err := container.Info(ctx)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to get sandbox container info: %w", err)
|
|
}
|
|
// Do not use config.SandboxImage because the configuration might
|
|
// be changed during restart. It may not reflect the actual image
|
|
// used by the sandbox container.
|
|
si.Image = ctrInfo.Image
|
|
si.SnapshotKey = ctrInfo.SnapshotKey
|
|
si.Snapshotter = ctrInfo.Snapshotter
|
|
|
|
runtimeOptions, err := getRuntimeOptions(ctrInfo)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to get runtime options: %w", err)
|
|
}
|
|
|
|
si.RuntimeType = ctrInfo.Runtime.Name
|
|
si.RuntimeOptions = runtimeOptions
|
|
}
|
|
|
|
if si.Status == "" {
|
|
// If processStatus is empty, it means that the task is deleted. Apply "deleted"
|
|
// status which does not exist in containerd.
|
|
si.Status = "deleted"
|
|
}
|
|
netns := getNetNS(&sb.Metadata)
|
|
if netns != nil {
|
|
// Add network closed information if sandbox is not using host network.
|
|
closed, err := netns.Closed()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to check network namespace closed: %w", err)
|
|
}
|
|
si.NetNSClosed = closed
|
|
}
|
|
|
|
infoBytes, err := json.Marshal(si)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to marshal info %v: %w", si, err)
|
|
}
|
|
|
|
return map[string]string{
|
|
"info": string(infoBytes),
|
|
}, nil
|
|
}
|
|
|
|
// getRuntimeOptions get runtime options from container metadata.
|
|
func getRuntimeOptions(c containers.Container) (interface{}, error) {
|
|
from := c.Runtime.Options
|
|
if from == nil || from.GetValue() == nil {
|
|
return nil, nil
|
|
}
|
|
opts, err := typeurl.UnmarshalAny(from)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return opts, nil
|
|
}
|