Hi Greg,
On Sat, Mar 9, 2019 at 8:16 AM Greg KH gregkh@linuxfoundation.org wrote:
On Fri, Mar 08, 2019 at 06:59:23PM +0100, Geert Uytterhoeven wrote:
On Fri, Mar 8, 2019 at 6:05 PM Greg KH gregkh@linuxfoundation.org wrote:
On Fri, Mar 08, 2019 at 05:42:32AM -0800, Joel Fernandes wrote:
On Fri, Mar 8, 2019, 3:53 AM Geert Uytterhoeven geert@linux-m68k.org wrote:
It is just so much easier to use tar + xz at build time, and leave the decompression task to the user. After decompression, the files will live on the disk and the page-cache mechanism will free memory when/if the files fall off the LRUs.
I'm also considering how generic and extensible the solution is. What if people need other build artifacts in the future (e.g. signing key to load signed modules)?
That sounds like it could be useful. I don't see any reason off the top why that would not be possible to add to the list of archived files in the future. The patch allows populating the list of files from Kbuild using ikh_file_list variable.
Um, no, you don't want the signing key in the kernel itself, as that totally defeats the purpose of the signing key :)
In a loadable module? He who has the module, can build and sign more modules.
Again, that's pretty foolish.
Signing keys should be kept secure, or better yet, just deleted entirely after creating and signing with them. That's what I do for my kernels and I'm pretty sure that some distros also do this. That way there's no chance that someone else can sign a module and have it loaded without detection, which is what signing is supposed to prevent from happening.
If you want that kind of security, there's no point in allowing to extend the kernel by building more kernel modules after deployment.
The more I think about this (embedding a kernel headers archive in the kernel or a kernel module), the more I feel this is a workaround for a distro issue. Files are distributed with the kernel image, e.g. loadable kernel modules, so distributing more files is not a technical issue (and if it is, working around that might be as simple as "mv kheaders.tar.xz kheaders.ko", and letting module install take care of it ;-) It makes sense to provide /proc/kconfig.gz, as this is unique configuration info. The kernel headers can easily by derived from this config, and the kernel sources (which are GPL).
"Raw kernel headers also cannot be copied into the filesystem like they can be on other distros, due to licensing and other issues. There's no linux-headers package on Android."
What's the licensing issue? What's the (legal) difference between having the headers on the file system, and having a kernel module including the headers on the file system?
Thanks!
Gr{oetje,eeting}s,
Geert