Below code sample is taken from JLS 17.5 "final Field Semantics":
class FinalFieldExample {
final int x;
int y;
static FinalFieldExample f;
public FinalFieldExample() {
x = 3;
y = 4;
}
static void writer() {
f = new FinalFieldExample();
}
static void reader() {
if (f != null) {
int i = f.x; // guaranteed to see 3
int j = f.y; // could see 0
}
}
}
Since the instance of FinalFieldExample
is published through a data race, is it possible that the f != null
check evaluates successfully, yet subsequent f.x
dereference sees f
as null
?
In other words, is it possible to get a NullPointerException
on line that is commented with "guaranteed to see 3"?
Okay, here is my own take on it, based on quite a detailed talk (in Russian) on final semantics given by Vladimir Sitnikov, and subsequent revisit of JLS 17.5.1.
Final field semantics
The specification states:
In other words, we are guaranteed to see the write to a final field if the following chain of relations can be built:
1. hb(w, f)
w is the write to the final field:
x = 3
f is the "freeze" action (exiting
FinalFieldExample
constructor):As the field write comes before finishing the constructor in program order, we can assume that
hb(w, f)
:2. hb(f, a)
Definition of a given in the specification is really vague ("action, that is not a read of a final field")
We can assume that a is publishing a reference to the object (
f = new FinalFieldExample()
) since this assumption does not contradict the spec (it is an action, and it is not a read of a final field)Since finishing constructor comes before writing the reference in program order, these two operations are ordered by a happens-before relationship:
hb(f, a)
3. mc(a, r1)
In our case r1 is a "read of the final field frozen by f" (
f.x
)And this is where it starts to get interesting. mc (Memory Chain) is one of the two additional partial orders introduced in "Semantics of final Fields" section:
For the simple example given in question we're really only interested in the first point, as the other two are needed to reason about more complicated cases.
Below is the part that actually explains why it is possible to get an NPE:
mc(a, r1)
relation only exists if the read of the field sees the write to the shared referencef != null
andf.x
are two distinct read operations from the JMM standpointmc
relations are transitive with respect to program-order or happens-beforef != null
sees the write done by another thread, there are no guarantees thatf.x
sees it tooI won't go into the details of the Dereference Chain constraints, as they are needed only to reason about longer reference chains (e.g. when a final field refers to an object, which in turn refers to another object).
For our simple example it suffices to say that JLS states that "dereferences order is reflexive, and r1 can be the same as r2" (which is exactly our case).
Safe way of dealing with unsafe publication
Below is the modified version of the code that is guaranteed to not throw an NPE:
The important difference here is reading the shared reference into a local variable. As stated by JLS:
Therefore, there is only one read from shared state from the JMM standpoint.
If that read happens to see the write done by another thread, it would imply the two operations are connected with a memory chain (
mc
) relationship. Furthermore,local = f
andi = local.x
are connected with dereference chain relationship, which gives us the whole chain mentioned in the beginning: