-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathinfo_nix.go
46 lines (39 loc) · 1.29 KB
/
info_nix.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2016-present Datadog, Inc.
//go:build secrets && !windows
// +build secrets,!windows
package secrets
import (
"fmt"
"os/user"
"strconv"
"syscall"
)
func (info *SecretInfo) populateRights() {
err := checkRights(info.ExecutablePath, secretBackendCommandAllowGroupExec)
if err != nil {
info.Rights = fmt.Sprintf("Error: %s", err)
} else {
info.Rights = fmt.Sprintf("OK, the executable has the correct rights")
}
var stat syscall.Stat_t
if err := syscall.Stat(secretBackendCommand, &stat); err != nil {
info.RightDetails = fmt.Sprintf("Could not stat %s: %s", secretBackendCommand, err)
} else {
info.RightDetails = fmt.Sprintf("file mode: %o", stat.Mode)
}
owner, err := user.LookupId(strconv.Itoa(int(stat.Uid)))
if err != nil {
info.UnixOwner = fmt.Sprintf("could not fetch name for UID %d: %s", stat.Uid, err)
} else {
info.UnixOwner = owner.Username
}
group, err := user.LookupGroupId(strconv.Itoa(int(stat.Gid)))
if err != nil {
info.UnixGroup = fmt.Sprintf("could not fetch name for GID %d: %s", stat.Gid, err)
} else {
info.UnixGroup = group.Name
}
}