...
Wiki Markup |
---|
The possible reorderings between volatile and non-volatile variables are summarized in the matrix shown below. Load and store operations are synonymous to read and write operations, respectively. \[[Lea 08|AA. Java References#Lea 08]\] |
Noncompliant Code Example (status flag)
This noncompliant code example uses a shutdown()
method to set a non-volatile done
flag that is checked in the run()
method. If one thread invokes the shutdown()
method to set the flag, it is possible that another thread might not observe this change. Consequently, the second thread may still observe that done
is false
and incorrectly invoke the sleep()
method.
Code Block | ||
---|---|---|
| ||
final class ControlledStop implements Runnable { private boolean done = false; public void run() { while (!done) { try { // ... Thread.currentThread().sleep(1000); // Do something } catch(InterruptedException ie) { // handle exception } } } protected void shutdown(){ done = true; } } |
Compliant Solution (volatile
status flag)
This compliant solution qualifies the done
flag as volatile
so that updates are visible to other threads.
Code Block | ||
---|---|---|
| ||
final class ControlledStop implements Runnable { private volatile boolean done = false; public void run() { while (!done) { try { // ... Thread.currentThread().sleep(1000); // Do something } catch(InterruptedException ie) { // handle exception } } } protected void shutdown(){ done = true; } } |
Noncompliant Code Example (non-volatile guard)
This noncompliant code example declares a non-volatile variable of type int
which is initialized in the constructor depending on a security check.
...
The Java compiler is allowed to reorder the statements of the BankOperation()
constructor so that the boolean
flag initialized
is set to true
before the initialization has concluded. If it is possible to obtain a partially initialized instance of the class in a subclass using a finalizer attack (see OBJ04-J. Do not allow partially initialized objects to be accessed), a race condition can be exploited by invoking the getBalance()
method to obtain the balance even though initialization is still underway.
Compliant Solution (volatile guard)
This compliant solution declares the initialized
flag as volatile to ensure that initialization happens before the initialized
flag is set.
Code Block | ||
---|---|---|
| ||
class BankOperation { private int balance = 0; private volatile boolean initialized = false; // Now volatile public BankOperation() { if (!performAccountVerification()) { throw new SecurityException("Invalid Account"); } balance = 1000; initialized = true; } private int getBalance() { if (initialized == true) { return balance; } else { return -1; } } } |
Noncompliant Code Example (visibility)
This noncompliant code example consists of two classes: an immutable ImmutablePoint
class and a mutable Holder
class. Holder
is mutable because a new ImmutablePoint
instance can be assigned to it using the setPoint()
method (see CON09-J. Do not assume that classes having only immutable members are thread-safe).
...
Because the ipoint
field is non-volatile, changes to this value may not be immediately visible to other threads.
Compliant Solution (visibility)
This compliant solution declares the ipoint
field as volatile so that updates are immediately visible to other threads.
...
Declaring immutable fields as volatile enables their safe publication in that, once published, it is impossible to change the state of the sub-object.
Noncompliant Code Example (partial initialization)
Thread-safe classes (which may not be strictly immutable), such as Container
in this noncompliant code example, must declare fields as final or volatile, or synchronize all accesses of the field (see CON09-J. Do not assume that classes having only immutable members are thread-safe). In the absence of synchronization, non-final, non-volatile fields may be observed by other threads before the sub-objects' initialization has concluded.
...
Code Block | ||
---|---|---|
| ||
public class Container<K,V> { Map<K,V> map; public synchronized void initialize() { if (map == null) { map = new HashMap<K,V>(); // Fill some useful values into HashMap } } public V get(Object k) { if (map != null) { return map.get(k); } else { return null; } } } |
Compliant Solution (proper initialization)
This compliant solution declares the map
field as volatile to ensure other threads see an up-to-date HashMap
reference.
...
Wiki Markup |
---|
Alternative solutions to using {{volatile}} for safe publication are described in [CON26-J. Do not publish partially-constructed objects]. These alternative solutions are recommended if the values of the {{map}} can be mutated after initialization because the use of {{volatile}} only guarantees "one time safe publication" \[[Goetz 06|AA. Java References#Goetz 06]\], that is the reference is made visible only after initialization. There is no guarantee that any future updates to the map's contents will be visible immediately (see [CON11-J. Do not assume that declaring an object volatile guarantees visibility of its members] for more information). |
Risk Assessment
Failing to use volatile to guarantee visibility of shared values across multiple thread and prevent reordering of accesses can result in unpredictable control flow.
Rule | Severity | Likelihood | Remediation Cost | Priority | Level |
---|---|---|---|---|---|
CON00- J | medium | probable | medium | P8 | L2 |
Automated Detection
TODO
Related Vulnerabilities
Search for vulnerabilities resulting from the violation of this rule on the CERT website.
References
Wiki Markup |
---|
\[[JLS 05|AA. Java References#JLS 05]\] [Chapter 17, Threads and Locks|http://java.sun.com/docs/books/jls/third_edition/html/memory.html], section 17.4.5 Happens-before Order, section 17.4.3 Programs and Program Order, section 17.4.8 Executions and Causality Requirements \[[Tutorials 08|AA. Java References#Tutorials 08]\] [Java Concurrency Tutorial|http://java.sun.com/docs/books/tutorial/essential/concurrency/index.html] \[[Lea 00|AA. Java References#Lea 00]\] Sections, 2.2.7 The Java Memory Model, 2.2.5 Deadlock, 2.1.1.1 Objects and locks \[[Bloch 08|AA. Java References#Bloch 08]\] Item 66: Synchronize access to shared mutable data \[[Goetz 06|AA. Java References#Goetz 06]\] 3.4.2. "Example: Using Volatile to Publish Immutable Objects" \[[JPL 06|AA. Java References#JPL 06]\] 14.10.3. "The Happens-Before Relationship" \[[MITRE 09|AA. Java References#MITRE 09]\] [CWE ID 667|http://cwe.mitre.org/data/definitions/667.html] "Insufficient Locking", [CWE ID 413|http://cwe.mitre.org/data/definitions/413.html] "Insufficient Resource Locking", [CWE ID 366|http://cwe.mitre.org/data/definitions/366.html] "Race Condition within a Thread", [CWE ID 567|http://cwe.mitre.org/data/definitions/567.html] "Unsynchronized Access to Shared Data" |
...