diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2020-02-24 21:26:16 +0100 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2020-02-24 21:26:16 +0100 |
commit | 44baab0a7011a87a2eaa795bc0058a13da6d1bc0 (patch) | |
tree | 05c8caa5624666689f10e55c620db3f85596df64 /pkg/util/utils_supported.go | |
parent | afd5cbff1e147bdad200b47fb2bd0992684c7fd4 (diff) | |
download | podman-44baab0a7011a87a2eaa795bc0058a13da6d1bc0.tar.gz podman-44baab0a7011a87a2eaa795bc0058a13da6d1bc0.tar.bz2 podman-44baab0a7011a87a2eaa795bc0058a13da6d1bc0.zip |
utils: relax check for directory to use
when we use namespaces, we set the run directory to 0711 to allow
other users to access it.
without this relaxation, the /run/user/$UID directory would be
skipped.
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'pkg/util/utils_supported.go')
-rw-r--r-- | pkg/util/utils_supported.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/util/utils_supported.go b/pkg/util/utils_supported.go index 0b78a8150..c6aed9943 100644 --- a/pkg/util/utils_supported.go +++ b/pkg/util/utils_supported.go @@ -33,7 +33,7 @@ func GetRuntimeDir() (string, error) { 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 { + if err == nil && int(st.Sys().(*syscall.Stat_t).Uid) == os.Geteuid() && (st.Mode().Perm()&0700 == 0700) { runtimeDir = tmpDir } } @@ -43,7 +43,7 @@ func GetRuntimeDir() (string, error) { 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 { + if err == nil && int(st.Sys().(*syscall.Stat_t).Uid) == os.Geteuid() && (st.Mode().Perm()&0700 == 0700) { runtimeDir = tmpDir } } |