Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

According to [JNI Tips], section "Local and Global References", references in native code to the same object may have different values. Return values from the NewGlobalRef() function when applied to the same object may be differentdiffer from each other. Consequently, object references are not necessarily constant or unique. Object references should never be compared using == in native code; instead use the IsSameObject functionor != in native code. When testing for object equality, the IsSameObject() function should be used instead of ==.

Noncompliant Code Example

...

In this compliant solution ... , in native code, object references are tested for object equality using the IsSameObject() function, and the object references tested are global references.

Code Block
bgColor#CCCCFF
 

...

If it is assumed that an object reference is constant or unique then erroneous results may be obtained that could lead to the app crashing. This, in turn, could be used to mount a denial or -of-service attack.

Rule

Severity

Likelihood

Remediation Cost

Priority

Level

JNI02-J

Low

Probable

High

P2

L3

Automated Detection

Although it may be possible to automatically detect the use of == or != for comparing object references in native code, in general automatic detection of the wider issue is not feasible. [Is it?]

...

 

...

Image Added Image Added Image Added