mirror of https://github.com/containers/podman.git
Merge pull request #13391 from baude/revert
Revert "use GetRuntimeDir() from c/common"
This commit is contained in:
commit
a254086c9a
|
@ -463,6 +463,8 @@ func ParseIDMapping(mode namespaces.UsernsMode, uidMapSlice, gidMapSlice []strin
|
||||||
var (
|
var (
|
||||||
rootlessConfigHomeDirOnce sync.Once
|
rootlessConfigHomeDirOnce sync.Once
|
||||||
rootlessConfigHomeDir string
|
rootlessConfigHomeDir string
|
||||||
|
rootlessRuntimeDirOnce sync.Once
|
||||||
|
rootlessRuntimeDir string
|
||||||
)
|
)
|
||||||
|
|
||||||
type tomlOptionsConfig struct {
|
type tomlOptionsConfig struct {
|
||||||
|
|
|
@ -6,21 +6,67 @@ package util
|
||||||
// should work to take darwin from this
|
// should work to take darwin from this
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"syscall"
|
"syscall"
|
||||||
|
|
||||||
cutil "github.com/containers/common/pkg/util"
|
|
||||||
"github.com/containers/podman/v4/pkg/rootless"
|
"github.com/containers/podman/v4/pkg/rootless"
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
// GetRuntimeDir returns the runtime directory
|
// GetRuntimeDir returns the runtime directory
|
||||||
func GetRuntimeDir() (string, error) {
|
func GetRuntimeDir() (string, error) {
|
||||||
|
var rootlessRuntimeDirError error
|
||||||
|
|
||||||
if !rootless.IsRootless() {
|
if !rootless.IsRootless() {
|
||||||
return "", nil
|
return "", nil
|
||||||
}
|
}
|
||||||
return cutil.GetRuntimeDir()
|
|
||||||
|
rootlessRuntimeDirOnce.Do(func() {
|
||||||
|
runtimeDir := os.Getenv("XDG_RUNTIME_DIR")
|
||||||
|
uid := fmt.Sprintf("%d", rootless.GetRootlessUID())
|
||||||
|
if runtimeDir == "" {
|
||||||
|
tmpDir := filepath.Join("/run", "user", uid)
|
||||||
|
if err := os.MkdirAll(tmpDir, 0700); err != nil {
|
||||||
|
logrus.Debug(err)
|
||||||
|
}
|
||||||
|
st, err := os.Stat(tmpDir)
|
||||||
|
if err == nil && int(st.Sys().(*syscall.Stat_t).Uid) == os.Geteuid() && (st.Mode().Perm()&0700 == 0700) {
|
||||||
|
runtimeDir = tmpDir
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if runtimeDir == "" {
|
||||||
|
tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("podman-run-%s", uid))
|
||||||
|
if err := os.MkdirAll(tmpDir, 0700); err != nil {
|
||||||
|
logrus.Debug(err)
|
||||||
|
}
|
||||||
|
st, err := os.Stat(tmpDir)
|
||||||
|
if err == nil && int(st.Sys().(*syscall.Stat_t).Uid) == os.Geteuid() && (st.Mode().Perm()&0700 == 0700) {
|
||||||
|
runtimeDir = tmpDir
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if runtimeDir == "" {
|
||||||
|
home := os.Getenv("HOME")
|
||||||
|
if home == "" {
|
||||||
|
rootlessRuntimeDirError = fmt.Errorf("neither XDG_RUNTIME_DIR nor HOME was set non-empty")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
resolvedHome, err := filepath.EvalSymlinks(home)
|
||||||
|
if err != nil {
|
||||||
|
rootlessRuntimeDirError = errors.Wrapf(err, "cannot resolve %s", home)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
runtimeDir = filepath.Join(resolvedHome, "rundir")
|
||||||
|
}
|
||||||
|
rootlessRuntimeDir = runtimeDir
|
||||||
|
})
|
||||||
|
|
||||||
|
if rootlessRuntimeDirError != nil {
|
||||||
|
return "", rootlessRuntimeDirError
|
||||||
|
}
|
||||||
|
return rootlessRuntimeDir, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetRootlessConfigHomeDir returns the config home directory when running as non root
|
// GetRootlessConfigHomeDir returns the config home directory when running as non root
|
||||||
|
|
Loading…
Reference in New Issue