about summary refs log tree commit diff
path: root/src/container.go
blob: 5b2075b28760194f15b776b09a413777b39474c6 (plain)
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
56
57
58
59
60
61
62
63
64
65
66
package main

import (
	"github.com/docker/docker/api/types/container"
	"github.com/docker/docker/api/types"
	"fmt"
	"time"
	"github.com/docker/docker/api/types/network"
)

const (
	VPNNetworkName = "vpn-network"
)

type ChallengeContainer struct {
	Challenge *Challenge
	ContainerID string
	IP string
}

// Starts the container and returns its address and containerID if successful
func (cc ChallengeContainer) startContainer() (address string, containerID string, err error) {
	// Set up our context and Docker CLI connection
	setupContext()
	setupDockerCLI()
	// Set up network
	setupNetwork()

	// Create container
	resp, err := dockerCli.ContainerCreate(dockerCtx, &container.Config{
		Image: cc.Challenge.Container,
		Env: []string{fmt.Sprintf("FLAG=%s", cc.Challenge.Flag)},
		Tty: false,
	}, nil, &network.NetworkingConfig{
		EndpointsConfig: map[string]*network.EndpointSettings{
			VPNNetworkName: {
				NetworkID: vpnNetworkID,
			},
		},
	}, "")

	if err != nil {
		return "", "", err
	}

	// Start container
	err = dockerCli.ContainerStart(dockerCtx, resp.ID, types.ContainerStartOptions{})
	if err != nil {
		return "", "", err
	}

	// Get IP Address of that container
	inspectJSON, err := dockerCli.ContainerInspect(dockerCtx, resp.ID)
	if err != nil {
		return "", "", err
	}

	// Return IP, Container ID and error
	return inspectJSON.NetworkSettings.Networks[VPNNetworkName].IPAddress, resp.ID,nil
}

// Stops the container with a timeout of one second
func (cc ChallengeContainer) stopContainer() {
	timeout := time.Second
	dockerCli.ContainerStop(dockerCtx, cc.ContainerID, &timeout)
}