tpm2-software / tpm2-tss

OSS implementation of the TCG TPM2 Software Stack (TSS2)
https://tpm2-software.github.io
BSD 2-Clause "Simplified" License
735 stars 361 forks source link

Fix callocs #2820

Closed AndreasFuchsTPM closed 5 months ago

AndreasFuchsTPM commented 5 months ago

nmem vs size is sometimes wrong: https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_Hash.c#L263 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_Hash.c#L269 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_CertifyX509.c#L296 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_CertifyX509.c#L302 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_Rewrap.c#L288 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_Rewrap.c#L294 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_PCR_Read.c#L261 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_PCR_Read.c#L267 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_GetTime.c#L284 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_GetTime.c#L290 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_Certify.c#L288 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_Certify.c#L294 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_MAC.c#L265 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_Sign.c#L274 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_Unseal.c#L258 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_NV_ReadPublic.c#L269 https://github.com/tpm2-software/tpm2-tss/blob/46a1079d5edaaba5268d18e7a7a461f2552c5465/src/tss2-esys/api/Esys_NV_ReadPublic.c#L273 ...