-
Notifications
You must be signed in to change notification settings - Fork 144
/
.gitlab-ci.yml
327 lines (294 loc) · 9.66 KB
/
.gitlab-ci.yml
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
variables:
# Locale settings do not affect the build, but might affect tests.
LC_ALL: C
# Fuzzing
CFL_ARTIFACTS_DIR: '/tmp/cfl-artifacts'
CFL_CACHE_DIR: '/ccache/cfl-cache'
CFL_IMAGE: 'gcr.io/oss-fuzz-base/clusterfuzzlite-run-fuzzers'
CFL_PLATFORM: gitlab
FUZZ_SECONDS: 600 # 10 min (ClusterFuzzLite defaults)
FUZZING_ARGS: '-rss_limit_mb=8192'
LD_LIBRARY_PATH: "/opt/kea/lib:/usr/lib/x86_64-linux-gnu:/lib/x86_64-linux-gnu:/builds/isc-projects/kea"
PARALLEL_FUZZING: true
CCACHE_BASEDIR: "${CI_PROJECT_DIR}"
CCACHE_DIR: "${CI_PROJECT_DIR}/ccache"
# SAST
SECURE_ANALYZERS_PREFIX: "registry.gitlab.com/gitlab-org/security-products/analyzers"
# Leave only bandit, flawfinder, semgrep.
SAST_EXCLUDED_ANALYZERS: "eslint, spotbugs"
image: 'registry.gitlab.isc.org/isc-projects/kea:latest'
stages:
- test
- fuzz
# Do not run the test stage on pipeline schedule trigger.
.base_rules_for_test_jobs: &rules_for_test_stage
rules:
- if: $CI_PIPELINE_SOURCE != 'schedule'
when: always
- if: $CI_PIPELINE_SOURCE == 'schedule'
when: never
are-database-scripts-in-sync:
stage: test
<<: *rules_for_test_stage
script:
- ./src/share/database/scripts/utils/are-scripts-in-sync.py
check-for-json-errors-in-doc:
stage: test
<<: *rules_for_test_stage
script:
- ./tools/check-for-json-errors-in-doc.sh
danger:
stage: test
<<: *rules_for_test_stage
before_script:
- export CI_MERGE_REQUEST_ID=$(git ls-remote -q origin merge-requests\*\head | grep $CI_COMMIT_SHA | sed 's/.*refs\/merge-requests\/\([0-9]*\)\/head/\1/g')
- export CI_PROJECT_PATH=$CI_PROJECT_ID #some version of gitlab has problems with searching by project path
- export DANGER_GITLAB_HOST=gitlab.isc.org
- export DANGER_GITLAB_API_BASE_URL=https://gitlab.isc.org/api/v4
script:
- danger --fail-on-errors=true --new-comment
duplicate-includes:
stage: test
<<: *rules_for_test_stage
script:
- ./tools/check-for-duplicate-includes.sh
duplicate-log-messages:
stage: test
<<: *rules_for_test_stage
script:
- ./tools/check-messages.py
uninstalled-headers:
stage: test
<<: *rules_for_test_stage
script:
- ./tools/find-uninstalled-headers.py
missing-api-commands:
stage: test
<<: *rules_for_test_stage
script:
- ./tools/check-for-missing-api-commands.sh
missing-config-h-include:
stage: test
<<: *rules_for_test_stage
script:
- FILES=$(./tools/add-config-h.sh -n)
- printf '%s\n' "${FILES}"
- test -z "${FILES}"
missing-git-attribute:
stage: test
<<: *rules_for_test_stage
script:
- git_diff=$(git diff)
- if test -n "${git_diff}"; then printf '%s\n\ngit diff should be empty here under all circumstances. CI broken?\n' "${git_diff}"; exit 1; fi
- ./tools/print-generated-files.sh -a
- git_diff=$(git diff)
- if test -n "${git_diff}"; then printf '%s\n\n.gitattributes are missing a generated file. Please run "./tools/print-generated-files.sh -a" and commit the resulting change to fix them.\n' "${git_diff}"; exit 1; fi
shellcheck:
stage: test
<<: *rules_for_test_stage
script:
- ./tools/shellcheck-all.sh
.base_get_list_of_modified_files: &get_modified_files
- MODIFIED_FILES=$(git diff --name-only $(git merge-base origin/master HEAD))
- echo "${MODIFIED_FILES}"
.base_get_list_of_python_scripts: &get_python_scripts
- PYTHON_SCRIPTS=$(find ${INPUT-.} -type f -not -path './.git/*' -and \( -name '*.py' -or -name '*.py.in' \) | sort)
- echo "${PYTHON_SCRIPTS}"
- if test -z "${PYTHON_SCRIPTS}"; then echo "No python scripts to check. Exiting early."; exit 0; fi
bandit:
stage: test
<<: *rules_for_test_stage
script:
- bandit -r ./src -x ./.git
pycodestyle:
stage: test
<<: *rules_for_test_stage
script:
# - *get_modified_files
# - INPUT="${MODIFIED_FILES}"
- *get_python_scripts
- pycodestyle --config=.gitlab/ci/pycodestyle.cfg ${PYTHON_SCRIPTS}
pylint:
stage: test
<<: *rules_for_test_stage
script:
# - *get_modified_files
# - INPUT="${MODIFIED_FILES}"
- *get_python_scripts
- pylint --jobs "$(nproc || gnproc || echo 1)" --rcfile ./.gitlab/ci/pylint.rc ${PYTHON_SCRIPTS}
# If we reached this point, it means pylint passed. Run again with all warnings enabled, but ignore the return code to show a list of improvements that the developer could do, even when CI is passing.
- pylint --jobs "$(nproc || gnproc || echo 1)" --rcfile ./.gitlab/ci/pylint.rc --enable all ${PYTHON_SCRIPTS} || true
############################## Fuzzing ##############################
# Fuzz code changes. Fuzzes all merge requests.
fuzz:
image:
name: "${CFL_IMAGE}"
entrypoint: ['']
stage: fuzz
tags:
- docker-fuzz
needs: []
parallel:
matrix:
- SANITIZER: [address, undefined]
rules:
# On merge request.
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
variables:
MODE: "code-change"
when: manual
allow_failure: true
# And on push to master.
- if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
when: always
before_script:
# Get GitLab's container id.
- export CFL_CONTAINER_ID=`docker ps -q -f "label=com.gitlab.gitlab-runner.job.id=$CI_JOB_ID" -f "label=com.gitlab.gitlab-runner.type=build"`
script:
# local cfl-cache to mounted volume
- if ! test -L cfl-cache; then ln -s /cfl-cache cfl-cache; fi
# Will build and run the fuzzers.
- python3 "/opt/oss-fuzz/infra/cifuzz/cifuzz_combined_entrypoint.py"
artifacts:
# Upload artifacts when a crash makes the job fail.
when: always
expire_in: 30 days
paths:
- "${CFL_ARTIFACTS_DIR}"
# Batch fuzzing enables continuous, regular fuzzing on your latest HEAD
# and allows a corpus of inputs to build up over time, which greatly improves
# the effectiveness of fuzzing. Batch fuzzing should be run on a schedule.
fuzz-batch:
image:
name: "${CFL_IMAGE}"
entrypoint: ['']
stage: fuzz
needs: []
tags:
- docker-fuzz
variables:
FUZZ_SECONDS: 86400 # 24 hours
rules:
- if: $MODE == "batch"
before_script:
- export CFL_CONTAINER_ID=`docker ps -q -f "label=com.gitlab.gitlab-runner.job.id=$CI_JOB_ID" -f "label=com.gitlab.gitlab-runner.type=build"`
script:
- python3 "/opt/oss-fuzz/infra/cifuzz/cifuzz_combined_entrypoint.py"
artifacts:
when: always
expire_in: 30 days
paths:
- "${CFL_ARTIFACTS_DIR}"
# Corpus pruning is a helper function that minimizes the corpuses by
# removing corpus files (testcases) that do not increase the fuzzer’s
# code coverage.
fuzz-prune:
image:
name: "${CFL_IMAGE}"
entrypoint: ['']
stage: fuzz
needs: []
tags:
- docker-fuzz
rules:
- if: $MODE == "prune"
before_script:
- export CFL_CONTAINER_ID=`docker ps -q -f "label=com.gitlab.gitlab-runner.job.id=$CI_JOB_ID" -f "label=com.gitlab.gitlab-runner.type=build"`
script:
- python3 "/opt/oss-fuzz/infra/cifuzz/cifuzz_combined_entrypoint.py"
artifacts:
when: always
expire_in: 30 days
paths:
- "${CFL_ARTIFACTS_DIR}"
# Continuous builds are used when a crash is found during MR fuzzing to determine
# whether the crash was newly introduced. If the crash was not newly introduced,
# MR fuzzing will not report it. This means that there will be fewer unrelated
# failures when running code change fuzzing.
fuzz-build:
image:
name: "${CFL_IMAGE}"
entrypoint: ['']
stage: fuzz
needs: []
tags:
- docker-fuzz
rules:
# Use $CI_DEFAULT_BRANCH or $CFL_BRANCH.
- if: $CI_COMMIT_BRANCH == $CFL_BRANCH && $CI_PIPELINE_SOURCE == "push"
variables:
MODE: "code-change"
UPLOAD_BUILD: "true"
before_script:
- export CFL_CONTAINER_ID=`docker ps -q -f "label=com.gitlab.gitlab-runner.job.id=$CI_JOB_ID" -f "label=com.gitlab.gitlab-runner.type=build"`
script:
- python3 "/opt/oss-fuzz/infra/cifuzz/cifuzz_combined_entrypoint.py"
artifacts:
when: always
expire_in: 30 days
paths:
- "${CFL_ARTIFACTS_DIR}"
# scheduled job - generates periodic coverage reports
fuzz-coverage:
image:
name: "${CFL_IMAGE}"
entrypoint: ['']
stage: fuzz
needs: []
tags:
- docker-fuzz
variables:
SANITIZER: "coverage"
rules:
- if: $MODE == "coverage"
before_script:
- export CFL_CONTAINER_ID=`cut -c9- < /proc/1/cpuset`
script:
- python3 "/opt/oss-fuzz/infra/cifuzz/cifuzz_combined_entrypoint.py"
after_script:
- shasum /opt/kea/sbin/*
- shasum /tmp/not-out/*/*
- shasum ${OUT}/*/*
artifacts:
when: always
expire_in: 30 days
paths:
- "${CFL_ARTIFACTS_DIR}"
############################### SAST ################################
# Read more about this feature here: https://docs.gitlab.com/ee/user/application_security/sast/
#
# Configure SAST with CI/CD variables (https://docs.gitlab.com/ee/ci/variables/index.html).
# List of available variables: https://docs.gitlab.com/ee/user/application_security/sast/index.html#available-variables
include:
- template: Security/SAST.gitlab-ci.yml
.sast-analyzer:
extends: sast
stage: test
allow_failure: true
script:
- /analyzer run
flawfinder-sast:
extends: .sast-analyzer
image:
name: "$SAST_ANALYZER_IMAGE"
variables:
SAST_ANALYZER_IMAGE_TAG: latest
SAST_ANALYZER_IMAGE: "$SECURE_ANALYZERS_PREFIX/flawfinder:$SAST_ANALYZER_IMAGE_TAG"
rules:
- if: $SAST_DISABLED
when: never
- if: $CI_PIPELINE_SOURCE == 'schedule'
when: never
- if: $SAST_EXCLUDED_ANALYZERS =~ /flawfinder/
when: never
- when: always
semgrep-sast:
extends: .sast-analyzer
rules:
- if: $SAST_DISABLED
when: never
- if: $CI_PIPELINE_SOURCE == 'schedule'
when: never
- if: $SAST_EXCLUDED_ANALYZERS =~ /semgrep/
when: never
- when: always