efi: Add an EFI signature blob parser
Add a function to parse an EFI signature blob looking for elements of interest. A list is made up of a series of sublists, where all the elements in a sublist are of the same type, but sublists can be of different types. For each sublist encountered, the function pointed to by the get_handler_for_guid argument is called with the type specifier GUID and returns either a pointer to a function to handle elements of that type or NULL if the type is not of interest. If the sublist is of interest, each element is passed to the handler function in turn. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Nayna Jain <nayna@linux.ibm.com> Acked-by: Serge Hallyn <serge@hallyn.com> Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
This commit is contained in:
parent
5c126ba22f
commit
0bc9ae395b
3 changed files with 119 additions and 1 deletions
|
|
@ -1141,6 +1141,15 @@ extern int efi_memattr_apply_permissions(struct mm_struct *mm,
|
|||
char * __init efi_md_typeattr_format(char *buf, size_t size,
|
||||
const efi_memory_desc_t *md);
|
||||
|
||||
|
||||
typedef void (*efi_element_handler_t)(const char *source,
|
||||
const void *element_data,
|
||||
size_t element_size);
|
||||
extern int __init parse_efi_signature_list(
|
||||
const char *source,
|
||||
const void *data, size_t size,
|
||||
efi_element_handler_t (*get_handler_for_guid)(const efi_guid_t *));
|
||||
|
||||
/**
|
||||
* efi_range_is_wc - check the WC bit on an address range
|
||||
* @start: starting kvirt address
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue