Skip to content

Commit

Permalink
[7.0.1] Fix bootstrapped Bazel binary (#20612)
Browse files Browse the repository at this point in the history
For the bootstrap VanillaJavaBuilder, it is important that the AutoValue
plugin classes do not end up in the deploy jar. If they do, the
processor class is loaded from the app classloader (instead of the
processor path classloader). When this happens, AutoValueProcessor uses
the app classloader to load extensions (such as auto-value-gson needed
by bzlmod), instead of the processor path classloader. Unless all
extensions are also correctly present in the app classloder (i.e. in the
VanillaJavaBuilder deploy jar), they won't be loaded.

Unfortunately, simply adding the jars to the deploy jar is insufficient,
we need to also correctly merge the `META-INF/service/...` files as
well, which does not happen in our bootstrap java_binary/java_library
rules. So, to fix, we remove the auto value plugins from the deploy jar,
and use them only to compile our sources that require them.

Added a regression test for the crash. We should probably improve it so
that we can actually build with the bootstapped Bazel in tests without
network access. But I don't think we need block this patch release on
that.

Fixes #20501

Commit
2a2def8

PiperOrigin-RevId: 592266992
Change-Id: I08ac91ee74140df0c4f22ad2553a8c017b497181

Co-authored-by: Googler <hvd@google.com>
  • Loading branch information
bazel-io and hvadehra committed Dec 19, 2023
1 parent 8f689c0 commit 8f4b115
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
load("@rules_java//java:defs.bzl", "java_binary", "java_library")
load("//tools/build_rules:java_rules_skylark.bzl", "bootstrap_java_binary", "bootstrap_java_library")
load("@rules_java//java:defs.bzl", "java_binary", "java_library")

# Description:
# The Java library builders, which are used by Bazel to compile Java
Expand Down Expand Up @@ -174,14 +174,14 @@ bootstrap_java_library(
name = "starlark-deps",
srcs = ["//:bootstrap-derived-java-srcs"],
jars = [
"//third_party:auto_value-jars",
"//:bootstrap-derived-java-jars",
"//third_party:bootstrap_guava_and_error_prone-jars",
"//third_party:jsr305-jars",
"//third_party/java/jacoco:core-jars",
"//third_party/grpc-java:bootstrap-grpc-jars",
"//third_party:tomcat_annotations_api-jars",
],
neverlink_jars = ["//third_party:auto_value-jars"],
tags = ["manual"],
)

Expand Down Expand Up @@ -213,6 +213,7 @@ bootstrap_java_binary(
"javac/WerrorCustomOption.java",
],
main_class = "com.google.devtools.build.buildjar.VanillaJavaBuilder",
neverlink_jars = ["//third_party:auto_value-jars"],
tags = ["manual"],
deps = [
":starlark-deps",
Expand Down
11 changes: 11 additions & 0 deletions src/test/shell/bazel/bazel_bootstrap_distfile_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,22 @@ function test_bootstrap() {

env EXTRA_BAZEL_ARGS="--tool_java_runtime_version=local_jdk" ./compile.sh \
|| fail "Expected to be able to bootstrap bazel. If you updated MODULE.bazel, see the NOTE in that file."

./output/bazel \
--server_javabase=$JAVABASE --host_jvm_args=--add-opens=java.base/java.nio=ALL-UNNAMED \
version --nognu_format &> "${TEST_log}" \
|| fail "Generated bazel not working"
expect_log "${SOURCE_DATE_EPOCH}"

# TODO: make the build work without network and check for success
# the repo cache is currently missing:
# 1) canonical IDs
# 2) remote jdks & java_tools (if not using a custom java_toolchain)
./output/bazel \
--server_javabase=$JAVABASE --host_jvm_args=--add-opens=java.base/java.nio=ALL-UNNAMED \
build --nobuild --repository_cache=derived/repository_cache \
//src:bazel_nojdk &> "${TEST_log}" || true
expect_not_log "FATAL: bazel crashed due to an internal error"
}

run_suite "bootstrap test"

0 comments on commit 8f4b115

Please sign in to comment.