summaryrefslogtreecommitdiff
path: root/libpod/runtime_renumber.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2019-02-15 09:59:11 -0500
committerMatthew Heon <matthew.heon@pm.me>2019-02-21 10:51:42 -0500
commita72025d6fd111bfa2dc4e1d22871966fec614f88 (patch)
tree72ae221f1926c9f3da0eef292522da55b9929b7f /libpod/runtime_renumber.go
parentca8ae877c12cbfa368d572ef6700d9e4a23d5b11 (diff)
downloadpodman-a72025d6fd111bfa2dc4e1d22871966fec614f88.tar.gz
podman-a72025d6fd111bfa2dc4e1d22871966fec614f88.tar.bz2
podman-a72025d6fd111bfa2dc4e1d22871966fec614f88.zip
Move RenumberLocks into runtime init
We can't do renumbering after init - we need to open a potentially invalid locks file (too many/too few locks), and then potentially delete the old locks and make new ones. We need to be in init to bypass the checks that would otherwise make this impossible. This leaves us with two choices: make RenumberLocks a separate entrypoint from NewRuntime, duplicating a lot of configuration load code (we need to know where the locks live, how many there are, etc) - or modify NewRuntime to allow renumbering during it. Previous experience says the first is not really a viable option and produces massive code bloat, so the second it is. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'libpod/runtime_renumber.go')
-rw-r--r--libpod/runtime_renumber.go29
1 files changed, 3 insertions, 26 deletions
diff --git a/libpod/runtime_renumber.go b/libpod/runtime_renumber.go
index d5279934e..04abc84d1 100644
--- a/libpod/runtime_renumber.go
+++ b/libpod/runtime_renumber.go
@@ -1,14 +1,11 @@
package libpod
import (
- "path/filepath"
-
- "github.com/containers/storage"
"github.com/pkg/errors"
)
-// RenumberLocks reassigns lock numbers for all containers, pods, and volumes in
-// the state.
+// renumberLocks reassigns lock numbers for all containers and pods in the
+// state.
// It renders the runtime it is called on, and all container/pod/volume structs
// from that runtime, unusable, and requires that a new runtime be initialized
// after it is called.
@@ -18,24 +15,7 @@ import (
// lock as read, renumber attempting to take a write lock?
// The alternative is some sort of session tracking, and I don't know how
// reliable that can be.
-func (r *Runtime) RenumberLocks() error {
- r.lock.Lock()
- locked := true
- defer func() {
- if locked {
- r.lock.Unlock()
- }
- }()
-
- runtimeAliveLock := filepath.Join(r.config.TmpDir, "alive.lck")
- aliveLock, err := storage.GetLockfile(runtimeAliveLock)
- if err != nil {
- return errors.Wrapf(err, "error acquiring runtime init lock")
- }
- aliveLock.Lock()
- // It's OK to defer until Shutdown() has run, so no need to check locked
- defer aliveLock.Unlock()
-
+func (r *Runtime) renumberLocks() error {
// Start off by deallocating all locks
if err := r.lockManager.FreeAllLocks(); err != nil {
return err
@@ -76,8 +56,5 @@ func (r *Runtime) RenumberLocks() error {
}
}
- r.lock.Unlock()
- locked = false
-
return r.Shutdown(false)
}