KernelNewbies:

Common kernel file loader

This page documents progress the original goal behind creating common kernel file loader routine on the kernel. For a while it was looked down upon to directly read files from Linux. Then for a while a few kernel mechanisms started creeping up which read files from the filesystem directly from the kernel which did this in a generic from by loading a file into a local kernel buffer. There used to be minor but important checks differences on each, Mimi Zohar looked at each one, took all the best practices from each of them, and generalized a solution. The new APIs available are then:

TableOfContents(4)

Current file loader locations

These are the currently known file loader solutions in place on the kernel. As you grep the kernel feel free to add more here to help document its use.

Desired enhancements

This lists a few set of enhancement considerations for the core kernel common file loaders.

Userspace notification of path availability

Some device drivers (input, wireless) load require loading firmware on probe in order to be able to read any capability information from the device. History on firmware_class has shown though that races can exist on users of its APIs on init/probe due to uses of pivot_root() (as an example), we probably should devise a generic userspace hint helper that informs the kernel when a path is available. The core kernel file loader could use this to ensure that when it returns 'file not found' it actually means it. Due to things like pivot_root() a system administrator and userspace then can really only know when a given path really is ready for files to be read from it. The requirements for when a given path is to be ready should then be determined in userspace as well. Core file loader users might want to use async file loaders then to wait for such signals.

An example of one of the most recent attempts and discussions on this:

[https://marc.info/?t=147286207700002&r=1&w=2 RFC: fs add userspace critical mounts event support] - by Luis Rodriguez

Usermode helpers

The firmware_class module has historically supported a custom "user mode helper" fallback mechanism -- we cannot remove the custom usermode helper fallback mechanism from the kernel as some kernel build features always forced it on as such we cannot remove it now. It use can however be compartmentalized. Only 2 drivers explicitly require user of the firmware usermode helper fallback mechanism. A generic solution perhaps might be best though. The firmware_class would load things from /lib/firmware/ and similar paths but other solutions in the kernel might use alternative paths. Consideration for usermode helpers for all the above uses cases found should be made.

KernelNewbies: KernelProjects/common-kernel-loader (last edited 2016-11-17 19:46:39 by mcgrof)