1#!/bin/sh 2# SPDX-License-Identifier: GPL-2.0 3# 4# Tests whether a suitable Rust toolchain is available. 5 6set -e 7 8min_tool_version=$(dirname $0)/min-tool-version.sh 9 10# Convert the version string x.y.z to a canonical up-to-7-digits form. 11# 12# Note that this function uses one more digit (compared to other 13# instances in other version scripts) to give a bit more space to 14# `rustc` since it will reach 1.100.0 in late 2026. 15get_canonical_version() 16{ 17 IFS=. 18 set -- $1 19 echo $((100000 * $1 + 100 * $2 + $3)) 20} 21 22# Print a reference to the Quick Start guide in the documentation. 23print_docs_reference() 24{ 25 echo >&2 "***" 26 echo >&2 "*** Please see Documentation/rust/quick-start.rst for details" 27 echo >&2 "*** on how to set up the Rust support." 28 echo >&2 "***" 29} 30 31# Print an explanation about the fact that the script is meant to be called from Kbuild. 32print_kbuild_explanation() 33{ 34 echo >&2 "***" 35 echo >&2 "*** This script is intended to be called from Kbuild." 36 echo >&2 "*** Please use the 'rustavailable' target to call it instead." 37 echo >&2 "*** Otherwise, the results may not be meaningful." 38 exit 1 39} 40 41# If the script fails for any reason, or if there was any warning, then 42# print a reference to the documentation on exit. 43warning=0 44trap 'if [ $? -ne 0 ] || [ $warning -ne 0 ]; then print_docs_reference; fi' EXIT 45 46# Check that the expected environment variables are set. 47if [ -z "${RUSTC+x}" ]; then 48 echo >&2 "***" 49 echo >&2 "*** Environment variable 'RUSTC' is not set." 50 print_kbuild_explanation 51fi 52 53if [ -z "${BINDGEN+x}" ]; then 54 echo >&2 "***" 55 echo >&2 "*** Environment variable 'BINDGEN' is not set." 56 print_kbuild_explanation 57fi 58 59if [ -z "${CC+x}" ]; then 60 echo >&2 "***" 61 echo >&2 "*** Environment variable 'CC' is not set." 62 print_kbuild_explanation 63fi 64 65# Check that the Rust compiler exists. 66if ! command -v "$RUSTC" >/dev/null; then 67 echo >&2 "***" 68 echo >&2 "*** Rust compiler '$RUSTC' could not be found." 69 echo >&2 "***" 70 exit 1 71fi 72 73# Check that the Rust bindings generator exists. 74if ! command -v "$BINDGEN" >/dev/null; then 75 echo >&2 "***" 76 echo >&2 "*** Rust bindings generator '$BINDGEN' could not be found." 77 echo >&2 "***" 78 exit 1 79fi 80 81# Check that the Rust compiler version is suitable. 82# 83# Non-stable and distributions' versions may have a version suffix, e.g. `-dev`. 84rust_compiler_output=$( \ 85 LC_ALL=C "$RUSTC" --version 2>/dev/null 86) || rust_compiler_code=$? 87if [ -n "$rust_compiler_code" ]; then 88 echo >&2 "***" 89 echo >&2 "*** Running '$RUSTC' to check the Rust compiler version failed with" 90 echo >&2 "*** code $rust_compiler_code. See output and docs below for details:" 91 echo >&2 "***" 92 echo >&2 "$rust_compiler_output" 93 echo >&2 "***" 94 exit 1 95fi 96rust_compiler_version=$( \ 97 echo "$rust_compiler_output" \ 98 | sed -nE '1s:.*rustc ([0-9]+\.[0-9]+\.[0-9]+).*:\1:p' 99) 100if [ -z "$rust_compiler_version" ]; then 101 echo >&2 "***" 102 echo >&2 "*** Running '$RUSTC' to check the Rust compiler version did not return" 103 echo >&2 "*** an expected output. See output and docs below for details:" 104 echo >&2 "***" 105 echo >&2 "$rust_compiler_output" 106 echo >&2 "***" 107 exit 1 108fi 109rust_compiler_min_version=$($min_tool_version rustc) 110rust_compiler_cversion=$(get_canonical_version $rust_compiler_version) 111rust_compiler_min_cversion=$(get_canonical_version $rust_compiler_min_version) 112if [ "$rust_compiler_cversion" -lt "$rust_compiler_min_cversion" ]; then 113 echo >&2 "***" 114 echo >&2 "*** Rust compiler '$RUSTC' is too old." 115 echo >&2 "*** Your version: $rust_compiler_version" 116 echo >&2 "*** Minimum version: $rust_compiler_min_version" 117 echo >&2 "***" 118 exit 1 119fi 120 121# Check that the Rust bindings generator is suitable. 122# 123# Non-stable and distributions' versions may have a version suffix, e.g. `-dev`. 124# 125# The dummy parameter `workaround-for-0.69.0` is required to support 0.69.0 126# (https://github.com/rust-lang/rust-bindgen/pull/2678). It can be removed when 127# the minimum version is upgraded past that (0.69.1 already fixed the issue). 128rust_bindings_generator_output=$( \ 129 LC_ALL=C "$BINDGEN" --version workaround-for-0.69.0 2>/dev/null 130) || rust_bindings_generator_code=$? 131if [ -n "$rust_bindings_generator_code" ]; then 132 echo >&2 "***" 133 echo >&2 "*** Running '$BINDGEN' to check the Rust bindings generator version failed with" 134 echo >&2 "*** code $rust_bindings_generator_code. See output and docs below for details:" 135 echo >&2 "***" 136 echo >&2 "$rust_bindings_generator_output" 137 echo >&2 "***" 138 exit 1 139fi 140rust_bindings_generator_version=$( \ 141 echo "$rust_bindings_generator_output" \ 142 | sed -nE '1s:.*bindgen ([0-9]+\.[0-9]+\.[0-9]+).*:\1:p' 143) 144if [ -z "$rust_bindings_generator_version" ]; then 145 echo >&2 "***" 146 echo >&2 "*** Running '$BINDGEN' to check the bindings generator version did not return" 147 echo >&2 "*** an expected output. See output and docs below for details:" 148 echo >&2 "***" 149 echo >&2 "$rust_bindings_generator_output" 150 echo >&2 "***" 151 exit 1 152fi 153rust_bindings_generator_min_version=$($min_tool_version bindgen) 154rust_bindings_generator_cversion=$(get_canonical_version $rust_bindings_generator_version) 155rust_bindings_generator_min_cversion=$(get_canonical_version $rust_bindings_generator_min_version) 156if [ "$rust_bindings_generator_cversion" -lt "$rust_bindings_generator_min_cversion" ]; then 157 echo >&2 "***" 158 echo >&2 "*** Rust bindings generator '$BINDGEN' is too old." 159 echo >&2 "*** Your version: $rust_bindings_generator_version" 160 echo >&2 "*** Minimum version: $rust_bindings_generator_min_version" 161 echo >&2 "***" 162 exit 1 163fi 164 165# Check that the `libclang` used by the Rust bindings generator is suitable. 166# 167# In order to do that, first invoke `bindgen` to get the `libclang` version 168# found by `bindgen`. This step may already fail if, for instance, `libclang` 169# is not found, thus inform the user in such a case. 170bindgen_libclang_output=$( \ 171 LC_ALL=C "$BINDGEN" $(dirname $0)/rust_is_available_bindgen_libclang.h 2>&1 >/dev/null 172) || bindgen_libclang_code=$? 173if [ -n "$bindgen_libclang_code" ]; then 174 echo >&2 "***" 175 echo >&2 "*** Running '$BINDGEN' to check the libclang version (used by the Rust" 176 echo >&2 "*** bindings generator) failed with code $bindgen_libclang_code. This may be caused by" 177 echo >&2 "*** a failure to locate libclang. See output and docs below for details:" 178 echo >&2 "***" 179 echo >&2 "$bindgen_libclang_output" 180 echo >&2 "***" 181 exit 1 182fi 183 184# `bindgen` returned successfully, thus use the output to check that the version 185# of the `libclang` found by the Rust bindings generator is suitable. 186# 187# Unlike other version checks, note that this one does not necessarily appear 188# in the first line of the output, thus no `sed` address is provided. 189bindgen_libclang_version=$( \ 190 echo "$bindgen_libclang_output" \ 191 | sed -nE 's:.*clang version ([0-9]+\.[0-9]+\.[0-9]+).*:\1:p' 192) 193if [ -z "$bindgen_libclang_version" ]; then 194 echo >&2 "***" 195 echo >&2 "*** Running '$BINDGEN' to check the libclang version (used by the Rust" 196 echo >&2 "*** bindings generator) did not return an expected output. See output" 197 echo >&2 "*** and docs below for details:" 198 echo >&2 "***" 199 echo >&2 "$bindgen_libclang_output" 200 echo >&2 "***" 201 exit 1 202fi 203bindgen_libclang_min_version=$($min_tool_version llvm) 204bindgen_libclang_cversion=$(get_canonical_version $bindgen_libclang_version) 205bindgen_libclang_min_cversion=$(get_canonical_version $bindgen_libclang_min_version) 206if [ "$bindgen_libclang_cversion" -lt "$bindgen_libclang_min_cversion" ]; then 207 echo >&2 "***" 208 echo >&2 "*** libclang (used by the Rust bindings generator '$BINDGEN') is too old." 209 echo >&2 "*** Your version: $bindgen_libclang_version" 210 echo >&2 "*** Minimum version: $bindgen_libclang_min_version" 211 echo >&2 "***" 212 exit 1 213fi 214 215# If the C compiler is Clang, then we can also check whether its version 216# matches the `libclang` version used by the Rust bindings generator. 217# 218# In the future, we might be able to perform a full version check, see 219# https://github.com/rust-lang/rust-bindgen/issues/2138. 220cc_name=$($(dirname $0)/cc-version.sh $CC | cut -f1 -d' ') 221if [ "$cc_name" = Clang ]; then 222 clang_version=$( \ 223 LC_ALL=C $CC --version 2>/dev/null \ 224 | sed -nE '1s:.*version ([0-9]+\.[0-9]+\.[0-9]+).*:\1:p' 225 ) 226 if [ "$clang_version" != "$bindgen_libclang_version" ]; then 227 echo >&2 "***" 228 echo >&2 "*** libclang (used by the Rust bindings generator '$BINDGEN')" 229 echo >&2 "*** version does not match Clang's. This may be a problem." 230 echo >&2 "*** libclang version: $bindgen_libclang_version" 231 echo >&2 "*** Clang version: $clang_version" 232 echo >&2 "***" 233 warning=1 234 fi 235fi 236 237# Check that the source code for the `core` standard library exists. 238# 239# `$KRUSTFLAGS` is passed in case the user added `--sysroot`. 240rustc_sysroot=$("$RUSTC" $KRUSTFLAGS --print sysroot) 241rustc_src=${RUST_LIB_SRC:-"$rustc_sysroot/lib/rustlib/src/rust/library"} 242rustc_src_core="$rustc_src/core/src/lib.rs" 243if [ ! -e "$rustc_src_core" ]; then 244 echo >&2 "***" 245 echo >&2 "*** Source code for the 'core' standard library could not be found" 246 echo >&2 "*** at '$rustc_src_core'." 247 echo >&2 "***" 248 exit 1 249fi 250