Skip to content

Commit 2e34a2e

Browse files
committedNov 15, 2023
8318671: Potential uninitialized uintx value after JDK-8317683
Reviewed-by: thartmann, shade
1 parent fac6b51 commit 2e34a2e

File tree

3 files changed

+88
-29
lines changed

3 files changed

+88
-29
lines changed
 

‎src/hotspot/share/compiler/compilerOracle.cpp

+26-17
Original file line numberDiff line numberDiff line change
@@ -673,20 +673,27 @@ static bool parseMemLimit(const char* line, intx& value, int& bytes_read, char*
673673
return true;
674674
}
675675

676-
static bool parseEnumValueAsUintx(enum CompileCommand option, const char* line, uintx& value, int& bytes_read, char* errorbuf, const int buf_size) {
677-
if (option == CompileCommand::MemStat) {
678-
if (strncasecmp(line, "collect", 7) == 0) {
679-
value = (uintx)MemStatAction::collect;
680-
} else if (strncasecmp(line, "print", 5) == 0) {
681-
value = (uintx)MemStatAction::print;
682-
print_final_memstat_report = true;
683-
} else {
684-
jio_snprintf(errorbuf, buf_size, "MemStat: invalid value expected 'collect' or 'print' (omitting value means 'collect')");
685-
}
686-
return true; // handled
676+
static bool parseMemStat(const char* line, uintx& value, int& bytes_read, char* errorbuf, const int buf_size) {
677+
678+
#define IF_ENUM_STRING(S, CMD) \
679+
if (strncasecmp(line, S, strlen(S)) == 0) { \
680+
bytes_read += (int)strlen(S); \
681+
CMD \
682+
return true; \
687683
}
684+
685+
IF_ENUM_STRING("collect", {
686+
value = (uintx)MemStatAction::collect;
687+
});
688+
IF_ENUM_STRING("print", {
689+
value = (uintx)MemStatAction::print;
690+
print_final_memstat_report = true;
691+
});
692+
#undef IF_ENUM_STRING
693+
694+
jio_snprintf(errorbuf, buf_size, "MemStat: invalid option");
695+
688696
return false;
689-
#undef HANDLE_VALUE
690697
}
691698

692699
static void scan_value(enum OptionType type, char* line, int& total_bytes_read,
@@ -714,11 +721,13 @@ static void scan_value(enum OptionType type, char* line, int& total_bytes_read,
714721
}
715722
} else if (type == OptionType::Uintx) {
716723
uintx value;
717-
// Is it a named enum?
718-
bool success = parseEnumValueAsUintx(option, line, value, bytes_read, errorbuf, buf_size);
719-
if (!success) {
720-
// Is it a raw number?
721-
success = (sscanf(line, "" UINTX_FORMAT "%n", &value, &bytes_read) == 1);
724+
bool success = false;
725+
if (option == CompileCommand::MemStat) {
726+
// Special parsing for MemStat
727+
success = parseMemStat(line, value, bytes_read, errorbuf, buf_size);
728+
} else {
729+
// parse as raw number
730+
success = sscanf(line, "" UINTX_FORMAT "%n", &value, &bytes_read) == 1;
722731
}
723732
if (success) {
724733
total_bytes_read += bytes_read;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
/*
2+
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
4+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5+
*
6+
* This code is free software; you can redistribute it and/or modify it
7+
* under the terms of the GNU General Public License version 2 only, as
8+
* published by the Free Software Foundation.
9+
*
10+
* This code is distributed in the hope that it will be useful, but WITHOUT
11+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13+
* version 2 for more details (a copy is included in the LICENSE file that
14+
* accompanied this code).
15+
*
16+
* You should have received a copy of the GNU General Public License version
17+
* 2 along with this work; if not, write to the Free Software Foundation,
18+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19+
*
20+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21+
* or visit www.oracle.com if you need additional information or have any
22+
* questions.
23+
*/
24+
25+
/*
26+
* @test
27+
* @bug 8318671
28+
* @summary Tests various ways to call memstat
29+
* @library /test/lib /
30+
*
31+
* @run driver compiler.compilercontrol.commands.MemStatTest
32+
*/
33+
34+
package compiler.compilercontrol.commands;
35+
36+
import jdk.test.lib.process.ProcessTools;
37+
38+
public class MemStatTest {
39+
public static void main(String[] args) throws Exception {
40+
// default => collect
41+
ProcessTools.executeTestJvm("-XX:CompileCommand=MemStat,*.*", "-version")
42+
.shouldHaveExitValue(0)
43+
.shouldNotContain("CompileCommand: An error occurred during parsing")
44+
.shouldContain("CompileCommand: MemStat *.* uintx MemStat = 1"); // should be registered
45+
// collect explicit
46+
ProcessTools.executeTestJvm("-XX:CompileCommand=MemStat,*.*,collect", "-version")
47+
.shouldHaveExitValue(0)
48+
.shouldNotContain("CompileCommand: An error occurred during parsing")
49+
.shouldContain("CompileCommand: MemStat *.* uintx MemStat = 1"); // should be registered
50+
// print explicit
51+
ProcessTools.executeTestJvm("-XX:CompileCommand=MemStat,*.*,print", "-version")
52+
.shouldHaveExitValue(0)
53+
.shouldNotContain("CompileCommand: An error occurred during parsing")
54+
.shouldContain("CompileCommand: MemStat *.* uintx MemStat = 2");
55+
// invalid suboption
56+
ProcessTools.executeTestJvm("-XX:CompileCommand=MemStat,*.*,invalid", "-version")
57+
.shouldNotHaveExitValue(0)
58+
.shouldContain("CompileCommand: An error occurred during parsing")
59+
.shouldContain("Error: Value cannot be read for option 'MemStat'")
60+
.shouldNotContain("CompileCommand: MemStat"); // should *NOT* be registered
61+
}
62+
}

‎test/hotspot/jtreg/serviceability/dcmd/compiler/CompilerMemoryStatisticTest.java

-12
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,6 @@
3939
* @run main/othervm -XX:CompileCommand=memstat,*.* CompilerMemoryStatisticTest
4040
*/
4141

42-
/*
43-
* @test CompilerMemoryStatisticTest
44-
* @summary Test Compiler.memory
45-
* @requires vm.compiler1.enabled
46-
* @requires vm.compiler2.enabled
47-
*
48-
* @library /test/lib
49-
* @modules java.base/jdk.internal.misc
50-
* java.management
51-
* @run main/othervm -XX:CompileCommand=memstat,*.*,collect CompilerMemoryStatisticTest
52-
*/
53-
5442
public class CompilerMemoryStatisticTest {
5543

5644
public static void main(String args[]) throws Exception {

0 commit comments

Comments
 (0)
Please sign in to comment.