Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Address issues picked up by Dev15 code analysis #5272

Merged
merged 32 commits into from
Jun 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
18f95b7
Fix format string inaccuracies.
Penguinwizzard Mar 6, 2018
95e0f4f
Align annotations for GetAccessors functions.
Penguinwizzard Mar 6, 2018
ea3af76
Fix type of argument for isalnum to avoid implicit cast warning
Penguinwizzard Mar 6, 2018
1f57ed5
Improve locking annotation somewhat
Penguinwizzard Mar 6, 2018
321ef76
Silence a warning in the jsrtapitests.
Penguinwizzard Mar 6, 2018
6fd29fb
Silence a warning raised due to ETW generated header
Penguinwizzard Mar 6, 2018
fa92015
Annotate intentional potentially redundant test
Penguinwizzard Mar 6, 2018
3e1a41a
Have FunctionExecutionStateMachine ignore the same warnings
Penguinwizzard Mar 6, 2018
4749841
Avoid calling memset with nullptr parameter
Penguinwizzard Mar 6, 2018
c15e537
Change arithmetic on bools to ints
Penguinwizzard Mar 6, 2018
c2b6a3c
Silence PREfast false positive
Penguinwizzard Mar 6, 2018
6b6c50d
Initialize values in DateTimeInternal
Penguinwizzard Mar 6, 2018
4457eec
Suppress a few PREfast false positives in ch
Penguinwizzard Mar 6, 2018
0cd5f64
Constructor-initialize some values in RuntimeThreadData
Penguinwizzard Mar 6, 2018
6581486
Suppress a PREfast false positive in config flag handling
Penguinwizzard Mar 6, 2018
7ad8cc5
Change types to avoid overflow-related issues in baseline handling
Penguinwizzard Mar 6, 2018
3878d55
Slight change to annotate overflow as unlikely in command line parame…
Penguinwizzard Mar 6, 2018
8454ed6
cast before usage in echo
Penguinwizzard Jun 5, 2018
e756000
Attempt to satisfy SWB check
Penguinwizzard Jun 6, 2018
ba0fadf
Address review comments
Penguinwizzard Jun 6, 2018
024bf5c
SWB fix
Penguinwizzard Jun 6, 2018
b46397c
move to initializer list for runtimethreaddata
Penguinwizzard Jun 6, 2018
34b7013
standardize GetAccessor calls
Penguinwizzard Jun 8, 2018
83edb62
Change suppression number to named macro
Penguinwizzard Jun 8, 2018
6285aee
disable warnings
Penguinwizzard Jun 25, 2018
62e989e
small fixes
Penguinwizzard Jun 25, 2018
80438b7
Get an additional few cases
Penguinwizzard Jun 26, 2018
b3695e0
Address remaining issues for enabling dev15 jenkins ci
Penguinwizzard Jun 28, 2018
e450902
Have wabt work in win7
Penguinwizzard Jun 28, 2018
a157300
Disable one more warning in catch.hpp
Penguinwizzard Jun 28, 2018
d3222bd
Address x86-only prefast warning
Penguinwizzard Jun 28, 2018
02a471a
Address CR comments
Penguinwizzard Jun 29, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/External/catch.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7374,7 +7374,7 @@ namespace Catch {
return TestCaseInfo::None;
}
inline bool isReservedTag( std::string const& tag ) {
return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !isalnum( tag[0] );
return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !isalnum( (unsigned char)tag[0] );
}
inline void enforceNotReservedTag( std::string const& tag, SourceLineInfo const& _lineInfo ) {
if( isReservedTag( tag ) ) {
Expand Down
2 changes: 1 addition & 1 deletion bin/GCStress/StubExternalApi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

bool ConfigParserAPI::FillConsoleTitle(__ecount(cchBufferSize) LPWSTR buffer, size_t cchBufferSize, __in LPWSTR moduleName)
{
swprintf_s(buffer, cchBufferSize, _u("Chakra GC: %d - %s"), GetCurrentProcessId(), moduleName);
swprintf_s(buffer, cchBufferSize, _u("Chakra GC: %lu - %s"), GetCurrentProcessId(), moduleName);

return true;
}
Expand Down
4 changes: 2 additions & 2 deletions bin/GCStress/WeightedTable.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ template <class T>
class WeightedTable
{
public:
WeightedTable() :
WeightedTable() noexcept :
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

noexcept [](start = 20, length = 8)

Did you mean to add this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, it was that or a longer statement to disable the warning for just that line. This took fewer keypresses, and won't complicate any future efforts to go over all the warnings we've disabled.

entries(nullptr), size(0)
{
}

void AddWeightedEntry(T value, unsigned int weight)
{
T * newEntries = static_cast<T *>(realloc(entries, (size + weight) * sizeof(T)));
T * newEntries = static_cast<T *>(realloc(entries, ((size_t)size + weight) * sizeof(T)));
if (newEntries == nullptr)
{
// Should throw something better
Expand Down
6 changes: 5 additions & 1 deletion bin/NativeTests/CodexTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
#include "stdafx.h"
#pragma warning(disable:26434) // Function definition hides non-virtual function in base class
#pragma warning(disable:26439) // Implicit noexcept
#pragma warning(disable:26451) // Arithmetic overflow
#pragma warning(disable:26495) // Uninitialized member variable
#include "catch.hpp"
#include <process.h>
#include "Codex\Utf8Codex.h"
Expand Down Expand Up @@ -280,4 +284,4 @@ namespace CodexTest

RunUtf8DecodeTestCase(testCases, utf8::DecodeUnitsIntoAndNullTerminateNoAdvance);
}
};
};
2 changes: 1 addition & 1 deletion bin/NativeTests/FileLoadHelpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ HRESULT FileLoadHelpers::LoadScriptFromFile(LPCSTR filename, LPCWSTR& contents,
utf8::DecodeOptions decodeOptions = utf8::doAllowInvalidWCHARs;

UINT cUtf16Chars = utf8::ByteIndexIntoCharacterIndex(pRawBytes, lengthBytes, decodeOptions);
contents = (LPCWSTR)HeapAlloc(GetProcessHeap(), 0, (cUtf16Chars + 1) * sizeof(WCHAR));
contents = (LPCWSTR)HeapAlloc(GetProcessHeap(), 0, (cUtf16Chars + (size_t)1) * sizeof(WCHAR));
if (nullptr == contents)
{
fwprintf(stderr, _u("out of memory"));
Expand Down
4 changes: 4 additions & 0 deletions bin/NativeTests/FunctionExecutionTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
#include "stdafx.h"
#pragma warning(disable:26434) // Function definition hides non-virtual function in base class
#pragma warning(disable:26439) // Implicit noexcept
#pragma warning(disable:26451) // Arithmetic overflow
#pragma warning(disable:26495) // Uninitialized member variable
#include "catch.hpp"
#include "FunctionExecutionTest.h"

Expand Down
1 change: 1 addition & 0 deletions bin/NativeTests/FunctionExecutionTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
// This file contains stubs needed to make FunctionExecutionTest successfully compile and link as well
// as a means to emulate behavior of objects that interact with FunctionExecutionStateMachine

#include "..\..\lib\Common\Warnings.h"
#include "..\..\lib\Common\Core\CommonMinMax.h"

#define ENUM_CLASS_HELPERS(x, y)
Expand Down
4 changes: 4 additions & 0 deletions bin/NativeTests/JsDiagApiTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
//-------------------------------------------------------------------------------------------------------

#include "stdafx.h"
#pragma warning(disable:26434) // Function definition hides non-virtual function in base class
#pragma warning(disable:26439) // Implicit noexcept
#pragma warning(disable:26451) // Arithmetic overflow
#pragma warning(disable:26495) // Uninitialized member variable
#include "catch.hpp"
#include <process.h>

Expand Down
8 changes: 7 additions & 1 deletion bin/NativeTests/JsRTApiTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
#include "stdafx.h"
#pragma warning(disable:26434) // Function definition hides non-virtual function in base class
#pragma warning(disable:26439) // Implicit noexcept
#pragma warning(disable:26451) // Arithmetic overflow
#pragma warning(disable:26495) // Uninitialized member variable
#include "catch.hpp"
#include <array>
#include <process.h>
#include <suppress.h>

#pragma warning(disable:4100) // unreferenced formal parameter
#pragma warning(disable:6387) // suppressing preFAST which raises warning for passing null to the JsRT APIs
Expand Down Expand Up @@ -1243,7 +1248,8 @@ namespace JsRTApiTest
size_t length;
REQUIRE(JsStringToPointer(nameValue, &name, &length) == JsNoError);

CHECK(length == 1);
REQUIRE(length == 1);
#pragma prefast(suppress:__WARNING_MAYBE_UNINIT_VAR, "The require on the previous line should ensure that name[0] is initialized")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

__WARNING_MAYBE_UNINIT_VAR [](start = 25, length = 26)

Did not all warnings have these fancy named macros? (There are some you're still suppressing or disabling by number)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nope, not all of them do. There are a couple cases where I missed using the named macro, though, that I should be fixing up in the next set of commits.

CHECK(name[0] == ('a' + index));
}
}
Expand Down
4 changes: 4 additions & 0 deletions bin/NativeTests/MemoryPolicyTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
#include "stdafx.h"
#pragma warning(disable:26434) // Function definition hides non-virtual function in base class
#pragma warning(disable:26439) // Implicit noexcept
#pragma warning(disable:26451) // Arithmetic overflow
#pragma warning(disable:26495) // Uninitialized member variable
#include "catch.hpp"

#pragma warning(disable:6387) // suppressing preFAST which raises warning for passing null to the JsRT APIs
Expand Down
4 changes: 4 additions & 0 deletions bin/NativeTests/NativeTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
// conversion from 'int' to 'char', possible loss of data
#pragma warning(disable:4242)
#pragma warning(disable:4244)
#pragma warning(disable:26434) // Function definition hides non-virtual function in base class
#pragma warning(disable:26439) // Implicit noexcept
#pragma warning(disable:26451) // Arithmetic overflow
#pragma warning(disable:26495) // Uninitialized member variable
#include "catch.hpp"
#pragma warning(pop)

Expand Down
4 changes: 4 additions & 0 deletions bin/NativeTests/ThreadServiceTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
//-------------------------------------------------------------------------------------------------------

#include "stdafx.h"
#pragma warning(disable:26434) // Function definition hides non-virtual function in base class
#pragma warning(disable:26439) // Implicit noexcept
#pragma warning(disable:26451) // Arithmetic overflow
#pragma warning(disable:26495) // Uninitialized member variable
#include "catch.hpp"

#pragma warning(disable:6387) // suppressing preFAST which raises warning for passing null to the JsRT APIs
Expand Down
4 changes: 4 additions & 0 deletions bin/NativeTests/UnicodeTextTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
//-------------------------------------------------------------------------------------------------------

#include "stdafx.h"
#pragma warning(disable:26434) // Function definition hides non-virtual function in base class
#pragma warning(disable:26439) // Implicit noexcept
#pragma warning(disable:26451) // Arithmetic overflow
#pragma warning(disable:26495) // Uninitialized member variable
#include "catch.hpp"

namespace UnicodeTextTest
Expand Down
12 changes: 6 additions & 6 deletions bin/ch/Debugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ bool Debugger::SetBaseline()
#ifdef _WIN32
LPSTR script = nullptr;
FILE *file = nullptr;
int numChars = 0;
size_t numChars = 0;
HRESULT hr = S_OK;

if (_wfopen_s(&file, HostConfigFlags::flags.dbgbaseline, _u("rb")) != 0)
Expand All @@ -316,13 +316,13 @@ bool Debugger::SetBaseline()

if(file != nullptr)
{
int fileSize = _filelength(_fileno(file));
if (fileSize <= MAX_BASELINE_SIZE)
long fileSize = _filelength(_fileno(file));
if (0 <= fileSize && fileSize <= MAX_BASELINE_SIZE)
{
script = new char[fileSize + 1];
script = new char[(size_t)fileSize + 1];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this required?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Array size declarations are size_t, and the analysis gets unhappy if we have a different type used in the addition here before the implicit conversion. This is notable for types shorter than size_t, as the overflow would occur before the conversion to size_t. I believe that on all currently-supported platforms this is indeed not required.


numChars = static_cast<int>(fread(script, sizeof(script[0]), fileSize, file));
if (numChars == fileSize)
numChars = fread(script, sizeof(script[0]), fileSize, file);
if (numChars == (size_t)fileSize)
{
script[numChars] = '\0';

Expand Down
1 change: 1 addition & 0 deletions bin/ch/HostConfigFlags.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ void HostConfigFlags::RemoveArg(int& argc, _Inout_updates_to_(argc, argc) LPWSTR
Assert(index >= 0 && index < argc);
for (int i = index + 1; i < argc; ++i)
{
#pragma prefast(suppress:__WARNING_READ_OVERRUN, "Operation is safe but PREfast is difficult to convince")
argv[i - 1] = argv[i];
}
--argc;
Expand Down
2 changes: 1 addition & 1 deletion bin/ch/JITProcessManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ HRESULT JITProcessManager::CreateServerProcess(int argc, __in_ecount(argc) LPWST
STARTUPINFOW si = { 0 };

// overallocate constant cmd line (jshost -jitserver:<guid>)
size_t cmdLineSize = (MAX_PATH + argc) * sizeof(WCHAR);
size_t cmdLineSize = (MAX_PATH + (size_t)argc) * sizeof(WCHAR);
for (int i = 0; i < argc; ++i)
{
// calculate space requirement for each arg
Expand Down
16 changes: 9 additions & 7 deletions bin/ch/RuntimeThreadData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,21 @@ RuntimeThreadLocalData& GetRuntimeThreadLocalData()
return threadLocalData;
}

RuntimeThreadData::RuntimeThreadData()
RuntimeThreadData::RuntimeThreadData() :
hSemaphore(nullptr),
hThread(nullptr),
sharedContent(nullptr),
receiveBroadcastCallbackFunc(nullptr),
runtime(nullptr),
context(nullptr),
parent(nullptr),
leaving(false)
{
this->hevntInitialScriptCompleted = CreateEvent(NULL, TRUE, FALSE, NULL);
this->hevntReceivedBroadcast = CreateEvent(NULL, FALSE, FALSE, NULL);
this->hevntShutdown = CreateEvent(NULL, TRUE, FALSE, NULL);

this->sharedContent = nullptr;
this->receiveBroadcastCallbackFunc = nullptr;

this->leaving = false;

InitializeCriticalSection(&csReportQ);

}

RuntimeThreadData::~RuntimeThreadData()
Expand Down
3 changes: 2 additions & 1 deletion bin/ch/WScriptJsrt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
#endif // FreeBSD or unix ?
#endif // _WIN32 ?

#pragma prefast(disable:26444, "This warning unfortunately raises false positives when auto is used for declaring the type of an iterator in a loop.")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

26444 [](start = 24, length = 5)

suppress by name macro instead of number?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No macro for this one, unfortunately.

#ifdef HAS_ICU
#define INTL_LIBRARY_TEXT "icu"
#elif defined(_WIN32)
Expand Down Expand Up @@ -133,7 +134,7 @@ JsValueRef __stdcall WScriptJsrt::EchoCallback(JsValueRef callee, bool isConstru
}
charcount_t len;
LPWSTR ws = str.GetWideString(&len);
LPWSTR wsNoNull = new WCHAR[len + 1];
LPWSTR wsNoNull = new WCHAR[((size_t)len) + 1];
charcount_t newIndex = 0;
for (charcount_t j = 0; j < len; j++)
{
Expand Down
2 changes: 1 addition & 1 deletion bin/ch/ch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ void __stdcall PrintChakraCoreVersion()
// Doesn't matter if you are on 32 bit or 64 bit,
// DWORD is always 32 bits, so first two revision numbers
// come from dwFileVersionMS, last two come from dwFileVersionLS
wprintf(_u("%s version %u.%u.%u.%u\n"),
wprintf(_u("%s version %lu.%lu.%lu.%lu\n"),
chakraDllName,
(verInfo->dwFileVersionMS >> 16) & 0xffff,
(verInfo->dwFileVersionMS >> 0) & 0xffff,
Expand Down
15 changes: 15 additions & 0 deletions bin/rl/rl.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,22 @@
#include "xmlreader.h"
#include "rlfeint.h"

// Note that some of these look pretty bad, and are; this is a test host, so
// we're not as concerned here.
#pragma warning(disable:4127) // expression is constant, e.g., while(TRUE)
#pragma warning(disable:6001) // using uninitialized memory
#pragma warning(disable:6011) // dereferencing null pointer, potentially
#pragma warning(disable:6031) // ignoring return value from some system calls
#pragma warning(disable:6054) // string may not be zero-terminated
#pragma warning(disable:6271) // Extra parameter not used by format string
#pragma warning(disable:6262) // Function using too much stack for analyzer to look at it
#pragma warning(disable:6335) // leaking process information handle
#pragma warning(disable:6386) // Potential buffer overrun
#pragma warning(disable:6387) // Potential misadherance to specification of library functions
#pragma warning(disable:26439) // implicit noexcept
#pragma warning(disable:26451) // Arithmetic on smaller type before widening conversion
#pragma warning(disable:26495) // uninitialized member
#pragma warning(disable:28193) // ignoring value that must be examined

#define LOCAL static
typedef __int32 int32;
Expand Down
2 changes: 2 additions & 0 deletions bin/rl/xmlreader.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
namespace Xml
{

#pragma prefast(disable:26439) // implicit noexcept
#pragma prefast(disable:26495) // uninitialized member variable

// May want Unicode someday.

Expand Down
20 changes: 9 additions & 11 deletions lib/Backend/Lower.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10519,7 +10519,7 @@ Lowerer::LowerStLoopBodyCount(IR::Instr* instr)
IR::MemRefOpnd *loopBodyCounterOpnd = IR::MemRefOpnd::New((BYTE*)(header) + Js::LoopHeader::GetOffsetOfProfiledLoopCounter(), TyUint32, this->m_func);
instr->SetDst(loopBodyCounterOpnd);
instr->ReplaceSrc1(instr->GetSrc1()->AsRegOpnd()->UseWithNewType(TyUint32, this->m_func));
IR::AutoReuseOpnd(loopBodyCounterOpnd, this->m_func);
IR::AutoReuseOpnd autoReuse(loopBodyCounterOpnd, this->m_func);
m_lowererMD.ChangeToAssign(instr);
return;
}
Expand Down Expand Up @@ -21156,8 +21156,12 @@ Lowerer::GenerateArgOutForStackArgs(IR::Instr* callInstr, IR::Instr* stackArgsIn


#if defined(_M_IX86)
Assert(false);
#endif
// We get a compilation error on x86 due to assigning a negative to a uint
// TODO: don't even define this function on x86 - we Assert(false) anyway there.
// Alternatively, don't define when INT_ARG_REG_COUNT - 4 < 0
AssertOrFailFast(false);
return nullptr;
#else

Assert(stackArgsInstr->m_opcode == Js::OpCode::ArgOut_A_FromStackArgs);
Assert(callInstr->m_opcode == Js::OpCode::CallIDynamic);
Expand Down Expand Up @@ -21225,14 +21229,7 @@ Lowerer::GenerateArgOutForStackArgs(IR::Instr* callInstr, IR::Instr* stackArgsIn

// 4 to denote this is 4th register after this, callinfo & function object
// INT_ARG_REG_COUNT is the number of parameters passed in int regs
uint current_reg_pass =
#if defined(_M_IX86)
// We get a compilation error on x86 due to assiging a negative to a uint
// TODO: don't even define this function on x86 - we Assert(false) anyway there.
0;
#else
INT_ARG_REG_COUNT - 4;
#endif
uint current_reg_pass = INT_ARG_REG_COUNT - 4;

do
{
Expand Down Expand Up @@ -21278,6 +21275,7 @@ Lowerer::GenerateArgOutForStackArgs(IR::Instr* callInstr, IR::Instr* stackArgsIn

/*return the length which will be used for callInfo generations & stack allocation*/
return saveLenInstr->GetDst()->AsRegOpnd();
#endif
}

void
Expand Down
1 change: 1 addition & 0 deletions lib/Common/Codex/Utf8Codex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#pragma warning(push)

#pragma warning(disable: 4127) // constant expression for template parameter
#pragma warning(disable: 26451) // size-conversion/arithmetic-operation ordering
#endif

namespace utf8
Expand Down
Loading