mirror of
https://github.com/github/codeql.git
synced 2026-04-28 02:05:14 +02:00
Merge pull request #211 from raulgarciamsft/users/raulga/HESULT
Cast between semantically different integer types: HRESULT to/from bool
This commit is contained in:
@@ -0,0 +1,100 @@
|
||||
// semmle-extractor-options: --microsoft
|
||||
// winnt.h
|
||||
typedef long HRESULT;
|
||||
#define SUCCEEDED(hr) (((HRESULT)(hr)) >= 0)
|
||||
#define FAILED(hr) (((HRESULT)(hr)) < 0)
|
||||
|
||||
typedef _Bool bool;
|
||||
#define FALSE 0
|
||||
|
||||
// minwindef.h
|
||||
typedef int BOOL;
|
||||
#ifndef FALSE
|
||||
#define FALSE 0
|
||||
#endif
|
||||
#ifndef TRUE
|
||||
#define TRUE 1
|
||||
#endif
|
||||
|
||||
// winerror.h
|
||||
#define S_OK ((HRESULT)0L)
|
||||
#define S_FALSE ((HRESULT)1L)
|
||||
#define _HRESULT_TYPEDEF_(_sc) ((HRESULT)_sc)
|
||||
#define E_UNEXPECTED _HRESULT_TYPEDEF_(0x8000FFFFL)
|
||||
|
||||
HRESULT HresultFunction()
|
||||
{
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
BOOL BoolFunction()
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
bool BoolFunction2()
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
HRESULT IncorrectHresultFunction()
|
||||
{
|
||||
return BoolFunction(); // BUG
|
||||
}
|
||||
|
||||
HRESULT IncorrectHresultFunction2()
|
||||
{
|
||||
return BoolFunction2(); // BUG
|
||||
}
|
||||
|
||||
void IncorrectTypeConversionTest() {
|
||||
|
||||
HRESULT hr = HresultFunction();
|
||||
if ((BOOL)hr) // BUG
|
||||
{
|
||||
// ...
|
||||
}
|
||||
if ((bool)hr) // BUG
|
||||
{
|
||||
// ...
|
||||
}
|
||||
if (SUCCEEDED(hr)) // Correct Usage
|
||||
{
|
||||
// ...
|
||||
}
|
||||
|
||||
if (SUCCEEDED(BoolFunction())) // BUG
|
||||
{
|
||||
// ...
|
||||
}
|
||||
if (SUCCEEDED(BoolFunction2())) // BUG
|
||||
{
|
||||
// ...
|
||||
}
|
||||
if (BoolFunction()) // Correct Usage
|
||||
{
|
||||
// ...
|
||||
}
|
||||
BOOL b = IncorrectHresultFunction(); // BUG
|
||||
bool b2 = IncorrectHresultFunction(); // BUG
|
||||
|
||||
hr = E_UNEXPECTED;
|
||||
if (!hr) // BUG
|
||||
{
|
||||
// ...
|
||||
}
|
||||
if (!FAILED(hr)) // Correct Usage
|
||||
{
|
||||
// ...
|
||||
}
|
||||
|
||||
hr = S_FALSE;
|
||||
if (hr) // BUG
|
||||
{
|
||||
// ...
|
||||
}
|
||||
if (SUCCEEDED(hr)) // Correct Usage
|
||||
{
|
||||
// ...
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
// semmle-extractor-options: --microsoft
|
||||
// winnt.h
|
||||
typedef long HRESULT;
|
||||
#define SUCCEEDED(hr) (((HRESULT)(hr)) >= 0)
|
||||
#define FAILED(hr) (((HRESULT)(hr)) < 0)
|
||||
|
||||
// minwindef.h
|
||||
typedef int BOOL;
|
||||
#ifndef FALSE
|
||||
#define FALSE 0
|
||||
#endif
|
||||
#ifndef TRUE
|
||||
#define TRUE 1
|
||||
#endif
|
||||
|
||||
// winerror.h
|
||||
#define S_OK ((HRESULT)0L)
|
||||
#define S_FALSE ((HRESULT)1L)
|
||||
#define _HRESULT_TYPEDEF_(_sc) ((HRESULT)_sc)
|
||||
#define E_UNEXPECTED _HRESULT_TYPEDEF_(0x8000FFFFL)
|
||||
|
||||
HRESULT HresultFunction()
|
||||
{
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
BOOL BoolFunction()
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
bool BoolFunction2()
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
HRESULT IncorrectHresultFunction()
|
||||
{
|
||||
return BoolFunction(); // BUG
|
||||
}
|
||||
|
||||
HRESULT IncorrectHresultFunction2()
|
||||
{
|
||||
return BoolFunction2(); // BUG
|
||||
}
|
||||
|
||||
void IncorrectTypeConversionTest() {
|
||||
|
||||
HRESULT hr = HresultFunction();
|
||||
if ((BOOL)hr) // BUG
|
||||
{
|
||||
// ...
|
||||
}
|
||||
if ((bool)hr) // BUG
|
||||
{
|
||||
// ...
|
||||
}
|
||||
if (SUCCEEDED(hr)) // Correct Usage
|
||||
{
|
||||
// ...
|
||||
}
|
||||
|
||||
if (SUCCEEDED(BoolFunction())) // BUG
|
||||
{
|
||||
// ...
|
||||
}
|
||||
if (SUCCEEDED(BoolFunction2())) // BUG
|
||||
{
|
||||
// ...
|
||||
}
|
||||
if (BoolFunction()) // Correct Usage
|
||||
{
|
||||
// ...
|
||||
}
|
||||
BOOL b = IncorrectHresultFunction(); // BUG
|
||||
bool b2 = IncorrectHresultFunction(); // BUG
|
||||
|
||||
hr = E_UNEXPECTED;
|
||||
if (!hr) // BUG
|
||||
{
|
||||
// ...
|
||||
}
|
||||
if (!FAILED(hr)) // Correct Usage
|
||||
{
|
||||
// ...
|
||||
}
|
||||
|
||||
hr = S_FALSE;
|
||||
if (hr) // BUG
|
||||
{
|
||||
// ...
|
||||
}
|
||||
if (SUCCEEDED(hr)) // Correct Usage
|
||||
{
|
||||
// ...
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
| HResultBooleanConversion.c:42:12:42:23 | call to BoolFunction | Implicit conversion from BOOL to HRESULT |
|
||||
| HResultBooleanConversion.c:47:12:47:24 | call to BoolFunction2 | Implicit conversion from bool to HRESULT |
|
||||
| HResultBooleanConversion.c:53:15:53:16 | hr | Explicit conversion from HRESULT to BOOL |
|
||||
| HResultBooleanConversion.c:57:15:57:16 | hr | Explicit conversion from HRESULT to bool |
|
||||
| HResultBooleanConversion.c:66:9:66:33 | (...) | Explicit conversion from BOOL to HRESULT |
|
||||
| HResultBooleanConversion.c:70:9:70:34 | (...) | Explicit conversion from bool to HRESULT |
|
||||
| HResultBooleanConversion.c:78:14:78:37 | call to IncorrectHresultFunction | Implicit conversion from HRESULT to BOOL |
|
||||
| HResultBooleanConversion.c:79:15:79:38 | call to IncorrectHresultFunction | Implicit conversion from HRESULT to bool |
|
||||
| HResultBooleanConversion.c:82:10:82:11 | hr | Usage of a type HRESULT as an argument of a unary logical operation |
|
||||
| HResultBooleanConversion.c:92:9:92:10 | hr | Direct usage of a type HRESULT as a conditional expression |
|
||||
| HResultBooleanConversion.cpp:39:12:39:23 | call to BoolFunction | Implicit conversion from BOOL to HRESULT |
|
||||
| HResultBooleanConversion.cpp:44:12:44:24 | call to BoolFunction2 | Implicit conversion from bool to HRESULT |
|
||||
| HResultBooleanConversion.cpp:50:15:50:16 | hr | Explicit conversion from HRESULT to BOOL |
|
||||
| HResultBooleanConversion.cpp:54:15:54:16 | hr | Explicit conversion from HRESULT to bool |
|
||||
| HResultBooleanConversion.cpp:63:9:63:33 | (...) | Explicit conversion from BOOL to HRESULT |
|
||||
| HResultBooleanConversion.cpp:67:9:67:34 | (...) | Explicit conversion from bool to HRESULT |
|
||||
| HResultBooleanConversion.cpp:75:14:75:37 | call to IncorrectHresultFunction | Implicit conversion from HRESULT to BOOL |
|
||||
| HResultBooleanConversion.cpp:76:15:76:38 | call to IncorrectHresultFunction | Implicit conversion from HRESULT to bool |
|
||||
| HResultBooleanConversion.cpp:79:10:79:11 | hr | Implicit conversion from HRESULT to bool |
|
||||
| HResultBooleanConversion.cpp:89:9:89:10 | hr | Implicit conversion from HRESULT to bool |
|
||||
@@ -0,0 +1 @@
|
||||
Security/CWE/CWE-253/HResultBooleanConversion.ql
|
||||
Reference in New Issue
Block a user