mercedes-benz / sechub

SecHub provides a central API to test software with different security tools.
https://mercedes-benz.github.io/sechub/
MIT License
259 stars 58 forks source link

Ensure SecHub release builds are reproducible #1919

Open Jeeppler opened 1 year ago

Jeeppler commented 1 year ago

Problem

Reproducible builds means, we can reproduce the same artifacts based on the same git commit and java version regardless of the machine we build it (more information can be found at: https://reproducible-builds.org/).

There are some challenges with reproducible builds and Java. Those challenges are explained here: https://reproducible-builds.org/docs/jvm/.

Gradle supports reproducible builds since 3.4: https://docs.gradle.org/current/userguide/working_with_files.html#sec:reproducible_archives.

For the Go programming language there is some article: https://words.filippo.io/reproducing-go-binaries-byte-by-byte/.

Wanted

de-jcup commented 1 year ago

Our builds should be reproduceable since the first initial commit SecHub:

So normally a restart of a build must produce the same jar/go file.

The only pain points are IMO:

But I would leave that out here.

So IMO we have this already, so my questions: If you build the same commit two times with our GitHub workflows, do we currently have

Is there any other reason for this issue?

Jeeppler commented 1 year ago

First, while in theory the builds should be byte-to-byte reproducible, I am almost sure nobody ever verified that.

Second, there are issues with the ordering in ZIP files and timestamps with Java. In addition, the SecHub executables are zipped and might have the same problems.

company-jcup commented 1 year ago

We verified this inside the team and...

user> sha256sum sechub-pds/build/libs/sechub-pds-0.38.0.jar
c7fe96cdf07510999e9e2a58ef046538e790f6dc7e233d90f5ecc3ec473bb30b  sechub-pds/build/libs/sechub-pds-0.38.0.jar
fc902fe289170c3e5db0d3f177765f029304db730b9586fdd9fb4180310566a1  sechub-pds-0.38.0.jar

user> sha256sum sechub-server/build/libs/sechub-server-0.43.0.jar
7aaacfec41ff8f285e190acba0d0747831d2b00427c18feec9280264f1c36ef9  sechub-server/build/libs/sechub-server-0.43.0.jar
7440ff5cd6896ddebf9e61486188e43849caa9e909445d5a69a32ff74d9ecbdf  sechub-server-0.43.0.jar

unfortunately local builds and github actions build provide different binaries.

We tried also to build the jars locally multiple times and the sha256 checksum did change here as well!!

sven-dmlr commented 1 year ago

Same for the Go client:

> ./gradlew buildGo
> sha256sum sechub-cli/build/go/platform/linux-386/sechub
04a398c857df676650c558797435a29ea568be819ab8f4467cdedc8f879b37bf  sechub-cli/build/go/platform/linux-386/sechub

> ./gradlew buildGo
> sha256sum sechub-cli/build/go/platform/linux-386/sechub
50e758b13d89b180d2bdb8e466cf447f3389b980cd10948ac778271a781101ac  sechub-cli/build/go/platform/linux-386/sechub