forked from tete1030/safe-debugger-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.sh
executable file
·198 lines (176 loc) · 8.18 KB
/
script.sh
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#!/bin/bash
set -eo pipefail
uriencode() {
s="${1//'%'/%25}"
s="${s//' '/%20}"
s="${s//'"'/%22}"
s="${s//'#'/%23}"
s="${s//'$'/%24}"
s="${s//'&'/%26}"
s="${s//'+'/%2B}"
s="${s//','/%2C}"
s="${s//'/'/%2F}"
s="${s//':'/%3A}"
s="${s//';'/%3B}"
s="${s//'='/%3D}"
s="${s//'?'/%3F}"
s="${s//'@'/%40}"
s="${s//'['/%5B}"
s="${s//']'/%5D}"
printf %s "$s"
}
# For mount docker volume, do not directly use '/tmp' as the dir
TMATE_TERM="${TMATE_TERM:-screen-256color}"
TIMESTAMP="$(date +%s%3N)"
TMATE_DIR="/tmp/tmate-${TIMESTAMP}"
TMATE_SOCK="${TMATE_DIR}/session.sock"
TMATE_SESSION_NAME="tmate-${TIMESTAMP}"
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
# Shorten this URL to avoid mask by Github Actions Runner
README_URL="https://github.com/tete1030/safe-debugger-action/blob/master/README.md"
README_URL_SHORT="$(curl -si https://git.io -F "url=${README_URL}" | tr -d '\r' | sed -En 's/^Location: (.*)/\1/p')"
cleanup() {
if [ -n "${container_id}" ] && [ "x${docker_type}" = "ximage" ]; then
echo "Current docker container will be saved to your image: ${TMATE_DOCKER_IMAGE_EXP}"
docker stop -t1 "${container_id}" > /dev/null
docker commit --message "Commit from safe-debugger-action" "${container_id}" "${TMATE_DOCKER_IMAGE_EXP}"
docker rm -f "${container_id}" > /dev/null
fi
tmate -S "${TMATE_SOCK}" kill-server || true
sed -i '/alias attach_docker/d' ~/.bashrc || true
rm -rf "${TMATE_DIR}"
}
if [[ -n "$SKIP_DEBUGGER" ]]; then
echo "Skipping debugger because SKIP_DEBUGGER enviroment variable is set"
exit
fi
if [ -z "${TMATE_ENCRYPT_PASSWORD}" ] && [ -z "${SLACK_WEBHOOK_URL}" ]; then
echo "::error::You should set either TMATE_ENCRYPT_PASSWORD or SLACK_WEBHOOK_URL enviroment variables for safety of your secret information, refer to ${README_URL_SHORT}" >&2
exit 1
fi
# Install tmate on macOS or Ubuntu
echo Setting up tmate and openssl...
if [ -x "$(command -v brew)" ]; then
brew install tmate > /tmp/brew.log
[ -z "${TMATE_ENCRYPT_PASSWORD}" ] || ( command -v openssl > /dev/null 2>&1 || brew install openssl )
fi
if [ -x "$(command -v apt-get)" ]; then
"${SCRIPT_DIR}/tmate.sh"
[ -z "${TMATE_ENCRYPT_PASSWORD}" ] || ( command -v openssl > /dev/null 2>&1 || sudo apt-get -q -yy install openssl )
fi
# Generate ssh key if needed
[ -e ~/.ssh/id_rsa ] || ssh-keygen -t rsa -f ~/.ssh/id_rsa -q -N ""
# Run deamonized tmate
echo Running tmate...
now_date="$(date)"
timeout=$(( ${TIMEOUT_MIN:=30}*60 ))
kill_date="$(date -d "${now_date} + ${timeout} seconds")"
TMATE_SESSION_PATH="$(pwd)"
mkdir "${TMATE_DIR}"
container_id=''
if [ -n "${TMATE_DOCKER_IMAGE}" ] || [ -n "${TMATE_DOCKER_CONTAINER}" ]; then
if [ -n "${TMATE_DOCKER_CONTAINER}" ]; then
docker_type="container"
container_id="${TMATE_DOCKER_CONTAINER}"
else
docker_type="image"
if [ -z "${TMATE_DOCKER_IMAGE_EXP}" ]; then
TMATE_DOCKER_IMAGE_EXP="${TMATE_DOCKER_IMAGE}"
fi
echo "Creating docker container for running tmate"
container_id=$(docker create -t "${TMATE_DOCKER_IMAGE}")
docker start "${container_id}"
fi
DK_SHELL="docker exec -e TERM='${TMATE_TERM}' -it '${container_id}' /bin/bash -il"
DOCKER_MESSAGE_CMD='printf "This window is running in Docker '"${docker_type}"'.\nTo attach to Github Actions runner, exit current shell\nor create a new tmate window by \"Ctrl-b, c\"\n(This shortcut is only available when connecting through ssh)\n\n"'
FIRSTWIN_MESSAGE_CMD='printf "This window is now running in GitHub Actions runner.\nTo attach to your Docker '"${docker_type}"' again, use \"attach_docker\" command\n\n"'
SECWIN_MESSAGE_CMD='printf "The first window of tmate has already been attached to your Docker '"${docker_type}"'.\nThis window is running in GitHub Actions runner.\nTo attach to your Docker '"${docker_type}"' again, use \"attach_docker\" command\n\n"'
echo "unalias attach_docker 2>/dev/null || true ; alias attach_docker='${DK_SHELL}'" >> ~/.bashrc
(
cd "${TMATE_DIR}"
TERM="${TMATE_TERM}" tmate -v -S "${TMATE_SOCK}" new-session -s "${TMATE_SESSION_NAME}" -c "${TMATE_SESSION_PATH}" -d "/bin/bash --noprofile --norc -c '${DOCKER_MESSAGE_CMD} ; ${DK_SHELL} ; ${FIRSTWIN_MESSAGE_CMD} ; /bin/bash -li'" \; set-option default-command "/bin/bash --noprofile --norc -c '${SECWIN_MESSAGE_CMD} ; /bin/bash -li'" \; set-option default-terminal "${TMATE_TERM}"
)
else
echo "unalias attach_docker 2>/dev/null || true" >> ~/.bashrc
(
cd "${TMATE_DIR}"
TERM="${TMATE_TERM}" tmate -v -S "${TMATE_SOCK}" new-session -s "${TMATE_SESSION_NAME}" -c "${TMATE_SESSION_PATH}" -d \; set-option default-terminal "${TMATE_TERM}"
)
fi
tmate -S "${TMATE_SOCK}" wait tmate-ready
TMATE_PID="$(tmate -S "${TMATE_SOCK}" display -p '#{pid}')"
TMATE_SERVER_LOG="${TMATE_DIR}/tmate-server-${TMATE_PID}.log"
if [ ! -f "${TMATE_SERVER_LOG}" ]; then
echo "::error::No server log found" >&2
echo "Files in TMATE_DIR:" >&2
ls -l "${TMATE_DIR}"
exit 1
fi
SSH_LINE="$(tmate -S "${TMATE_SOCK}" display -p '#{tmate_ssh}')"
WEB_LINE="$(tmate -S "${TMATE_SOCK}" display -p '#{tmate_web}')"
if [ -n "${TMATE_ENCRYPT_PASSWORD}" ]; then
SSH_ENC="$(echo -n "${SSH_LINE}" | openssl enc -e -aes-256-cbc -md md5 -base64 -A -pass pass:"${TMATE_ENCRYPT_PASSWORD}")"
WEB_ENC="$(echo -n "${WEB_LINE}" | openssl enc -e -aes-256-cbc -md md5 -base64 -A -pass pass:"${TMATE_ENCRYPT_PASSWORD}")"
SSH_ENC_URI="$(uriencode "${SSH_ENC}")"
WEB_ENC_URI="$(uriencode "${WEB_ENC}")"
# Shorten this URL to avoid mask by Github Actions Runner
ENC_URL="https://tete1030.github.io/safe-debugger-action/?ssh=${SSH_ENC_URI}&web=${WEB_ENC_URI}"
ENC_URL_SHORT="$(curl -s 'https://is.gd/create.php?format=simple&url='${ENC_URL} | tr -d '\r')"
fi
TIMEOUT_MESSAGE="If you don't connect to this session, it will be *SKIPPED* in ${timeout} seconds at ${kill_date}. To skip this step now, simply connect the ssh and exit."
if [[ -n "$SLACK_WEBHOOK_URL" ]]; then
MSG="SSH: ${SSH_LINE}\nWEB: ${WEB_LINE}"
echo -n "Sending information to Slack......"
curl -X POST -H 'Content-type: application/json' --data "{\"text\":\"\`\`\`\n$MSG\n\`\`\`\n${TIMEOUT_MESSAGE}\"}" "$SLACK_WEBHOOK_URL"
echo ""
fi
echo ______________________________________________________________________________________________
echo ""
# Wait for connection to close or timeout
display_int=${DISP_INTERVAL_SEC:=30}
timecounter=0
user_connected=0
while [ -S "${TMATE_SOCK}" ]; do
connected=0
grep -qE '^[[:digit:]\.]+ A mate has joined' "${TMATE_SERVER_LOG}" && connected=1
if [ ${connected} -eq 1 ] && [ ${user_connected} -eq 0 ]; then
echo "You just connected! Timeout is now disabled."
user_connected=1
fi
if [ ${user_connected} -ne 1 ]; then
if (( timecounter > timeout )); then
echo "Waiting on tmate connection timed out! This step is skipped now."
cleanup
if [ "x$TIMEOUT_FAIL" = "x1" ] || [ "x$TIMEOUT_FAIL" = "xtrue" ]; then
exit 1
else
exit 0
fi
fi
fi
if (( timecounter % display_int == 0 )); then
echo "You can connect to this session in a terminal or browser"
if [ -n "${TMATE_ENCRYPT_PASSWORD}" ]; then
echo "The following are encrypted debugger connection info"
echo -e " SSH:\e[32m ${SSH_ENC} \e[0m"
echo -e " Web:\e[32m ${WEB_ENC} \e[0m"
echo "To decrypt, open the following address and type in your password"
echo " ${ENC_URL_SHORT}"
echo "Or run"
echo -e ' echo "\e[33mENCRYPTED_STRING\e[0m" | openssl enc -d -base64 -A -aes-256-cbc -md md5 -pass pass:"\e[33mTMATE_ENCRYPT_PASSWORD\e[0m"'
else
echo "You have not configured TMATE_ENCRYPT_PASSWORD for encrypting sensitive information"
echo "The debugger connection info is only sent to your Slack through SLACK_WEBHOOK_URL"
echo "For detail, refer to ${README_URL_SHORT}"
fi
[ "x${user_connected}" != "x1" ] && (
echo -e "\nIf you don't connect to this session, it will be \e[31mSKIPPED\e[0m in $(( timeout-timecounter )) seconds at ${kill_date}"
echo "To skip this step now, simply connect the ssh and exit."
)
echo ______________________________________________________________________________________________
fi
sleep 1
timecounter=$((timecounter+1))
done
echo "The connection is terminated."
cleanup