1b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0 2a86fe353SMasahiro Yamada# ========================================================================== 3a86fe353SMasahiro Yamada# make W=... settings 4a86fe353SMasahiro Yamada# 5c77d06e7SYann Droneaud# There are four warning groups enabled by W=1, W=2, W=3, and W=e 6c77d06e7SYann Droneaud# They are independent, and can be combined like W=12 or W=123e. 7a86fe353SMasahiro Yamada# ========================================================================== 8a86fe353SMasahiro Yamada 9e88ca243SArnd Bergmann# Default set of warnings, always enabled 10e88ca243SArnd BergmannKBUILD_CFLAGS += -Wall 114f79eaa2SNathan ChancellorKBUILD_CFLAGS += -Wextra 12e88ca243SArnd BergmannKBUILD_CFLAGS += -Wundef 13e88ca243SArnd BergmannKBUILD_CFLAGS += -Werror=implicit-function-declaration 14e88ca243SArnd BergmannKBUILD_CFLAGS += -Werror=implicit-int 15e88ca243SArnd BergmannKBUILD_CFLAGS += -Werror=return-type 16e88ca243SArnd BergmannKBUILD_CFLAGS += -Werror=strict-prototypes 17e88ca243SArnd BergmannKBUILD_CFLAGS += -Wno-format-security 18e88ca243SArnd BergmannKBUILD_CFLAGS += -Wno-trigraphs 19bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-frame-address) 20bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-address-of-packed-member) 210fcb7085SArnd BergmannKBUILD_CFLAGS += -Wmissing-declarations 220fcb7085SArnd BergmannKBUILD_CFLAGS += -Wmissing-prototypes 23e88ca243SArnd Bergmann 24e88ca243SArnd Bergmannifneq ($(CONFIG_FRAME_WARN),0) 25e88ca243SArnd BergmannKBUILD_CFLAGS += -Wframe-larger-than=$(CONFIG_FRAME_WARN) 26e88ca243SArnd Bergmannendif 27e88ca243SArnd Bergmann 28e88ca243SArnd BergmannKBUILD_CPPFLAGS-$(CONFIG_WERROR) += -Werror 29e88ca243SArnd BergmannKBUILD_CPPFLAGS += $(KBUILD_CPPFLAGS-y) 30e88ca243SArnd BergmannKBUILD_CFLAGS-$(CONFIG_CC_NO_ARRAY_BOUNDS) += -Wno-array-bounds 31e88ca243SArnd Bergmann 32e88ca243SArnd Bergmannifdef CONFIG_CC_IS_CLANG 33e88ca243SArnd Bergmann# The kernel builds with '-std=gnu11' so use of GNU extensions is acceptable. 34e88ca243SArnd BergmannKBUILD_CFLAGS += -Wno-gnu 35738fc998SNathan Chancellor 36738fc998SNathan Chancellor# Clang checks for overflow/truncation with '%p', while GCC does not: 37738fc998SNathan Chancellor# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111219 38bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-format-overflow-non-kprintf) 39bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-format-truncation-non-kprintf) 40d0afcfebSNathan Chancellor 41d0afcfebSNathan Chancellor# Clang may emit a warning when a const variable, such as the dummy variables 42d0afcfebSNathan Chancellor# in typecheck(), or const member of an aggregate type are not initialized, 43d0afcfebSNathan Chancellor# which can result in unexpected behavior. However, in many audited cases of 44d0afcfebSNathan Chancellor# the "field" variant of the warning, this is intentional because the field is 45d0afcfebSNathan Chancellor# never used within a particular call path, the field is within a union with 46d0afcfebSNathan Chancellor# other non-const members, or the containing object is not const so the field 47d0afcfebSNathan Chancellor# can be modified via memcpy() / memset(). While the variable warning also gets 48d0afcfebSNathan Chancellor# disabled with this same switch, there should not be too much coverage lost 49d0afcfebSNathan Chancellor# because -Wuninitialized will still flag when an uninitialized const variable 50d0afcfebSNathan Chancellor# is used. 51bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-default-const-init-unsafe) 52e88ca243SArnd Bergmannelse 53e88ca243SArnd Bergmann 54e88ca243SArnd Bergmann# gcc inanely warns about local variables called 'main' 55e88ca243SArnd BergmannKBUILD_CFLAGS += -Wno-main 56e88ca243SArnd Bergmannendif 57e88ca243SArnd Bergmann 58e88ca243SArnd Bergmann# These result in bogus false positives 59bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-dangling-pointer) 60e88ca243SArnd Bergmann 615e88c48cSKees Cook# Stack Variable Length Arrays (VLAs) must not be used in the kernel. 625e88c48cSKees Cook# Function array parameters should, however, be usable, but -Wvla will 635e88c48cSKees Cook# warn for those. Clang has no way yet to distinguish between the VLA 645e88c48cSKees Cook# types, so depend on GCC for now to keep stack VLAs out of the tree. 655e88c48cSKees Cook# https://github.com/llvm/llvm-project/issues/57098 665e88c48cSKees Cook# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98217 675e88c48cSKees CookKBUILD_CFLAGS += $(call cc-option,-Wvla-larger-than=1) 68e88ca243SArnd Bergmann 69e88ca243SArnd Bergmann# disable pointer signed / unsigned warnings in gcc 4.0 70e88ca243SArnd BergmannKBUILD_CFLAGS += -Wno-pointer-sign 71e88ca243SArnd Bergmann 72e88ca243SArnd Bergmann# In order to make sure new function cast mismatches are not introduced 73e88ca243SArnd Bergmann# in the kernel (to avoid tripping CFI checking), the kernel should be 74e88ca243SArnd Bergmann# globally built with -Wcast-function-type. 75e88ca243SArnd BergmannKBUILD_CFLAGS += $(call cc-option, -Wcast-function-type) 76e88ca243SArnd Bergmann 774f79eaa2SNathan Chancellor# Currently, disable -Wstringop-overflow for GCC 11, globally. 78bad14b5dSLinus TorvaldsKBUILD_CFLAGS-$(CONFIG_CC_NO_STRINGOP_OVERFLOW) += $(call cc-option, -Wno-stringop-overflow) 794f79eaa2SNathan ChancellorKBUILD_CFLAGS-$(CONFIG_CC_STRINGOP_OVERFLOW) += $(call cc-option, -Wstringop-overflow) 804f79eaa2SNathan Chancellor 814f79eaa2SNathan Chancellor# Currently, disable -Wunterminated-string-initialization as broken 82bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-unterminated-string-initialization) 834f79eaa2SNathan Chancellor 84e88ca243SArnd Bergmann# The allocators already balk at large sizes, so silence the compiler 85e88ca243SArnd Bergmann# warnings for bounds checks involving those possible values. While 86e88ca243SArnd Bergmann# -Wno-alloc-size-larger-than would normally be used here, earlier versions 87e88ca243SArnd Bergmann# of gcc (<9.1) weirdly don't handle the option correctly when _other_ 88e88ca243SArnd Bergmann# warnings are produced (?!). Using -Walloc-size-larger-than=SIZE_MAX 89e88ca243SArnd Bergmann# doesn't work (as it is documented to), silently resolving to "0" prior to 90e88ca243SArnd Bergmann# version 9.1 (and producing an error more recently). Numeric values larger 91e88ca243SArnd Bergmann# than PTRDIFF_MAX also don't work prior to version 9.1, which are silently 92e88ca243SArnd Bergmann# ignored, continuing to default to PTRDIFF_MAX. So, left with no other 93e88ca243SArnd Bergmann# choice, we must perform a versioned check to disable this warning. 94e88ca243SArnd Bergmann# https://lore.kernel.org/lkml/20210824115859.187f272f@canb.auug.org.au 95e88ca243SArnd BergmannKBUILD_CFLAGS-$(call gcc-min-version, 90100) += -Wno-alloc-size-larger-than 96e88ca243SArnd BergmannKBUILD_CFLAGS += $(KBUILD_CFLAGS-y) $(CONFIG_CC_IMPLICIT_FALLTHROUGH) 97e88ca243SArnd Bergmann 98e88ca243SArnd Bergmann# Prohibit date/time macros, which would make the build non-deterministic 99e88ca243SArnd BergmannKBUILD_CFLAGS += -Werror=date-time 100e88ca243SArnd Bergmann 101e88ca243SArnd Bergmann# enforce correct pointer usage 102e88ca243SArnd BergmannKBUILD_CFLAGS += $(call cc-option,-Werror=incompatible-pointer-types) 103e88ca243SArnd Bergmann 104e88ca243SArnd Bergmann# Require designated initializers for all marked structures 105e88ca243SArnd BergmannKBUILD_CFLAGS += $(call cc-option,-Werror=designated-init) 106e88ca243SArnd Bergmann 107e88ca243SArnd Bergmann# Warn if there is an enum types mismatch 108e88ca243SArnd BergmannKBUILD_CFLAGS += $(call cc-option,-Wenum-conversion) 109e88ca243SArnd Bergmann 110f5982cceSArnd BergmannKBUILD_CFLAGS += -Wunused 111f5982cceSArnd Bergmann 11264a91907SMasahiro Yamada# 11364a91907SMasahiro Yamada# W=1 - warnings which may be relevant and do not occur too often 11464a91907SMasahiro Yamada# 115e27128dbSMasahiro Yamadaifneq ($(findstring 1, $(KBUILD_EXTRA_WARN)),) 116a86fe353SMasahiro Yamada 11764a91907SMasahiro YamadaKBUILD_CFLAGS += -Wmissing-format-attribute 11864a91907SMasahiro YamadaKBUILD_CFLAGS += -Wmissing-include-dirs 11964a91907SMasahiro YamadaKBUILD_CFLAGS += $(call cc-option, -Wunused-const-variable) 120a86fe353SMasahiro Yamada 12180b6093bSMasahiro YamadaKBUILD_CPPFLAGS += -Wundef 1226863f564SMasahiro YamadaKBUILD_CPPFLAGS += -DKBUILD_EXTRA_WARN1 1236863f564SMasahiro Yamada 12426ea6bb1SBehan Websterelse 12526ea6bb1SBehan Webster 12664a91907SMasahiro Yamada# Some diagnostics enabled by default are noisy. 12764a91907SMasahiro Yamada# Suppress them by using -Wno... except for W=1. 128bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-unused-but-set-variable) 129bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-unused-const-variable) 130bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-packed-not-aligned) 131bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-format-overflow) 132908dd508SArnd Bergmannifdef CONFIG_CC_IS_GCC 133bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-format-truncation) 134908dd508SArnd Bergmannendif 135bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-stringop-truncation) 13664a91907SMasahiro Yamada 137c40845e3SArnd BergmannKBUILD_CFLAGS += -Wno-override-init # alias for -Wno-initializer-overrides in clang 138c40845e3SArnd Bergmann 139076f421dSMasahiro Yamadaifdef CONFIG_CC_IS_CLANG 140b0839b28SNick Desaulniers# Clang before clang-16 would warn on default argument promotions. 14188b61e3bSNick Desaulniersifneq ($(call clang-min-version, 160000),y) 142b0839b28SNick Desaulniers# Disable -Wformat 14321f9c8a1SLinus TorvaldsKBUILD_CFLAGS += -Wno-format 144b0839b28SNick Desaulniers# Then re-enable flags that were part of the -Wformat group that aren't 145b0839b28SNick Desaulniers# problematic. 146b0839b28SNick DesaulniersKBUILD_CFLAGS += -Wformat-extra-args -Wformat-invalid-specifier 147b0839b28SNick DesaulniersKBUILD_CFLAGS += -Wformat-zero-length -Wnonnull 148b0839b28SNick Desaulniers# Requires clang-12+. 14988b61e3bSNick Desaulniersifeq ($(call clang-min-version, 120000),y) 150b0839b28SNick DesaulniersKBUILD_CFLAGS += -Wformat-insufficient-args 151b0839b28SNick Desaulniersendif 152b0839b28SNick Desaulniersendif 153bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-pointer-to-enum-cast) 154afe956c5SNathan ChancellorKBUILD_CFLAGS += -Wno-tautological-constant-out-of-range-compare 155bad14b5dSLinus TorvaldsKBUILD_CFLAGS += $(call cc-option, -Wno-unaligned-access) 15675b5ab13SNathan ChancellorKBUILD_CFLAGS += -Wno-enum-compare-conditional 15726ea6bb1SBehan Websterendif 15864a91907SMasahiro Yamada 15964a91907SMasahiro Yamadaendif 16064a91907SMasahiro Yamada 16164a91907SMasahiro Yamada# 16264a91907SMasahiro Yamada# W=2 - warnings which occur quite often but may still be relevant 16364a91907SMasahiro Yamada# 164e27128dbSMasahiro Yamadaifneq ($(findstring 2, $(KBUILD_EXTRA_WARN)),) 16564a91907SMasahiro Yamada 16664a91907SMasahiro YamadaKBUILD_CFLAGS += -Wdisabled-optimization 16764a91907SMasahiro YamadaKBUILD_CFLAGS += -Wshadow 16864a91907SMasahiro YamadaKBUILD_CFLAGS += $(call cc-option, -Wlogical-op) 16964a91907SMasahiro YamadaKBUILD_CFLAGS += $(call cc-option, -Wunused-macros) 17064a91907SMasahiro Yamada 1716863f564SMasahiro YamadaKBUILD_CPPFLAGS += -DKBUILD_EXTRA_WARN2 1726863f564SMasahiro Yamada 1732cd3271bSArnd Bergmannelse 1742cd3271bSArnd Bergmann 1752cd3271bSArnd Bergmann# The following turn off the warnings enabled by -Wextra 1762cd3271bSArnd BergmannKBUILD_CFLAGS += -Wno-missing-field-initializers 1772cd3271bSArnd BergmannKBUILD_CFLAGS += -Wno-type-limits 1782cd3271bSArnd BergmannKBUILD_CFLAGS += -Wno-shift-negative-value 1792cd3271bSArnd Bergmann 1808f6629c0SNathan Chancellorifdef CONFIG_CC_IS_CLANG 1818f6629c0SNathan ChancellorKBUILD_CFLAGS += -Wno-enum-enum-conversion 1828f6629c0SNathan Chancellorendif 1838f6629c0SNathan Chancellor 184c40845e3SArnd Bergmannifdef CONFIG_CC_IS_GCC 1852cd3271bSArnd BergmannKBUILD_CFLAGS += -Wno-maybe-uninitialized 1862cd3271bSArnd Bergmannendif 1872cd3271bSArnd Bergmann 18864a91907SMasahiro Yamadaendif 18964a91907SMasahiro Yamada 19064a91907SMasahiro Yamada# 19164a91907SMasahiro Yamada# W=3 - more obscure warnings, can most likely be ignored 19264a91907SMasahiro Yamada# 193e27128dbSMasahiro Yamadaifneq ($(findstring 3, $(KBUILD_EXTRA_WARN)),) 19464a91907SMasahiro Yamada 19564a91907SMasahiro YamadaKBUILD_CFLAGS += -Wbad-function-cast 196095fbca0SArnd BergmannKBUILD_CFLAGS += -Wcast-align 19764a91907SMasahiro YamadaKBUILD_CFLAGS += -Wcast-qual 19864a91907SMasahiro YamadaKBUILD_CFLAGS += -Wconversion 19964a91907SMasahiro YamadaKBUILD_CFLAGS += -Wpacked 20064a91907SMasahiro YamadaKBUILD_CFLAGS += -Wpadded 20164a91907SMasahiro YamadaKBUILD_CFLAGS += -Wpointer-arith 20264a91907SMasahiro YamadaKBUILD_CFLAGS += -Wredundant-decls 203a97ea93eSJoe PerchesKBUILD_CFLAGS += -Wsign-compare 20464a91907SMasahiro YamadaKBUILD_CFLAGS += -Wswitch-default 20564a91907SMasahiro Yamada 2066863f564SMasahiro YamadaKBUILD_CPPFLAGS += -DKBUILD_EXTRA_WARN3 2076863f564SMasahiro Yamada 2082cd3271bSArnd Bergmannelse 2092cd3271bSArnd Bergmann 2102cd3271bSArnd Bergmann# The following turn off the warnings enabled by -Wextra 2112cd3271bSArnd BergmannKBUILD_CFLAGS += -Wno-sign-compare 212f5982cceSArnd BergmannKBUILD_CFLAGS += -Wno-unused-parameter 2132cd3271bSArnd Bergmann 214a86fe353SMasahiro Yamadaendif 215c77d06e7SYann Droneaud 216c77d06e7SYann Droneaud# 217c77d06e7SYann Droneaud# W=e - error out on warnings 218c77d06e7SYann Droneaud# 219c77d06e7SYann Droneaudifneq ($(findstring e, $(KBUILD_EXTRA_WARN)),) 220c77d06e7SYann Droneaud 221*f852ce05SThomas WeißschuhKBUILD_CPPFLAGS += -Werror 222c77d06e7SYann Droneaud 223c77d06e7SYann Droneaudendif 224