crypt32: Support indefinite-length encoded arrays.
This commit is contained in:
parent
159a369318
commit
5d168bd4c0
|
@ -536,7 +536,7 @@ static BOOL CRYPT_AsnDecodeArray(const struct AsnArrayDescriptor *arrayDesc,
|
|||
{
|
||||
DWORD dataLen;
|
||||
|
||||
if ((ret = CRYPT_GetLen(pbEncoded, cbEncoded, &dataLen)))
|
||||
if ((ret = CRYPT_GetLengthIndefinite(pbEncoded, cbEncoded, &dataLen)))
|
||||
{
|
||||
DWORD bytesNeeded, cItems = 0, decoded;
|
||||
BYTE lenBytes = GET_LEN_BYTES(pbEncoded[1]);
|
||||
|
@ -549,15 +549,36 @@ static BOOL CRYPT_AsnDecodeArray(const struct AsnArrayDescriptor *arrayDesc,
|
|||
if (dataLen)
|
||||
{
|
||||
const BYTE *ptr;
|
||||
BOOL doneDecoding = FALSE;
|
||||
|
||||
for (ptr = pbEncoded + 1 + lenBytes; ret &&
|
||||
ptr - pbEncoded - 1 - lenBytes < dataLen; )
|
||||
for (ptr = pbEncoded + 1 + lenBytes; ret && !doneDecoding; )
|
||||
{
|
||||
DWORD itemLenBytes, itemDataLen, itemDecoded, size = 0;
|
||||
DWORD itemLenBytes;
|
||||
|
||||
itemLenBytes = GET_LEN_BYTES(ptr[1]);
|
||||
/* Each item decoded may not tolerate extraneous bytes, so
|
||||
* get the length of the next element and pass it directly.
|
||||
if (dataLen == CMSG_INDEFINITE_LENGTH)
|
||||
{
|
||||
if (ptr[0] == 0)
|
||||
{
|
||||
doneDecoding = TRUE;
|
||||
if (itemLenBytes != 1 || ptr[1] != 0)
|
||||
{
|
||||
SetLastError(CRYPT_E_ASN1_CORRUPT);
|
||||
ret = FALSE;
|
||||
}
|
||||
else
|
||||
decoded += 2;
|
||||
}
|
||||
}
|
||||
else if (ptr - pbEncoded - 1 - lenBytes >= dataLen)
|
||||
doneDecoding = TRUE;
|
||||
if (!doneDecoding)
|
||||
{
|
||||
DWORD itemDataLen, itemDecoded, size = 0;
|
||||
|
||||
/* Each item decoded may not tolerate extraneous bytes,
|
||||
* so get the length of the next element and pass it
|
||||
* directly.
|
||||
*/
|
||||
ret = CRYPT_GetLen(ptr, cbEncoded - (ptr - pbEncoded),
|
||||
&itemDataLen);
|
||||
|
@ -580,13 +601,14 @@ static BOOL CRYPT_AsnDecodeArray(const struct AsnArrayDescriptor *arrayDesc,
|
|||
CryptMemAlloc(
|
||||
cItems * sizeof(struct AsnArrayItemSize));
|
||||
if (itemSizes)
|
||||
memcpy(itemSizes, &itemSize, sizeof(itemSize));
|
||||
memcpy(itemSizes, &itemSize,
|
||||
sizeof(itemSize));
|
||||
}
|
||||
if (itemSizes)
|
||||
{
|
||||
decoded += itemDecoded;
|
||||
itemSizes[cItems - 1].encodedLen = 1 + itemLenBytes
|
||||
+ itemDataLen;
|
||||
itemSizes[cItems - 1].encodedLen =
|
||||
1 + itemLenBytes + itemDataLen;
|
||||
itemSizes[cItems - 1].size = size;
|
||||
bytesNeeded += size;
|
||||
ret = CRYPT_GetLen(ptr,
|
||||
|
@ -599,6 +621,7 @@ static BOOL CRYPT_AsnDecodeArray(const struct AsnArrayDescriptor *arrayDesc,
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (ret)
|
||||
{
|
||||
if (pcbDecoded)
|
||||
|
|
|
@ -1015,7 +1015,6 @@ static void test_decodeName(DWORD dwEncoding)
|
|||
ret = CryptDecodeObjectEx(dwEncoding, X509_NAME, emptyIndefiniteSequence,
|
||||
sizeof(emptyIndefiniteSequence), CRYPT_DECODE_ALLOC_FLAG, NULL,
|
||||
(BYTE *)&buf, &bufSize);
|
||||
todo_wine
|
||||
ok(ret, "CryptDecodeObjectEx failed: %08x\n", GetLastError());
|
||||
if (ret)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue