mirror of
https://github.com/go-task/task.git
synced 2024-12-16 10:59:23 +02:00
f6c5a46626
Fixes #250
50 lines
945 B
Go
50 lines
945 B
Go
// Copyright (c) 2017, Andrey Nering <andrey.nering@gmail.com>
|
|
// See LICENSE for licensing information
|
|
|
|
// +build !windows
|
|
|
|
package interp
|
|
|
|
import (
|
|
"os"
|
|
"os/user"
|
|
"strconv"
|
|
"syscall"
|
|
)
|
|
|
|
// hasPermissionToDir returns if the OS current user has execute permission
|
|
// to the given directory
|
|
func hasPermissionToDir(info os.FileInfo) bool {
|
|
user, err := user.Current()
|
|
if err != nil {
|
|
return true
|
|
}
|
|
uid, _ := strconv.Atoi(user.Uid)
|
|
// super-user
|
|
if uid == 0 {
|
|
return true
|
|
}
|
|
|
|
st, _ := info.Sys().(*syscall.Stat_t)
|
|
if st == nil {
|
|
return true
|
|
}
|
|
perm := info.Mode().Perm()
|
|
// user (u)
|
|
if perm&0100 != 0 && st.Uid == uint32(uid) {
|
|
return true
|
|
}
|
|
|
|
gid, _ := strconv.Atoi(user.Gid)
|
|
// other users in group (g)
|
|
if perm&0010 != 0 && st.Uid != uint32(uid) && st.Gid == uint32(gid) {
|
|
return true
|
|
}
|
|
// remaining users (o)
|
|
if perm&0001 != 0 && st.Uid != uint32(uid) && st.Gid != uint32(gid) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|