Skip to content

Commit

Permalink
tpm: fix unsigned/signed mismatch errors related to __calc_tpm2_event…
Browse files Browse the repository at this point in the history
…_size

__calc_tpm2_event_size returns 0 or a positive length, but return values
are often interpreted as ints.  Convert everything over to u32 to avoid
signed/unsigned logic errors.

Signed-off-by: Gregory Price <gourry@gourry.net>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
  • Loading branch information
Gregory Price authored and Ard Biesheuvel committed Oct 15, 2024
1 parent c33c28f commit a066397
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions drivers/firmware/efi/libstub/tpm.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static void efi_retrieve_tcg2_eventlog(int version, efi_physical_addr_t log_loca
struct linux_efi_tpm_eventlog *log_tbl = NULL;
unsigned long first_entry_addr, last_entry_addr;
size_t log_size, last_entry_size;
int final_events_size = 0;
u32 final_events_size = 0;

first_entry_addr = (unsigned long) log_location;

Expand Down Expand Up @@ -110,9 +110,9 @@ static void efi_retrieve_tcg2_eventlog(int version, efi_physical_addr_t log_loca
*/
if (final_events_table && final_events_table->nr_events) {
struct tcg_pcr_event2_head *header;
int offset;
u32 offset;
void *data;
int event_size;
u32 event_size;
int i = final_events_table->nr_events;

data = (void *)final_events_table;
Expand Down
2 changes: 1 addition & 1 deletion drivers/firmware/efi/tpm.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ EXPORT_SYMBOL(efi_tpm_final_log_size);
static int __init tpm2_calc_event_log_size(void *data, int count, void *size_info)
{
struct tcg_pcr_event2_head *header;
int event_size, size = 0;
u32 event_size, size = 0;

while (count > 0) {
header = data + size;
Expand Down
2 changes: 1 addition & 1 deletion include/linux/tpm_eventlog.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ struct tcg_algorithm_info {
* Return: size of the event on success, 0 on failure
*/

static __always_inline int __calc_tpm2_event_size(struct tcg_pcr_event2_head *event,
static __always_inline u32 __calc_tpm2_event_size(struct tcg_pcr_event2_head *event,
struct tcg_pcr_event *event_header,
bool do_mapping)
{
Expand Down

0 comments on commit a066397

Please sign in to comment.