Re: [PATCH bpf-next v2] bpf/docs: Document kfunc lifecycle / stability expectations

From: David Vernet
Date: Fri Feb 03 2023 - 09:16:18 EST


On Fri, Feb 03, 2023 at 10:48:35AM +0000, Donald Hunter wrote:
> David Vernet <void@xxxxxxxxxxxxx> writes:
>
> > +3. kfunc lifecycle expectations
> > +===============================
> > +
> > +kfuncs provide a kernel <-> kernel API, and thus are not bound by any of the
> > +strict stability restrictions associated with kernel <-> user UAPIs. Instead,
> > +they're modeled more similarly to EXPORT_SYMBOL_GPL, and can therefore be
> > +modified or removed by a maintainer of the subsystem they're defined in when
> > +it's deemed necessary.
> > +
> > +Like any other change to the kernel, maintainers will not change or remove a
> > +kfunc without having a reasonable justification. Whether or not they'll choose
> > +to change a kfunc will ultimately depend on a variety of factors, such as how
> > +widely used the kfunc is, how long the kfunc has been in the kernel, whether an
> > +alternative kfunc exists, what the norm is in terms of stability for the
> > +subsystem in question, and of course what the technical cost is of continuing
> > +to support the kfunc.
> > +
> > +There are several implications of this:
> > +
> > +a) kfuncs that are widely used or have been in the kernel for a long time will
> > + be more difficult to justify being changed or removed by a maintainer. Said
> > + in a different way, kfuncs that are known to have a lot of users and provide
> > + significant value provide stronger incentives for maintainers to invest the
> > + time and complexity in supporting them. It is therefore important for
> > + developers that are using kfuncs in their BPF programs to communicate and
> > + explain how and why those kfuncs are being used, and to participate in
> > + discussions regarding those kfuncs when they occur upstream.
> > +
> > +b) Because many BPF programs are not upstreamed as part of the kernel tree, it
> > + is often not possible to change them in-place when a kfunc changes, as it is
> > + for e.g. an upstreamed driver being updated in place when an
> > + EXPORT_SYMBOL_GPL symbol is changed. Distributions that bundle BPF programs
> > + that use kfuncs must therefore ensure that those BPF programs are linking
> > + against the kfuncs that are supported by the kernel version being used for
> > + any given release. Additionally, BPF developers are encouraged to upstream
> > + their BPF programs so they can enjoy the same benefits as upstreamed
> > + modules, and avoid code churn.
>
> It seems unrealistic to wish for BPF programs to be upstreamed, for
> several reasons. A key benefit of BPF programs is that they are
> decoupled from the kernel lifecycle and packaging. BPF programs are
> often more tightly coupled with the application they are part of and
> need to be maintained alongside those applications. There does not seem
> to be any desire, process or incentive to maintain BPF programs in tree.

I think this is slowly becoming less true with the "modern BPF"
described by Alexei in [0], but I agree that it's certainly the vast
majority of cases now, and I'm fine with removing this from the doc to
decouple it from the larger kfunc lifecycle discussion. Toke mentioned
something similar in [1], so I'll remove this in v3.

[0]: https://lwn.net/Articles/909095/
[1]: https://lore.kernel.org/all/87cz6qew8l.fsf@xxxxxxx/

>
> > + On the other hand, while the hope is that it will become the norm to
> > + upstream BPF programs, the reality is that most BPF programs are still
> > + out-of-tree. This means that users with out-of-tree BPF programs that use
> > + kfuncs should be considered relevant to discussions and decisions around
> > + modifying and removing kfuncs, despite that not being the norm for
> > + out-of-tree kernel modules. The BPF community will take an active role in
> > + participating in upstream discussions when necessary to ensure that the
> > + perspectives of such users are taken into account.
> > +
> > +c) A kfunc will never have any hard stability guarantees. BPF APIs cannot and
> > + will not ever hard-block a change in the kernel purely for stability
> > + reasons. In other words, kfuncs have the same stability guarantees as any
> > + other kernel API, such as those provided by EXPORT_SYMBOL_GPL, though with
> > + perhaps less burden than EXPORT_SYMBOL_GPL changes thanks to BPF CO-RE.
> > +
> > + That being said, kfuncs are features that are meant to solve problems and
> > + provide value to users. The decision of whether to change or remove a kfunc
> > + is a multivariate technical decision that is made on a case-by-case basis,
> > + and which is informed by data points such as those mentioned above. It is
> > + expected that a kfunc being removed or changed with no warning will not be a
> > + common occurrence or take place without sound justification, but it is a
> > + possibility that must be accepted if one is to use kfuncs.
> > +
> > +3.1 kfunc deprecation
> > +---------------------
> > +
> > +As described above, while sometimes a maintainer may find that a kfunc must be
> > +changed or removed immediately to accommodate some changes in their subsystem,
> > +other kfuncs may be able to accommodate a longer and more measured deprecation
>
> How about replacing 'other kfuncs may' with 'usually kfuncs will' to
> re-emphasise that this would be the more common scenario.

Good suggestion, will do.

>
> > +process. For example, if a new kfunc comes along which provides superior
> > +functionality to an existing kfunc, the existing kfunc may be deprecated for
> > +some period of time to allow users to migrate their BPF programs to use the new
> > +one. Or, if a kfunc has no known users, a decision may be made to remove the
> > +kfunc (without providing an alternative API) after some deprecation period
> > +period so as to provide users with a window to notify the kfunc maintainer if
>
> Duplicate 'period'.

Ack, good catch.

>
> > +it turns out that the kfunc is actually being used.
> > +
> > +kfuncs being deprecated (rather than changed or removed with no warning) is
> > +expected to be the common case, and as described in :ref:`KF_deprecated_flag`,
> > +the kfunc framework provides the KF_DEPRECATED flag to kfunc developers to
> > +signal to users that a kfunc has been deprecated. Once a kfunc has been marked
> > +with KF_DEPRECATED, the following procedure is followed for removal:
> > +
> > +1. Any relevant information for deprecated kfuncs is documented in the kfunc's
> > + kernel docs. This documentation will typically include the kfunc's expected
> > + remaining lifespan, a recommendation for new functionality that can replace
> > + the usage of the deprecated function (or an explanation as to why no such
> > + replacement exists), etc.
> > +
> > +2. The deprecated kfunc is kept in the kernel for some period of time after it
> > + was first marked as deprecated. This time period will be chosen on a
> > + case-by-case basis, and will typically depend on how widespread the use of
> > + the kfunc is, how long it has been in the kernel, and how hard it is to move
> > + to alternatives. This deprecation time period is "best effort", and as
> > + described :ref:`above<BPF_kfunc_lifecycle_expectations>`, circumstances may
> > + sometimes dictate that the kfunc be removed before the full intended
> > + deprecation period has elapsed.
> > +
> > +3. After the deprecation period, or sometimes earlier if necessary, the kfunc
> > + will be removed. At this point, BPF programs calling the kfunc will be
> > + rejected by the verifier.
> > +