Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ testunit-bin:
done

mockgen: \
mock-cmdrunner \
mock-containerstorage \
mock-criostorage \
mock-lib-config \
Expand Down
6 changes: 1 addition & 5 deletions internal/config/conmonmgr/conmonmgr.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,10 @@ type ConmonManager struct {

// this function is heavily based on github.com/containers/common#probeConmon
func New(conmonPath string) (*ConmonManager, error) {
return newWithCommandRunner(conmonPath, &cmdrunner.RealCommandRunner{})
}

func newWithCommandRunner(conmonPath string, runner cmdrunner.CommandRunner) (*ConmonManager, error) {
if !path.IsAbs(conmonPath) {
return nil, errors.Errorf("conmon path is not absolute: %s", conmonPath)
}
out, err := runner.CombinedOutput(conmonPath, "--version")
out, err := cmdrunner.CombinedOutput(conmonPath, "--version")
if err != nil {
return nil, errors.Wrapf(err, "get conmon version")
}
Expand Down
12 changes: 7 additions & 5 deletions internal/config/conmonmgr/conmonmgr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package conmonmgr

import (
runnerMock "github.com/cri-o/cri-o/test/mocks/cmdrunner"
"github.com/cri-o/cri-o/utils/cmdrunner"
"github.com/golang/mock/gomock"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
Expand All @@ -16,6 +17,7 @@ var _ = t.Describe("ConmonManager", func() {
t.Describe("New", func() {
BeforeEach(func() {
runner = runnerMock.NewMockCommandRunner(mockCtrl)
cmdrunner.SetMocked(runner)
})
It("should fail when path not absolute", func() {
// Given
Expand All @@ -24,7 +26,7 @@ var _ = t.Describe("ConmonManager", func() {
)

// When
mgr, err := newWithCommandRunner("", runner)
mgr, err := New("")

// Then
Expect(err).NotTo(BeNil())
Expand All @@ -37,7 +39,7 @@ var _ = t.Describe("ConmonManager", func() {
)

// When
mgr, err := newWithCommandRunner(validPath, runner)
mgr, err := New(validPath)

// Then
Expect(err).NotTo(BeNil())
Expand All @@ -50,7 +52,7 @@ var _ = t.Describe("ConmonManager", func() {
)

// When
mgr, err := newWithCommandRunner(validPath, runner)
mgr, err := New(validPath)

// Then
Expect(err).NotTo(BeNil())
Expand All @@ -63,7 +65,7 @@ var _ = t.Describe("ConmonManager", func() {
)

// When
mgr, err := newWithCommandRunner(validPath, runner)
mgr, err := New(validPath)

// Then
Expect(err).To(BeNil())
Expand All @@ -76,7 +78,7 @@ var _ = t.Describe("ConmonManager", func() {
)

// When
mgr, err := newWithCommandRunner(validPath, runner)
mgr, err := New(validPath)

// Then
Expect(err).To(BeNil())
Expand Down
4 changes: 2 additions & 2 deletions internal/config/node/systemd.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
package node

import (
"os/exec"
"sync"

"github.com/cri-o/cri-o/utils/cmdrunner"
"github.com/pkg/errors"
)

Expand Down Expand Up @@ -36,7 +36,7 @@ func SystemdHasAllowedCPUs() bool {
// systemdSupportsProperty checks whether systemd supports a property
// It returns an error if it does not.
func systemdSupportsProperty(property string) (bool, error) {
output, err := exec.Command("systemctl", "show", "-p", property, "systemd").Output()
output, err := cmdrunner.Command("systemctl", "show", "-p", property, "systemd").Output()
if err != nil {
return false, errors.Wrapf(err, "check systemd %s", property)
}
Expand Down
4 changes: 2 additions & 2 deletions internal/config/nsmgr/nsmgr.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import (
"bytes"
"fmt"
"os"
"os/exec"
"path/filepath"
"strings"
"syscall"

"github.com/containers/storage/pkg/idtools"
"github.com/cri-o/cri-o/utils"
"github.com/cri-o/cri-o/utils/cmdrunner"
"github.com/google/uuid"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
Expand Down Expand Up @@ -119,7 +119,7 @@ func (mgr *NamespaceManager) NewPodNamespaces(cfg *PodNamespacesConfig) ([]Names
}

logrus.Debugf("calling pinns with %v", pinnsArgs)
output, err := exec.Command(mgr.pinnsPath, pinnsArgs...).CombinedOutput()
output, err := cmdrunner.Command(mgr.pinnsPath, pinnsArgs...).CombinedOutput()
if err != nil {
logrus.Warnf("pinns %v failed: %s (%v)", pinnsArgs, string(output), err)
// cleanup the mounts
Expand Down
6 changes: 3 additions & 3 deletions internal/dbusmgr/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import (
"bufio"
"bytes"
"os"
"os/exec"
"path/filepath"
"strconv"
"strings"

systemdDbus "github.com/coreos/go-systemd/v22/dbus"
"github.com/cri-o/cri-o/utils/cmdrunner"
dbus "github.com/godbus/dbus/v5"
"github.com/opencontainers/runc/libcontainer/userns"
"github.com/pkg/errors"
Expand Down Expand Up @@ -55,7 +55,7 @@ func DetectUID() (int, error) {
if !userns.RunningInUserNS() {
return os.Getuid(), nil
}
b, err := exec.Command("busctl", "--user", "--no-pager", "status").CombinedOutput()
b, err := cmdrunner.Command("busctl", "--user", "--no-pager", "status").CombinedOutput()
if err != nil {
return -1, errors.Wrapf(err, "could not execute `busctl --user --no-pager status`: %q", string(b))
}
Expand Down Expand Up @@ -91,7 +91,7 @@ func DetectUserDbusSessionBusAddress() (string, error) {
return busAddress, nil
}
}
b, err := exec.Command("systemctl", "--user", "--no-pager", "show-environment").CombinedOutput()
b, err := cmdrunner.Command("systemctl", "--user", "--no-pager", "show-environment").CombinedOutput()
if err != nil {
return "", errors.Wrapf(err, "could not execute `systemctl --user --no-pager show-environment`, output=%q", string(b))
}
Expand Down
11 changes: 6 additions & 5 deletions internal/oci/runtime_oci.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (
"github.com/cri-o/cri-o/server/cri/types"
"github.com/cri-o/cri-o/server/metrics"
"github.com/cri-o/cri-o/utils"
"github.com/cri-o/cri-o/utils/cmdrunner"
"github.com/fsnotify/fsnotify"
json "github.com/json-iterator/go"
rspec "github.com/opencontainers/runtime-spec/specs-go"
Expand Down Expand Up @@ -134,7 +135,7 @@ func (r *runtimeOCI) CreateContainer(ctx context.Context, c *Container, cgroupPa
"args": args,
}).Debugf("running conmon: %s", r.config.Conmon)

cmd := exec.Command(r.config.Conmon, args...) // nolint: gosec
cmd := cmdrunner.Command(r.config.Conmon, args...) // nolint: gosec
cmd.Dir = c.bundlePath
cmd.SysProcAttr = sysProcAttrPlatform()
cmd.Stdin = os.Stdin
Expand Down Expand Up @@ -337,7 +338,7 @@ func (r *runtimeOCI) ExecContainer(ctx context.Context, c *Container, cmd []stri

args := []string{rootFlag, r.root, "exec"}
args = append(args, "--process", processFile, c.ID())
execCmd := exec.Command(r.path, args...) // nolint: gosec
execCmd := cmdrunner.Command(r.path, args...) // nolint: gosec
if v, found := os.LookupEnv("XDG_RUNTIME_DIR"); found {
execCmd.Env = append(execCmd.Env, fmt.Sprintf("XDG_RUNTIME_DIR=%s", v))
}
Expand Down Expand Up @@ -464,7 +465,7 @@ func (r *runtimeOCI) ExecSyncContainer(ctx context.Context, c *Container, comman
"--exec-process-spec", processFile,
"--runtime-arg", fmt.Sprintf("%s=%s", rootFlag, r.root))

cmd := exec.Command(r.config.Conmon, args...) // nolint: gosec
cmd := cmdrunner.Command(r.config.Conmon, args...) // nolint: gosec

var stdoutBuf, stderrBuf bytes.Buffer
cmd.Stdout = &stdoutBuf
Expand Down Expand Up @@ -575,7 +576,7 @@ func (r *runtimeOCI) UpdateContainer(ctx context.Context, c *Container, res *rsp
return nil
}

cmd := exec.Command(r.path, rootFlag, r.root, "update", "--resources", "-", c.id) // nolint: gosec
cmd := cmdrunner.Command(r.path, rootFlag, r.root, "update", "--resources", "-", c.ID()) // nolint: gosec
var stdout bytes.Buffer
var stderr bytes.Buffer
cmd.Stdout = &stdout
Expand Down Expand Up @@ -788,7 +789,7 @@ func (r *runtimeOCI) UpdateContainerStatus(ctx context.Context, c *Container) er
}

stateCmd := func() (*ContainerState, bool, error) {
cmd := exec.Command(r.path, rootFlag, r.root, "state", c.id) // nolint: gosec
cmd := cmdrunner.Command(r.path, rootFlag, r.root, "state", c.ID()) // nolint: gosec
if v, found := os.LookupEnv("XDG_RUNTIME_DIR"); found {
cmd.Env = append(cmd.Env, fmt.Sprintf("XDG_RUNTIME_DIR=%s", v))
}
Expand Down
3 changes: 2 additions & 1 deletion internal/runtimehandlerhooks/high_performance_hooks.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (
"github.com/cri-o/cri-o/internal/log"
"github.com/cri-o/cri-o/internal/oci"
crioannotations "github.com/cri-o/cri-o/pkg/annotations"
"github.com/cri-o/cri-o/utils/cmdrunner"
"github.com/opencontainers/runc/libcontainer/cgroups"
"github.com/opencontainers/runc/libcontainer/cgroups/systemd"
"github.com/pkg/errors"
Expand Down Expand Up @@ -263,7 +264,7 @@ func setIRQLoadBalancing(c *oci.Container, enable bool, irqSmpAffinityFile, irqB
return nil
}
// run irqbalance in daemon mode, so this won't cause delay
cmd := exec.Command(irqBalancedName, "--oneshot")
cmd := cmdrunner.Command(irqBalancedName, "--oneshot")
additionalEnv := irqBalanceBannedCpus + "=" + newIRQBalanceSetting
cmd.Env = append(os.Environ(), additionalEnv)
return cmd.Run()
Expand Down
6 changes: 3 additions & 3 deletions internal/runtimehandlerhooks/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"fmt"
"io/ioutil"
"os"
"os/exec"
"strings"
"unicode"

"github.com/cri-o/cri-o/utils/cmdrunner"
"github.com/sirupsen/logrus"
"k8s.io/kubernetes/pkg/kubelet/cm/cpuset"
)
Expand Down Expand Up @@ -138,11 +138,11 @@ func UpdateIRQSmpAffinityMask(cpus, current string, set bool) (cpuMask, bannedCP
}

func restartIrqBalanceService() error {
return exec.Command("systemctl", "restart", "irqbalance").Run()
return cmdrunner.Command("systemctl", "restart", "irqbalance").Run()
}

func isServiceEnabled(serviceName string) bool {
cmd := exec.Command("systemctl", "is-enabled", serviceName)
cmd := cmdrunner.Command("systemctl", "is-enabled", serviceName)
status, err := cmd.CombinedOutput()
if err != nil {
logrus.Infof("service %s is-enabled check returned with: %v", serviceName, err)
Expand Down
11 changes: 10 additions & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import (
"github.com/cri-o/cri-o/pkg/annotations"
"github.com/cri-o/cri-o/server/useragent"
"github.com/cri-o/cri-o/utils"
"github.com/cri-o/cri-o/utils/cmdrunner"
"github.com/cri-o/ocicni/pkg/ocicni"
selinux "github.com/opencontainers/selinux/go-selinux"
"github.com/pkg/errors"
Expand All @@ -50,6 +51,7 @@ const (
defaultCtrStopTimeout = 30 // seconds
defaultNamespacesDir = "/var/run"
RuntimeTypeVMBinaryPattern = "containerd-shim-([a-zA-Z0-9\\-\\+])+-v2"
tasksetBinary = "taskset"
)

// Config represents the entire set of configuration values that can be set for
Expand Down Expand Up @@ -879,9 +881,16 @@ func (c *RuntimeConfig) Validate(systemContext *types.SystemContext, onExecution
}

if c.InfraCtrCPUSet != "" {
if _, err := cpuset.Parse(c.InfraCtrCPUSet); err != nil {
set, err := cpuset.Parse(c.InfraCtrCPUSet)
if err != nil {
return errors.Wrap(err, "invalid infra_ctr_cpuset")
}

executable, err := exec.LookPath(tasksetBinary)
if err != nil {
return errors.Wrapf(err, "%q not found in $PATH", tasksetBinary)
}
cmdrunner.PrependCommandsWith(executable, "--cpu-list", set.String())
}

if err := c.Workloads.Validate(); err != nil {
Expand Down
35 changes: 28 additions & 7 deletions test/mocks/cmdrunner/cmdrunner.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading