The following issues were found
src/third_party/wiredtiger/test/suite/test_import02.py
15 issues
Line: 33
Column: 1
# Error conditions when trying to import files.
import os, shutil
import wiredtiger, wttest
from test_import01 import test_import_base
class test_import02(test_import_base):
conn_config = 'cache_size=50MB,log=(enabled)'
session_config = 'isolation=snapshot'
Reported by Pylint.
Line: 33
Column: 1
# Error conditions when trying to import files.
import os, shutil
import wiredtiger, wttest
from test_import01 import test_import_base
class test_import02(test_import_base):
conn_config = 'cache_size=50MB,log=(enabled)'
session_config = 'isolation=snapshot'
Reported by Pylint.
Line: 128
Column: 16
# Export the metadata for one of the files we made.
# We just need an example of what a file configuration would typically look like.
cursor = self.session.open_cursor('metadata:', None, None)
for k, v in cursor:
if k.startswith('table:'):
example_db_file_config = cursor[k]
break
cursor.close()
Reported by Pylint.
Line: 1
Column: 1
#!/usr/bin/env python
#
# Public Domain 2014-present MongoDB, Inc.
# Public Domain 2008-2014 WiredTiger, Inc.
#
# This is free and unencumbered software released into the public domain.
#
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a compiled
Reported by Pylint.
Line: 32
Column: 1
# test_import02.py
# Error conditions when trying to import files.
import os, shutil
import wiredtiger, wttest
from test_import01 import test_import_base
class test_import02(test_import_base):
conn_config = 'cache_size=50MB,log=(enabled)'
Reported by Pylint.
Line: 33
Column: 1
# Error conditions when trying to import files.
import os, shutil
import wiredtiger, wttest
from test_import01 import test_import_base
class test_import02(test_import_base):
conn_config = 'cache_size=50MB,log=(enabled)'
session_config = 'isolation=snapshot'
Reported by Pylint.
Line: 36
Column: 1
import wiredtiger, wttest
from test_import01 import test_import_base
class test_import02(test_import_base):
conn_config = 'cache_size=50MB,log=(enabled)'
session_config = 'isolation=snapshot'
original_db_file = 'original_db_file'
uri = 'file:' + original_db_file
Reported by Pylint.
Line: 36
Column: 1
import wiredtiger, wttest
from test_import01 import test_import_base
class test_import02(test_import_base):
conn_config = 'cache_size=50MB,log=(enabled)'
session_config = 'isolation=snapshot'
original_db_file = 'original_db_file'
uri = 'file:' + original_db_file
Reported by Pylint.
Line: 53
Column: 5
# The cases where 'file_metadata' is empty or the config option itself is missing entirely are
# almost identical. Let's capture this in a helper and call them from each test.
def no_metadata_helper(self, import_config):
self.session.create(self.uri, self.create_config)
# Add data and perform a checkpoint.
for i in range(0, len(self.keys)):
self.update(self.uri, self.keys[i], self.values[i], self.ts[i])
Reported by Pylint.
Line: 84
Column: 5
self.assertRaisesException(wiredtiger.WiredTigerError,
lambda: self.session.create(self.uri, import_config))
def test_file_import_empty_metadata(self):
self.no_metadata_helper('import=(enabled,repair=false,file_metadata="")')
def test_file_import_no_metadata(self):
self.no_metadata_helper('import=(enabled,repair=false)')
Reported by Pylint.
src/third_party/mozjs-60/extract/mfbt/EndianUtils.h
15 issues
Line: 298
Column: 7
CWE codes:
120
Suggestion:
Make sure destination can always hold the source data
assertAligned(aSrc);
if (SourceEndian == DestEndian) {
memcpy(aDest, aSrc, aCount * sizeof(T));
return;
}
uint8_t* byteDestPtr = static_cast<uint8_t*>(aDest);
for (size_t i = 0; i < aCount; ++i) {
Reported by FlawFinder.
Line: 310
Column: 7
CWE codes:
120
Suggestion:
Make sure destination can always hold the source data
uint8_t mBuffer[sizeof(T)];
} u;
u.mVal = maybeSwap<SourceEndian, DestEndian>(aSrc[i]);
memcpy(byteDestPtr, u.mBuffer, sizeof(T));
byteDestPtr += sizeof(T);
}
}
/**
Reported by FlawFinder.
Line: 326
Column: 7
CWE codes:
120
Suggestion:
Make sure destination can always hold the source data
assertAligned(aDest);
if (SourceEndian == DestEndian) {
memcpy(aDest, aSrc, aCount * sizeof(T));
return;
}
const uint8_t* byteSrcPtr = static_cast<const uint8_t*>(aSrc);
for (size_t i = 0; i < aCount; ++i) {
Reported by FlawFinder.
Line: 337
Column: 7
CWE codes:
120
Suggestion:
Make sure destination can always hold the source data
T mVal;
uint8_t mBuffer[sizeof(T)];
} u;
memcpy(u.mBuffer, byteSrcPtr, sizeof(T));
aDest[i] = maybeSwap<SourceEndian, DestEndian>(u.mVal);
byteSrcPtr += sizeof(T);
}
}
};
Reported by FlawFinder.
Line: 629
Column: 5
CWE codes:
120
Suggestion:
Make sure destination can always hold the source data
T mVal;
uint8_t mBuffer[sizeof(T)];
} u;
memcpy(u.mBuffer, aPtr, sizeof(T));
return maybeSwap<ThisEndian, MOZ_NATIVE_ENDIANNESS>(u.mVal);
}
/**
* Write a value of type T, in native endianness, to |aPtr|, in ThisEndian
Reported by FlawFinder.
Line: 641
Column: 5
CWE codes:
120
Suggestion:
Make sure destination can always hold the source data
static void write(void* aPtr, T aValue)
{
T tmp = maybeSwap<MOZ_NATIVE_ENDIANNESS, ThisEndian>(aValue);
memcpy(aPtr, &tmp, sizeof(T));
}
Endian() = delete;
Endian(const Endian& aTther) = delete;
void operator=(const Endian& aOther) = delete;
Reported by FlawFinder.
Line: 351
Column: 12
CWE codes:
120
20
/** Read a uint16_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uint16_t readUint16(const void* aPtr)
{
return read<uint16_t>(aPtr);
}
/** Read a uint32_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uint32_t readUint32(const void* aPtr)
{
Reported by FlawFinder.
Line: 357
Column: 12
CWE codes:
120
20
/** Read a uint32_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uint32_t readUint32(const void* aPtr)
{
return read<uint32_t>(aPtr);
}
/** Read a uint64_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uint64_t readUint64(const void* aPtr)
{
Reported by FlawFinder.
Line: 363
Column: 12
CWE codes:
120
20
/** Read a uint64_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uint64_t readUint64(const void* aPtr)
{
return read<uint64_t>(aPtr);
}
/** Read a uintptr_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uintptr_t readUintptr(const void* aPtr)
{
Reported by FlawFinder.
Line: 369
Column: 12
CWE codes:
120
20
/** Read a uintptr_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uintptr_t readUintptr(const void* aPtr)
{
return read<uintptr_t>(aPtr);
}
/** Read an int16_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE int16_t readInt16(const void* aPtr)
{
Reported by FlawFinder.
src/third_party/wiredtiger/test/3rdparty/python-subunit-0.0.16/python/subunit/filters.py
15 issues
Line: 20
Column: 1
from optparse import OptionParser
import sys
from extras import safe_hasattr
from testtools import CopyStreamResult, StreamResult, StreamResultRouter
from subunit import (
DiscardStream, ProtocolTestCase, ByteStreamToStreamResult,
StreamResultToBytes,
Reported by Pylint.
Line: 21
Column: 1
import sys
from extras import safe_hasattr
from testtools import CopyStreamResult, StreamResult, StreamResultRouter
from subunit import (
DiscardStream, ProtocolTestCase, ByteStreamToStreamResult,
StreamResultToBytes,
)
Reported by Pylint.
Line: 146
Column: 21
if output_path is None:
output_to = sys.stdout
else:
output_to = file(output_path, 'wb')
try:
result = result_factory(output_to)
run_tests_from_stream(
input_stream, result, passthrough_stream, forward_stream,
Reported by Pylint.
Line: 17
Column: 1
#
from optparse import OptionParser
import sys
from extras import safe_hasattr
from testtools import CopyStreamResult, StreamResult, StreamResultRouter
Reported by Pylint.
Line: 1
Column: 1
# subunit: extensions to python unittest to get test results from subprocesses.
# Copyright (C) 2009 Robert Collins <robertc@robertcollins.net>
#
# Licensed under either the Apache License, Version 2.0 or the BSD 3-clause
# license at the users choice. A copy of both licenses are available in the
# project source as Apache-2.0 and BSD. You may not use this file except in
# compliance with one of these two licences.
#
# Unless required by applicable law or agreed to in writing, software
Reported by Pylint.
Line: 8
Column: 2
# license at the users choice. A copy of both licenses are available in the
# project source as Apache-2.0 and BSD. You may not use this file except in
# compliance with one of these two licences.
#
# Unless required by applicable law or agreed to in writing, software
# distributed under these licenses is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# license you chose for the specific language governing permissions and
# limitations under that license.
Reported by Pylint.
Line: 30
Column: 1
from subunit.test_results import CatFiles
def make_options(description):
parser = OptionParser(description=description)
parser.add_option(
"--no-passthrough", action="store_true",
help="Hide all non subunit input.", default=False,
dest="no_passthrough")
Reported by Pylint.
Line: 46
Column: 1
return parser
def run_tests_from_stream(input_stream, result, passthrough_stream=None,
forward_stream=None, protocol_version=1, passthrough_subunit=True):
"""Run tests from a subunit input stream through 'result'.
Non-test events - top level file attachments - are expected to be
dropped by v2 StreamResults at the present time (as all the analysis code
Reported by Pylint.
Line: 72
Column: 8
(when forwarding as subunit non-subunit input is always turned into
subunit)
"""
if 1==protocol_version:
test = ProtocolTestCase(
input_stream, passthrough=passthrough_stream,
forward=forward_stream)
elif 2==protocol_version:
# In all cases we encapsulate unknown inputs.
Reported by Pylint.
Line: 76
Column: 10
test = ProtocolTestCase(
input_stream, passthrough=passthrough_stream,
forward=forward_stream)
elif 2==protocol_version:
# In all cases we encapsulate unknown inputs.
if forward_stream is not None:
# Send events to forward_stream as subunit.
forward_result = StreamResultToBytes(forward_stream)
# If we're passing non-subunit through, copy:
Reported by Pylint.
src/third_party/mozjs-60/include/mozilla/EndianUtils.h
15 issues
Line: 298
Column: 7
CWE codes:
120
Suggestion:
Make sure destination can always hold the source data
assertAligned(aSrc);
if (SourceEndian == DestEndian) {
memcpy(aDest, aSrc, aCount * sizeof(T));
return;
}
uint8_t* byteDestPtr = static_cast<uint8_t*>(aDest);
for (size_t i = 0; i < aCount; ++i) {
Reported by FlawFinder.
Line: 310
Column: 7
CWE codes:
120
Suggestion:
Make sure destination can always hold the source data
uint8_t mBuffer[sizeof(T)];
} u;
u.mVal = maybeSwap<SourceEndian, DestEndian>(aSrc[i]);
memcpy(byteDestPtr, u.mBuffer, sizeof(T));
byteDestPtr += sizeof(T);
}
}
/**
Reported by FlawFinder.
Line: 326
Column: 7
CWE codes:
120
Suggestion:
Make sure destination can always hold the source data
assertAligned(aDest);
if (SourceEndian == DestEndian) {
memcpy(aDest, aSrc, aCount * sizeof(T));
return;
}
const uint8_t* byteSrcPtr = static_cast<const uint8_t*>(aSrc);
for (size_t i = 0; i < aCount; ++i) {
Reported by FlawFinder.
Line: 337
Column: 7
CWE codes:
120
Suggestion:
Make sure destination can always hold the source data
T mVal;
uint8_t mBuffer[sizeof(T)];
} u;
memcpy(u.mBuffer, byteSrcPtr, sizeof(T));
aDest[i] = maybeSwap<SourceEndian, DestEndian>(u.mVal);
byteSrcPtr += sizeof(T);
}
}
};
Reported by FlawFinder.
Line: 629
Column: 5
CWE codes:
120
Suggestion:
Make sure destination can always hold the source data
T mVal;
uint8_t mBuffer[sizeof(T)];
} u;
memcpy(u.mBuffer, aPtr, sizeof(T));
return maybeSwap<ThisEndian, MOZ_NATIVE_ENDIANNESS>(u.mVal);
}
/**
* Write a value of type T, in native endianness, to |aPtr|, in ThisEndian
Reported by FlawFinder.
Line: 641
Column: 5
CWE codes:
120
Suggestion:
Make sure destination can always hold the source data
static void write(void* aPtr, T aValue)
{
T tmp = maybeSwap<MOZ_NATIVE_ENDIANNESS, ThisEndian>(aValue);
memcpy(aPtr, &tmp, sizeof(T));
}
Endian() = delete;
Endian(const Endian& aTther) = delete;
void operator=(const Endian& aOther) = delete;
Reported by FlawFinder.
Line: 351
Column: 12
CWE codes:
120
20
/** Read a uint16_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uint16_t readUint16(const void* aPtr)
{
return read<uint16_t>(aPtr);
}
/** Read a uint32_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uint32_t readUint32(const void* aPtr)
{
Reported by FlawFinder.
Line: 357
Column: 12
CWE codes:
120
20
/** Read a uint32_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uint32_t readUint32(const void* aPtr)
{
return read<uint32_t>(aPtr);
}
/** Read a uint64_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uint64_t readUint64(const void* aPtr)
{
Reported by FlawFinder.
Line: 363
Column: 12
CWE codes:
120
20
/** Read a uint64_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uint64_t readUint64(const void* aPtr)
{
return read<uint64_t>(aPtr);
}
/** Read a uintptr_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uintptr_t readUintptr(const void* aPtr)
{
Reported by FlawFinder.
Line: 369
Column: 12
CWE codes:
120
20
/** Read a uintptr_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE uintptr_t readUintptr(const void* aPtr)
{
return read<uintptr_t>(aPtr);
}
/** Read an int16_t in ThisEndian endianness from |aPtr| and return it. */
static MOZ_MUST_USE int16_t readInt16(const void* aPtr)
{
Reported by FlawFinder.
src/third_party/wiredtiger/test/suite/test_readonly01.py
15 issues
Line: 78
Column: 5
scenarios = make_scenarios(basecfg_list, dir_list, log_list, types)
def conn_config(self):
params = \
'error_prefix="%s",' % self.shortid() + \
'%s' % self.logcfg + \
'%s' % self.basecfg
if self.create:
Reported by Pylint.
Line: 33
Column: 1
# Readonly: Test readonly mode.
#
import fnmatch, os, shutil, time
from suite_subprocess import suite_subprocess
from wtscenario import make_scenarios
import wttest
class test_readonly01(wttest.WiredTigerTestCase, suite_subprocess):
Reported by Pylint.
Line: 33
Column: 1
# Readonly: Test readonly mode.
#
import fnmatch, os, shutil, time
from suite_subprocess import suite_subprocess
from wtscenario import make_scenarios
import wttest
class test_readonly01(wttest.WiredTigerTestCase, suite_subprocess):
Reported by Pylint.
Line: 33
Column: 1
# Readonly: Test readonly mode.
#
import fnmatch, os, shutil, time
from suite_subprocess import suite_subprocess
from wtscenario import make_scenarios
import wttest
class test_readonly01(wttest.WiredTigerTestCase, suite_subprocess):
Reported by Pylint.
Line: 104
Suggestion:
https://bandit.readthedocs.io/en/latest/plugins/b103_set_bad_file_permissions.html
for f in os.listdir(self.home):
if os.path.isfile(f):
os.chmod(f, 0o444)
os.chmod(self.home, 0o555)
self.conn = self.setUpConnectionOpen(self.home)
self.session = self.setUpSessionOpen(self.conn)
def readonly(self):
# Here's the strategy:
Reported by Bandit.
Line: 1
Column: 1
#!/usr/bin/env python
#
# Public Domain 2014-present MongoDB, Inc.
# Public Domain 2008-2014 WiredTiger, Inc.
#
# This is free and unencumbered software released into the public domain.
#
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a compiled
Reported by Pylint.
Line: 33
Column: 1
# Readonly: Test readonly mode.
#
import fnmatch, os, shutil, time
from suite_subprocess import suite_subprocess
from wtscenario import make_scenarios
import wttest
class test_readonly01(wttest.WiredTigerTestCase, suite_subprocess):
Reported by Pylint.
Line: 38
Column: 1
from wtscenario import make_scenarios
import wttest
class test_readonly01(wttest.WiredTigerTestCase, suite_subprocess):
tablename = 'test_readonly01'
create = True
entries = 10000
#
Reported by Pylint.
Line: 38
Column: 1
from wtscenario import make_scenarios
import wttest
class test_readonly01(wttest.WiredTigerTestCase, suite_subprocess):
tablename = 'test_readonly01'
create = True
entries = 10000
#
Reported by Pylint.
Line: 78
Column: 5
scenarios = make_scenarios(basecfg_list, dir_list, log_list, types)
def conn_config(self):
params = \
'error_prefix="%s",' % self.shortid() + \
'%s' % self.logcfg + \
'%s' % self.basecfg
if self.create:
Reported by Pylint.
src/third_party/icu4c-57.1/source/common/uloc_tag.c
15 issues
Line: 43
Column: 11
CWE codes:
119
120
Suggestion:
Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length
typedef struct ULanguageTag {
char *buf; /* holding parsed subtags */
const char *language;
const char *extlang[MAXEXTLANG];
const char *script;
const char *region;
VariantListEntry *variants;
ExtensionListEntry *extensions;
const char *privateuse;
Reported by FlawFinder.
Line: 629
Column: 5
CWE codes:
119
120
Suggestion:
Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length
static int32_t
_appendLanguageToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UErrorCode* status) {
char buf[ULOC_LANG_CAPACITY];
UErrorCode tmpStatus = U_ZERO_ERROR;
int32_t len, i;
int32_t reslen = 0;
if (U_FAILURE(*status)) {
Reported by FlawFinder.
Line: 684
Column: 5
CWE codes:
119
120
Suggestion:
Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length
static int32_t
_appendScriptToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UErrorCode* status) {
char buf[ULOC_SCRIPT_CAPACITY];
UErrorCode tmpStatus = U_ZERO_ERROR;
int32_t len;
int32_t reslen = 0;
if (U_FAILURE(*status)) {
Reported by FlawFinder.
Line: 726
Column: 5
CWE codes:
119
120
Suggestion:
Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length
static int32_t
_appendRegionToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UErrorCode* status) {
char buf[ULOC_COUNTRY_CAPACITY];
UErrorCode tmpStatus = U_ZERO_ERROR;
int32_t len;
int32_t reslen = 0;
if (U_FAILURE(*status)) {
Reported by FlawFinder.
Line: 768
Column: 5
CWE codes:
119
120
Suggestion:
Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length
static int32_t
_appendVariantsToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UBool *hadPosix, UErrorCode* status) {
char buf[ULOC_FULLNAME_CAPACITY];
UErrorCode tmpStatus = U_ZERO_ERROR;
int32_t len, i;
int32_t reslen = 0;
if (U_FAILURE(*status)) {
Reported by FlawFinder.
Line: 892
Column: 5
CWE codes:
119
120
Suggestion:
Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length
static int32_t
_appendKeywordsToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UBool hadPosix, UErrorCode* status) {
char buf[ULOC_KEYWORD_AND_VALUES_CAPACITY];
char attrBuf[ULOC_KEYWORD_AND_VALUES_CAPACITY] = { 0 };
int32_t attrBufLength = 0;
UBool isAttribute = FALSE;
UEnumeration *keywordEnum = NULL;
int32_t reslen = 0;
Reported by FlawFinder.
Line: 893
Column: 5
CWE codes:
119
120
Suggestion:
Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length
static int32_t
_appendKeywordsToLanguageTag(const char* localeID, char* appendAt, int32_t capacity, UBool strict, UBool hadPosix, UErrorCode* status) {
char buf[ULOC_KEYWORD_AND_VALUES_CAPACITY];
char attrBuf[ULOC_KEYWORD_AND_VALUES_CAPACITY] = { 0 };
int32_t attrBufLength = 0;
UBool isAttribute = FALSE;
UEnumeration *keywordEnum = NULL;
int32_t reslen = 0;
Reported by FlawFinder.
Line: 913
Column: 9
CWE codes:
119
120
Suggestion:
Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length
AttributeListEntry *firstAttr = NULL;
AttributeListEntry *attr;
char *attrValue;
char extBuf[ULOC_KEYWORD_AND_VALUES_CAPACITY];
char *pExtBuf = extBuf;
int32_t extBufCapacity = sizeof(extBuf);
const char *bcpKey, *bcpValue;
UErrorCode tmpStatus = U_ZERO_ERROR;
int32_t keylen;
Reported by FlawFinder.
Line: 1208
Column: 5
CWE codes:
119
120
Suggestion:
Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length
int32_t len;
int32_t bufIdx = 0;
char attrBuf[ULOC_KEYWORD_AND_VALUES_CAPACITY];
int32_t attrBufIdx = 0;
/* Reset the posixVariant value */
*posixVariant = FALSE;
Reported by FlawFinder.
Line: 1366
Column: 17
CWE codes:
119
120
Suggestion:
Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length
const char *pKey = NULL; /* LDML key */
const char *pType = NULL; /* LDML type */
char bcpKeyBuf[9]; /* BCP key length is always 2 for now */
U_ASSERT(pBcpKey != NULL);
if (bcpKeyLen >= sizeof(bcpKeyBuf)) {
/* the BCP key is invalid */
Reported by FlawFinder.
src/third_party/mozjs-60/extract/js/src/vm/EnvironmentObject.cpp
14 issues
Line: 458
// It is not be possible to add or remove bindings from a module environment
// after this point as module code is always strict.
#ifdef DEBUG
for (Shape::Range<NoGC> r(env->lastProperty()); !r.empty(); r.popFront())
MOZ_ASSERT(!r.front().configurable());
MOZ_ASSERT(env->lastProperty()->getObjectFlags() & BaseShape::NOT_EXTENSIBLE);
MOZ_ASSERT(!env->inDictionaryMode());
#endif
Reported by Cppcheck.
Line: 615
properties.infallibleAppend(name);
});
for (Shape::Range<NoGC> r(self->lastProperty()); !r.empty(); r.popFront())
properties.infallibleAppend(r.front().propid());
MOZ_ASSERT(properties.length() == count);
return true;
}
Reported by Cppcheck.
Line: 2007
Column: 22
CWE codes:
362/367!
Suggestion:
Set up the correct permissions (e.g., using setuid()) and try to open the file directly
return getMissingThisPropertyDescriptor(cx, debugEnv, *env, desc);
RootedValue v(cx);
AccessResult access;
if (!handleUnaliasedAccess(cx, debugEnv, env, id, GET, &v, &access))
return false;
switch (access) {
case ACCESS_UNALIASED:
Reported by FlawFinder.
Line: 2008
Column: 69
CWE codes:
362/367!
Suggestion:
Set up the correct permissions (e.g., using setuid()) and try to open the file directly
RootedValue v(cx);
AccessResult access;
if (!handleUnaliasedAccess(cx, debugEnv, env, id, GET, &v, &access))
return false;
switch (access) {
case ACCESS_UNALIASED:
if (isMagicMissingArgumentsValue(*env, v))
Reported by FlawFinder.
Line: 2011
Column: 17
CWE codes:
362/367!
Suggestion:
Set up the correct permissions (e.g., using setuid()) and try to open the file directly
if (!handleUnaliasedAccess(cx, debugEnv, env, id, GET, &v, &access))
return false;
switch (access) {
case ACCESS_UNALIASED:
if (isMagicMissingArgumentsValue(*env, v))
return getMissingArgumentsPropertyDescriptor(cx, debugEnv, *env, desc);
desc.object().set(debugEnv);
desc.setAttributes(JSPROP_READONLY | JSPROP_ENUMERATE | JSPROP_PERMANENT);
Reported by FlawFinder.
Line: 2076
Column: 22
CWE codes:
362/367!
Suggestion:
Set up the correct permissions (e.g., using setuid()) and try to open the file directly
if (isMissingThis(cx, id, *env))
return getMissingThis(cx, *env, vp);
AccessResult access;
if (!handleUnaliasedAccess(cx, debugEnv, env, id, GET, vp, &access))
return false;
switch (access) {
case ACCESS_UNALIASED:
Reported by FlawFinder.
Line: 2077
Column: 69
CWE codes:
362/367!
Suggestion:
Set up the correct permissions (e.g., using setuid()) and try to open the file directly
return getMissingThis(cx, *env, vp);
AccessResult access;
if (!handleUnaliasedAccess(cx, debugEnv, env, id, GET, vp, &access))
return false;
switch (access) {
case ACCESS_UNALIASED:
if (isMagicMissingArgumentsValue(*env, vp))
Reported by FlawFinder.
Line: 2080
Column: 17
CWE codes:
362/367!
Suggestion:
Set up the correct permissions (e.g., using setuid()) and try to open the file directly
if (!handleUnaliasedAccess(cx, debugEnv, env, id, GET, vp, &access))
return false;
switch (access) {
case ACCESS_UNALIASED:
if (isMagicMissingArgumentsValue(*env, vp))
return getMissingArguments(cx, *env, vp);
if (isMaybeUninitializedThisValue(cx, id, vp))
return getMissingThis(cx, *env, vp);
Reported by FlawFinder.
Line: 2136
Column: 22
CWE codes:
362/367!
Suggestion:
Set up the correct permissions (e.g., using setuid()) and try to open the file directly
if (isMissingThis(cx, id, *env))
return getMissingThisMaybeSentinelValue(cx, *env, vp);
AccessResult access;
if (!handleUnaliasedAccess(cx, debugEnv, env, id, GET, vp, &access))
return false;
switch (access) {
case ACCESS_UNALIASED:
Reported by FlawFinder.
Line: 2137
Column: 69
CWE codes:
362/367!
Suggestion:
Set up the correct permissions (e.g., using setuid()) and try to open the file directly
return getMissingThisMaybeSentinelValue(cx, *env, vp);
AccessResult access;
if (!handleUnaliasedAccess(cx, debugEnv, env, id, GET, vp, &access))
return false;
switch (access) {
case ACCESS_UNALIASED:
if (isMagicMissingArgumentsValue(*env, vp))
Reported by FlawFinder.
src/third_party/gperftools/dist/src/windows/nm-pdb.c
14 issues
Line: 133
Column: 7
CWE codes:
134
Suggestion:
Use a constant for the format specification
/* Display information about symbols, based on kind of symbol. */
switch (module_info.SymType) {
case SymNone:
printf(("No symbols available for the module.\n"));
break;
case SymExport:
printf(("Loaded symbols: Exports\n"));
break;
case SymCoff:
Reported by FlawFinder.
Line: 136
Column: 7
CWE codes:
134
Suggestion:
Use a constant for the format specification
printf(("No symbols available for the module.\n"));
break;
case SymExport:
printf(("Loaded symbols: Exports\n"));
break;
case SymCoff:
printf(("Loaded symbols: COFF\n"));
break;
case SymCv:
Reported by FlawFinder.
Line: 139
Column: 7
CWE codes:
134
Suggestion:
Use a constant for the format specification
printf(("Loaded symbols: Exports\n"));
break;
case SymCoff:
printf(("Loaded symbols: COFF\n"));
break;
case SymCv:
printf(("Loaded symbols: CodeView\n"));
break;
case SymSym:
Reported by FlawFinder.
Line: 142
Column: 7
CWE codes:
134
Suggestion:
Use a constant for the format specification
printf(("Loaded symbols: COFF\n"));
break;
case SymCv:
printf(("Loaded symbols: CodeView\n"));
break;
case SymSym:
printf(("Loaded symbols: SYM\n"));
break;
case SymVirtual:
Reported by FlawFinder.
Line: 145
Column: 7
CWE codes:
134
Suggestion:
Use a constant for the format specification
printf(("Loaded symbols: CodeView\n"));
break;
case SymSym:
printf(("Loaded symbols: SYM\n"));
break;
case SymVirtual:
printf(("Loaded symbols: Virtual\n"));
break;
case SymPdb:
Reported by FlawFinder.
Line: 148
Column: 7
CWE codes:
134
Suggestion:
Use a constant for the format specification
printf(("Loaded symbols: SYM\n"));
break;
case SymVirtual:
printf(("Loaded symbols: Virtual\n"));
break;
case SymPdb:
printf(("Loaded symbols: PDB\n"));
break;
case SymDia:
Reported by FlawFinder.
Line: 151
Column: 7
CWE codes:
134
Suggestion:
Use a constant for the format specification
printf(("Loaded symbols: Virtual\n"));
break;
case SymPdb:
printf(("Loaded symbols: PDB\n"));
break;
case SymDia:
printf(("Loaded symbols: DIA\n"));
break;
case SymDeferred:
Reported by FlawFinder.
Line: 154
Column: 7
CWE codes:
134
Suggestion:
Use a constant for the format specification
printf(("Loaded symbols: PDB\n"));
break;
case SymDia:
printf(("Loaded symbols: DIA\n"));
break;
case SymDeferred:
printf(("Loaded symbols: Deferred\n")); /* not actually loaded */
break;
default:
Reported by FlawFinder.
Line: 157
Column: 7
CWE codes:
134
Suggestion:
Use a constant for the format specification
printf(("Loaded symbols: DIA\n"));
break;
case SymDeferred:
printf(("Loaded symbols: Deferred\n")); /* not actually loaded */
break;
default:
printf(("Loaded symbols: Unknown format.\n"));
break;
}
Reported by FlawFinder.
Line: 160
Column: 7
CWE codes:
134
Suggestion:
Use a constant for the format specification
printf(("Loaded symbols: Deferred\n")); /* not actually loaded */
break;
default:
printf(("Loaded symbols: Unknown format.\n"));
break;
}
MaybePrint("Image name", module_info.ImageName);
MaybePrint("Loaded image name", module_info.LoadedImageName);
Reported by FlawFinder.
src/third_party/wiredtiger/test/suite/test_metadata_cursor01.py
14 issues
Line: 29
Column: 1
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
import wiredtiger, wttest
from wtscenario import make_scenarios
# test_metadata_cursor01.py
# Metadata cursor operations
# Basic smoke-test of metadata cursor: test backward and forward iteration
Reported by Pylint.
Line: 1
Column: 1
#!/usr/bin/env python
#
# Public Domain 2014-present MongoDB, Inc.
# Public Domain 2008-2014 WiredTiger, Inc.
#
# This is free and unencumbered software released into the public domain.
#
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a compiled
Reported by Pylint.
Line: 29
Column: 1
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
import wiredtiger, wttest
from wtscenario import make_scenarios
# test_metadata_cursor01.py
# Metadata cursor operations
# Basic smoke-test of metadata cursor: test backward and forward iteration
Reported by Pylint.
Line: 36
Column: 1
# Metadata cursor operations
# Basic smoke-test of metadata cursor: test backward and forward iteration
# as well as search.
class test_metadata_cursor01(wttest.WiredTigerTestCase):
"""
Test basic operations
"""
table_name1 = 'test_metadata_cursor01'
Reported by Pylint.
Line: 47
Column: 5
('create', {'metauri' : 'metadata:create'}),
])
def genkey(self, i):
if self.tablekind == 'row':
return 'key' + str(i)
else:
return self.recno(i+1)
Reported by Pylint.
Line: 48
Column: 9
])
def genkey(self, i):
if self.tablekind == 'row':
return 'key' + str(i)
else:
return self.recno(i+1)
def genvalue(self, i):
Reported by Pylint.
Line: 53
Column: 5
else:
return self.recno(i+1)
def genvalue(self, i):
if self.tablekind == 'fix':
return int(i & 0xff)
else:
return 'value' + str(i)
Reported by Pylint.
Line: 54
Column: 9
return self.recno(i+1)
def genvalue(self, i):
if self.tablekind == 'fix':
return int(i & 0xff)
else:
return 'value' + str(i)
def assertCursorHasNoKeyValue(self, cursor):
Reported by Pylint.
Line: 59
Column: 5
else:
return 'value' + str(i)
def assertCursorHasNoKeyValue(self, cursor):
keymsg = '/requires key be set/'
valuemsg = '/requires value be set/'
self.assertRaisesWithMessage(
wiredtiger.WiredTigerError, cursor.get_key, keymsg)
self.assertRaisesWithMessage(
Reported by Pylint.
Line: 59
Column: 5
else:
return 'value' + str(i)
def assertCursorHasNoKeyValue(self, cursor):
keymsg = '/requires key be set/'
valuemsg = '/requires value be set/'
self.assertRaisesWithMessage(
wiredtiger.WiredTigerError, cursor.get_key, keymsg)
self.assertRaisesWithMessage(
Reported by Pylint.
src/third_party/wiredtiger/test/suite/test_util07.py
14 issues
Line: 31
Column: 1
import os, struct
from suite_subprocess import suite_subprocess
import wiredtiger, wttest
# test_util07.py
# Utilities: wt read
class test_util07(wttest.WiredTigerTestCase, suite_subprocess):
tablename = 'test_util07.a'
Reported by Pylint.
Line: 29
Column: 1
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
import os, struct
from suite_subprocess import suite_subprocess
import wiredtiger, wttest
# test_util07.py
# Utilities: wt read
Reported by Pylint.
Line: 29
Column: 1
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
import os, struct
from suite_subprocess import suite_subprocess
import wiredtiger, wttest
# test_util07.py
# Utilities: wt read
Reported by Pylint.
Line: 31
Column: 1
import os, struct
from suite_subprocess import suite_subprocess
import wiredtiger, wttest
# test_util07.py
# Utilities: wt read
class test_util07(wttest.WiredTigerTestCase, suite_subprocess):
tablename = 'test_util07.a'
Reported by Pylint.
Line: 51
Column: 5
cursor[key] = val
cursor.close()
def close_conn(self):
"""
Close the connection if already open.
"""
if self.conn != None:
self.conn.close()
Reported by Pylint.
Line: 59
Column: 5
self.conn.close()
self.conn = None
def open_conn(self):
"""
Open the connection if already closed.
"""
if self.conn == None:
self.conn = self.setUpConnectionOpen(".")
Reported by Pylint.
Line: 1
Column: 1
#!/usr/bin/env python
#
# Public Domain 2014-present MongoDB, Inc.
# Public Domain 2008-2014 WiredTiger, Inc.
#
# This is free and unencumbered software released into the public domain.
#
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a compiled
Reported by Pylint.
Line: 29
Column: 1
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
import os, struct
from suite_subprocess import suite_subprocess
import wiredtiger, wttest
# test_util07.py
# Utilities: wt read
Reported by Pylint.
Line: 31
Column: 1
import os, struct
from suite_subprocess import suite_subprocess
import wiredtiger, wttest
# test_util07.py
# Utilities: wt read
class test_util07(wttest.WiredTigerTestCase, suite_subprocess):
tablename = 'test_util07.a'
Reported by Pylint.
Line: 31
Column: 1
import os, struct
from suite_subprocess import suite_subprocess
import wiredtiger, wttest
# test_util07.py
# Utilities: wt read
class test_util07(wttest.WiredTigerTestCase, suite_subprocess):
tablename = 'test_util07.a'
Reported by Pylint.