Skip to content

Commit ac78a5b

Browse files
committed
Remove and create workdir if state dir does not exist
This is the case where the work dir could still exist if a machine reboots, reseting the state dir. On container creation, we should just clear out the work dir. Signed-off-by: Michael Crosby <[email protected]>
1 parent 37a6a91 commit ac78a5b

File tree

1 file changed

+23
-10
lines changed

1 file changed

+23
-10
lines changed

runtime/v2/bundle.go

+23-10
Original file line numberDiff line numberDiff line change
@@ -58,23 +58,36 @@ func NewBundle(ctx context.Context, root, state, id string, spec []byte) (b *Bun
5858
Path: filepath.Join(state, ns, id),
5959
Namespace: ns,
6060
}
61-
paths := []string{b.Path, work}
62-
// create base directories
63-
for _, d := range paths {
64-
if err := os.MkdirAll(filepath.Dir(d), 0711); err != nil {
65-
return nil, err
66-
}
67-
if err := os.Mkdir(d, 0711); err != nil {
68-
return nil, err
69-
}
70-
}
61+
var paths []string
7162
defer func() {
7263
if err != nil {
7364
for _, d := range paths {
7465
os.RemoveAll(d)
7566
}
7667
}
7768
}()
69+
// create state directory for the bundle
70+
if err := os.MkdirAll(filepath.Dir(b.Path), 0711); err != nil {
71+
return nil, err
72+
}
73+
if err := os.Mkdir(b.Path, 0711); err != nil {
74+
return nil, err
75+
}
76+
paths = append(paths, b.Path)
77+
// create working directory for the bundle
78+
if err := os.MkdirAll(filepath.Dir(work), 0711); err != nil {
79+
return nil, err
80+
}
81+
if err := os.Mkdir(work, 0711); err != nil {
82+
if !os.IsExist(err) {
83+
return nil, err
84+
}
85+
os.RemoveAll(work)
86+
if err := os.Mkdir(work, 0711); err != nil {
87+
return nil, err
88+
}
89+
}
90+
paths = append(paths, work)
7891
// create rootfs dir
7992
if err := os.Mkdir(filepath.Join(b.Path, "rootfs"), 0711); err != nil {
8093
return nil, err

0 commit comments

Comments
 (0)