-
Bug
-
Resolution: Duplicate
-
P3
-
6, 7
-
generic
-
generic
JDWP spec for ThreadReference.ForceEarlyReturn says: "For methods that return primitive values, the value's type must match the return type exactly. For object values, there must be a widening reference conversion from the value's type to the return type type and the return type must be loaded"
Test (it should be included in testbase r07)
nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn001
try create command with incompatible values and expect TYPE_MISMATCH error in reply, but in many cases reply doesn't contain error and debuggee VM produce absolutely unexpected output.
E.g. it is possible to return boolean instead of int, and this part of spec "For object values, there must be a widening reference conversion from the value's type to the return type" also isn't checked.
For example debuggee VM run following thread:
class TestThread
implements Runnable
{
public void run()
{
TestClass1 result = testMethod();
log.display("Tested method result: " + result);
}
public TestClass1 testMethod()
{
log.display("in test method");
return new TestClass1();
}
}
TestClass1 is empty class:
class TestClass1
{
}
Debugger set breakpont at line
log.display("in test method");
and send ForceEarlyReturn command where 'value' is instance of java.lang.Object, reply for this command doesn't contain error code and debuggee thread after resuming produce output:
debugee.stderr> Tested method result: java.lang.Object@a9c09e
So, it is possible with ForceEarlyReturn return values of incompatible types.
Test (it should be included in testbase r07)
nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn001
try create command with incompatible values and expect TYPE_MISMATCH error in reply, but in many cases reply doesn't contain error and debuggee VM produce absolutely unexpected output.
E.g. it is possible to return boolean instead of int, and this part of spec "For object values, there must be a widening reference conversion from the value's type to the return type" also isn't checked.
For example debuggee VM run following thread:
class TestThread
implements Runnable
{
public void run()
{
TestClass1 result = testMethod();
log.display("Tested method result: " + result);
}
public TestClass1 testMethod()
{
log.display("in test method");
return new TestClass1();
}
}
TestClass1 is empty class:
class TestClass1
{
}
Debugger set breakpont at line
log.display("in test method");
and send ForceEarlyReturn command where 'value' is instance of java.lang.Object, reply for this command doesn't contain error code and debuggee thread after resuming produce output:
debugee.stderr> Tested method result: java.lang.Object@a9c09e
So, it is possible with ForceEarlyReturn return values of incompatible types.
- duplicates
-
JDK-6444285 SetLocalObject and ForceEarlyReturnObject don't check for type mismatches on Objects
-
- Closed
-
- relates to
-
JDK-6458173 nsk/jdwp/ThreadReference/ForceEarlyReturn/forceEarlyReturn001 asserts with fastdebug -Xcomp -client
-
- Closed
-
-
JDK-6444285 SetLocalObject and ForceEarlyReturnObject don't check for type mismatches on Objects
-
- Closed
-