Skip to content

Commit 5c34a33

Browse files
author
Jonathan Calmels
committed
Fix token cache for parallel downloads
1 parent 3fb805e commit 5c34a33

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

src/docker.sh

+6-11
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,13 @@ docker::_authenticate() {
2929
local -r user="$1" registry="$2" url="$3"
3030
local realm= token= req_params=() resp_headers=
3131

32-
# Reuse our previous token if we already got one.
33-
if [ -f "${token_dir}/${registry}" ]; then
34-
req_params+=("-K" "${token_dir}/${registry}")
35-
fi
36-
3732
# Query the registry to see if we're authorized.
3833
common::log INFO "Querying registry for permission grant"
3934
resp_headers=$(CURL_IGNORE=401 common::curl "${curl_opts[@]}" -I ${req_params[@]+"${req_params[@]}"} -- "${url}")
4035

41-
# If our token is still valid, we're done.
36+
# If we don't need to authenticate, we're done.
4237
if ! grep -qi '^www-authenticate:' <<< "${resp_headers}"; then
43-
common::log INFO "Found valid credentials in cache"
38+
common::log INFO "Permission granted"
4439
return
4540
fi
4641

@@ -77,7 +72,7 @@ docker::_authenticate() {
7772
# Store the new token.
7873
if [ -n "${token}" ]; then
7974
mkdir -m 0700 -p "${token_dir}"
80-
(umask 077 && printf 'header "Authorization: Bearer %s"' "${token}" > "${token_dir}/${registry}")
75+
(umask 077 && printf 'header "Authorization: Bearer %s"' "${token}" > "${token_dir}/${registry}.$$")
8176
common::log INFO "Authentication succeeded"
8277
fi
8378
}
@@ -127,8 +122,8 @@ docker::_download() {
127122

128123
# Authenticate with the registry.
129124
docker::_authenticate "${user}" "${registry}" "${url_manifest}"
130-
if [ -f "${token_dir}/${registry}" ]; then
131-
req_params+=("-K" "${token_dir}/${registry}")
125+
if [ -f "${token_dir}/${registry}.$$" ]; then
126+
req_params+=("-K" "${token_dir}/${registry}.$$")
132127
fi
133128

134129
# Attempt to use the image manifest list if it exists.
@@ -288,7 +283,7 @@ docker::import() (
288283
fi
289284

290285
# Create a temporary directory and chdir to it.
291-
trap 'common::rmall "${tmpdir}" 2> /dev/null; [ -n "${registry}" ] && rm -f "${token_dir}/${registry}" 2> /dev/null' EXIT
286+
trap 'common::rmall "${tmpdir}" 2> /dev/null; rm -f "${token_dir}"/*.$$ 2> /dev/null' EXIT
292287
tmpdir=$(common::mktmpdir enroot)
293288
common::chdir "${tmpdir}"
294289

0 commit comments

Comments
 (0)