#ifndef _NTINTSAFE_H_INCLUDED_
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_SYSTEM | WINAPI_PARTITION_GAMES)
/////////////////////////////////////////////////////////////////////////
//
// signed operations
//
// Strongly consider using unsigned numbers.
//
// Signed numbers are often used where unsigned numbers should be used.
// For example file sizes and array indices should always be unsigned.
// (File sizes should be 64bit integers; array indices should be size_t.)
// Subtracting a larger positive signed number from a smaller positive
// signed number with RtlIntSub will succeed, producing a negative number,
// that then must not be used as an array index (but can occasionally be
// used as a pointer index.) Similarly for adding a larger magnitude
// negative number to a smaller magnitude positive number.
//
// intsafe.h does not protect you from such errors. It tells you if your
// integer operations overflowed, not if you are doing the right thing
// with your non-overflowed integers.
//
// Likewise you can overflow a buffer with a non-overflowed unsigned index.
//
#if defined(ENABLE_INTSAFE_SIGNED_FUNCTIONS)
//
// LONGLONG multiplication
//
_Must_inspect_result_
__inline
NTSTATUS
RtlLongLongMult(
_In_ LONGLONG llMultiplicand,
_In_ LONGLONG llMultiplier,
_Out_ _Deref_out_range_(==, llMultiplicand * llMultiplier) LONGLONG* pllResult
)
{
NTSTATUS status;
#if defined(_USE_INTRINSIC_MULTIPLY128)
LONGLONG llResultHigh;
LONGLONG llResultLow;
llResultLow = Multiply128(llMultiplicand, llMultiplier, &llResultHigh);
if (((llResultLow < 0) && (llResultHigh != -1)) ||
((llResultLow >= 0) && (llResultHigh != 0)))
{
*pllResult = LONGLONG_ERROR;
status = STATUS_INTEGER_OVERFLOW;
}
else
{
*pllResult = llResultLow;
status = STATUS_SUCCESS;
}
#else // _USE_INTRINSIC_MULTIPLY128
//
// Split into sign and magnitude, do unsigned operation, apply sign.
//
ULONGLONG ullMultiplicand;
ULONGLONG ullMultiplier;
ULONGLONG ullResult;
const ULONGLONG LONGLONG_MIN_MAGNITUDE = ((((ULONGLONG) - (LONGLONG_MIN + 1))) + 1);
if (llMultiplicand < 0)
{
//
// Avoid negating the most negative number.
//
ullMultiplicand = ((ULONGLONG)(- (llMultiplicand + 1))) + 1;
}
else
{
ullMultiplicand = (ULONGLONG)llMultiplicand;
}
if (llMultiplier < 0)
{
//
// Avoid negating the most negative number.
//
ullMultiplier = ((ULONGLONG)(- (llMultiplier + 1))) + 1;
}
else
{
ullMultiplier = (ULONGLONG)llMultiplier;
}
status = RtlULongLongMult(ullMultiplicand, ullMultiplier, &ullResult);
if (NT_SUCCESS(status))
{
if ((llMultiplicand < 0) != (llMultiplier < 0))
{
if (ullResult > LONGLONG_MIN_MAGNITUDE)
{
*pllResult = LONGLONG_ERROR;
status = STATUS_INTEGER_OVERFLOW;
}
else
{
*pllResult = - ((LONGLONG)ullResult);
}
}
else
{
if (ullResult > LONGLONG_MAX)
{
*pllResult = LONGLONG_ERROR;
status = STATUS_INTEGER_OVERFLOW;
}
else
{
*pllResult = (LONGLONG)ullResult;
}
}
}
else
{
*pllResult = LONGLONG_ERROR;
}
#endif // _USE_INTRINSIC_MULTIPLY128
return status;
}
View code on GitHub
No description available.