From 2e9113cd4151ac4e75ef0bf0a324cac8a52b087f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Trojnara?= Date: Sat, 8 Dec 2018 16:56:29 +0100 Subject: [PATCH] code deduplication and cleanup --- osslsigncode.c | 186 ++++++++++++++++++++++--------------------------- 1 file changed, 84 insertions(+), 102 deletions(-) diff --git a/osslsigncode.c b/osslsigncode.c index 75db3ee..6362735 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -920,13 +920,63 @@ static const unsigned char classid_page_hash[] = { 0xAE, 0x05, 0xA2, 0x17, 0xDA, 0x8E, 0x60, 0xD6 }; -static unsigned char *calc_page_hash(char *indata, unsigned int peheader, - int pe32plus, unsigned int sigpos, int phtype, unsigned int *phlen); - DEFINE_STACK_OF(ASN1_OCTET_STRING) DEFINE_STACK_OF(SpcAttributeTypeAndOptionalValue) +static unsigned char *calc_page_hash(char *indata, unsigned int peheader, + int pe32plus, unsigned int sigpos, int phtype, unsigned int *rphlen) +{ + unsigned short nsections = GET_UINT16_LE(indata + peheader + 6); + unsigned int pagesize = GET_UINT32_LE(indata + peheader + 56); + unsigned int hdrsize = GET_UINT32_LE(indata + peheader + 84); + const EVP_MD *md = EVP_get_digestbynid(phtype); + int pphlen = 4 + EVP_MD_size(md); + int phlen = pphlen * (3 + nsections + sigpos / pagesize); + unsigned char *res = malloc(phlen); + unsigned char *zeroes = calloc(pagesize, 1); + EVP_MD_CTX *mdctx; + + mdctx = EVP_MD_CTX_new(); + EVP_DigestInit(mdctx, md); + EVP_DigestUpdate(mdctx, indata, peheader + 88); + EVP_DigestUpdate(mdctx, indata + peheader + 92, 60 + pe32plus*16); + EVP_DigestUpdate(mdctx, indata + peheader + 160 + pe32plus*16, hdrsize - (peheader + 160 + pe32plus*16)); + EVP_DigestUpdate(mdctx, zeroes, pagesize - hdrsize); + memset(res, 0, 4); + EVP_DigestFinal(mdctx, res + 4, NULL); + + unsigned short sizeofopthdr = GET_UINT16_LE(indata + peheader + 20); + char *sections = indata + peheader + 24 + sizeofopthdr; + int i, pi = 1; + unsigned int lastpos = 0; + for (i=0; i