]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
veloader use vectx API for kernel and modules
authorsjg <sjg@FreeBSD.org>
Mon, 9 Mar 2020 16:02:54 +0000 (16:02 +0000)
committersjg <sjg@FreeBSD.org>
Mon, 9 Mar 2020 16:02:54 +0000 (16:02 +0000)
commit32ca39b78e588ed74b96f070d8b58a3dd9179015
tree83253d7b5da5ff104c69524ceb759bd5e72140b9
parentda8b572b85d5eecf84efda6e824562a530afe0c6
veloader use vectx API for kernel and modules

The vectx API, computes the hash for verifying a file as it is read.
This avoids the overhead of reading files twice - once to verify, then
again to load.

For doing an install via loader, avoiding the need to rewind
large files is critical.

This API is only used for modules, kernel and mdimage as these are the
biggest files read by the loader.
The reduction in boot time depends on how expensive the I/O is
on any given platform.  On a fast VM we see 6% improvement.

For install via loader the first file to be verified is likely to be the
kernel, so some of the prep work (finding manifest etc) done by
verify_file() needs to be factored so it can be reused for
vectx_open().

For missing or unrecognized fingerprint entries, we fail
in vectx_open() unless verifying is disabled.

Otherwise fingerprint check happens in vectx_close() and
since this API is only used for files which must be verified
(VE_MUST) we panic if we get an incorrect hash.

Reviewed by: imp,tsoome
MFC after: 1 week
Sponsored by: Juniper Networks
Differential Revision: https://reviews.freebsd.org//D23827
stand/ficl/fileaccess.c
stand/i386/loader/chain.c