[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Xen-devel] [PATCH v7 05/14] kbuild: enable option to force compile force-obj-y and force-lib-y



On Sun, Jan 15, 2017 at 01:10:48PM -0800, Luis R. Rodriguez wrote:
> Linux provides a rich array of features, enabling each feature
> however increases the size of the kernel and there are many
> features which users often want disabled. The traditional
> solution to this problem is for each feature to have its own
> Kconfig symbol, followed by a series of #ifdef statements
> in C code and header files, allowing the feature to be compiled
> only when desirable. As the variability of Linux increases build
> tests can and are often done with random kernel configurations,
> allyesconfig, and allmodconfig to help find code issues. This
> however doesn't catch all errors and as a consequence code that
> is typically not enabled often can suffer from bit-rot over time.

Really?  How do you know this, our test-build infrastructure is really
good, what has rotted with it?

And again, pick a column width and stick with it in the whole
changelog...

> An alternative approach for subsystems, which refer to as the 'build-all
> link-selectively philosophy' is to keep the Kconfig symbols, replace
> the #ifdef approach by having each feature implemented it its own C file,
> and force compilation for all features to avoid the code bit-rot problem.
> With this strategy only features that are enabled via Kconfig get
> linked into the kernel, so the forced compilation has no size impact
> on the kernel. The practice of having each feature implemented in its own
> C file is already prevalent in many subsystems, however #ifdefs are still
> typically required during feature initialization. For instance in:
> 
>   #ifdef CONFIG_FOO
>   foo_init();
>   #endif

That's horrid kernel code, and shouldn't be an example of anything other
than what NOT to do.  You know better than this, put the #ifdef in a .h
file.

> We cannot remove the #ifdef and leave foo_init() as we'd either
> need to always enable the feature or add a respective #ifdef in a
> foo.h which makes foo_init() do nothing when CONFIG_FOO is disabled.

Yes, and what's wrong with that?

> Linker tables enable lifting the requirement to use of #ifdefs during
> initialization. With linker tables initialization sequences can instead
> be aggregated into a custom ELF section at link time, during run time
> the table can be iterated over and each init sequence enabled can be
> called. A feature's init routine is only added to a table when its
> respective Kconfig symbols has been enabled and therefore linked in.
> Linker tables enable subsystems to completely do away with #ifdefs if
> one is comfortable in accepting all subsystem's feature's structural
> size implications.
> 
> Subsystems which want to follow the 'build-all link-selectively
> philosophy' still need a way to easily express and annotate that they
> wish for all code to always be compiled to help avoid code bit rot,
> as such two new targets force-obj-y and force-lib-y are provided to
> help with this. Its not fair to require everyone to force compilation
> of all features of a subsystem though, so as a compromise, the new
> targets only force compilation when CONFIG_BUILD_AVOID_BITROT is
> enabled.

You do know about COMPILE_TEST, right?  What's wrong with that?  Why not
use that as-is today and not add a new configuration option?

> Only built-in features are supported at the moment. Module support
> is expected to be added after a generic solution to add linker
> tables to modules more easily is developed.

Ok, you are talking about majorly changing how the kernel build system
works.  What do the kbuild developers/maintainers say about this?



> 
> v4: this patch was added to this series, it was split off from the
>     linker tables addition due to the confusion over the code bit
>     rot alternatives that are possible with linker tables.
> 
> Signed-off-by: Luis R. Rodriguez <mcgrof@xxxxxxxxxx>
> ---
>  Documentation/kbuild/makefiles.txt       | 36 ++++++++++++++++
>  Documentation/sections/linker-tables.rst | 15 +++++++
>  include/linux/tables.h                   | 71 
> ++++++++++++++++++++++++++++++++
>  init/Kconfig                             | 22 ++++++++++
>  scripts/Makefile.build                   |  7 ++--
>  scripts/Makefile.clean                   |  2 +
>  scripts/Makefile.lib                     | 11 +++++
>  7 files changed, 161 insertions(+), 3 deletions(-)
> 
> diff --git a/Documentation/kbuild/makefiles.txt 
> b/Documentation/kbuild/makefiles.txt
> index 9b9c4797fc55..1af275cd4879 100644
> --- a/Documentation/kbuild/makefiles.txt
> +++ b/Documentation/kbuild/makefiles.txt
> @@ -1090,6 +1090,42 @@ When kbuild executes, the following steps are followed 
> (roughly):
>       In this example, extra-y is used to list object files that
>       shall be built, but shall not be linked as part of built-in.o.
>  
> +    force-obj-y force-lib-y
> +
> +     When CONFIG_BUILD_AVOID_BITROT is enabled using these targets for your
> +     kconfig symbols forces compilation of the associated objects if the
> +     kconfig's symbol's dependencies are met, the objects however are only
> +     linked into to the kernel if and only if the kconfig symbol was
> +     enabled. If CONFIG_BUILD_AVOID_BITROT is disabled the force-obj-y and
> +     force-lib-y targets are functionally equilvalent to obj-y and lib-y
> +     respectively.
> +
> +     Using force-obj-y and force-lib-y are part of a code architecture and
> +     build philosophy further enabled by linker tables, for more details
> +     refer to the documention in include/linux/tables.h, refer to the
> +     sections:
> +
> +             o The code bit-rot problem
> +             o The build-all selective-link philosophy
> +             o Avoiding the code bit-rot problem with linker tables
> +             o Linker table module support
> +
> +     Modules support is expected to be enhanced in the future, so for now
> +     only built-in features are supported.
> +
> +     Example use:
> +
> +             force-obj-$(CONFIG_FEATURE_FOO) += foo.o
> +
> +     An alternative to using force-obj-y, is to use extra-y followed by the
> +     respective obj-y:
> +
> +             extra-y += foo.o
> +             obj-$(CONFIG_FEATURE_FOO) += foo.o
> +
> +     Using force-obj-y and force-lib-y can be used to help annotate the
> +     targets follow the 'build-all selective-link philosophy' further
> +     enabled by linker tables.
>  
>  --- 6.7 Commands useful for building a boot image
>  
> diff --git a/Documentation/sections/linker-tables.rst 
> b/Documentation/sections/linker-tables.rst
> index 780a292d2d00..bc2d9f46cde6 100644
> --- a/Documentation/sections/linker-tables.rst
> +++ b/Documentation/sections/linker-tables.rst
> @@ -30,6 +30,21 @@ How linker tables simplify initialization code
>  .. kernel-doc:: include/linux/tables.h
>     :doc: How linker tables simplify initialization code
>  
> +The code bit-rot problem
> +------------------------
> +.. kernel-doc:: include/linux/tables.h
> +   :doc: The code bit-rot problem
> +
> +The build-all selective-link philosophy
> +---------------------------------------
> +.. kernel-doc:: include/linux/tables.h
> +   :doc: The build-all selective-link philosophy
> +
> +Avoiding the code bit-rot problem with linker tables
> +----------------------------------------------------
> +.. kernel-doc:: include/linux/tables.h
> +   :doc: Avoiding the code bit-rot problem with linker tables
> +
>  Using linker tables in Linux
>  ============================
>  
> diff --git a/include/linux/tables.h b/include/linux/tables.h
> index 82da59c4266d..f295fbe74734 100644
> --- a/include/linux/tables.h
> +++ b/include/linux/tables.h
> @@ -169,6 +169,77 @@
>   */
>  
>  /**
> + * DOC: The code bit-rot problem
> + *
> + * Linux provides a rich array of features, enabling each feature
> + * however increases the size of the kernel and there are many
> + * features which users often want disabled. The traditional
> + * solution to this problem is for each feature to have its own
> + * Kconfig symbol, followed by a series of #ifdef statements
> + * in C code and header files, allowing the feature to be compiled
> + * only when desirable. As the variability of Linux increases build
> + * tests can and are often done with random kernel configurations,
> + * allyesconfig, and allmodconfig to help find code issues. This
> + * however doesn't catch all errors and as a consequence code that
> + * is typically not enabled often can suffer from bit-rot over time.
> + */
> +
> +/**
> + * DOC: The build-all selective-link philosophy
> + *
> + * A code architecture philosophy to help avoid code bit-rot consists
> + * of using Kconfig symbols for each subsystem feature, replace all #ifdefs
> + * by instead having each feature implemented it its own C file, and force
> + * compilation for all features. Only features that are enabled get linked 
> in,
> + * the forced compilation therefore has no size impact on the final result of
> + * the kernel. The practice of having each feature implemented in its own C
> + * file is already prevalent in many subsystems, however #ifdefs are still
> + * typically required during feature initialization. For instance in::
> + *
> + *   #ifdef CONFIG_FOO
> + *   foo_init();
> + *   #endif
> + *
> + * We cannot remove the #ifdef and leave foo_init() as we'd either
> + * need to always enable the feature or add a respective #ifdef in a
> + * foo.h which makes foo_init() do nothing when ``CONFIG_FOO`` is disabled.
> + */
> +
> +/**
> + * DOC: Avoiding the code bit-rot problem with linker tables
> + *
> + * Linker tables can be used to further help avoid the code bit-rot problem
> + * when embracing the 'build-all selective-link philosophy' by lifting the
> + * requirement to use of #ifdefs during initialization. With linker tables
> + * initialization sequences can be aggregated into a custom ELF section at
> + * link time, during run time the table can be iterated over and each init
> + * sequence enabled can be called. A feature's init routine is only added to 
> a
> + * table when its respective Kconfig symbols has been enabled and therefore
> + * linked in. Linker tables enable subsystems to completely do away with
> + * #ifdefs if one is comfortable in accepting all subsystem's feature's
> + * structural size implications.
> + *
> + * To further help with this the Linux build system supports two special
> + * targets, ``force-obj-y`` and ``force-lib-y``. A subsystem which wants to
> + * follow the 'build-all selective-link philosophy' can use these targets 
> for a
> + * feature's kconfig symbol. Using these targets will always require
> + * compilation of the kconfig's objects if the kconfig symbol's dependencies
> + * are met but only link the objects into the kernel, and therefore enable 
> the
> + * feature, if and only if the kconfig symbol has been enabled.
> + *
> + * Not all users or build systems may want to opt-in to compile all objects
> + * following the 'build-all selective-link philosophy', as such the targets
> + * ``force-obj-y`` and ``force-lib-y`` only force compilation when the 
> kconfig
> + * symbol ``CONFIG_BUILD_AVOID_BITROT`` has been enabled. Disabling this 
> feature
> + * makes ``force-obj-y`` and ``force-lib-y`` functionally equivalent to
> + * ``obj-y`` and ``lib-y`` respectively.
> + *
> + * Example use::
> + *
> + *   force-obj-$(CONFIG_FEATURE_FOO) += foo.o
> + */
> +
> +/**
>   * DOC: Linker table module support
>   *
>   * Modules can use linker tables, however the linker table definition
> diff --git a/init/Kconfig b/init/Kconfig
> index 536c2a00d972..6272f4fdcc86 100644
> --- a/init/Kconfig
> +++ b/init/Kconfig
> @@ -63,6 +63,28 @@ config CROSS_COMPILE
>         need to set this unless you want the configured kernel build
>         directory to select the cross-compiler automatically.
>  
> +config BUILD_AVOID_BITROT
> +     bool "Enable force building of force-obj-y and force-lib-y"
> +     default n
> +     help
> +       When enabled objects under the force-obj-y and force-lib-y targets
> +       using a Kconfig symbol will be forced to compile if the Kconfig
> +       symbol's dependencies are met but only linked into the kernel if
> +       the Kconfig symbol is enabled. If a Kconfig symbol on a force-obj-y
> +       or force-lib-y target is disabled, it will be compiled but not linked
> +       into the kernel.
> +
> +       The force-obj-y and force-lib-y targets can be used by subsystems
> +       which wish to want to follow the 'build-all selective-link philosophy'
> +       documented under include/linux/tables.h.
> +
> +       Say Y if you have a decent build machine and would like to help test
> +       building code for more subsystems. Say N if you do you not have a
> +       good build machine or only want to compile what you've enabled for
> +       your kernel.
> +
> +       Enabling this option never increases the size of your kernel.
> +
>  config COMPILE_TEST
>       bool "Compile also drivers which will not load"
>       depends on !UML

Pleaase use COMPILE_TEST here, we've already marked almost all drivers
with it today.  We also have really good build tools, including cross
compilers that you can use to test-build stuff on all different arches
if you feel you are somehow not building things you need to test-build.

I fail to see how this is going to do anything different from what we
have today, so why add it and have to maintain it?  Have you enabled it
on subsystems that currently do not get properly build tested and found
any issues?  What subsystems were they and why are they not in our
current build tests?

thanks,

greg k-h

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
https://lists.xen.org/xen-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.