-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathcommand_utils.go
55 lines (45 loc) · 1.33 KB
/
command_utils.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
47
48
49
50
51
52
53
54
55
// 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.
package checks
import (
"context"
"runtime"
"time"
"github.com/DataDog/datadog-agent/pkg/compliance"
)
type commandRunnerFunc func(context.Context, string, []string, bool) (int, []byte, error)
var (
commandRunner commandRunnerFunc = runCommand
)
func getDefaultShell() *compliance.BinaryCmd {
switch runtime.GOOS {
case "windows":
return &compliance.BinaryCmd{
Name: "powershell",
Args: []string{"-Command"},
}
default:
return &compliance.BinaryCmd{
Name: "sh",
Args: []string{"-c"},
}
}
}
func shellCmdToBinaryCmd(shellCmd *compliance.ShellCmd) *compliance.BinaryCmd {
var execCmd *compliance.BinaryCmd
if shellCmd.Shell != nil {
execCmd = shellCmd.Shell
} else {
execCmd = getDefaultShell()
}
execCmd.Args = append(execCmd.Args, shellCmd.Run)
return execCmd
}
func runBinaryCmd(execCommand *compliance.BinaryCmd, timeout time.Duration) (int, string, error) {
ctx, cancel := context.WithTimeout(context.Background(), timeout)
defer cancel()
exitCode, stdout, err := commandRunner(ctx, execCommand.Name, execCommand.Args, true)
return exitCode, string(stdout), err
}