Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tinyjson compilation is not reproducible #2092

Closed
cameron-martin opened this issue Aug 2, 2023 · 1 comment · Fixed by #2216
Closed

Tinyjson compilation is not reproducible #2092

cameron-martin opened this issue Aug 2, 2023 · 1 comment · Fixed by #2216
Labels

Comments

@cameron-martin
Copy link
Contributor

cameron-martin commented Aug 2, 2023

When compiling tinyjson, the hashes of the outputs differ between clean builds:

***************
*** 188019,188040 ****
    }
  }
  listed_outputs: "bazel-out/k8-opt-exec-CF7D65A3/bin/external/rules_rust_tinyjson/libtinyjson-4031717389.rlib"
  remotable: true
  cacheable: true
  progress_message: "Compiling Rust (without process_wrapper) rlib tinyjson (4 files) [for tool]"
  mnemonic: "Rustc"
  actual_outputs {
    path: "bazel-out/k8-opt-exec-CF7D65A3/bin/external/rules_rust_tinyjson/libtinyjson-4031717389.rlib"
    digest {
!     hash: "92a2c8e00550cc2e26a93d9e53beaa4a7b826d21c5112556eed9cb008435c88e"
!     size_bytes: 633710
      hash_function_name: "SHA-256"
    }
  }
  runner: "linux-sandbox"
  remote_cacheable: true
  target_label: "@rules_rust_tinyjson//:tinyjson"
  
  
  ---------------------------------------------------------
  
--- 188019,188040 ----
    }
  }
  listed_outputs: "bazel-out/k8-opt-exec-CF7D65A3/bin/external/rules_rust_tinyjson/libtinyjson-4031717389.rlib"
  remotable: true
  cacheable: true
  progress_message: "Compiling Rust (without process_wrapper) rlib tinyjson (4 files) [for tool]"
  mnemonic: "Rustc"
  actual_outputs {
    path: "bazel-out/k8-opt-exec-CF7D65A3/bin/external/rules_rust_tinyjson/libtinyjson-4031717389.rlib"
    digest {
!     hash: "3ea14e1e2f634961bfeb2d3ba2e9e690dd16c1991bd2a353583994b0098bd509"
!     size_bytes: 633702
      hash_function_name: "SHA-256"
    }
  }
  runner: "linux-sandbox"
  remote_cacheable: true
  target_label: "@rules_rust_tinyjson//:tinyjson"

I ran diffoscope on the output and this is the result: tj_diff.txt. It looks like the paths of files in the sandbox are being written to the library. This is similar to #1530, but this is using Linux (Ubuntu 22.04).

@UebelAndre UebelAndre added the bug label Aug 25, 2023
@UebelAndre
Copy link
Collaborator

This feels like a bug in the rust compiler. Have you been able to find any relevant issues in the rust-lang org?

UebelAndre added a commit that referenced this issue Oct 27, 2023
#2216)

This change aims to ensure the process wrapper is built
determinisitically, thus reducing churn in cases where multiple
developers share a bazel remote cache. The shared cache is notable as
the binaries can be deterministically produced for a single user for a
single checkout as some host information is embedded in the compiled
binaries. The host information is stored in the `debug-info` section of
the executable. This can be resolved by stripping it. The other issue of
determinism is `rust_binary_without_process_wrapper` does not resolve
`${pwd}` like the process wrapper does, thus stripping sandbox paths
from rustc outputs. To solve for this a small bash and batch script was
added to account for this behavior. The intent of these scripts is to
use __no__ host executables and instead rely on pure bash and batch to
accomplish this and keep any actions which use this as hermetic as
possible.


The following tables were produced on macOS. Note that `rules_rust_2` is
simply another checkout of `rules_rust` on the same commit

Before the changes in this PR:

| path | rules_rust sha256 | rules_rust_2 sha256 |
| --- | --- | --- |
|
bazel-out/darwin_arm64-opt-exec-2B5CBBC6/bin/external/rules_rust_tinyjson/libtinyjson-4031717389.rlib
| 60db194b3e98b67cc0702c6b6c48c5bc8fcf7d723f3ece6a7a24a53888158c7e |
3eac0b443ba160e3a1bde3b023f4e953bb9fc9722e430b5ded6dbb723bc2b532 |
|
bazel-out/darwin_arm64-opt-exec-2B5CBBC6/bin/util/process_wrapper/process_wrapper
| 32e7840602c977b76bba0bc39da768d35db3e7a17dbf96e455727be2b2f0151f |
0d248279bbc9b17be5914b41a66759f939ef4da77f8a40a5ce6fa3bf339648ad |

After the changes:

| path | rules_rust sha256 | rules_rust_2 sha256 |
| --- | --- | --- |
|
bazel-out/darwin_arm64-opt-exec-2B5CBBC6/bin/external/rules_rust_tinyjson/libtinyjson-4031717389.rlib
| 07432f5d207da854266ccde212243c67c29907f81a7619434ce9f608b1658d96 |
07432f5d207da854266ccde212243c67c29907f81a7619434ce9f608b1658d96 |
|
bazel-out/darwin_arm64-opt-exec-2B5CBBC6/bin/util/process_wrapper/process_wrapper
| cbf17392338aabfc942d975f95a49a67b731c5e597a7d27e3d9cf4d4a06b8f2c |
cbf17392338aabfc942d975f95a49a67b731c5e597a7d27e3d9cf4d4a06b8f2c |

closes #2092
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants