1b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0 2db569afaSSam Ravnborg# 3db569afaSSam Ravnborg# linux/arch/x86/boot/compressed/Makefile 4db569afaSSam Ravnborg# 5db569afaSSam Ravnborg# create a compressed vmlinux image from the original vmlinux 6db569afaSSam Ravnborg# 7fb7183efSKees Cook# vmlinuz is: 8fb7183efSKees Cook# decompression code (*.o) 9fb7183efSKees Cook# asm globals (piggy.S), including: 10fb7183efSKees Cook# vmlinux.bin.(gz|bz2|lzma|...) 11fb7183efSKees Cook# 12fb7183efSKees Cook# vmlinux.bin is: 13fb7183efSKees Cook# vmlinux stripped of debugging and comments 14fb7183efSKees Cook# vmlinux.bin.all is: 15fb7183efSKees Cook# vmlinux.bin + vmlinux.relocs 16fb7183efSKees Cook# vmlinux.bin.(gz|bz2|lzma|...) is: 17fb7183efSKees Cook# (see scripts/Makefile.lib size_append) 18fb7183efSKees Cook# compressed vmlinux.bin.all + u32 size of vmlinux.bin.all 19db569afaSSam Ravnborg 20ef7f0d6aSAndrey RyabininKASAN_SANITIZE := n 21c0dd6716SJosh PoimboeufOBJECT_FILES_NON_STANDARD := y 22ef7f0d6aSAndrey Ryabinin 235c9a8750SDmitry Vyukov# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in. 245c9a8750SDmitry VyukovKCOV_INSTRUMENT := n 255c9a8750SDmitry Vyukov 26f9b493acSKyungsik Leetargets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \ 27f9b493acSKyungsik Lee vmlinux.bin.xz vmlinux.bin.lzo vmlinux.bin.lz4 28db569afaSSam Ravnborg 29846221cfSPaul BolleKBUILD_CFLAGS := -m$(BITS) -D__KERNEL__ -O2 306d92bc9dSH.J. LuKBUILD_CFLAGS += -fno-strict-aliasing $(call cc-option, -fPIE, -fPIC) 3195a38f34SH. Peter AnvinKBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING 3217a2a9b5SH. Peter Anvincflags-$(CONFIG_X86_32) := -march=i386 33db569afaSSam Ravnborgcflags-$(CONFIG_X86_64) := -mcmodel=small 34db569afaSSam RavnborgKBUILD_CFLAGS += $(cflags-y) 358b3b005dSH. Peter AnvinKBUILD_CFLAGS += -mno-mmx -mno-sse 36db569afaSSam RavnborgKBUILD_CFLAGS += $(call cc-option,-ffreestanding) 37db569afaSSam RavnborgKBUILD_CFLAGS += $(call cc-option,-fno-stack-protector) 3820c6c189SMatthias KaehlckeKBUILD_CFLAGS += $(call cc-disable-warning, address-of-packed-member) 396c3b56b1SMatthias KaehlckeKBUILD_CFLAGS += $(call cc-disable-warning, gnu) 40db569afaSSam Ravnborg 41db569afaSSam RavnborgKBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__ 427bf99fb6SPeter OberparleiterGCOV_PROFILE := n 43c6d30853SAndrey RyabininUBSAN_SANITIZE :=n 44db569afaSSam Ravnborg 45db569afaSSam RavnborgLDFLAGS := -m elf_$(UTS_MACHINE) 46a980ce35SH.J. Lu# Compressed kernel should be built as PIE since it may be loaded at any 47a980ce35SH.J. Lu# address by the bootloader. 486d92bc9dSH.J. Luifeq ($(CONFIG_X86_32),y) 496d92bc9dSH.J. LuLDFLAGS += $(call ld-option, -pie) $(call ld-option, --no-dynamic-linker) 506d92bc9dSH.J. Luelse 516d92bc9dSH.J. Lu# To build 64-bit compressed kernel as PIE, we disable relocation 526d92bc9dSH.J. Lu# overflow check to avoid relocation overflow error with a new linker 536d92bc9dSH.J. Lu# command-line option, -z noreloc-overflow. 546d92bc9dSH.J. LuLDFLAGS += $(shell $(LD) --help 2>&1 | grep -q "\-z noreloc-overflow" \ 556d92bc9dSH.J. Lu && echo "-z noreloc-overflow -pie --no-dynamic-linker") 566d92bc9dSH.J. Luendif 57db569afaSSam RavnborgLDFLAGS_vmlinux := -T 58db569afaSSam Ravnborg 5902a884c0SH. Peter Anvinhostprogs-y := mkpiggy 6012871c56SMatt FlemingHOST_EXTRACFLAGS += -I$(srctree)/tools/include 6102a884c0SH. Peter Anvin 624abf061bSYinghai Lused-voffset := -e 's/^\([0-9a-fA-F]*\) [ABCDGRSTVW] \(_text\|__bss_start\|_end\)$$/\#define VO_\2 _AC(0x\1,UL)/p' 6367b66625SYinghai Lu 6467b66625SYinghai Luquiet_cmd_voffset = VOFFSET $@ 6567b66625SYinghai Lu cmd_voffset = $(NM) $< | sed -n $(sed-voffset) > $@ 6667b66625SYinghai Lu 6767b66625SYinghai Lutargets += ../voffset.h 6867b66625SYinghai Lu 6967b66625SYinghai Lu$(obj)/../voffset.h: vmlinux FORCE 7067b66625SYinghai Lu $(call if_changed,voffset) 7167b66625SYinghai Lu 7267b66625SYinghai Lu$(obj)/misc.o: $(obj)/../voffset.h 7367b66625SYinghai Lu 749a1cb471SJosh Triplettvmlinux-objs-y := $(obj)/vmlinux.lds $(obj)/head_$(BITS).o $(obj)/misc.o \ 75dc425a6eSKees Cook $(obj)/string.o $(obj)/cmdline.o $(obj)/error.o \ 769e6abd2aSJosh Triplett $(obj)/piggy.o $(obj)/cpuflags.o 779e6abd2aSJosh Triplett 783afed06aSJosh Triplettvmlinux-objs-$(CONFIG_EARLY_PRINTK) += $(obj)/early_serial_console.o 799b238748SKees Cookvmlinux-objs-$(CONFIG_RANDOMIZE_BASE) += $(obj)/kaslr.o 803a94707dSKees Cookifdef CONFIG_X86_64 813a94707dSKees Cook vmlinux-objs-$(CONFIG_RANDOMIZE_BASE) += $(obj)/pagetable.o 821958b5fcSTom Lendacky vmlinux-objs-y += $(obj)/mem_encrypt.o 8308529078SKirill A. Shutemov vmlinux-objs-y += $(obj)/pgtable_64.o 843a94707dSKees Cookendif 85291f3632SMatt Fleming 869dead5bbSMatthew Garrett$(obj)/eboot.o: KBUILD_CFLAGS += -fshort-wchar -mno-red-zone 879dead5bbSMatthew Garrett 88243b6754SArd Biesheuvelvmlinux-objs-$(CONFIG_EFI_STUB) += $(obj)/eboot.o $(obj)/efi_stub_$(BITS).o \ 89243b6754SArd Biesheuvel $(objtree)/drivers/firmware/efi/libstub/lib.a 9096738c69SMatt Flemingvmlinux-objs-$(CONFIG_EFI_MIXED) += $(obj)/efi_thunk_$(BITS).o 91291f3632SMatt Fleming 9298f78525SKees Cook# The compressed kernel is built with -fPIC/-fPIE so that a boot loader 9398f78525SKees Cook# can place it anywhere in memory and it will still run. However, since 9498f78525SKees Cook# it is executed as-is without any ELF relocation processing performed 9598f78525SKees Cook# (and has already had all relocation sections stripped from the binary), 9698f78525SKees Cook# none of the code can use data relocations (e.g. static assignments of 9798f78525SKees Cook# pointer values), since they will be meaningless at runtime. This check 9898f78525SKees Cook# will refuse to link the vmlinux if any of these relocations are found. 9998f78525SKees Cookquiet_cmd_check_data_rel = DATAREL $@ 10098f78525SKees Cookdefine cmd_check_data_rel 10198f78525SKees Cook for obj in $(filter %.o,$^); do \ 10237805787SRob Landley ${CROSS_COMPILE}readelf -S $$obj | grep -qF .rel.local && { \ 10398f78525SKees Cook echo "error: $$obj has data relocations!" >&2; \ 10498f78525SKees Cook exit 1; \ 10598f78525SKees Cook } || true; \ 10698f78525SKees Cook done 10798f78525SKees Cookendef 10898f78525SKees Cook 1099a1cb471SJosh Triplett$(obj)/vmlinux: $(vmlinux-objs-y) FORCE 11098f78525SKees Cook $(call if_changed,check_data_rel) 111db569afaSSam Ravnborg $(call if_changed,ld) 112db569afaSSam Ravnborg 113099e1377SIan CampbellOBJCOPYFLAGS_vmlinux.bin := -R .comment -S 114db569afaSSam Ravnborg$(obj)/vmlinux.bin: vmlinux FORCE 115db569afaSSam Ravnborg $(call if_changed,objcopy) 116db569afaSSam Ravnborg 1179a1cb471SJosh Tripletttargets += $(patsubst $(obj)/%,%,$(vmlinux-objs-y)) vmlinux.bin.all vmlinux.relocs 118db569afaSSam Ravnborg 1196520fe55SH. Peter AnvinCMD_RELOCS = arch/x86/tools/relocs 120db569afaSSam Ravnborgquiet_cmd_relocs = RELOCS $@ 1216520fe55SH. Peter Anvin cmd_relocs = $(CMD_RELOCS) $< > $@;$(CMD_RELOCS) --abs-relocs $< 1226520fe55SH. Peter Anvin$(obj)/vmlinux.relocs: vmlinux FORCE 123db569afaSSam Ravnborg $(call if_changed,relocs) 124db569afaSSam Ravnborg 125db569afaSSam Ravnborgvmlinux.bin.all-y := $(obj)/vmlinux.bin 1265f11e020SH. Peter Anvinvmlinux.bin.all-$(CONFIG_X86_NEED_RELOCS) += $(obj)/vmlinux.relocs 127db569afaSSam Ravnborg 1285f11e020SH. Peter Anvin$(obj)/vmlinux.bin.gz: $(vmlinux.bin.all-y) FORCE 129db569afaSSam Ravnborg $(call if_changed,gzip) 1305f11e020SH. Peter Anvin$(obj)/vmlinux.bin.bz2: $(vmlinux.bin.all-y) FORCE 131ae03c499SAlain Knaff $(call if_changed,bzip2) 1325f11e020SH. Peter Anvin$(obj)/vmlinux.bin.lzma: $(vmlinux.bin.all-y) FORCE 133ae03c499SAlain Knaff $(call if_changed,lzma) 13430314804SLasse Collin$(obj)/vmlinux.bin.xz: $(vmlinux.bin.all-y) FORCE 13530314804SLasse Collin $(call if_changed,xzkern) 13613510997SAlbin Tonnerre$(obj)/vmlinux.bin.lzo: $(vmlinux.bin.all-y) FORCE 13713510997SAlbin Tonnerre $(call if_changed,lzo) 138f9b493acSKyungsik Lee$(obj)/vmlinux.bin.lz4: $(vmlinux.bin.all-y) FORCE 139f9b493acSKyungsik Lee $(call if_changed,lz4) 140db569afaSSam Ravnborg 141283ab1c0SH. Peter Anvinsuffix-$(CONFIG_KERNEL_GZIP) := gz 142283ab1c0SH. Peter Anvinsuffix-$(CONFIG_KERNEL_BZIP2) := bz2 143283ab1c0SH. Peter Anvinsuffix-$(CONFIG_KERNEL_LZMA) := lzma 14430314804SLasse Collinsuffix-$(CONFIG_KERNEL_XZ) := xz 14513510997SAlbin Tonnerresuffix-$(CONFIG_KERNEL_LZO) := lzo 146f9b493acSKyungsik Leesuffix-$(CONFIG_KERNEL_LZ4) := lz4 147ae03c499SAlain Knaff 14802a884c0SH. Peter Anvinquiet_cmd_mkpiggy = MKPIGGY $@ 1494d2d5424SYinghai Lu cmd_mkpiggy = $(obj)/mkpiggy $< > $@ || ( rm -f $@ ; false ) 15002a884c0SH. Peter Anvin 15102a884c0SH. Peter Anvintargets += piggy.S 15202a884c0SH. Peter Anvin$(obj)/piggy.S: $(obj)/vmlinux.bin.$(suffix-y) $(obj)/mkpiggy FORCE 15302a884c0SH. Peter Anvin $(call if_changed,mkpiggy) 154