// +build linux darwin package config import ( "fmt" "os" "path/filepath" "sync" "syscall" "github.com/containers/common/pkg/unshare" "github.com/pkg/errors" "github.com/sirupsen/logrus" ) var ( rootlessRuntimeDirOnce sync.Once rootlessRuntimeDir string ) // getRuntimeDir returns the runtime directory func getRuntimeDir() (string, error) { var rootlessRuntimeDirError error rootlessRuntimeDirOnce.Do(func() { runtimeDir := os.Getenv("XDG_RUNTIME_DIR") uid := fmt.Sprintf("%d", unshare.GetRootlessUID()) if runtimeDir == "" { tmpDir := filepath.Join("/run", "user", uid) if err := os.MkdirAll(tmpDir, 0700); err != nil { logrus.Debugf("unable to make temp dir %s", tmpDir) } st, err := os.Stat(tmpDir) if err == nil && int(st.Sys().(*syscall.Stat_t).Uid) == os.Geteuid() && st.Mode().Perm() == 0700 { runtimeDir = tmpDir } } if runtimeDir == "" { tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("run-%s", uid)) if err := os.MkdirAll(tmpDir, 0700); err != nil { logrus.Debugf("unable to make temp dir %s", tmpDir) } st, err := os.Stat(tmpDir) if err == nil && int(st.Sys().(*syscall.Stat_t).Uid) == os.Geteuid() && st.Mode().Perm() == 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 }