diff options
author | Matthew Heon <mheon@redhat.com> | 2021-10-20 10:29:32 -0400 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-10-20 14:56:22 -0400 |
commit | 30245f5849901822469a58a13387e2f55415def6 (patch) | |
tree | ff9d10084aa651b04877ccee1c49da6db352c0a1 | |
parent | eba281c3e0e69533427d3eb5c66c60b5ca038c1b (diff) | |
download | podman-30245f5849901822469a58a13387e2f55415def6.tar.gz podman-30245f5849901822469a58a13387e2f55415def6.tar.bz2 podman-30245f5849901822469a58a13387e2f55415def6.zip |
Remove infra ID from DB before removing containers
If we interrupt pod removal between removing containers and
removing the whole pod, the infra ID was still in the DB, and
most pod operations would try to retrieve the infra container
(and would this fail). Clear the infra ID from the DB just before
we remove all containers to prevent this.
Fixes #12034
[NO NEW TESTS NEEDED] This is a very narrow race and I have no
idea how to repro it.
Signed-off-by: Matthew Heon <mheon@redhat.com>
-rw-r--r-- | libpod/runtime_pod_linux.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libpod/runtime_pod_linux.go b/libpod/runtime_pod_linux.go index 9bd6d5e78..7d7fef4d1 100644 --- a/libpod/runtime_pod_linux.go +++ b/libpod/runtime_pod_linux.go @@ -263,6 +263,15 @@ func (r *Runtime) removePod(ctx context.Context, p *Pod, removeCtrs, force bool, } } + // Clear infra container ID before we remove the infra container. + // There is a potential issue if we don't do that, and removal is + // interrupted between RemoveAllContainers() below and the pod's removal + // later - we end up with a reference to a nonexistent infra container. + p.state.InfraContainerID = "" + if err := p.save(); err != nil { + return err + } + // Remove all containers in the pod from the state. if err := r.state.RemovePodContainers(p); err != nil { // If this fails, there isn't much more we can do. |