mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-29 00:37:24 +00:00
virtcontainers : fix shared dir resource remaining
Before this patch shared dir will reamin when sandox has already removed, espacilly for kata-agent mod. Do clean up shared dirs after all mounts are umounted. Fixes: #291 Signed-off-by: Haomin <caihaomin@huawei.com>
This commit is contained in:
parent
6f409b9528
commit
8a6d383715
@ -152,6 +152,9 @@ type agent interface {
|
|||||||
// stopSandbox will tell the agent to stop all containers related to the Sandbox.
|
// stopSandbox will tell the agent to stop all containers related to the Sandbox.
|
||||||
stopSandbox(sandbox *Sandbox) error
|
stopSandbox(sandbox *Sandbox) error
|
||||||
|
|
||||||
|
// cleanup will clean the resources for sandbox
|
||||||
|
cleanupSandbox(sandbox *Sandbox) error
|
||||||
|
|
||||||
// createContainer will tell the agent to create a container related to a Sandbox.
|
// createContainer will tell the agent to create a container related to a Sandbox.
|
||||||
createContainer(sandbox *Sandbox, c *Container) (*Process, error)
|
createContainer(sandbox *Sandbox, c *Container) (*Process, error)
|
||||||
|
|
||||||
|
@ -510,11 +510,19 @@ func (c *Container) mountSharedDirMounts(hostSharedDir, guestSharedDir string) (
|
|||||||
func (c *Container) unmountHostMounts() error {
|
func (c *Container) unmountHostMounts() error {
|
||||||
for _, m := range c.mounts {
|
for _, m := range c.mounts {
|
||||||
if m.HostPath != "" {
|
if m.HostPath != "" {
|
||||||
|
logger := c.Logger().WithField("host-path", m.HostPath)
|
||||||
if err := syscall.Unmount(m.HostPath, 0); err != nil {
|
if err := syscall.Unmount(m.HostPath, 0); err != nil {
|
||||||
c.Logger().WithFields(logrus.Fields{
|
// Unable to unmount paths could be a really big problem here
|
||||||
"host-path": m.HostPath,
|
// we need to make sure cause 'less damage' if things are
|
||||||
"error": err,
|
// really broken. For further, we need to give admins more of
|
||||||
}).Warn("Could not umount")
|
// a chance to diagnose the problem. As the rules of `fail fast`,
|
||||||
|
// here we return an error as soon as we get it.
|
||||||
|
logger.WithError(err).Warn("Could not umount")
|
||||||
|
return err
|
||||||
|
} else if err := os.RemoveAll(m.HostPath); err != nil {
|
||||||
|
// since the mounts related to the shared dir is umounted
|
||||||
|
// we need to remove the host path to avoid resource remaining
|
||||||
|
logger.WithError(err).Warn("Could not be removed")
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -854,3 +854,7 @@ func (h *hyper) resumeContainer(sandbox *Sandbox, c Container) error {
|
|||||||
// hyperstart-agent does not support resume container
|
// hyperstart-agent does not support resume container
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (h *hyper) cleanupSandbox(sandbox *Sandbox) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
@ -549,6 +549,10 @@ func (k *kataAgent) stopSandbox(sandbox *Sandbox) error {
|
|||||||
return k.proxy.stop(sandbox, k.state.ProxyPid)
|
return k.proxy.stop(sandbox, k.state.ProxyPid)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (k *kataAgent) cleanupSandbox(sandbox *Sandbox) error {
|
||||||
|
return os.RemoveAll(filepath.Join(kataHostSharedDir, sandbox.id))
|
||||||
|
}
|
||||||
|
|
||||||
func (k *kataAgent) replaceOCIMountSource(spec *specs.Spec, guestMounts []Mount) error {
|
func (k *kataAgent) replaceOCIMountSource(spec *specs.Spec, guestMounts []Mount) error {
|
||||||
ociMounts := spec.Mounts
|
ociMounts := spec.Mounts
|
||||||
|
|
||||||
@ -951,7 +955,14 @@ func (k *kataAgent) stopContainer(sandbox *Sandbox, c Container) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return bindUnmountContainerRootfs(kataHostSharedDir, sandbox.id, c.id)
|
if err := bindUnmountContainerRootfs(kataHostSharedDir, sandbox.id, c.id); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// since rootfs is umounted it's safe to remove the dir now
|
||||||
|
rootPathParent := filepath.Join(kataHostSharedDir, sandbox.id, c.id)
|
||||||
|
|
||||||
|
return os.RemoveAll(rootPathParent)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (k *kataAgent) signalProcess(c *Container, processID string, signal syscall.Signal, all bool) error {
|
func (k *kataAgent) signalProcess(c *Container, processID string, signal syscall.Signal, all bool) error {
|
||||||
|
@ -51,6 +51,11 @@ func (n *noopAgent) stopSandbox(sandbox *Sandbox) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// cleanup is the Noop agent clean up resource implementation. It does nothing.
|
||||||
|
func (n *noopAgent) cleanupSandbox(sandbox *Sandbox) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// createContainer is the Noop agent Container creation implementation. It does nothing.
|
// createContainer is the Noop agent Container creation implementation. It does nothing.
|
||||||
func (n *noopAgent) createContainer(sandbox *Sandbox, c *Container) (*Process, error) {
|
func (n *noopAgent) createContainer(sandbox *Sandbox, c *Container) (*Process, error) {
|
||||||
return &Process{}, nil
|
return &Process{}, nil
|
||||||
|
@ -1182,6 +1182,13 @@ func (s *Sandbox) stop() error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// vm is stopped remove the sandbox shared dir
|
||||||
|
if err := s.agent.cleanupSandbox(s); err != nil {
|
||||||
|
// cleanup resource failed shouldn't block destroy sandbox
|
||||||
|
// just raise a warning
|
||||||
|
s.Logger().WithError(err).Warnf("cleanup sandbox failed")
|
||||||
|
}
|
||||||
|
|
||||||
return s.setSandboxState(StateStopped)
|
return s.setSandboxState(StateStopped)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user