2016-11-22 22:23:01 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-12-06 12:17:54 +00:00
|
|
|
"os"
|
2016-11-22 22:23:01 +00:00
|
|
|
|
|
|
|
"github.com/Sirupsen/logrus"
|
2017-05-21 13:47:01 +00:00
|
|
|
"github.com/containers/storage"
|
|
|
|
"github.com/docker/docker/pkg/mount"
|
|
|
|
"github.com/docker/docker/pkg/symlink"
|
2016-11-22 22:23:01 +00:00
|
|
|
"github.com/kubernetes-incubator/cri-o/oci"
|
2017-05-21 13:47:01 +00:00
|
|
|
"github.com/opencontainers/selinux/go-selinux/label"
|
2016-11-22 22:23:01 +00:00
|
|
|
"golang.org/x/net/context"
|
2017-05-21 13:47:01 +00:00
|
|
|
"golang.org/x/sys/unix"
|
2016-11-22 22:23:01 +00:00
|
|
|
pb "k8s.io/kubernetes/pkg/kubelet/api/v1alpha1/runtime"
|
2017-06-15 20:56:17 +00:00
|
|
|
"k8s.io/kubernetes/pkg/kubelet/network/hostport"
|
2016-11-22 22:23:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// StopPodSandbox stops the sandbox. If there are any running containers in the
|
|
|
|
// sandbox, they should be force terminated.
|
|
|
|
func (s *Server) StopPodSandbox(ctx context.Context, req *pb.StopPodSandboxRequest) (*pb.StopPodSandboxResponse, error) {
|
|
|
|
logrus.Debugf("StopPodSandboxRequest %+v", req)
|
2017-02-03 14:41:28 +00:00
|
|
|
sb, err := s.getPodSandboxFromRequest(req.PodSandboxId)
|
2016-11-22 22:23:01 +00:00
|
|
|
if err != nil {
|
2017-05-20 13:14:51 +00:00
|
|
|
if err == errSandboxIDEmpty {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the sandbox isn't found we just return an empty response to adhere
|
|
|
|
// the the CRI interface which expects to not error out in not found
|
|
|
|
// cases.
|
|
|
|
|
|
|
|
resp := &pb.StopPodSandboxResponse{}
|
|
|
|
logrus.Warnf("could not get sandbox %s, it's probably been stopped already: %v", req.PodSandboxId, err)
|
|
|
|
return resp, nil
|
2016-11-22 22:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
podInfraContainer := sb.infraContainer
|
|
|
|
netnsPath, err := podInfraContainer.NetNsPath()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-12-06 12:17:54 +00:00
|
|
|
if _, err := os.Stat(netnsPath); err == nil {
|
2017-06-15 20:56:17 +00:00
|
|
|
if err2 := s.hostportManager.Remove(sb.id, &hostport.PodPortMapping{
|
|
|
|
Name: sb.name,
|
|
|
|
PortMappings: sb.portMappings,
|
|
|
|
HostNetwork: false,
|
|
|
|
}); err2 != nil {
|
|
|
|
logrus.Warnf("failed to remove hostport for container %s in sandbox %s: %v",
|
|
|
|
podInfraContainer.Name(), sb.id, err2)
|
|
|
|
}
|
|
|
|
|
2017-05-04 16:41:15 +00:00
|
|
|
if err2 := s.netPlugin.TearDownPod(netnsPath, sb.namespace, sb.kubeName, sb.id); err2 != nil {
|
2017-06-14 12:54:56 +00:00
|
|
|
logrus.Warnf("failed to destroy network for container %s in sandbox %s: %v",
|
2016-12-06 12:17:54 +00:00
|
|
|
podInfraContainer.Name(), sb.id, err2)
|
|
|
|
}
|
|
|
|
} else if !os.IsNotExist(err) { // it's ok for netnsPath to *not* exist
|
|
|
|
return nil, fmt.Errorf("failed to stat netns path for container %s in sandbox %s before tearing down the network: %v",
|
2017-05-04 16:41:15 +00:00
|
|
|
sb.name, sb.id, err)
|
2016-11-22 22:23:01 +00:00
|
|
|
}
|
|
|
|
|
2016-11-23 17:16:21 +00:00
|
|
|
// Close the sandbox networking namespace.
|
2017-07-18 20:35:15 +00:00
|
|
|
if err := sb.NetNsRemove(); err != nil {
|
2016-11-23 17:16:21 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-11-22 22:23:01 +00:00
|
|
|
containers := sb.containers.List()
|
|
|
|
containers = append(containers, podInfraContainer)
|
|
|
|
|
|
|
|
for _, c := range containers {
|
2017-07-17 12:25:32 +00:00
|
|
|
if err := s.Runtime().UpdateStatus(c); err != nil {
|
2016-12-06 11:39:38 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-07-17 12:25:32 +00:00
|
|
|
cStatus := s.Runtime().ContainerStatus(c)
|
2016-11-22 22:23:01 +00:00
|
|
|
if cStatus.Status != oci.ContainerStateStopped {
|
2017-07-17 12:25:32 +00:00
|
|
|
if err := s.Runtime().StopContainer(c, -1); err != nil {
|
2016-10-18 14:48:33 +00:00
|
|
|
return nil, fmt.Errorf("failed to stop container %s in pod sandbox %s: %v", c.Name(), sb.id, err)
|
2016-11-22 22:23:01 +00:00
|
|
|
}
|
2017-05-21 13:47:01 +00:00
|
|
|
if c.ID() == podInfraContainer.ID() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if err := s.storageRuntimeServer.StopContainer(c.ID()); err != nil && err != storage.ErrContainerUnknown {
|
|
|
|
// assume container already umounted
|
|
|
|
logrus.Warnf("failed to stop container %s in pod sandbox %s: %v", c.Name(), sb.id, err)
|
|
|
|
}
|
2016-11-22 22:23:01 +00:00
|
|
|
}
|
2017-05-11 10:03:59 +00:00
|
|
|
s.containerStateToDisk(c)
|
2016-11-22 22:23:01 +00:00
|
|
|
}
|
|
|
|
|
2017-05-21 13:47:01 +00:00
|
|
|
if err := label.ReleaseLabel(sb.processLabel); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// unmount the shm for the pod
|
|
|
|
if sb.shmPath != "/dev/shm" {
|
|
|
|
// we got namespaces in the form of
|
|
|
|
// /var/run/containers/storage/overlay-containers/CID/userdata/shm
|
|
|
|
// but /var/run on most system is symlinked to /run so we first resolve
|
|
|
|
// the symlink and then try and see if it's mounted
|
|
|
|
fp, err := symlink.FollowSymlinkInScope(sb.shmPath, "/")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if mounted, err := mount.Mounted(fp); err == nil && mounted {
|
|
|
|
if err := unix.Unmount(fp, unix.MNT_DETACH); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := s.storageRuntimeServer.StopContainer(sb.id); err != nil && err != storage.ErrContainerUnknown {
|
|
|
|
logrus.Warnf("failed to stop sandbox container in pod sandbox %s: %v", sb.id, err)
|
|
|
|
}
|
|
|
|
|
2016-11-22 22:23:01 +00:00
|
|
|
resp := &pb.StopPodSandboxResponse{}
|
|
|
|
logrus.Debugf("StopPodSandboxResponse: %+v", resp)
|
|
|
|
return resp, nil
|
|
|
|
}
|
2017-05-15 14:30:50 +00:00
|
|
|
|
|
|
|
// StopAllPodSandboxes removes all pod sandboxes
|
|
|
|
func (s *Server) StopAllPodSandboxes() {
|
|
|
|
logrus.Debugf("StopAllPodSandboxes")
|
|
|
|
for _, sb := range s.state.sandboxes {
|
|
|
|
pod := &pb.StopPodSandboxRequest{
|
|
|
|
PodSandboxId: sb.id,
|
|
|
|
}
|
|
|
|
if _, err := s.StopPodSandbox(nil, pod); err != nil {
|
|
|
|
logrus.Warnf("could not StopPodSandbox %s: %v", sb.id, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|