aboutsummaryrefslogtreecommitdiff
path: root/hack/podman-socat
blob: 28fbb6864c2ebef5ec9c01ef186254d724bb5bb5 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/bin/bash -e
# Execute podman while capturing the API stream
#
# Script will run an instance of podman sand-boxed, the API stream will be captured and then formatted for readability.

if [[ $(id -u) != 0 ]]; then
    echo >&2 "$0 must be run as root."
    exit 2
fi

if ! command -v socat >/dev/null 2>&1; then
    echo 1>&2 "socat not found on PATH"
fi

PODMAN=${PODMAN:-podman}
if ! command -v "$PODMAN" >/dev/null 2>&1; then
    echo 1>&2 "$PODMAN not found on PATH"
fi

function usage() {
    echo 1>&2 $0 '[-v] [-h]'
}

while getopts "vh" arg; do
    case $arg in
    v)
        VERBOSE='-v'
        export PODMAN_LOG_LEVEL=debug
        ;;
    h)
        usage
        exit 0
        ;;
    \?)
        usage
        exit 2
        ;;
    esac
done
shift $((OPTIND - 1))

function cleanup() {
    set +xeuo pipefail
    rm -r "$1"
    kill -9 $REAP_PIDS

    sed -e 's/^> /\nClient Request> /' -e 's/^< /\nServer Response< /' -i /tmp/podman-socat.log
}

# Create temporary directory for storage
export TMPDIR=$(mktemp -d /tmp/podman.XXXXXXXXXX)
trap "cleanup $TMPDIR" EXIT

# Need locations to store stuff
mkdir -p "${TMPDIR}"/{podman,crio,crio-run,cni/net.d,ctnr,tunnel}

export CONTAINERS_REGISTRIES_CONF=${TMPDIR}/registry.conf
cat >"$CONTAINERS_REGISTRIES_CONF" <<-EOT
  [registries.search]
    registries = ['docker.io']
  [registries.insecure]
    registries = []
  [registries.block]
    registries = []
EOT

export CNI_CONFIG_PATH=${TMPDIR}/cni/net.d
cat >"$CNI_CONFIG_PATH"/87-podman-bridge.conflist <<-EOT
{
  "cniVersion": "0.3.0",
  "name": "podman",
  "plugins": [{
      "type": "bridge",
      "bridge": "cni0",
      "isGateway": true,
      "ipMasq": true,
      "ipam": {
        "type": "host-local",
        "subnet": "10.88.0.0/16",
        "routes": [{
          "dst": "0.0.0.0/0"
        }]
      }
    },
    {
      "type": "portmap",
      "capabilities": {
        "portMappings": true
      }
    }
  ]
}
EOT

PODMAN_ARGS="--storage-driver=vfs \
  --root=${TMPDIR}/crio \
  --runroot=${TMPDIR}/crio-run \
  --network-config-dir=$CNI_CONFIG_PATH \
  --cgroup-manager=systemd \
  "
if [[ -n $VERBOSE ]]; then
    PODMAN_ARGS="$PODMAN_ARGS --log-level=$PODMAN_LOG_LEVEL --syslog=true"
fi
PODMAN="$PODMAN $PODMAN_ARGS"

PODMAN_HOST="${TMPDIR}/podman/podman-socat.sock"
SOCAT_HOST="${TMPDIR}/podman/podman.sock"

cat <<-EOT
Podman service running at unix:$SOCAT_HOST
See /tmp/podman-socat.log for API stream capture
See /tmp/podman-service.log for service logging

usage: sudo bin/podman-remote --url unix:$SOCAT_HOST images

^C to exit
EOT

$PODMAN system service --timeout=0 "unix:$PODMAN_HOST" >/tmp/podman-service.log 2>&1 &
REAP_PIDS=$!

socat -v "UNIX-LISTEN:$SOCAT_HOST",fork,reuseaddr,unlink-early "UNIX-CONNECT:$PODMAN_HOST" >/tmp/podman-socat.log 2>&1