X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=scripts%2Flttng-modules%2Fparam-build.sh;h=2b29e78e8159a07b97c68871fff857b4e51393cb;hb=009efde7cc10501549ae77eded54ef059aee76c3;hp=69a3338b74cb0ff7708ab285316a4d50cec06eb3;hpb=efdab1b70297ad807c5197f9e0e9e1e43d5b01a0;p=lttng-ci.git diff --git a/scripts/lttng-modules/param-build.sh b/scripts/lttng-modules/param-build.sh index 69a3338..2b29e78 100644 --- a/scripts/lttng-modules/param-build.sh +++ b/scripts/lttng-modules/param-build.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# Copyright (C) 2016-2019 Michael Jeanson +# Copyright (C) 2016-2023 Michael Jeanson # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,26 +18,27 @@ set -exu # Parameters -platforms=${platforms:-} +platform=${platforms:-} +cross_arch=${cross_arch:-} +ktag=${ktag:-} +kgitrepo=${kgitrepo:-} +mversion=${mversion:-} +mgitrepo=${mgitrepo:-} +make_args=() + +DEBUG=${DEBUG:-} + # Derive arch from label if it isn't set if [ -z "${arch:-}" ] ; then # Labels may be platform specific, eg. jammy-amd64, deb12-armhf regex='[[:alnum:]]+-([[:alnum:]]+)' - if [[ "${platforms}" =~ ${regex} ]] ; then + if [[ "${platform}" =~ ${regex} ]] ; then arch="${BASH_REMATCH[1]}" else - arch="${platforms:-}" + arch="${platform:-}" fi fi -cross_arch=${cross_arch:-} -ktag=${ktag:-} -kgitrepo=${kgitrepo:-} -mversion=${mversion:-} -mgitrepo=${mgitrepo:-} -make_args=() - -DEBUG=${DEBUG:-} ## FUNCTIONS ## @@ -60,6 +61,25 @@ vergt() { [ "$1" = "$2" ] && return 1 || vergte "$1" "$2" } +print_header() { + set +x + + local message=" $1 " + local message_len + local padding_len + + message_len="${#message}" + padding_len=$(( (80 - (message_len)) / 2 )) + + printf '\n'; printf -- '#%.0s' {1..80}; printf '\n' + printf -- '-%.0s' {1..80}; printf '\n' + printf -- '#%.0s' $(seq 1 $padding_len); printf '%s' "$message"; printf -- '#%.0s' $(seq 1 $padding_len); printf '\n' + printf -- '-%.0s' {1..80}; printf '\n' + printf -- '#%.0s' {1..80}; printf '\n\n' + + set -x +} + git_clone_modules_sources() { mkdir -p "$MODULES_GIT_DIR" @@ -106,6 +126,7 @@ tar_archive_obj() { cd - } +# List all GCC versions present in the PATH list_gccs() { local gccs gccs=() @@ -118,35 +139,57 @@ list_gccs() { # Find the most recent GCC version supported by the kernel sources select_compiler() { - local selected_cc + # Enter linux source dir cd "$LINUX_SRCOBJ_DIR" - kversion=$(make -s kernelversion) + # Get the kernel version using the host toolchain, some cross-compiled arch may be broken + kversion=$(unset ARCH; unset CROSS_COMPILE; make -s kernelversion) - set +e + if [ "${cross_arch}" = "riscv64" ] && verlt "${kversion}" "5.12"; then + echo "RISC-V support was upstreamed in kernel v4.19 but kprobes support was only added in v5.12. Don't try to build it." + exit 0 + fi - for cc in $(list_gccs) ; do - if "${CROSS_COMPILE:-}${cc}" -I include/ -D__LINUX_COMPILER_H -D__LINUX_COMPILER_TYPES_H -E include/linux/compiler-gcc.h; then - cc_version=$(echo "${cc}" | cut -d'-' -f2) - if { verlt "${kversion}" "5.17"; } && { vergt "${cc_version}" "11"; } ; then - # Using gcc-12+ with '-Wuse-after-free' breaks the build of older - # kernels (in particular, objtool). Some releases on LTS - # branches between 4.x and 5.15 can be built with gcc-12. - # @see https://lore.kernel.org/lkml/20494.1643237814@turing-police/ - # @see https://gitlab.com/linux-kernel/stable/-/commit/52a9dab6d892763b2a8334a568bd4e2c1a6fde66 - continue - fi - selected_cc="$cc" - break - fi - done + if [ "${cross_arch}" = "arm64" ] && verlt "${kversion}" "3.7"; then + echo "ARM64 support was added as of v3.7. Don't try to build it." + exit 0 + fi - set -e + if [ "${cross_arch}" = "arm64" ] && verlt "${kversion}" "3.18"; then + echo "lttng-modules requires gcc >= 5.1 for ARM64 due to compiler bugs in gcc." + echo "gcc-5 support was added to the kernel as of v3.18. Don't this to build it." + exit 0 + fi - # Force gcc-4.8 for kernels before 4.4 if { verlt "$kversion" "4.4"; }; then + # Force gcc-4.8 for kernels before 4.4 selected_cc='gcc-4.8' + # Due to compiler bugs in gcc on arm64, lttng-modules disallows + # compilation with gcc < 5.1. + if [[ "${cross_arch}" == "arm64" ]] ; then + selected_cc='gcc-5.5' + export PATH="${PATH:-}:/usr/local/gcc5.5/bin" + export LD_LIBRARY_PATH="${LD_LIBRARY_PATH:-}:/usr/local/gcc5.5/lib" + fi + selected_cc_version=$(echo "${selected_cc}" | cut -d'-' -f2) + else + for cc in $(list_gccs) ; do + if "${CROSS_COMPILE:-}${cc}" -I include/ -D__LINUX_COMPILER_H -D__LINUX_COMPILER_TYPES_H -E include/linux/compiler-gcc.h; then + cc_version=$(echo "${cc}" | cut -d'-' -f2) + if { verlt "${kversion}" "5.17"; } && { vergt "${cc_version}" "11"; } ; then + # Using gcc-12+ with '-Wuse-after-free' breaks the build of older + # kernels (in particular, objtool). Some releases on LTS + # branches between 4.x and 5.15 can be built with gcc-12. + # @see https://lore.kernel.org/lkml/20494.1643237814@turing-police/ + # @see https://gitlab.com/linux-kernel/stable/-/commit/52a9dab6d892763b2a8334a568bd4e2c1a6fde66 + continue + fi + selected_cc="$cc" + selected_cc_version="$cc_version" + break + fi + done fi if [ -z "$selected_cc" ]; then @@ -154,11 +197,28 @@ select_compiler() { exit 1 fi + # lttng-modules requires gcc >= 5.1 for aarch64 + # @see https://github.com/lttng/lttng-modules/commit/be06402dbdbea2f3394e60ec15c5d3356e2be416 + if { verlt "${selected_cc_version}" "5.1"; } && [ "${cross_arch}" = "arm64" ] ; then + echo "Building lttng-modules on aarch64 requires gcc >= 5.1" + exit 1 + fi + + cd - +} + +export_kbuild_flags() { + local _KAFLAGS + local _KCFLAGS + local _KCPPFLAGS + local _HOSTCFLAGS + _KAFLAGS=() _KCFLAGS=() _KCPPFLAGS=() _HOSTCFLAGS=() - if [ "$selected_cc" != "gcc-4.8" ]; then + + if { vergte "$selected_cc_version" "6"; }; then # Older kernel Makefiles do not expect the compiler to default to PIE _KAFLAGS+=(-fno-pie) _KCFLAGS+=( @@ -169,7 +229,6 @@ select_compiler() { _KCPPFLAGS+=(-fno-pie) fi - selected_cc_version="$(echo "${selected_cc}" | cut -d'-' -f2)" if { vergte "${selected_cc_version}" "10"; } && { verlt "${kversion}" "5.10"; } ; then # gcc-10 changed the default from '-fcommon' to '-fno-common', which # causes a linker failure. '-fcommon' can be set on the HOSTCFLAGS @@ -178,14 +237,12 @@ select_compiler() { _HOSTCFLAGS+=(-fcommon) fi - if [ "${cross_arch:-}" == "armhf" ] ; then - if { verlt "${kversion}" "5.14"; } ; then - # Work-around for producing instructions that aren't valid for the - # default architectures. - # Eg. Error: selected processor does not support `cpsid i' in ARM mode - _KCFLAGS+=(-march=armv7-a -mfpu=vfpv3-d16) - _KCPPFLAGS+=(-march=armv7-a -mfpu=vfpv3-d16) - fi + if { verlt "${kversion}" "5.14"; } && [ "${cross_arch:-}" == "armhf" ] ; then + # Work-around for producing instructions that aren't valid for the + # default architectures. + # Eg. Error: selected processor does not support `cpsid i' in ARM mode + _KCFLAGS+=(-march=armv7-a -mfpu=vfpv3-d16) + _KCPPFLAGS+=(-march=armv7-a -mfpu=vfpv3-d16) fi if { vergt "${selected_cc_version}" "8"; } && { vergte "${kversion}" "4.15"; } && { verlt "${kversion}" "4.17"; } ; then @@ -206,20 +263,26 @@ select_compiler() { HOSTCC="${HOSTCC}" HOSTCFLAGS="${HOSTCFLAGS:-}" ) + if [ -n "${DEBUG}" ] ; then make_args+=( V=1 ) fi - cd - } patch_linux_kernel() { local commit_hash commit_hash="$1" + + # Show the title of the patch in the build log + git -C "${LINUX_GIT_REF_REPO_DIR}" show --oneline -s "${commit_hash}" + + # Apply patch, don't fail if it doesn't apply cleanly set +e git -C "${LINUX_GIT_REF_REPO_DIR}" format-patch -n1 --stdout "${commit_hash}" | patch -p1 set -e + if [ "$?" -gt 1 ] ; then echo "Serious issue patching" exit 1 @@ -249,17 +312,20 @@ build_linux_kernel() { # Generate kernel configuration case "$ktag" in Ubuntu*) - if [ "${cross_arch}" = "powerpc" ]; then - if vergte "${kversion}" "4.10"; then - echo "Ubuntu removed big endian powerpc configuration from kernel >= 4.10. Don't try to build it." - exit 0 - fi + if [ "${cross_arch}" = "powerpc" ] && vergte "${kversion}" "4.10"; then + echo "Ubuntu removed big endian powerpc configuration from kernel >= 4.10. Don't try to build it." + exit 0 fi - # Disable riscv64 config generation, we don't have a toolchain on bionic - sed -i 's/riscv64 //' debian.master/etc/kernelconfig + if [ "${cross_arch}" = "riscv64" ] && verlt "${kversion}" "6.2"; then + echo "Ubuntu added RISC-V config to their 'regular' kernels in v6.2. Don't try to build it." + exit 0 + fi - fakeroot debian/rules clean KW_DEFCONFIG_DIR=. + FAKEROOT_ARGS=( + 'KW_DEFCONFIG_DIR=.' + ) + fakeroot debian/rules clean "${FAKEROOT_ARGS[@]}" # Hack for kernel Ubuntu-hwe-5.8 # The debian/control file is produced by the clean target above, so this @@ -273,7 +339,19 @@ build_linux_kernel() { # Ubuntu annotations. # In any case, the configuration will be updated with any missing values # later in our build script. - fakeroot debian/rules genconfigs KW_DEFCONFIG_DIR=. do_skip_checks=true + FAKEROOT_ARGS+=('do_skip_checks=true') + + # Some Ubuntu tags default the toolchain using `gcc?=gcc-XX` in + # `debian/rules.d/0-common-vars.mk`. This may fail if the gcc version + # used as a default isn't available. + # For example, Ubuntu-6.8.0-7.7 sets `gcc?=gcc-13`, and that version + # of gcc isn't available on the deb12-amd64 ci-nodes. + # Work has also already been done in `select_compiler` to make our + # own decision of which compiler to use. As a result of both cases, + # our compiler choice should be passed into genconfigs. + FAKEROOT_ARGS+=("gcc=${selected_cc}") + + fakeroot debian/rules genconfigs "${FAKEROOT_ARGS[@]}" cp CONFIGS/"${ubuntu_config}" .config ;; @@ -333,7 +411,7 @@ build_linux_kernel() { fi fi - if { vergt "${selected_cc_version}" "7"; } && { vergte "${kversion}" "4.15"; } && { verlt "${kversion}" "4.17"; } ; then + if { vergt "${selected_cc_version}" "7"; } && { vergte "${kversion}" "4.14"; } && { verlt "${kversion}" "4.17"; } ; then # Builds fail due to -Werror=restrict in pager.o and str_error_r.o if { verlt "${kversion}" "4.16"; } ; then # This is patched since objtool's Makefile doesn't respect HOSTCFLAGS @@ -351,22 +429,58 @@ build_linux_kernel() { if { vergt "${selected_cc_version}" "9"; } && { verlt "${kversion}" "5.6"; } ; then # Duplicate decalarations of __force_order # @see https://gitlab.com/linux-kernel/stable/-/commit/df6d4f9db79c1a5d6f48b59db35ccd1e9ff9adfc - patch_linux_kernel df6d4f9db79c1a5d6f48b59db35ccd1e9ff9adfc # However, kaslr_64.c doesn't exit in 4.15, 4.16, it's named pagetable.c if [ -f arch/x86/boot/compressed/pagetable.c ] ; then sed -i '/^unsigned long __force_order;$/d' arch/x86/boot/compressed/pagetable.c fi + if [ -f arch/x86/boot/compressed/kaslr_64.c ] ; then + patch_linux_kernel df6d4f9db79c1a5d6f48b59db35ccd1e9ff9adfc + fi + fi + + if { vergte "${kversion}" "4.18"; } && { verlt "${kversion}" "4.19"; } ; then + # In some cases, compiling net/bpfilter can fail with the following error: + # net/bpfilter/main.c:9:10: fatal error: include/uapi/linux/bpf.h: No such file or directory + # make[2]: *** [scripts/Makefile.host:107: net/bpfilter/main.o] Error 1 + # + # While the issue is potentially in a number of old versions, it has only + # been observed in v4.18-rt + # + patch_linux_kernel 303a339f30a9441c4695d3d2cc78f1b33cd959ff + fi + + if { vergte "${kversion}" "4.18"; } && { verlt "${kversion}" "4.19"; } ; then + # In some cases, compiling net/bpfilter can fail with the following error: + # net/bpfilter/main.c:9:10: fatal error: include/uapi/linux/bpf.h: No such file or directory + # make[2]: *** [scripts/Makefile.host:107: net/bpfilter/main.o] Error 1 + # + # While the issue is potentially in a number of old versions, it has only + # been observed in v4.18-rt + # + patch_linux_kernel 303a339f30a9441c4695d3d2cc78f1b33cd959ff fi if { vergte "${kversion}" "4.15"; } && { verlt "${kversion}" "4.18"; } ; then # Some old kernels fail to build when make is too new # @see https://gitlab.com/linux-kernel/stable/-/commit/9feeb638cde083c737e295c0547f1b4f28e99583 patch_linux_kernel 9564a8cf422d7b58f6e857e3546d346fa970191e + fi + + if { vergte "${kversion}" "4.14"; } && { verlt "${kversion}" "4.14.55"; } ; then + # Some old kernels fail to build when make is too new + # @see https://gitlab.com/linux-kernel/stable/-/commit/9feeb638cde083c737e295c0547f1b4f28e99583 + patch_linux_kernel e82885490a611f2b75a6c27cd7bb09665c1740be + fi + + if ( { vergte "${kversion}" "4.15"; } && { verlt "${kversion}" "4.18"; } ) || \ + ( { vergte "${kversion}" "4.14"; } && { verlt "${kversion}" "4.14.56"; } ) ; then + # Some old kernels fail to build when make is too new # @see https://gitlab.com/linux-kernel/stable/-/commit/9feeb638cde083c737e295c0547f1b4f28e99583 patch_linux_kernel 9feeb638cde083c737e295c0547f1b4f28e99583 fi - if { vergte "${kversion}" "4.12"; } && { verlt "${kversion}" "4.19"; } ; then + if ( { vergte "${kversion}" "4.12"; } && { verlt "${kversion}" "4.20.17"; } ) || \ + ( { vergte "${kversion}" "5.0"; } && { verlt "${kversion}" "5.0.12"; } ) ; then # Old kernels can fail to build while on newer host kernels with errors # such as: # In file included from scripts/selinux/genheaders/genheaders.c:19: @@ -376,59 +490,27 @@ build_linux_kernel() { patch_linux_kernel dfbd199a7cfe3e3cd8531e1353cdbd7175bfbc5e fi - if { vergte "${kversion}" "3.18"; } && { verlt "${kversion}" "4.4"; } ; then - # Compatibility with binutils >= ~ 2.31 + # Compatibility with binutils >= ~ 2.31 + if { vergte "${kversion}" "3.19"; } && { verlt "${kversion}" "4.16"; } ; then patch_linux_kernel b21ebf2fb4cde1618915a97cc773e287ff49173e fi + if { vergte "${kversion}" "3.17"; } && { verlt "${kversion}" "3.18.69"; } ; then + patch_linux_kernel edb9d2d5e647e7a8521b0d35f8452deb02dfd138 + fi + if { vergte "${kversion}" "3.17"; } && { verlt "${kversion}" "3.18.100"; } ; then + patch_linux_kernel 3be6583f0b6f1bf1ee650ebf473d9dee36836527 + patch_linux_kernel 12d839211d080f6a9c370398c41a260365d34c62 + fi + if { vergte "${kversion}" "3.16"; } && { verlt "${kversion}" "3.16.82"; } ; then + patch_linux_kernel ad10e6d464796f2a481de4039a43b9cfca034e1c + fi - # The above patch only partially applies linux 3.17, and has been, so a - # rebased version is used instead. - if { vergte "${kversion}" "3.17"; } && { verlt "${kversion}" "3.18"; } ; then - cat <<'EOF' | patch -p1 -diff --git a/arch/x86/kernel/machine_kexec_64.c b/arch/x86/kernel/machine_kexec_64.c -index 48598105..0652c5b6 100644 ---- a/arch/x86/kernel/machine_kexec_64.c -+++ b/arch/x86/kernel/machine_kexec_64.c -@@ -516,6 +516,7 @@ int arch_kexec_apply_relocations_add(const Elf64_Ehdr *ehdr, - goto overflow; - break; - case R_X86_64_PC32: -+ case R_X86_64_PLT32: - value -= (u64)address; - *(u32 *)location = value; - break; -diff --git a/arch/x86/kernel/module.c b/arch/x86/kernel/module.c -index e69f9882..7c6bc9fe 100644 ---- a/arch/x86/kernel/module.c -+++ b/arch/x86/kernel/module.c -@@ -180,6 +180,7 @@ int apply_relocate_add(Elf64_Shdr *sechdrs, - goto overflow; - break; - case R_X86_64_PC32: -+ case R_X86_64_PLT32: - val -= (u64)loc; - *(u32 *)loc = val; - #if 0 -diff --git a/arch/x86/tools/relocs.c b/arch/x86/tools/relocs.c -index bbb1d225..8deeacbc 100644 ---- a/arch/x86/tools/relocs.c -+++ b/arch/x86/tools/relocs.c -@@ -763,6 +763,7 @@ static int do_reloc64(struct section *sec, Elf_Rel *rel, ElfW(Sym) *sym, - switch (r_type) { - case R_X86_64_NONE: - case R_X86_64_PC32: -+ case R_X86_64_PLT32: - /* - * NONE can be ignored and PC relative relocations don't - * need to be adjusted. -EOF - fi - - if ( { vergte "${kversion}" "3.15"; } && { verlt "${kversion}" "4.4"; } ) || - ( { vergte "${kversion}" "4.15"; } && { verlt "${kversion}" "4.17"; } ); then + if ( { vergte "${kversion}" "3.14"; } && { verlt "${kversion}" "4.4"; } ) || + ( { vergte "${kversion}" "4.8"; } && { verlt "${kversion}" "4.18"; } ); then # While the original motivation of this patch is for fixing builds using - # clang, the same error occurs between linux >= 3.15 and < 4.4, and in + # clang, the same error occurs between linux >= 3.14 and < 4.4, and in # 4.15, 4.16. + # For rt-linux, the error has been observed in 4.8, 4.11, and 4.13. # # This patch only partially applies due to changes in kernel/Makefile, # so a supplementary patch is needed @@ -445,13 +527,90 @@ EOF sed -i '/^.* += elfcore.o$/d' kernel/Makefile fi fi + # Same as above for the v4.4 branch + if ( { vergte "${kversion}" "4.4"; } && { verlt "${kversion}" "4.4.257"; } ); then + patch_linux_kernel 3140b0740b31cc63cf2ee08bc3f746b423eb068d + if grep -q elfcore.o kernel/Makefile ; then + sed -i '/^.* += elfcore.o$/d' kernel/Makefile + fi + fi + + if { vergte "${kversion}" "4.5"; } && { verlt "${kversion}" "4.8"; } ; then + # Kernels between v4.5 and v4.8 built with gcc >= 8 on arm will hit an + # assembler error : + # + # kernel/.tmp_fork.s: Assembler messages: + # kernel/.tmp_fork.s:1790: Error: .err encountered + # + # @see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85745 + # + patch_linux_kernel 9f73bd8bb445e0cbe4bcef6d4cfc788f1e184007 + fi + + if ( { vergte "${kversion}" "4.4"; } && { verlt "${kversion}" "4.4.136"; } ) || + ( { vergte "${kversion}" "4.5"; } && { verlt "${kversion}" "4.8"; } ); then + # Hacky patch to deal with the following build error: + # Cannot find symbol for section 7: .text.unlikely. + # kernel/kexec_file.o: failed + # make[1]: *** [scripts/Makefile.build:291: kernel/kexec_file.o] Error 1 + # + # This error happens with binutils 2.36 and 2.37, but should probably not + # be an issue with binutils 2.38. + # @see https://github.com/linuxppc/issues/issues/388 + # @see https://github.com/bminor/binutils-gdb/commit/c09c8b42021180eee9495bd50d8b35e683d3901b + # + # There is some sort of config (unspecified in past discussions) which + # provokes the error, and there was never a potential fix merged in + # this discussion, in part because the build systems of the kernel + # switched to objtool instead. + # + # @see https://lore.kernel.org/all/20210215162209.5e2a475b@gandalf.local.home/ + # + sed -i 's/return txtname;/return shdr0->sh_size ? txtname : NULL;/' scripts/recordmcount.h + + # After applying the above patch, the build continues but fails with + # head64.c:(.text.exit+0x5): undefined reference to `__gcov_exit' + # + scripts/config --disable CONFIG_GCOV_KERNEL + fi + + if { vergte "${kversion}" "4.5"; } && { verlt "${kversion}" "4.5.5"; } ; then + # drivers/staging/wilc1000/wilc_spi.c:123:34: error: storage size of ‘wilc1000_spi_ops’ isn’t known + patch_linux_kernel ce7b516f3f9e11fe4ee06fad0d7e853bb6e8f160 + fi # Newer binutils don't accept 3 operand 'cmp' instructions on ppc64 # Convert them to 'cmpw' which was previously done silently if verlt "$kversion" "4.9"; then - find arch/powerpc/ -name "*.S" -print0 | xargs -0 sed -i "s/\(cmp\)\(\s\+[a-zA-Z0-9]\+,\s*[a-zA-Z0-9]\+,\s*[a-zA-Z0-9]\+\)/cmpw\2/" - find arch/powerpc/ -name "*.S" -print0 | xargs -0 sed -i "s/\(cmpli\)\(\s\+[a-zA-Z0-9]\+,\s*[a-zA-Z0-9]\+,\s*[a-zA-Z0-9]\+\)/cmplwi\2/" - sed -i "s/\$pie \-o \"\$ofile\"/\$pie --no-dynamic-linker -o \"\$ofile\"/" arch/powerpc/boot/wrapper + find arch/powerpc/ -name "*.S" -print0 | xargs -0 sed -i "s/\(cmp\)\(\s\+[a-zA-Z0-9]\+,\s*[a-zA-Z0-9]\+,\s*[a-zA-Z0-9]\+\)/cmpw\2/" + find arch/powerpc/ -name "*.S" -print0 | xargs -0 sed -i "s/\(cmpli\)\(\s\+[a-zA-Z0-9]\+,\s*[a-zA-Z0-9]\+,\s*[a-zA-Z0-9]\+\)/cmplwi\2/" + sed -i "s/\$pie \-o \"\$ofile\"/\$pie --no-dynamic-linker -o \"\$ofile\"/" arch/powerpc/boot/wrapper + fi + + if [ "$(scripts/config --state CONFIG_EXTCON_ADC_JACK)" != "n" ] && + ( { vergte "${kversion}" "4.2"; } && { verlt "${kversion}" "4.12"; } ); then + # 73b6ecdb93e8e77752cae9077c424fcdc6f23c39 introduced a change where + # extcon-adc-jack.h has an incompatible pointer type. + # In GCC >= 5 this will provoke a warning and build failure. + # Eg. + # drivers/extcon/extcon-adc-jack.c: In function ‘adc_jack_probe’: + # drivers/extcon/extcon-adc-jack.c:111:64: error: passing argument 2 of ‘devm_extcon_dev_allocate’ from incompatible pointer type [-Werror=incompatible-pointer-types] + # make[2]: *** [scripts/Makefile.build:295: drivers/extcon/extcon-adc-jack.o] Error 1 + # + # 8a522bf2d4f788306443d36b26b54f0aedcdfdbe (in 4.11) has a fix for this warning + # + patch_linux_kernel 8a522bf2d4f788306443d36b26b54f0aedcdfdbe + fi + + if ( { vergte "${kversion}" "4.15"; } && { verlt "${kversion}" "4.15.2"; } ) || \ + ( { vergte "${kversion}" "4.14"; } && { verlt "${kversion}" "4.14.18"; } ) ; then + # Fix an objtool Segmentation fault + patch_linux_kernel dd12561854824fd1f05baf2a1b794faa046e2425 + fi + + if { vergte "${kversion}" "4.14"; } && { verlt "${kversion}" "4.14.268"; } ; then + # Builds fail due to -Werror=use-after-free in sigchain.o and help.o + patch_linux_kernel e89bb266b710ce056f141f29f091fd468a4a8185 fi # Fix a typo in v2.6.36.x @@ -500,8 +659,10 @@ EOF # @see https://lore.kernel.org/bpf/20220825171620.cioobudss6ovyrkc@altlinux.org/t/ # if [ -f "scripts/pahole-flags.sh" ] ; then + # shellcheck disable=SC2016 sed -i 's/ -J ${PAHOLE_FLAGS} / -J ${PAHOLE_FLAGS} --skip_encoding_btf_enum64 /' scripts/link-vmlinux.sh else + # shellcheck disable=SC2016 sed -i 's/ -J ${extra_paholeopt} / -J ${extra_paholeopt} --skip_encoding_btf_enum64 /' scripts/link-vmlinux.sh fi fi @@ -651,6 +812,12 @@ extract_distro_headers() { fi fi + # On riscv with 5.14 the vsdo objects are required + if [ "${karch}" = "riscv" ] && \ + ( { vergte "${kversion}" "5.14"; } && { verlt "${kversion}" "5.15"; } ); then + cp -a --parents arch/riscv/kernel/vdso/*.o "${LINUX_HDROBJ_DIR}/" + fi + # Newer kernels need objtool to build modules when CONFIG_STACK_VALIDATION=y if [ -f tools/objtool/objtool ]; then cp -a --parents tools/objtool/objtool "${LINUX_HDROBJ_DIR}/" @@ -751,7 +918,7 @@ build_modules() { # Build modules KERNELDIR="${kdir}" make -j"${NPROC}" V=1 "${make_args[@]}" - ret=$? + ret=$? set -e @@ -805,6 +972,7 @@ cd "$WORKSPACE" # Create build directories mkdir -p "${LINUX_SRCOBJ_DIR}" "${LINUX_HDROBJ_DIR}" "${LINUX_INSTOBJ_DIR}" "${MODULES_OUTPUT_KSRC_DIR}" "${MODULES_OUTPUT_KHDR_DIR}" +print_header "Clone LTTng-modules sources" git_clone_modules_sources # Setup cross compile env if available @@ -839,6 +1007,13 @@ if [ "x${cross_arch}" != "x" ]; then ubuntu_config="ppc64el-config.flavour.generic" ;; + "riscv64") + karch="riscv" + cross_compile="riscv64-linux-gnu-" + vanilla_config="defconfig" + ubuntu_config="riscv64-config.flavour.generic" + ;; + *) echo "Unsupported cross arch $cross_arch" exit 1 @@ -889,6 +1064,12 @@ elif [ "x${arch}" != "x" ]; then ubuntu_config="ppc64el-config.flavour.generic" ;; + "riscv64") + karch="riscv" + vanilla_config="allmodconfig" + ubuntu_config="riscv64-config.flavour.generic" + ;; + *) echo "Unsupported arch $arch" exit 1 @@ -904,6 +1085,7 @@ fi # First get the kernel build from the object store, or build it, if it's # not available. +set +x echo "# Setup endpoint host_base = obj.internal.efficios.com host_bucket = obj.internal.efficios.com @@ -916,14 +1098,15 @@ secret_key = echo123456 # Enable S3 v4 signature APIs signature_v2 = False" > "$WORKSPACE/.s3cfg" +set -x url_hash="$(echo -n "$kgitrepo" | md5sum | awk '{ print $1 }')" obj_name="linux.tar.bz2" if [ -z "${cross_arch}" ]; then - obj_url_prefix="$OBJ_STORE_URL/linux-build/$url_hash/$ktag/platform-${platforms}/$arch/native" + obj_url_prefix="$OBJ_STORE_URL/linux-build/$url_hash/$ktag/platform-${platform}/$arch/native" else - obj_url_prefix="$OBJ_STORE_URL/linux-build/$url_hash/$ktag/platform-${platforms}/${cross_arch}" + obj_url_prefix="$OBJ_STORE_URL/linux-build/$url_hash/$ktag/platform-${platform}/${cross_arch}" fi obj_url="$obj_url_prefix/$obj_name" @@ -938,12 +1121,17 @@ set -e case "$ret" in "0") + print_header "Get sources and prebuilt kernel" s3cmd -c "$WORKSPACE/.s3cfg" get "$obj_url" extract_archive_obj + + print_header "Select compiler and set build flags" + select_compiler + export_kbuild_flags ;; "12") - echo "File not found" + print_header "Clone kernel sources" # Build all the things and upload # then finish the module build... @@ -951,16 +1139,19 @@ case "$ret" in git_clone_linux_sources git_export_linux_sources + print_header "Select compiler and set build flags" select_compiler + export_kbuild_flags ## PREPARE FULL LINUX SOURCE TREE + print_header "Build kernel from source" build_linux_kernel ## EXTRACT DISTRO STYLE KERNEL HEADERS / DEVEL extract_distro_headers + print_header "Upload kernel to object storage" tar_archive_obj - upload_archive_obj ;; @@ -971,15 +1162,6 @@ case "$ret" in ;; esac -select_compiler - -selected_cc_version="$(echo "${selected_cc}" | cut -d'-' -f2)" -# lttng-modules requires gcc >= 5.1 for aarch64 -# @see https://github.com/lttng/lttng-modules/commit/be06402dbdbea2f3394e60ec15c5d3356e2be416 -if { verlt "${selected_cc_version}" "5.1"; } && [ "${cross_arch}" = "arm64" ] ; then - echo "Building lltng-modules on aarch64 requires gcc >= 5.1" - exit 0 -fi ## BUILD modules # Either we downloaded a pre-build kernel or we built it and uploaded @@ -987,12 +1169,15 @@ fi cd "$WORKSPACE" -# Build modules against full kernel sources +print_header "Build modules against full kernel sources" build_modules "${LINUX_SRCOBJ_DIR}" "${MODULES_OUTPUT_KSRC_DIR}" -# Build modules against kernel headers +print_header "Build modules against kernel headers" build_modules "${LINUX_HDROBJ_DIR}" "${MODULES_OUTPUT_KHDR_DIR}" + +print_header "Check for built modules in install directory" + # Make sure some modules were actually built tree "${MODULES_OUTPUT_KSRC_DIR}" if [ "x$(find "${MODULES_OUTPUT_KSRC_DIR}" -name '*.ko*' -printf yes -quit)" != "xyes" ]; then