mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00
sizeof style
This commit is contained in:
parent
1bdfcc8940
commit
8b064ca814
@ -1422,7 +1422,7 @@ static SpcLink *get_obsolete_link(void)
|
||||
link->value.file = SpcString_new();
|
||||
link->value.file->type = 0;
|
||||
link->value.file->value.unicode = ASN1_BMPSTRING_new();
|
||||
ASN1_STRING_set(link->value.file->value.unicode, obsolete, sizeof(obsolete));
|
||||
ASN1_STRING_set(link->value.file->value.unicode, obsolete, sizeof obsolete);
|
||||
return link;
|
||||
}
|
||||
|
||||
@ -1434,7 +1434,7 @@ static const unsigned char classid_page_hash[] = {
|
||||
static unsigned char *pe_calc_page_hash(char *indata, uint32_t header_size,
|
||||
int pe32plus, uint32_t sigpos, int phtype, size_t *rphlen)
|
||||
{
|
||||
uint16_t nsections, sizeofopthdr;
|
||||
uint16_t nsections, opthdr_size;
|
||||
uint32_t pagesize, hdrsize;
|
||||
uint32_t rs, ro, l, lastpos = 0;
|
||||
int pphlen, phlen, i, pi = 1;
|
||||
@ -1463,8 +1463,8 @@ static unsigned char *pe_calc_page_hash(char *indata, uint32_t header_size,
|
||||
memset(res, 0, 4);
|
||||
EVP_DigestFinal(mdctx, res + 4, NULL);
|
||||
|
||||
sizeofopthdr = GET_UINT16_LE(indata + header_size + 20);
|
||||
sections = indata + header_size + 24 + sizeofopthdr;
|
||||
opthdr_size = GET_UINT16_LE(indata + header_size + 20);
|
||||
sections = indata + header_size + 24 + opthdr_size;
|
||||
for (i=0; i<nsections; i++) {
|
||||
rs = GET_UINT32_LE(sections + 16);
|
||||
ro = GET_UINT32_LE(sections + 20);
|
||||
@ -1554,7 +1554,7 @@ static SpcLink *get_page_hash_link(int phtype, char *indata, FILE_HEADER *header
|
||||
sk_ASN1_TYPE_free(aset);
|
||||
|
||||
so = SpcSerializedObject_new();
|
||||
ASN1_OCTET_STRING_set(so->classId, classid_page_hash, sizeof(classid_page_hash));
|
||||
ASN1_OCTET_STRING_set(so->classId, classid_page_hash, sizeof classid_page_hash);
|
||||
ASN1_OCTET_STRING_set(so->serializedData, p, l);
|
||||
OPENSSL_free(p);
|
||||
|
||||
@ -1614,7 +1614,7 @@ static void get_indirect_data_blob(u_char **blob, int *len, GLOBAL_OPTIONS *opti
|
||||
ASN1_INTEGER_set(si->d, 0);
|
||||
ASN1_INTEGER_set(si->e, 0);
|
||||
ASN1_INTEGER_set(si->f, 0);
|
||||
ASN1_OCTET_STRING_set(si->string, msistr, sizeof(msistr));
|
||||
ASN1_OCTET_STRING_set(si->string, msistr, sizeof msistr);
|
||||
l = i2d_SpcSipInfo(si, NULL);
|
||||
p = OPENSSL_malloc(l);
|
||||
i2d_SpcSipInfo(si, &p);
|
||||
@ -1964,7 +1964,7 @@ static time_t si_get_time(PKCS7_SIGNER_INFO *si)
|
||||
if (object == NULL)
|
||||
return INVALID_TIME; /* FAILED */
|
||||
object_txt[0] = 0x00;
|
||||
OBJ_obj2txt(object_txt, sizeof(object_txt), object, 1);
|
||||
OBJ_obj2txt(object_txt, sizeof object_txt, object, 1);
|
||||
if (!strcmp(object_txt, PKCS9_SIGNING_TIME)) {
|
||||
/* PKCS#9 signing time - Policy OID: 1.2.840.113549.1.9.5 */
|
||||
time = X509_ATTRIBUTE_get0_data(attr, 0, V_ASN1_UTCTIME, NULL);
|
||||
@ -2199,9 +2199,9 @@ static int print_attributes(SIGNATURE *signature, int verbose)
|
||||
print_time_t(signature->signtime);
|
||||
|
||||
if (signature->purpose) {
|
||||
if (!memcmp(signature->purpose, purpose_comm, sizeof(purpose_comm)))
|
||||
if (!memcmp(signature->purpose, purpose_comm, sizeof purpose_comm))
|
||||
printf("\tMicrosoft Commercial Code Signing purpose\n");
|
||||
else if (!memcmp(signature->purpose, purpose_ind, sizeof(purpose_ind)))
|
||||
else if (!memcmp(signature->purpose, purpose_ind, sizeof purpose_ind))
|
||||
printf("\tMicrosoft Individual Code Signing purpose\n");
|
||||
else
|
||||
printf("\tUnrecognized Code Signing purpose\n");
|
||||
@ -2213,7 +2213,7 @@ static int print_attributes(SIGNATURE *signature, int verbose)
|
||||
printf("\tText description: %s\n", signature->desc);
|
||||
}
|
||||
if (signature->level) {
|
||||
if (!memcmp(signature->level, java_attrs_low, sizeof(java_attrs_low)))
|
||||
if (!memcmp(signature->level, java_attrs_low, sizeof java_attrs_low))
|
||||
printf("\tLow level of permissions in Microsoft Internet Explorer 4.x for CAB files\n");
|
||||
else
|
||||
printf("\tUnrecognized level of permissions in Microsoft Internet Explorer 4.x for CAB files\n");
|
||||
@ -2251,7 +2251,7 @@ static void get_signed_attributes(SIGNATURE *signature, STACK_OF(X509_ATTRIBUTE)
|
||||
if (object == NULL)
|
||||
continue;
|
||||
object_txt[0] = 0x00;
|
||||
OBJ_obj2txt(object_txt, sizeof(object_txt), object, 1);
|
||||
OBJ_obj2txt(object_txt, sizeof object_txt, object, 1);
|
||||
if (!strcmp(object_txt, PKCS9_MESSAGE_DIGEST)) {
|
||||
/* PKCS#9 message digest - Policy OID: 1.2.840.113549.1.9.4 */
|
||||
signature->digest = X509_ATTRIBUTE_get0_data(attr, 0, V_ASN1_OCTET_STRING, NULL);
|
||||
@ -2317,7 +2317,7 @@ static void get_unsigned_attributes(STACK_OF(SIGNATURE) **signatures, SIGNATURE
|
||||
if (object == NULL)
|
||||
continue;
|
||||
object_txt[0] = 0x00;
|
||||
OBJ_obj2txt(object_txt, sizeof(object_txt), object, 1);
|
||||
OBJ_obj2txt(object_txt, sizeof object_txt, object, 1);
|
||||
if (!strcmp(object_txt, PKCS9_COUNTER_SIGNATURE)) {
|
||||
/* Authenticode Timestamp - Policy OID: 1.2.840.113549.1.9.6 */
|
||||
PKCS7_SIGNER_INFO *countersi;
|
||||
@ -3182,8 +3182,8 @@ static void pe_calc_digest(char *indata, const EVP_MD *md, unsigned char *mdbuf,
|
||||
while (n < offset) {
|
||||
int l;
|
||||
size_t want = offset - n;
|
||||
if (want > sizeof(bfb))
|
||||
want = sizeof(bfb);
|
||||
if (want > sizeof bfb)
|
||||
want = sizeof bfb;
|
||||
l = BIO_read(bio, bfb, want);
|
||||
if (l <= 0)
|
||||
break;
|
||||
@ -3224,8 +3224,8 @@ static void pe_extract_page_hash(SpcAttributeTypeAndOptionalValue *obj,
|
||||
return;
|
||||
}
|
||||
so = id->file->value.moniker;
|
||||
if (so->classId->length != sizeof(classid_page_hash) ||
|
||||
memcmp(so->classId->data, classid_page_hash, sizeof (classid_page_hash))) {
|
||||
if (so->classId->length != sizeof classid_page_hash ||
|
||||
memcmp(so->classId->data, classid_page_hash, sizeof classid_page_hash)) {
|
||||
SpcPeImageData_free(id);
|
||||
return;
|
||||
}
|
||||
@ -3239,7 +3239,7 @@ static void pe_extract_page_hash(SpcAttributeTypeAndOptionalValue *obj,
|
||||
|
||||
*phtype = 0;
|
||||
buf[0] = 0x00;
|
||||
OBJ_obj2txt(buf, sizeof(buf), obj->type, 1);
|
||||
OBJ_obj2txt(buf, sizeof buf, obj->type, 1);
|
||||
if (!strcmp(buf, SPC_PE_IMAGE_PAGE_HASHES_V1)) {
|
||||
*phtype = NID_sha1;
|
||||
} else if (!strcmp(buf, SPC_PE_IMAGE_PAGE_HASHES_V2)) {
|
||||
@ -3683,8 +3683,8 @@ static void cab_calc_digest(char *indata, const EVP_MD *md, unsigned char *mdbuf
|
||||
while (coffFiles < offset) {
|
||||
int l;
|
||||
uint32_t want = offset - coffFiles;
|
||||
if (want > sizeof(bfb))
|
||||
want = sizeof(bfb);
|
||||
if (want > sizeof bfb)
|
||||
want = sizeof bfb;
|
||||
l = BIO_read(bio, bfb, want);
|
||||
if (l <= 0)
|
||||
break;
|
||||
@ -4280,7 +4280,7 @@ static void add_jp_attribute(PKCS7_SIGNER_INFO *si, int jp)
|
||||
switch (jp) {
|
||||
case 0:
|
||||
attrs = java_attrs_low;
|
||||
len = sizeof(java_attrs_low);
|
||||
len = sizeof java_attrs_low;
|
||||
break;
|
||||
case 1:
|
||||
/* XXX */
|
||||
@ -4303,9 +4303,9 @@ static void add_purpose_attribute(PKCS7_SIGNER_INFO *si, int comm)
|
||||
|
||||
astr = ASN1_STRING_new();
|
||||
if (comm) {
|
||||
ASN1_STRING_set(astr, purpose_comm, sizeof(purpose_comm));
|
||||
ASN1_STRING_set(astr, purpose_comm, sizeof purpose_comm);
|
||||
} else {
|
||||
ASN1_STRING_set(astr, purpose_ind, sizeof(purpose_ind));
|
||||
ASN1_STRING_set(astr, purpose_ind, sizeof purpose_ind);
|
||||
}
|
||||
PKCS7_add_signed_attribute(si, OBJ_txt2nid(SPC_STATEMENT_TYPE_OBJID),
|
||||
V_ASN1_SEQUENCE, astr);
|
||||
@ -4428,8 +4428,8 @@ static int add_unauthenticated_blob(PKCS7 *sig)
|
||||
if ((p = OPENSSL_malloc(len)) == NULL)
|
||||
return 1; /* FAILED */
|
||||
memset(p, 0, len);
|
||||
memcpy(p, prefix, sizeof(prefix));
|
||||
memcpy(p+len-sizeof(postfix), postfix, sizeof(postfix));
|
||||
memcpy(p, prefix, sizeof prefix);
|
||||
memcpy(p + len - sizeof postfix, postfix, sizeof postfix);
|
||||
astr = ASN1_STRING_new();
|
||||
ASN1_STRING_set(astr, p, len);
|
||||
nid = OBJ_create(SPC_UNAUTHENTICATED_DATA_BLOB_OBJID,
|
||||
@ -4724,10 +4724,10 @@ static int get_file_type(char *indata, char *infile, file_type_t *type)
|
||||
*type = FILE_TYPE_CAB;
|
||||
} else if (!memcmp(indata, "MZ", 2)) {
|
||||
*type = FILE_TYPE_PE;
|
||||
} else if (!memcmp(indata, msi_magic, sizeof(msi_magic))) {
|
||||
} else if (!memcmp(indata, msi_magic, sizeof msi_magic)) {
|
||||
*type = FILE_TYPE_MSI;
|
||||
} else if (!memcmp(indata + ((GET_UINT8_LE(indata+1) == 0x82) ? 4 : 5),
|
||||
pkcs7_signed_data, sizeof(pkcs7_signed_data))) {
|
||||
pkcs7_signed_data, sizeof pkcs7_signed_data)) {
|
||||
/* the maximum size of a supported cat file is (2^24 -1) bytes */
|
||||
*type = FILE_TYPE_CAT;
|
||||
} else {
|
||||
@ -4755,7 +4755,7 @@ static char *getpassword(const char *prompt)
|
||||
printf("Failed to set terminal attributes\n");
|
||||
return NULL;
|
||||
}
|
||||
p = fgets(passbuf, sizeof(passbuf), stdin);
|
||||
p = fgets(passbuf, sizeof passbuf, stdin);
|
||||
if (tcsetattr(fileno(stdin), TCSANOW, &ofl) != 0)
|
||||
printf("Failed to restore terminal attributes\n");
|
||||
if (!p) {
|
||||
@ -4764,7 +4764,7 @@ static char *getpassword(const char *prompt)
|
||||
}
|
||||
passbuf[strlen(passbuf)-1] = 0x00;
|
||||
pass = OPENSSL_strdup(passbuf);
|
||||
memset(passbuf, 0, sizeof(passbuf));
|
||||
memset(passbuf, 0, sizeof passbuf);
|
||||
return pass;
|
||||
#else
|
||||
return getpass(prompt);
|
||||
@ -4783,7 +4783,7 @@ static int read_password(GLOBAL_OPTIONS *options)
|
||||
printf("Failed to open password file: %s\n", options->readpass);
|
||||
return 0; /* FAILED */
|
||||
}
|
||||
passlen = read(passfd, passbuf, sizeof(passbuf)-1);
|
||||
passlen = read(passfd, passbuf, sizeof passbuf - 1);
|
||||
close(passfd);
|
||||
if (passlen <= 0) {
|
||||
printf("Failed to read password from file: %s\n", options->readpass);
|
||||
@ -4791,7 +4791,7 @@ static int read_password(GLOBAL_OPTIONS *options)
|
||||
}
|
||||
passbuf[passlen] = 0x00;
|
||||
options->pass = OPENSSL_strdup(passbuf);
|
||||
memset(passbuf, 0, sizeof(passbuf));
|
||||
memset(passbuf, 0, sizeof passbuf);
|
||||
#ifdef PROVIDE_ASKPASS
|
||||
} else if (options->askpass) {
|
||||
options->pass = getpassword("Password: ");
|
||||
@ -5227,7 +5227,7 @@ static PKCS7 *get_sigfile(char *sigfile, file_type_t type)
|
||||
printf("Failed to open file: %s\n", sigfile);
|
||||
return NULL; /* FAILED */
|
||||
}
|
||||
if (sigfilesize >= sizeof(pemhdr) && !memcmp(insigdata, pemhdr, sizeof(pemhdr)-1)) {
|
||||
if (sigfilesize >= sizeof pemhdr && !memcmp(insigdata, pemhdr, sizeof pemhdr - 1)) {
|
||||
sigbio = BIO_new_mem_buf(insigdata, sigfilesize);
|
||||
sig = PEM_read_bio_PKCS7(sigbio, NULL, NULL, NULL);
|
||||
BIO_free_all(sigbio);
|
||||
|
Loading…
x
Reference in New Issue
Block a user