forked from docker-library/official-images
-
Notifications
You must be signed in to change notification settings - Fork 2
/
naughty-constraints.sh
executable file
·113 lines (97 loc) · 2.69 KB
/
naughty-constraints.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
#!/usr/bin/env bash
set -Eeuo pipefail
export BASHBREW_ARCH=
if [ "$#" -eq 0 ]; then
set -- '--all'
fi
_windows_constraint() {
local from="$1"; shift
local repo="${from%:*}"
local tag="${from#$repo:}"
local constraint
case "$repo" in
mcr.microsoft.com/windows/nanoserver | microsoft/nanoserver) constraint='nanoserver' ;;
mcr.microsoft.com/windows/servercore | microsoft/windowsservercore) constraint='windowsservercore' ;;
*) echo >&2 "error: unknown Windows image: $from"; exit 1 ;;
esac
if [ "$tag" != 'latest' ]; then
constraint+="-$tag"
fi
echo "$constraint"
}
_expected_constraints() {
local from="$1"; shift
local fromConstraints
if fromConstraints="$(bashbrew cat --format '{{ .TagEntry.Constraints | join "\n" }}' "$from" 2>/dev/null)" && [ -n "$fromConstraints" ]; then
echo "$fromConstraints"
return
fi
case "$from" in
*microsoft*) _windows_constraint "$from" ;;
esac
return
}
_arches() {
bashbrew cat --format '
{{- range .TagEntries -}}
{{- .Architectures | join "\n" -}}
{{- "\n" -}}
{{- end -}}
' "$@" | sort -u
}
_froms() {
bashbrew cat --format '
{{- range .TagEntries -}}
{{- $.DockerFroms . | join "\n" -}}
{{- "\n" -}}
{{- end -}}
' "$@" | sort -u
}
declare -A naughtyFromsArches=(
#[img:tag=from:tag]='arch arch ...'
)
naughtyFroms=()
declare -A allNaughty=(
#[img:tag]=1
)
tags="$(bashbrew --namespace '' list --uniq "$@" | sort -u)"
for img in $tags; do
arches="$(_arches "$img")"
constraints="$(bashbrew cat --format '{{ .TagEntry.Constraints | join "\n" }}' "$img" | sort -u)"
declare -A imgMissing=()
declare -A imgExtra=()
for BASHBREW_ARCH in $arches; do
export BASHBREW_ARCH
froms="$(_froms "$img")"
[ -n "$froms" ] # rough sanity check
allExpected=
for from in $froms; do
expected="$(_expected_constraints "$from")"
allExpected="$(sort -u <<<"$allExpected"$'\n'"$expected")"
done
missing="$(comm -13 <(echo "$constraints") <(echo "$allExpected"))"
if [ -n "$missing" ]; then
imgMissing[$from]+=$'\n'"$missing"
fi
extra="$(comm -23 <(echo "$constraints") <(echo "$allExpected"))"
if [ -n "$extra" ]; then
imgExtra[$from]+=$'\n'"$extra"
fi
done
if [ "${#imgMissing[@]}" -gt 0 ]; then
for from in $(IFS=$'\n'; sort -u <<<"${!imgMissing[*]}"); do
missing="${imgMissing[$from]}"
missing="$(sed '/^$/d' <<<"$missing" | sort -u)"
echo " - $img -- missing constraints (FROM $from):"
sed 's/^/ - /' <<<"$missing"
done
fi
if [ "${#imgExtra[@]}" -gt 0 ]; then
for from in $(IFS=$'\n'; sort -u <<<"${!imgExtra[*]}"); do
extra="${imgExtra[$from]}"
extra="$(sed '/^$/d' <<<"$extra" | sort -u)"
echo " - $img -- extra constraints (FROM $from):"
sed 's/^/ - /' <<<"$extra"
done
fi
done