2022-02-05 01:22:53 +00:00
|
|
|
package containers
|
2020-07-09 22:27:23 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-07-15 21:32:28 +00:00
|
|
|
"encoding/json"
|
2020-07-09 22:27:23 +00:00
|
|
|
"errors"
|
2022-02-03 00:31:47 +00:00
|
|
|
"fmt"
|
2020-07-11 11:04:37 +00:00
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2020-07-09 22:27:23 +00:00
|
|
|
"log"
|
2020-07-11 11:04:37 +00:00
|
|
|
"os"
|
2020-07-13 22:01:42 +00:00
|
|
|
"strconv"
|
2020-07-09 22:27:23 +00:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/api/types/container"
|
|
|
|
"github.com/docker/docker/api/types/network"
|
|
|
|
dockerClient "github.com/docker/docker/client"
|
|
|
|
"github.com/docker/go-connections/nat"
|
2022-02-05 01:22:53 +00:00
|
|
|
specs "github.com/opencontainers/image-spec/specs-go/v1"
|
2022-02-03 00:31:47 +00:00
|
|
|
"github.com/rosti-cz/node-api/detector"
|
2020-07-09 22:27:23 +00:00
|
|
|
)
|
|
|
|
|
2020-07-15 21:32:28 +00:00
|
|
|
// Stats delay in seconds
|
2020-07-25 22:34:16 +00:00
|
|
|
const statsDelay = 1
|
2020-07-15 21:32:28 +00:00
|
|
|
|
2020-07-09 22:27:23 +00:00
|
|
|
// Docker timeout
|
|
|
|
const dockerTimeout = 10
|
|
|
|
|
2022-02-05 01:22:53 +00:00
|
|
|
// DOCKER_API_VERSION set API version of Docker, 1.41 is needed for the platform struct
|
|
|
|
const dockerAPIVersion = "1.41"
|
2020-07-09 22:27:23 +00:00
|
|
|
|
|
|
|
// Driver keeps everything for connection to Docker
|
2021-01-09 21:32:52 +00:00
|
|
|
type Driver struct {
|
2022-02-05 01:22:53 +00:00
|
|
|
DockerSock string // Docker socket
|
2021-01-30 11:33:57 +00:00
|
|
|
BindIPHTTP string // IP to which containers are bound
|
|
|
|
BindIPSSH string // IP to which containers are bound
|
2021-01-09 21:32:52 +00:00
|
|
|
}
|
2020-07-09 22:27:23 +00:00
|
|
|
|
|
|
|
func (d *Driver) getClient() (*dockerClient.Client, error) {
|
2022-02-05 01:22:53 +00:00
|
|
|
cli, err := dockerClient.NewClient(d.DockerSock, dockerAPIVersion, nil, nil)
|
2022-02-03 00:31:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return cli, fmt.Errorf("get docker client error: %v", err)
|
|
|
|
}
|
|
|
|
return cli, nil
|
2020-07-09 22:27:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ConnectionStatus checks connection to the Docker daemon
|
|
|
|
func (d *Driver) ConnectionStatus() (bool, error) {
|
|
|
|
cli, err := d.getClient()
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2020-08-29 13:12:29 +00:00
|
|
|
defer cli.Close()
|
2020-07-09 22:27:23 +00:00
|
|
|
|
|
|
|
_, err = cli.ServerVersion(context.TODO())
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Driver) nameToID(name string) (string, error) {
|
|
|
|
containerIDs, err := d.IsExist(name)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(containerIDs) == 0 {
|
|
|
|
return "", errors.New("no container found")
|
|
|
|
}
|
|
|
|
if len(containerIDs) > 1 {
|
|
|
|
return "", errors.New("multiple containers with the same name")
|
|
|
|
}
|
|
|
|
|
|
|
|
return containerIDs[0], nil
|
|
|
|
}
|
|
|
|
|
2020-07-11 11:04:37 +00:00
|
|
|
// Status return current status of container with given name
|
2022-10-04 17:54:26 +00:00
|
|
|
func (d *Driver) Status(name string) (ContainerStatus, error) {
|
|
|
|
status := ContainerStatus{
|
|
|
|
Status: "unknown",
|
|
|
|
}
|
2020-07-11 11:04:37 +00:00
|
|
|
|
|
|
|
cli, err := d.getClient()
|
|
|
|
if err != nil {
|
|
|
|
return status, err
|
|
|
|
}
|
2020-08-29 13:12:29 +00:00
|
|
|
defer cli.Close()
|
2020-07-11 11:04:37 +00:00
|
|
|
|
|
|
|
containerID, err := d.nameToID(name)
|
2020-07-11 21:14:45 +00:00
|
|
|
if err != nil && err.Error() == "no container found" {
|
2022-10-04 17:54:26 +00:00
|
|
|
status.Status = "no-container"
|
|
|
|
return status, err
|
2020-07-11 21:14:45 +00:00
|
|
|
}
|
2020-07-11 11:04:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return status, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info, err := cli.ContainerInspect(context.TODO(), containerID)
|
|
|
|
if err != nil {
|
|
|
|
return status, err
|
|
|
|
}
|
|
|
|
|
2022-10-04 17:54:26 +00:00
|
|
|
status.Status = info.State.Status
|
|
|
|
status.OOMKilled = info.State.OOMKilled
|
|
|
|
|
|
|
|
return status, nil
|
2020-07-11 11:04:37 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-07-25 22:34:16 +00:00
|
|
|
// RawStats returns snapshot of current cpu and memory usage, CPU cannot be used
|
|
|
|
// for % usage because it's number of used tics. Call this twice to get the % usage.
|
|
|
|
// One second is 10 000 000 ticks.
|
|
|
|
func (d *Driver) RawStats(name string) (int64, int, error) {
|
|
|
|
cli, err := d.getClient()
|
|
|
|
if err != nil {
|
|
|
|
return 0.0, 0, err
|
|
|
|
}
|
2020-08-29 13:12:29 +00:00
|
|
|
defer cli.Close()
|
2020-07-25 22:34:16 +00:00
|
|
|
|
|
|
|
containerID, err := d.nameToID(name)
|
|
|
|
if err != nil {
|
|
|
|
return 0.0, 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
stats, err := cli.ContainerStats(context.TODO(), containerID, false)
|
|
|
|
if err != nil {
|
|
|
|
return 0.0, 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
row := ContainerStats{}
|
|
|
|
|
|
|
|
data, err := ioutil.ReadAll(stats.Body)
|
|
|
|
if err != nil {
|
|
|
|
return 0.0, 0, err
|
|
|
|
}
|
|
|
|
err = json.Unmarshal(data, &row)
|
|
|
|
if err != nil {
|
|
|
|
return 0.0, 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return row.CPU.Usage.Total, row.Memory.Usage, nil
|
|
|
|
}
|
|
|
|
|
2020-07-11 11:04:37 +00:00
|
|
|
// Stats returns current CPU and memory usage
|
|
|
|
func (d *Driver) Stats(name string) (float64, int, error) {
|
|
|
|
cli, err := d.getClient()
|
|
|
|
if err != nil {
|
|
|
|
return 0.0, 0, err
|
|
|
|
}
|
2020-08-29 13:12:29 +00:00
|
|
|
defer cli.Close()
|
2020-07-11 11:04:37 +00:00
|
|
|
|
|
|
|
containerID, err := d.nameToID(name)
|
|
|
|
if err != nil {
|
|
|
|
return 0.0, 0, err
|
|
|
|
}
|
|
|
|
|
2020-07-15 21:32:28 +00:00
|
|
|
rows := make([]ContainerStats, 2)
|
2020-07-11 11:04:37 +00:00
|
|
|
|
2020-07-15 21:32:28 +00:00
|
|
|
for idx := range rows {
|
|
|
|
stats, err := cli.ContainerStats(context.TODO(), containerID, false)
|
|
|
|
if err != nil {
|
|
|
|
return 0.0, 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
data, err := ioutil.ReadAll(stats.Body)
|
|
|
|
if err != nil {
|
|
|
|
return 0.0, 0, err
|
|
|
|
}
|
|
|
|
// It returns one JSON:
|
|
|
|
// {"read":"2020-07-11T20:42:31.486726241Z","preread":"2020-07-11T20:42:30.484048602Z","pids_stats":{"current":7},"blkio_stats":{"io_service_bytes_recursive":[{"major":253,"minor":0,"op":"Read","value":0},{"major":253,"minor":0,"op":"Write","value":20480},{"major":253,"minor":0,"op":"Sync","value":12288},{"major":253,"minor":0,"op":"Async","value":8192},{"major":253,"minor":0,"op":"Discard","value":0},{"major":253,"minor":0,"op":"Total","value":20480}],"io_serviced_recursive":[{"major":253,"minor":0,"op":"Read","value":0},{"major":253,"minor":0,"op":"Write","value":5},{"major":253,"minor":0,"op":"Sync","value":3},{"major":253,"minor":0,"op":"Async","value":2},{"major":253,"minor":0,"op":"Discard","value":0},{"major":253,"minor":0,"op":"Total","value":5}],"io_queue_recursive":[],"io_service_time_recursive":[],"io_wait_time_recursive":[],"io_merged_recursive":[],"io_time_recursive":[],"sectors_recursive":[]},"num_procs":0,"storage_stats":{},"cpu_stats":{"cpu_usage":{"total_usage":758392753,"percpu_usage":[302688474,0,11507116,124238500,222136766,5656446,3009320,0,19406386,1397028,6201423,62151294,0,0,0,0],"usage_in_kernelmode":100000000,"usage_in_usermode":640000000},"system_cpu_usage":119385810000000,"online_cpus":12,"throttling_data":{"periods":21,"throttled_periods":1,"throttled_time":2995938}},"precpu_stats":{"cpu_usage":{"total_usage":758282347,"percpu_usage":[302688474,0,11507116,124238500,222026360,5656446,3009320,0,19406386,1397028,6201423,62151294,0,0,0,0],"usage_in_kernelmode":100000000,"usage_in_usermode":640000000},"system_cpu_usage":119373720000000,"online_cpus":12,"throttling_data":{"periods":21,"throttled_periods":1,"throttled_time":2995938}},"memory_stats":{"usage":21626880,"max_usage":22630400,"stats":{"active_anon":15949824,"active_file":0,"cache":0,"dirty":0,"hierarchical_memory_limit":144179200,"hierarchical_memsw_limit":288358400,"inactive_anon":0,"inactive_file":0,"mapped_file":0,"pgfault":13167,"pgmajfault":0,"pgpgin":7293,"pgpgout":3406,"rss":15900672,"rss_huge":0,"total_active_anon":15949824,"total_active_file":0,"total_cache":0,"total_dirty":0,"total_inactive_anon":0,"total_inactive_file":0,"total_mapped_file":0,"total_pgfault":13167,"total_pgmajfault":0,"total_pgpgin":7293,"total_pgpgout":3406,"total_rss":15900672,"total_rss_huge":0,"total_unevictable":0,"total_writeback":0,"unevictable":0,"writeback":0},"limit":144179200},"name":"/test_1234","id":"576878d645efecc8e5e2a57b88351f7b5c551e3fc72dc8473fd965d10dfddbec","networks":{"eth0":{"rx_bytes":6150,"rx_packets":37,"rx_errors":0,"rx_dropped":0,"tx_bytes":0,"tx_packets":0,"tx_errors":0,"tx_dropped":0}}}
|
|
|
|
|
|
|
|
err = json.Unmarshal(data, &rows[idx])
|
|
|
|
if err != nil {
|
|
|
|
return 0.0, 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if idx == 0 {
|
|
|
|
time.Sleep(statsDelay * time.Second)
|
|
|
|
}
|
2020-07-11 11:04:37 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 21:32:28 +00:00
|
|
|
cpuUsage := (float64(rows[1].CPU.Usage.Total) - float64(rows[0].CPU.Usage.Total)) / statsDelay / 10000000
|
|
|
|
|
|
|
|
return cpuUsage, rows[1].Memory.Usage, nil
|
2020-07-11 11:04:37 +00:00
|
|
|
}
|
|
|
|
|
2020-07-09 22:27:23 +00:00
|
|
|
// Remove removes container represented by containerID
|
|
|
|
func (d *Driver) Remove(name string) error {
|
|
|
|
log.Println("Removing container " + name)
|
|
|
|
cli, err := d.getClient()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-08-29 13:12:29 +00:00
|
|
|
defer cli.Close()
|
2020-07-09 22:27:23 +00:00
|
|
|
|
|
|
|
containerID, err := d.nameToID(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
timeout := time.Duration(dockerTimeout * time.Second)
|
|
|
|
err = cli.ContainerStop(context.TODO(), containerID, &timeout)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = cli.ContainerRemove(context.TODO(), containerID, types.ContainerRemoveOptions{})
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start starts container represented by containerID
|
|
|
|
func (d *Driver) Start(name string) error {
|
|
|
|
log.Println("Starting container " + name)
|
|
|
|
cli, err := d.getClient()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-08-29 13:12:29 +00:00
|
|
|
defer cli.Close()
|
2020-07-09 22:27:23 +00:00
|
|
|
|
|
|
|
containerID, err := d.nameToID(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = cli.ContainerStart(context.TODO(), containerID, types.ContainerStartOptions{})
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop stops container represented by containerID
|
|
|
|
func (d *Driver) Stop(name string) error {
|
|
|
|
log.Println("Stopping container " + name)
|
|
|
|
cli, err := d.getClient()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-08-29 13:12:29 +00:00
|
|
|
defer cli.Close()
|
2020-07-09 22:27:23 +00:00
|
|
|
|
|
|
|
containerID, err := d.nameToID(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
timeout := time.Duration(dockerTimeout * time.Second)
|
|
|
|
err = cli.ContainerStop(context.TODO(), containerID, &timeout)
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsExist checks existence of the container based on container name
|
|
|
|
// Returns container IDs in case of existence. Otherwise
|
|
|
|
// empty slice.
|
|
|
|
func (d *Driver) IsExist(name string) ([]string, error) {
|
|
|
|
var containerIDs = make([]string, 0)
|
|
|
|
|
|
|
|
cli, err := d.getClient()
|
|
|
|
if err != nil {
|
|
|
|
return containerIDs, err
|
|
|
|
}
|
2020-08-29 13:12:29 +00:00
|
|
|
defer cli.Close()
|
2020-07-09 22:27:23 +00:00
|
|
|
|
2020-07-11 11:04:37 +00:00
|
|
|
containers, err := cli.ContainerList(context.TODO(), types.ContainerListOptions{All: true})
|
2020-07-09 22:27:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return containerIDs, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// We go through the containers and pick the ones which match the task name
|
|
|
|
for _, containerObject := range containers {
|
2020-07-11 11:04:37 +00:00
|
|
|
for _, containerName := range containerObject.Names {
|
|
|
|
containerName = strings.TrimLeft(containerName, "/")
|
|
|
|
if containerName == name {
|
2020-07-09 22:27:23 +00:00
|
|
|
containerIDs = append(containerIDs, containerObject.ID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return containerIDs, nil
|
|
|
|
}
|
|
|
|
|
2020-07-11 11:04:37 +00:00
|
|
|
// pullImage pulls image into local docker instance
|
|
|
|
func (d *Driver) pullImage(image string) error {
|
|
|
|
log.Println("Pulling image " + image)
|
|
|
|
cli, err := d.getClient()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-08-29 13:12:29 +00:00
|
|
|
defer cli.Close()
|
2020-07-11 11:04:37 +00:00
|
|
|
|
|
|
|
stream, err := cli.ImagePull(context.TODO(), image, types.ImagePullOptions{})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer stream.Close()
|
|
|
|
|
|
|
|
io.Copy(os.Stdout, stream)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-09 22:27:23 +00:00
|
|
|
// Create creates the container
|
|
|
|
// image - docker image
|
|
|
|
// cmd - string slice of command and its arguments
|
|
|
|
// volumePath - host's directory to mount into the container
|
|
|
|
// returns container ID
|
|
|
|
func (d *Driver) Create(name string, image string, volumePath string, HTTPPort int, SSHPort int, CPU int, memory int, cmd []string) (string, error) {
|
|
|
|
log.Println("Creating container " + name)
|
|
|
|
cli, err := d.getClient()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2020-08-29 13:12:29 +00:00
|
|
|
defer cli.Close()
|
2020-07-09 22:27:23 +00:00
|
|
|
|
2020-07-11 11:04:37 +00:00
|
|
|
err = d.pullImage(image)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2020-08-27 21:46:03 +00:00
|
|
|
portBindings := nat.PortMap{
|
|
|
|
"8000/tcp": []nat.PortBinding{
|
|
|
|
{
|
2021-01-30 11:33:57 +00:00
|
|
|
HostIP: d.BindIPHTTP,
|
2020-08-27 21:46:03 +00:00
|
|
|
HostPort: strconv.Itoa(HTTPPort),
|
|
|
|
},
|
|
|
|
},
|
2020-07-13 22:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if SSHPort != 0 {
|
2020-08-27 21:46:03 +00:00
|
|
|
portBindings["22/tcp"] = []nat.PortBinding{
|
|
|
|
{
|
2021-01-30 11:33:57 +00:00
|
|
|
HostIP: d.BindIPSSH,
|
2020-08-27 21:46:03 +00:00
|
|
|
HostPort: strconv.Itoa(SSHPort),
|
|
|
|
},
|
2020-07-13 22:01:42 +00:00
|
|
|
}
|
|
|
|
}
|
2020-07-09 22:27:23 +00:00
|
|
|
|
|
|
|
createdContainer, err := cli.ContainerCreate(
|
2020-07-11 21:14:45 +00:00
|
|
|
context.Background(),
|
2020-07-09 22:27:23 +00:00
|
|
|
&container.Config{
|
|
|
|
Hostname: name,
|
|
|
|
Env: []string{},
|
|
|
|
Image: image,
|
|
|
|
Cmd: cmd,
|
2020-08-27 21:46:03 +00:00
|
|
|
ExposedPorts: nat.PortSet{
|
|
|
|
nat.Port("22/tcp"): struct{}{},
|
|
|
|
nat.Port("8000/tcp"): struct{}{},
|
|
|
|
},
|
2020-07-09 22:27:23 +00:00
|
|
|
},
|
|
|
|
&container.HostConfig{
|
|
|
|
Resources: container.Resources{
|
2020-07-11 11:04:37 +00:00
|
|
|
CPUPeriod: 100000,
|
|
|
|
CPUQuota: int64(CPU) * 1000,
|
2020-07-23 10:09:06 +00:00
|
|
|
Memory: int64(memory*110/100) * 1024 * 1024, // Allow 10 % more memory so we have space for MemoryReservation
|
|
|
|
MemoryReservation: int64(memory) * 1024 * 1024, // This should provide softer way how to limit the memory of our containers
|
2020-07-09 22:27:23 +00:00
|
|
|
},
|
2020-08-27 21:46:03 +00:00
|
|
|
PortBindings: portBindings,
|
2020-07-09 22:27:23 +00:00
|
|
|
AutoRemove: false,
|
|
|
|
RestartPolicy: container.RestartPolicy{
|
2020-07-11 11:04:37 +00:00
|
|
|
Name: "on-failure",
|
2020-07-09 22:27:23 +00:00
|
|
|
MaximumRetryCount: 3,
|
|
|
|
},
|
|
|
|
Binds: []string{
|
|
|
|
volumePath + ":/srv",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&network.NetworkingConfig{},
|
2022-02-05 01:22:53 +00:00
|
|
|
&specs.Platform{
|
2022-04-21 20:21:56 +00:00
|
|
|
Architecture: "amd64",
|
|
|
|
OS: "linux",
|
2022-02-05 01:22:53 +00:00
|
|
|
},
|
2020-07-09 22:27:23 +00:00
|
|
|
name,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
containerID := createdContainer.ID
|
|
|
|
|
|
|
|
// I dunno if we want this
|
|
|
|
// err = cli.ContainerStart(context.TODO(), createdContainer.ID, types.ContainerStartOptions{})
|
|
|
|
|
|
|
|
return containerID, nil
|
|
|
|
}
|
2020-08-06 22:36:40 +00:00
|
|
|
|
|
|
|
// Exec runs command cmd with stdin if it's not empty.
|
2020-08-23 00:08:05 +00:00
|
|
|
func (d *Driver) Exec(name string, cmd []string, stdin string, env []string, attachStdout bool) (*[]byte, error) {
|
2020-08-06 22:36:40 +00:00
|
|
|
if len(cmd) == 0 {
|
2020-08-23 00:08:05 +00:00
|
|
|
return &[]byte{}, errors.New("cmd needs at least one string in the slice")
|
2020-08-06 22:36:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
stdinEnabled := false
|
|
|
|
if len(stdin) > 0 {
|
|
|
|
stdinEnabled = true
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Println("Command running in " + name)
|
|
|
|
cli, err := d.getClient()
|
|
|
|
if err != nil {
|
2020-08-23 00:08:05 +00:00
|
|
|
return &[]byte{}, err
|
2020-08-06 22:36:40 +00:00
|
|
|
}
|
2020-08-29 13:12:29 +00:00
|
|
|
defer cli.Close()
|
2020-08-06 22:36:40 +00:00
|
|
|
|
|
|
|
containerID, err := d.nameToID(name)
|
|
|
|
if err != nil {
|
2020-08-23 00:08:05 +00:00
|
|
|
return &[]byte{}, err
|
2020-08-06 22:36:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
execOpts := types.ExecConfig{
|
|
|
|
AttachStdin: stdinEnabled,
|
2020-08-23 00:08:05 +00:00
|
|
|
AttachStdout: attachStdout,
|
2020-08-06 22:36:40 +00:00
|
|
|
AttachStderr: false,
|
2020-08-23 00:08:05 +00:00
|
|
|
Tty: attachStdout,
|
2020-08-06 22:36:40 +00:00
|
|
|
Cmd: cmd,
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := cli.ContainerExecCreate(ctx, containerID, execOpts)
|
|
|
|
if err != nil {
|
2020-08-23 00:08:05 +00:00
|
|
|
return &[]byte{}, err
|
2020-08-06 22:36:40 +00:00
|
|
|
}
|
|
|
|
|
2022-02-05 01:22:53 +00:00
|
|
|
respAttach, err := cli.ContainerExecAttach(ctx, resp.ID, types.ExecStartCheck{
|
|
|
|
Detach: false,
|
|
|
|
Tty: true,
|
2020-08-23 00:08:05 +00:00
|
|
|
})
|
2020-08-06 22:36:40 +00:00
|
|
|
if err != nil {
|
2020-08-23 00:08:05 +00:00
|
|
|
return &[]byte{}, err
|
2020-08-06 22:36:40 +00:00
|
|
|
}
|
|
|
|
defer respAttach.Close()
|
|
|
|
|
|
|
|
err = cli.ContainerExecStart(ctx, resp.ID, types.ExecStartCheck{})
|
|
|
|
if err != nil {
|
2020-08-23 00:08:05 +00:00
|
|
|
return &[]byte{}, err
|
2020-08-06 22:36:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if stdinEnabled {
|
|
|
|
_, err = respAttach.Conn.Write([]byte(stdin))
|
|
|
|
if err != nil {
|
2020-08-23 00:08:05 +00:00
|
|
|
return &[]byte{}, err
|
2020-08-06 22:36:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-23 00:08:05 +00:00
|
|
|
stdouterr := []byte{}
|
|
|
|
if attachStdout {
|
|
|
|
stdouterr, err = ioutil.ReadAll(respAttach.Reader)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &stdouterr, err
|
2020-08-06 22:36:40 +00:00
|
|
|
}
|
2022-02-03 00:31:47 +00:00
|
|
|
|
|
|
|
// GetProcesses return list of processes running under this container
|
|
|
|
func (d *Driver) GetProcesses(name string) ([]string, error) {
|
|
|
|
processes := []string{}
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
cli, err := d.getClient()
|
|
|
|
if err != nil {
|
|
|
|
return processes, err
|
|
|
|
}
|
|
|
|
defer cli.Close()
|
|
|
|
|
2022-02-07 16:34:10 +00:00
|
|
|
processList, err := cli.ContainerTop(ctx, name, []string{"-eo", "pid,args"})
|
2022-02-03 00:31:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return processes, fmt.Errorf("docker container top call error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, process := range processList.Processes {
|
|
|
|
if len(process) > 0 {
|
2022-02-07 16:34:10 +00:00
|
|
|
// This removes PID from the list. PID has to be printed otherwise docker daemon can't handle it.
|
|
|
|
processes = append(processes, strings.Join(strings.Fields(process[0])[1:], " "))
|
2022-02-03 00:31:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return processes, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetFlags returns list of flags with problems found in the container, mainly used to detect miners or viruses
|
|
|
|
func (d *Driver) GetFlags(name string) (detector.Flags, error) {
|
|
|
|
processes, err := d.GetProcesses(name)
|
|
|
|
if err != nil {
|
|
|
|
return detector.Flags{}, err
|
|
|
|
}
|
|
|
|
flags, err := detector.Check(processes)
|
|
|
|
if err != nil {
|
|
|
|
return flags, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return flags, nil
|
|
|
|
}
|