[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAK7LNAQROQ=Gp_-fXf7nkEESKrXqSHRp10rkYxL3+NkcHdO3vA@mail.gmail.com>
Date: Tue, 14 Mar 2017 14:23:21 +0900
From: Masahiro Yamada <yamada.masahiro@...ionext.com>
To: Kees Cook <keescook@...omium.org>
Cc: Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Michal Marek <mmarek@...e.com>,
Linux Kbuild mailing list <linux-kbuild@...r.kernel.org>
Subject: Re: [PATCH] Kbuild: support designated_init attribute
Hi Kees,
2017-02-02 8:04 GMT+09:00 Kees Cook <keescook@...omium.org>:
> If a structure is marked with __attribute__((designated_init)) from
> GCC or Sparse, it needs to have all static initializers using designated
> initialization. Fail the build for any missing cases. This attribute will
> be used by the randstruct plugin to make sure randomized structures are
> being correctly initialized.
>
> Signed-off-by: Kees Cook <keescook@...omium.org>
> ---
> Makefile | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/Makefile b/Makefile
> index 96b27a888285..d4e0550e7abd 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -793,6 +793,9 @@ KBUILD_CFLAGS += $(call cc-option,-Werror=date-time)
> # enforce correct pointer usage
> KBUILD_CFLAGS += $(call cc-option,-Werror=incompatible-pointer-types)
>
> +# Require designated initializers for all marked structures
> +KBUILD_CFLAGS += $(call cc-option,-Werror=designated-init)
> +
> # use the deterministic mode of AR if available
> KBUILD_ARFLAGS := $(call ar-option,D)
>
The code looks OK to me.
As far as I understood, this patch changes
designated-init warnings into errors. Correct?
If so, I think the commit subject "Kbuild: support designated_init attribute"
does not directly describe what this patch does.
--
Best Regards
Masahiro Yamada
Powered by blists - more mailing lists