blob: 4a791b6780cc50e599770c9cbb7a29ed42df5e51 [file] [log] [blame]
Zack Williams12783ac2018-06-12 15:13:12 -07001#!/usr/bin/env bash
2
3# Copyright 2018-present Open Networking Foundation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# tagcollisionreject.sh
18# checks that there isn't an existing tag in the repo that has this tag
19
20set -eu -o pipefail
21
Zack Williams8e69efd2018-06-13 15:05:18 -070022VERSIONFILE="" # file path to file containing version number
23NEW_VERSION="" # version number found in $VERSIONFILE
Zack Williams6e070f52019-10-04 11:08:59 -070024TAG_VERSION="" # version file that might have a leading v to work around go mod funkyness
Zack Williams8e69efd2018-06-13 15:05:18 -070025
Zack Williams66500002018-09-06 15:29:05 -070026SEMVER_STRICT=${SEMVER_STRICT:-0} # require semver versions
27
Zack Williams8e69efd2018-06-13 15:05:18 -070028releaseversion=0
29fail_validation=0
30
31# when not running under Jenkins, use current dir as workspace
32WORKSPACE=${WORKSPACE:-.}
Zack Williams12783ac2018-06-12 15:13:12 -070033
34# find the version string in the repo, read into NEW_VERSION
35# Add additional places NEW_VERSION could be found to this function
36function read_version {
37 if [ -f "VERSION" ]
38 then
39 NEW_VERSION=$(head -n1 "VERSION")
Zack Williams8e69efd2018-06-13 15:05:18 -070040 VERSIONFILE="VERSION"
Zack Williams6e070f52019-10-04 11:08:59 -070041
42 # If this is a golang project, use funky v-prefixed versions
43 if [ -f "Gopkg.toml" ] || [ -f "go.mod" ]
44 then
45 echo "go-based project found, using v-prefixed version for git tags: v${NEW_VERSION}"
46 TAG_VERSION=v${NEW_VERSION}
47 else
48 TAG_VERSION=${NEW_VERSION}
49 fi
50
Zack Williams6a9d2e62018-06-22 15:18:23 -070051 elif [ -f "package.json" ]
52 then
53 NEW_VERSION=$(python -c 'import json,sys;obj=json.load(sys.stdin); print obj["version"]' < package.json)
Zack Williams6e070f52019-10-04 11:08:59 -070054 TAG_VERSION=$NEW_VERSION
Zack Williams6a9d2e62018-06-22 15:18:23 -070055 VERSIONFILE="package.json"
Zack Williams866ef3c2019-09-27 15:41:02 -070056 elif [ -f "pom.xml" ]
57 then
58 NEW_VERSION=$(xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' pom.xml)
Zack Williams6e070f52019-10-04 11:08:59 -070059 TAG_VERSION=$NEW_VERSION
Zack Williams866ef3c2019-09-27 15:41:02 -070060 VERSIONFILE="pom.xml"
Zack Williams12783ac2018-06-12 15:13:12 -070061 else
62 echo "ERROR: No versioning file found!"
63 exit 1
64 fi
65}
66
Zack Williams8e69efd2018-06-13 15:05:18 -070067# check if the version is a released version
68function check_if_releaseversion {
69 if [[ "$NEW_VERSION" =~ ^([0-9]+)\.([0-9]+)\.([0-9]+)$ ]]
70 then
71 echo "Version string '$NEW_VERSION' found in '$VERSIONFILE' is a SemVer released version!"
72 releaseversion=1
73 else
Zack Williams66500002018-09-06 15:29:05 -070074 if [ "$SEMVER_STRICT" -eq "1" ]
75 then
76 echo "Version string '$NEW_VERSION' in '$VERSIONFILE' is not a SemVer released version, SEMVER_STRICT enabled, failing!"
77 fail_validation=1
78 else
79 echo "Version string '$NEW_VERSION' in '$VERSIONFILE' is not a SemVer released version, skipping."
80 fi
Zack Williams8e69efd2018-06-13 15:05:18 -070081 fi
82}
83
Zack Williams6e070f52019-10-04 11:08:59 -070084# check if the version is already a tag in git
85function is_git_tag_duplicated {
86 for existing_tag in $(git tag)
87 do
88 if [ "$TAG_VERSION" = "$existing_tag" ]
89 then
90 echo "ERROR: Duplicate tag: $existing_tag"
91 exit 2
92 fi
93 done
94}
95
Zack Williams8e69efd2018-06-13 15:05:18 -070096# check if Dockerfiles have a released version as their parent
97function dockerfile_parentcheck {
98 while IFS= read -r -d '' dockerfile
99 do
100 echo "Checking dockerfile: '$dockerfile'"
101
102 # split on newlines
103 IFS=$'\n'
104 df_parents=($(grep "^FROM" "$dockerfile"))
105
106 # check all parents in the Dockerfile
107 for df_parent in "${df_parents[@]}"
108 do
109
Zack Williamsc800dbe2020-02-14 10:25:12 -0700110 df_pattern="FROM ([^:]*):(.*)"
Zack Williams8e69efd2018-06-13 15:05:18 -0700111 if [[ "$df_parent" =~ $df_pattern ]]
112 then
113
114 p_image="${BASH_REMATCH[1]}"
115 p_version="${BASH_REMATCH[2]}"
116
117 if [[ "${p_version}" =~ ^([0-9]+)\.([0-9]+)\.([0-9]+)$ ]]
118 then
119 echo " OK: Parent '$p_image:$p_version' is a released SemVer version"
Zack Williamsc800dbe2020-02-14 10:25:12 -0700120 elif [[ "${p_version}" =~ ^.*@sha256:[0-9a-f]{64}.*$ ]]
121 then
122 # allow sha256 hashes to be used as version specifiers
123 echo " OK: Parent '$p_image:$p_version' is using a specific sha256 hash as a version"
Zack Williams0dc27542018-10-11 08:09:10 -0700124 elif [[ "${p_version}" =~ ^.*([0-9]+)\.([0-9]+).*$ ]]
Zack Williams8e69efd2018-06-13 15:05:18 -0700125 then
Zack Williams0dc27542018-10-11 08:09:10 -0700126 # handle non-SemVer versions that have a Major.Minor version specifier in the name
127 # 'ubuntu:16.04'
128 # 'postgres:10.3-alpine'
129 # 'openjdk:8-jre-alpine3.8'
Zack Williams8e69efd2018-06-13 15:05:18 -0700130 echo " OK: Parent '$p_image:$p_version' is using a non-SemVer, but sufficient, version"
131 else
132 echo " ERROR: Parent '$p_image:$p_version' is NOT using an specific version"
133 fail_validation=1
134 fi
135
136 elif [[ "$df_parent" =~ ^FROM\ scratch$ ]]
137 then
138 # Handle the parent-less `FROM scratch` case:
139 # https://docs.docker.com/develop/develop-images/baseimages/
140 echo " OK: Using the versionless 'scratch' parent: '$df_parent'"
141 else
142 echo " ERROR: Couldn't find a parent image in $df_parent"
143 fi
144
145 done
146
Matteo Scandolob28a02e2019-11-04 09:35:16 -0800147 done < <( find "${WORKSPACE}" -name 'Dockerfile*' ! -path "*/vendor/*" ! -name "*dockerignore" -print0 )
Zack Williams8e69efd2018-06-13 15:05:18 -0700148}
149
Zack Williams12783ac2018-06-12 15:13:12 -0700150echo "Checking git repo with remotes:"
151git remote -v
152
153echo "Branches:"
154git branch -v
155
156echo "Existing git tags:"
157git tag -n
158
159read_version
Zack Williams8e69efd2018-06-13 15:05:18 -0700160check_if_releaseversion
Zack Williams12783ac2018-06-12 15:13:12 -0700161
Zack Williams8e69efd2018-06-13 15:05:18 -0700162# perform checks if a released version
163if [ "$releaseversion" -eq "1" ]
164then
165 is_git_tag_duplicated
166 dockerfile_parentcheck
167fi
Zack Williams12783ac2018-06-12 15:13:12 -0700168
Zack Williams8e69efd2018-06-13 15:05:18 -0700169exit $fail_validation