- Debug-level logging
Error response from daemon: error processing tar file: docker-tar: relocation error
- Getting warning message
gl-dependency-scanning-report.json: no matching files
- Limitation when using rules:exists
- Error:
dependency_scanning is used for configuration only, and its script should not be executed
- Import multiple certificates for Java-based projects
- Dependency Scanning job fails with message
strconv.ParseUint: parsing "0.0": invalid syntax
- Message
<file> does not exist in <commit SHA>
- You no longer get the latest Docker image after setting
DS_MAJOR_VERSION
orDS_ANALYZER_IMAGE
- Dependency Scanning of setuptools project fails with
use_2to3 is invalid
error - Dependency Scanning of projects using psycopg2 fails with
pg_config executable not found
error NoSuchOptionException
when usingpoetry config http-basic
withCI_JOB_TOKEN
- Error: Project has
<number>
unresolved dependencies - Setting build constraints when scanning Go projects
- Dependency Scanning of Go projects returns false positives
Troubleshooting Dependency Scanning
When working with dependency scanning, you might encounter the following issues.
Debug-level logging
Debug-level logging can help when troubleshooting. For details, see debug-level logging.
Working around missing support for certain languages or package managers
As noted in the “Supported languages” section some dependency definition files are not yet supported. However, Dependency Scanning can be achieved if the language, a package manager, or a third-party tool can convert the definition file into a supported format.
Generally, the approach is the following:
- Define a dedicated converter job in your
.gitlab-ci.yml
file. Use a suitable Docker image, script, or both to facilitate the conversion. - Let that job upload the converted, supported file as an artifact.
- Add
dependencies: [<your-converter-job>]
to yourdependency_scanning
job to make use of the converted definitions files.
For example, Poetry projects that only have a pyproject.toml
file can generate the poetry.lock
file as follows.
include:
- template: Security/Dependency-Scanning.gitlab-ci.yml
stages:
- test
gemnasium-python-dependency_scanning:
# Work around https://gitlab.com/gitlab-org/gitlab/-/issues/32774
before_script:
- pip install "poetry>=1,<2" # Or via another method: https://python-poetry.org/docs/#installation
- poetry update --lock # Generates the lock file to be analyzed.
Error response from daemon: error processing tar file: docker-tar: relocation error
This error occurs when the Docker version that runs the dependency scanning job is 19.03.0
.
Consider updating to Docker 19.03.1
or greater. Older versions are not
affected. Read more in
this issue.
Getting warning message gl-dependency-scanning-report.json: no matching files
For information on this, see the general Application Security troubleshooting section.
Error response from daemon: error processing tar file: docker-tar: relocation error
This error occurs when the Docker version that runs the dependency scanning job is 19.03.0
.
Consider updating to Docker 19.03.1
or greater. Older versions are not
affected. Read more in
this issue.
Getting warning message gl-dependency-scanning-report.json: no matching files
For information, see the general Application Security troubleshooting section.
Limitation when using rules:exists
The dependency scanning CI template
uses the rules:exists
syntax. This directive is limited to 10000 checks and always returns true
after reaching this
number. Because of this, and depending on the number of files in your repository, a dependency
scanning job might be triggered even if the scanner doesn’t support your project.
Error: dependency_scanning is used for configuration only, and its script should not be executed
For information, see the GitLab Secure troubleshooting section.
Import multiple certificates for Java-based projects
The gemnasium-maven
analyzer reads the contents of the ADDITIONAL_CA_CERT_BUNDLE
variable using keytool
, which imports either a single certificate or a certificate chain. Multiple unrelated certificates are ignored and only the first one is imported by keytool
.
To add multiple unrelated certificates to the analyzer, you can declare a before_script
such as this in the definition of the gemnasium-maven-dependency_scanning
job:
gemnasium-maven-dependency_scanning:
before_script:
- . $HOME/.bashrc # make the java tools available to the script
- OIFS="$IFS"; IFS=""; echo $ADDITIONAL_CA_CERT_BUNDLE > multi.pem; IFS="$OIFS" # write ADDITIONAL_CA_CERT_BUNDLE variable to a PEM file
- csplit -z --digits=2 --prefix=cert multi.pem "/-----END CERTIFICATE-----/+1" "{*}" # split the file into individual certificates
- for i in `ls cert*`; do keytool -v -importcert -alias "custom-cert-$i" -file $i -trustcacerts -noprompt -storepass changeit -keystore /opt/asdf/installs/java/adoptopenjdk-11.0.7+10.1/lib/security/cacerts 1>/dev/null 2>&1 || true; done # import each certificate using keytool (note the keystore location is related to the Java version being used and should be changed accordingly for other versions)
- unset ADDITIONAL_CA_CERT_BUNDLE # unset the variable so that the analyzer doesn't duplicate the import
Dependency Scanning job fails with message strconv.ParseUint: parsing "0.0": invalid syntax
Invoking Docker-in-Docker is the likely cause of this error. Docker-in-Docker is:
- Disabled by default in GitLab 13.0 and later.
- Unsupported from GitLab 13.4 and later.
To fix this error, disable Docker-in-Docker for dependency scanning. Individual
<analyzer-name>-dependency_scanning
jobs are created for each analyzer that runs in your CI/CD
pipeline.
include:
- template: Dependency-Scanning.gitlab-ci.yml
variables:
DS_DISABLE_DIND: "true"
Message <file> does not exist in <commit SHA>
When the Location
of a dependency in a file is shown, the path in the link goes to a specific Git
SHA.
If the lock file that our dependency scanning tools reviewed was cached, however, selecting that
link redirects you to the repository root, with the message:
<file> does not exist in <commit SHA>
.
The lock file is cached during the build phase and passed to the dependency scanning job before the
scan occurs. Because the cache is downloaded before the analyzer run occurs, the existence of a lock
file in the CI_BUILDS_DIR
directory triggers the dependency scanning job.
To prevent this warning, lock files should be committed.
You no longer get the latest Docker image after setting DS_MAJOR_VERSION
or DS_ANALYZER_IMAGE
If you have manually set DS_MAJOR_VERSION
or DS_ANALYZER_IMAGE
for specific reasons,
and now must update your configuration to again get the latest patched versions of our
analyzers, edit your .gitlab-ci.yml
file and either:
- Set your
DS_MAJOR_VERSION
to match the latest version as seen in our current Dependency Scanning template. -
If you hardcoded the
DS_ANALYZER_IMAGE
variable directly, change it to match the latest line as found in our current Dependency Scanning template. The line number varies depending on which scanning job you edited.For example, the
gemnasium-maven-dependency_scanning
job pulls the latestgemnasium-maven
Docker image becauseDS_ANALYZER_IMAGE
is set to"$SECURE_ANALYZERS_PREFIX/gemnasium-maven:$DS_MAJOR_VERSION"
.
Dependency Scanning of setuptools project fails with use_2to3 is invalid
error
Support for 2to3
was removed
in setuptools
version v58.0.0
. Dependency Scanning (running python 3.9
) uses setuptools
version 58.1.0+
, which doesn’t support 2to3
. Therefore, a setuptools
dependency relying on
lib2to3
fails with this message:
error in <dependency name> setup command: use_2to3 is invalid
To work around this error, downgrade the analyzer’s version of setuptools
(for example, v57.5.0
):
gemnasium-python-dependency_scanning:
before_script:
- pip install setuptools==57.5.0
Dependency Scanning of projects using psycopg2 fails with pg_config executable not found
error
Scanning a Python project that depends on psycopg2
can fail with this message:
Error: pg_config executable not found.
psycopg2 depends on the libpq-dev
Debian package,
which is not installed in the gemnasium-python
Docker image. To work around this error,
install the libpq-dev
package in a before_script
:
gemnasium-python-dependency_scanning:
before_script:
- apt-get update && apt-get install -y libpq-dev
NoSuchOptionException
when using poetry config http-basic
with CI_JOB_TOKEN
This error can occur when the automatically generated CI_JOB_TOKEN
starts with a hyphen (-
).
To avoid this error, follow Poetry’s configuration advice.
Error: Project has <number>
unresolved dependencies
The error message Project has <number> unresolved dependencies
indicates a dependency resolution problem caused by your gradle.build
or gradle.build.kts
file. In the current release, gemnasium-maven
cannot continue processing when an unresolved dependency is encountered. However, There is an open issue to allow gemnasium-maven
to recover from unresolved dependency errors and produce a dependency graph. Until this issue has been resolved, consult the Gradle dependency resolution documentation for details on how to fix your gradle.build
file.
Setting build constraints when scanning Go projects
Dependency scanning runs within a linux/amd64
container. As a result, the build list generated
for a Go project contains dependencies that are compatible with this environment. If your deployment environment is not
linux/amd64
, the final list of dependencies might contain additional incompatible
modules. The dependency list might also omit modules that are only compatible with your deployment environment. To prevent
this issue, you can configure the build process to target the operating system and architecture of the deployment
environment by setting the GOOS
and GOARCH
environment variables
of your .gitlab-ci.yml
file.
For example:
variables:
GOOS: "darwin"
GOARCH: "arm64"
You can also supply build tag constraints by using the GOFLAGS
variable:
variables:
GOFLAGS: "-tags=test_feature"
Dependency Scanning of Go projects returns false positives
The go.sum
file contains an entry of every module that was considered while generating the project’s build list.
Multiple versions of a module are included in the go.sum
file, but the MVS
algorithm used by go build
only selects one. As a result, when dependency scanning uses go.sum
, it might report false positives.
To prevent false positives, Gemnasium only uses go.sum
if it is unable to generate the build list for the Go project. If go.sum
is selected, a warning occurs:
[WARN] [Gemnasium] [2022-09-14T20:59:38Z] ▶ Selecting "go.sum" parser for "/test-projects/gitlab-shell/go.sum". False positives may occur. See https://gitlab.com/gitlab-org/gitlab/-/issues/321081.