Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:security\integrity\platform_certs\load_ipl_s390.c Create Date:2022-07-28 19:57:10
Last Modify:2020-03-18 09:47:08 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:Load the certs contained in the IPL report created by the machine loader* into the platform trusted keyring.

Proto:static int __init load_ipl_certs(void)

Type:int

Parameter:Nothing

23  If Not ipl_cert_list_addr Then Return 0
26  ptr = ipl_cert_list_addr
27  end = ptr + ipl_cert_list_size
28  When ptr < end cycle
29  len = ptr
30  ptr += sizeof(unsignedint)
31  add_to_platform_keyring - Add to platform keyring without validation.*@source: Source of key*@data: The blob holding the key*@len: The length of the data blob* Add a key to the platform keyring without checking its trust chain. This
32  ptr += len
34  Return 0