mirror of https://github.com/containers/podman.git
fix close fds of run --preserve-fds
Test flakes mentioned in #6987 might be caused by uncorrect closing of file descriptor. Fix the code to close file descriptors for podman run since it may close those used by other processes. Signed-off-by: Qi Wang <qiwan@redhat.com>
This commit is contained in:
parent
4132b71478
commit
57967414ae
|
|
@ -954,9 +954,12 @@ func (r *ConmonOCIRuntime) createOCIContainer(ctr *Container, restoreOptions *Co
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var filesToClose []*os.File
|
||||||
if ctr.config.PreserveFDs > 0 {
|
if ctr.config.PreserveFDs > 0 {
|
||||||
for fd := 3; fd < int(3+ctr.config.PreserveFDs); fd++ {
|
for fd := 3; fd < int(3+ctr.config.PreserveFDs); fd++ {
|
||||||
cmd.ExtraFiles = append(cmd.ExtraFiles, os.NewFile(uintptr(fd), fmt.Sprintf("fd-%d", fd)))
|
f := os.NewFile(uintptr(fd), fmt.Sprintf("fd-%d", fd))
|
||||||
|
filesToClose = append(filesToClose, f)
|
||||||
|
cmd.ExtraFiles = append(cmd.ExtraFiles, f)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1052,14 +1055,10 @@ func (r *ConmonOCIRuntime) createOCIContainer(ctr *Container, restoreOptions *Co
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ctr.config.PreserveFDs > 0 {
|
|
||||||
for fd := 3; fd < int(3+ctr.config.PreserveFDs); fd++ {
|
|
||||||
// These fds were passed down to the runtime. Close them
|
// These fds were passed down to the runtime. Close them
|
||||||
// and not interfere
|
// and not interfere
|
||||||
if err := os.NewFile(uintptr(fd), fmt.Sprintf("fd-%d", fd)).Close(); err != nil {
|
for _, f := range filesToClose {
|
||||||
logrus.Debugf("unable to close file fd-%d", fd)
|
errorhandling.CloseQuiet(f)
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue