2022-12-07 22:02:25 +00:00
|
|
|
//go:build linux
|
|
|
|
|
|
|
|
package getter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"syscall"
|
|
|
|
|
|
|
|
"github.com/hashicorp/nomad/helper/users"
|
|
|
|
"github.com/shoenig/go-landlock"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// userUID is the current user's uid
|
|
|
|
userUID uint32
|
|
|
|
|
|
|
|
// userGID is the current user's gid
|
|
|
|
userGID uint32
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
userUID = uint32(syscall.Getuid())
|
|
|
|
userGID = uint32(syscall.Getgid())
|
|
|
|
}
|
|
|
|
|
|
|
|
// attributes returns the system process attributes to run
|
|
|
|
// the sandbox process with
|
|
|
|
func attributes() *syscall.SysProcAttr {
|
|
|
|
uid, gid := credentials()
|
|
|
|
return &syscall.SysProcAttr{
|
|
|
|
Credential: &syscall.Credential{
|
|
|
|
Uid: uid,
|
|
|
|
Gid: gid,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// credentials returns the UID and GID of the user the child process
|
|
|
|
// will run as. On Linux systems this will be the nobody user if Nomad
|
|
|
|
// is being run as the root user, or the user Nomad is being run as
|
|
|
|
// otherwise.
|
|
|
|
func credentials() (uint32, uint32) {
|
|
|
|
switch userUID {
|
|
|
|
case 0:
|
|
|
|
return users.NobodyIDs()
|
|
|
|
default:
|
|
|
|
return userUID, userGID
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-09 21:46:07 +00:00
|
|
|
// defaultEnvironment is the default minimal environment variables for Linux.
|
|
|
|
func defaultEnvironment(taskDir string) map[string]string {
|
2022-12-07 22:02:25 +00:00
|
|
|
tmpDir := filepath.Join(taskDir, "tmp")
|
2022-12-09 21:46:07 +00:00
|
|
|
return map[string]string{
|
|
|
|
"PATH": "/usr/local/bin:/usr/bin:/bin",
|
|
|
|
"TMPDIR": tmpDir,
|
2022-12-07 22:02:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// lockdown isolates this process to only be able to write and
|
|
|
|
// create files in the task's task directory.
|
|
|
|
// dir - the task directory
|
|
|
|
//
|
|
|
|
// Only applies to Linux, when available.
|
2023-01-09 15:46:32 +00:00
|
|
|
func lockdown(allocDir, taskDir string) error {
|
2022-12-07 22:02:25 +00:00
|
|
|
// landlock not present in the kernel, do not sandbox
|
|
|
|
if !landlock.Available() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
paths := []*landlock.Path{
|
|
|
|
landlock.DNS(),
|
|
|
|
landlock.Certs(),
|
|
|
|
landlock.Shared(),
|
|
|
|
landlock.Dir("/bin", "rx"),
|
|
|
|
landlock.Dir("/usr/bin", "rx"),
|
|
|
|
landlock.Dir("/usr/local/bin", "rx"),
|
2023-01-09 15:46:32 +00:00
|
|
|
landlock.Dir(allocDir, "rwc"),
|
|
|
|
landlock.Dir(taskDir, "rwc"),
|
2022-12-07 22:02:25 +00:00
|
|
|
}
|
|
|
|
locker := landlock.New(paths...)
|
|
|
|
return locker.Lock(landlock.Mandatory)
|
|
|
|
}
|