Compound operations are operations that consist of more than one discrete operation. Expressions that include postfix or prefix increment (++
), postfix or prefix decrement (--
), or compound assignment operators always result in compound operations. Compound assignment expressions use operators such as *=
, /=
, %=
, +=
, -=
, <<=
, >>=
, >>>=
, ^=
and |=
[JLS 2015]. Compound operations on shared variables must be performed atomically to prevent data races and race conditions.
For information about the atomicity of a grouping of calls to independently atomic methods that belong to thread-safe classes, see VNA03-J. Do not assume that a group of calls to independently atomic methods is atomic.
The Java Language Specification also permits reads and writes of 64-bit values to be non-atomic (see rule VNA05-J. Ensure atomicity when reading and writing 64-bit values).
Noncompliant Code Example (Logical Negation)
This noncompliant code example declares a shared boolean
flag
variable and provides a toggle()
method that negates the current value of flag
:
Declaring a shared mutable variable volatile
ensures the visibility of the latest updates on it across other threads but does not guarantee the atomicity of composite operations. For example, the variable increment operation consisting of the sequence read-modify-write is not atomic even when the variable is declared volatile
.
In such cases, the java.util.concurrent
utilities must be used to atomically manipulate the variable. If the utilities do not provide the required atomic methods, accesses to the variable must be explicitly synchronized. Note that, as with volatile
, updated values are immediately visible to other threads when these two techniques are used. Synchronization provides a way to safely share object state across multiple threads without the need to reason about reordering, compiler optimizations and hardware specific behavior.
Noncompliant Code Example (volatile)
In this noncompliant code example, the volatile
field itemsInInventory
can be accessed by multiple threads. However, when a thread is updating the value of itemsInInventory
, it is possible for other threads to read the original value (that is, the value before the update). This is because the post decrement operator is non-atomic.
Code Block | ||
---|---|---|
| ||
final class Flag { private volatileboolean int itemsInInventoryflag = 100true; public int removeItem public void toggle() { // Unsafe if(itemsInInventory >flag 0) {= !flag; } public return itemsInInventory--; boolean getFlag() { // ReturnsUnsafe new count of items in inventoryreturn flag; } else { return 0; } } |
Compliant Solution (1) (java.util.concurrent.atomic classes)
Wiki Markup |
---|
Volatile variables are unsuitable when more than one load/store operation needs to be atomic. There is an alternative method to perform multiple operations atomically. This compliant solution shows a {{java.util.concurrent.atomic.AtomicInteger}} variable. According to the Java API \[[API 06|AA. Java References#API 06]\], Class {{AtomicInteger}} documentation: |
Wiki Markup \[AtomicInteger is\] An {{int}} value that may be updated atomically. An {{AtomicInteger}} is used in applications such as atomically incremented counters, and cannot be used as a replacement for an {{Integer}}. However, this class does extend {{Number}} to allow uniform access by tools and utilities that deal with numerically-based classes.
Wiki Markup |
---|
The {{compareAndSet()}} method takes two arguments, the expected value of a variable when the method is invoked and the updated value. This compliant solution uses this method to atomically set the value to the given updated value if and only if the current value equals the expected value. \[[API 06|AA. Java References#API 06]\] |
Code Block | ||
---|---|---|
| ||
public class Sync {
private final AtomicInteger itemsInInventory = new AtomicInteger(100);
private int removeItem() {
for (;;) {
int old = itemsInInventory.get();
if (old > 0) {
int next = old - 1;
if (itemsInInventory.compareAndSet(old, next)) {
return next; //returns new count of items in inventory
}
} else {
return 0;
}
}
}
}
|
Compliant Solution (2) (method synchronization)
This compliant solution uses method synchronization to synchronize access to shared variables. Consequently, access to itemsInInventory
is mutually exclusive and consistent across object states.
}
|
Execution of this code may result in a data race because the value of flag
is read, negated, and written back.
Consider, for example, two threads that call toggle()
. The expected effect of toggling flag
twice is that it is restored to its original value. However, the following scenario leaves flag
in the incorrect state:
Time | flag= | Thread | Action |
---|---|---|---|
1 | true | t1 | Reads the current value of |
2 | true | t2 | Reads the current value of |
3 | true | t1 | Toggles the temporary variable to false |
4 | true | t2 | Toggles the temporary variable to false |
5 | false | t1 | Writes the temporary variable's value to |
6 | false | t2 | Writes the temporary variable's value to |
As a result, the effect of the call by t2 is not reflected in flag
; the program behaves as if toggle()
was called only once, not twice.
Noncompliant Code Example (Bitwise Negation)
The toggle()
method may also use the compound assignment operator ^=
to negate the current value of flag
:
Code Block | ||
---|---|---|
| ||
final class Flag {
private boolean flag = true;
public void toggle() { // Unsafe
flag ^= true; // Same as flag = !flag;
}
public boolean getFlag() { // Unsafe
return flag;
}
}
|
This code is also not thread-safe. A data race exists because ^=
is a non-atomic compound operation.
Noncompliant Code Example (Volatile)
Declaring flag
volatile also fails to solve the problem:
Code Block | ||
---|---|---|
| ||
final class Flag {
private volatile boolean flag = true;
public void toggle() { // Unsafe
flag ^= true;
}
public boolean getFlag() { // Safe
return flag;
}
}
|
This code remains unsuitable for multithreaded use because declaring a variable volatile fails to guarantee the atomicity of compound operations on the variable.
Compliant Solution (Synchronization)
This compliant solution declares both the toggle()
and getFlag()
methods as synchronized:
Code Block | ||
---|---|---|
| ||
final class Flag {
private boolean flag = true;
public synchronized void toggle() {
flag ^= true; // Same as flag = !flag;
}
public synchronized boolean getFlag() | ||
Code Block | ||
| ||
private int itemsInInventory = 100; public synchronized int removeItem() { if(itemsInInventory > 0) { return itemsInInventory--; // Returns new count of items in inventory } else { return 0flag; } } |
Wiki Markup |
---|
Synchronization is more expensive than using the optimized {{java.util.concurrent}} utilities and should only be used when the utilities do not contain the required method to carry out the atomic operation. When using explicit synchronization, the programmer must also ensure that two or more threads are not mutually accessible from a different set of two or more threads such that each thread holds a lock while trying to obtain another lock that is held by the other thread \[[Lea 00|AA. Java References#Lea 00]\]. Failure to follow this advice results in deadlocks ([CON12-J. Avoid deadlock by requesting and releasing locks in the same order]). |
Compliant Solution (3) (block synchronization)
This solution guards reads and writes to the flag
field with a lock on the instance, that is, this
. Furthermore, synchronization ensures that changes are visible to all threads. Now, only two execution orders are possible, one of which is shown in the following scenario:
Time | flag= | Thread | Action |
---|---|---|---|
1 | true | t1 | Reads the current value of |
2 | true | t1 | Toggles the temporary variable to false |
3 | false | t1 | Writes the temporary variable's value to |
4 | false | t2 | Reads the current value of |
5 | false | t2 | Toggles the temporary variable to true |
6 | true | t2 | Writes the temporary variable's value to |
The second execution order involves the same operations, but t2 starts and finishes before t1.
Compliance with LCK00-J. Use private final lock objects to synchronize classes that may interact with untrusted code can reduce the likelihood of misuse by ensuring that untrusted callers cannot access the lock object.
Compliant Solution (Volatile-Read, Synchronized-Write)
In this compliant solution, the getFlag()
method is not synchronized, and flag
is declared as volatile. This solution is compliant because the read of flag
in the getFlag()
method is an atomic operation and the volatile qualification assures visibility. The toggle()
method still requires synchronization because it performs a non-atomic operationConstructors and methods can use an alternative representation called block synchronization which synchronizes a block of code rather than a method, as highlighted below.
Code Block | ||
---|---|---|
| ||
privatefinal volatileclass int itemsInInventoryFlag { private volatile boolean flag = 100true; public int removeItem() { synchronized(thispublic synchronized void toggle() { if(itemsInInventory > 0) { return itemsInInventory--; // Returns new count of items in inventory } else { flag ^= true; // Same as flag = !flag; } public boolean getFlag() { return 0; }flag; } } |
Block synchronization is more preferable than method synchronization because it reduces the period for which the lock is held and also protects against denial of service attacks. The variable itemsInInventory
still needs to be declared volatile
because the check to determine whether it is greater than 0 relies on the latest value of the variable. An alternative to avoid the need to declare the variable volatile
is to use block synchronization across the whole if-else
block. However, this alternative is more costly.
This approach must not be used for getter methods that perform any additional operations other than returning the value of a volatile field without use of synchronization. Unless read performance is critical, this technique may lack significant advantages over synchronization [Goetz 2006].
Compliant Solution (Read-Write Lock
...
)
This compliant solution uses a java.util.concurrent.locks.ReentrantLock
to atomically perform the operation. read-write lock to ensure atomicity and visibility:
Code Block | ||
---|---|---|
| ||
publicfinal class SyncFlag { private intboolean itemsInInventoryflag = 100true; private final LockReadWriteLock lock = new ReentrantLockReentrantReadWriteLock(); private final Lock readLock public int removeItem= lock.readLock() {; private final BooleanLock myLockwriteLock = falselock.writeLock(); public void trytoggle() { myLock = lock.tryLockwriteLock.lock(); try { if(itemsInInventory > 0) { flag ^= true; // Same as flag = !flag; return itemsInInventory--; } finally { } writeLock.unlock(); } finally {} public boolean if getFlag(myLock) { lock.unlockreadLock.lock(); try }{ } return 0flag; } } |
Code that uses this lock behaves similar to synchronized code that uses the traditional monitor lock. In addition, it provides several other capabilities, for instance, the tryLock()
method does not block waiting if another thread is already holding the lock. The class java.util.concurrent.locks.ReentrantReadWriteLock
can be used when a thread requires a lock to write information while other threads require the lock to simultaneously read the information.
Noncompliant Code Example (AtomicReference)
This noncompliant code example uses two AtomicReference
objects to hold two BigInteger
object references.
finally {
readLock.unlock();
}
}
}
|
Read-write locks allow shared state to be accessed by multiple readers or a single writer but never both. According to Goetz [Goetz 2006]:
In practice, read-write locks can improve performance for frequently accessed read-mostly data structures on multiprocessor systems; under other conditions they perform slightly worse than exclusive locks due to their greater complexity.
Profiling the application can determine the suitability of read-write locks.
Compliant Solution (AtomicBoolean
)
This compliant solution declares flag
to be of type AtomicBoolean
:
Code Block | ||
---|---|---|
| ||
import java.util.concurrent.atomic.AtomicBoolean;
final class Flag | ||
Code Block | ||
| ||
public class AtomicAdder { private finalAtomicBoolean AtomicReference<BigInteger>flag first= ; private final AtomicReference<BigInteger> second; new AtomicBoolean(true); public void AtomicAdder(BigInteger f, BigInteger stoggle() { boolean temp; first = new AtomicReference<BigInteger>(f); do { secondtemp = new AtomicReference<BigInteger>(sflag.get(); } public} void update(BigInteger f, BigInteger s){ // Unsafe first.set(f); second.set(swhile (!flag.compareAndSet(temp, !temp)); } public BigIntegerAtomicBoolean addgetFlag() { // Unsafe return first.get().add(second.get()); flag; } } |
The flag
variable is updated using the compareAndSet()
method of the AtomicBoolean
class. All updates are visible to other threads.
Noncompliant Code Example (Addition of Primitives)
In An AtomicReference
is an object reference that can be updated atomically. Operations that use these two independently are guaranteed to be atomic, however, if an operation involves using both together, thread-safety issues arise. For instance, in this noncompliant code example, adding the two big integers is not thread-safe because it is possible that while the addition is being carried out in a thread, another thread may update the value of one or both big integers, leading to an erroneous result.
Compliant Solution (method synchronization)
This compliant solution declares the update()
and add()
methods as synchronized
to guarantee atomicitymultiple threads can invoke the setValues()
method to set the a
and b
fields. Because this class fails to test for integer overflow, users of the Adder
class must ensure that the arguments to the setValues()
method can be added without overflow (see NUM00-J. Detect or prevent integer overflow for more information).
Code Block | ||
---|---|---|
| ||
publicfinal class AtomicAdderAdder { publicprivate synchronizedint void update(BigInteger f, BigInteger s){a; private int b; public int first.setgetSum(f); { return second.set(s)a + b; } public synchronized BigInteger add( void setValues(int a, int b) { this.a return first.get().add(second.get()); = a; this.b = b; } } |
Prefer using the block form of synchronization for better performance, when there are nonatomic operations within the method that do not require any synchronization.
Risk Assessment
If operations on shared variables are not atomic, unexpected results may be produced. For example, there can be inadvertent information disclosure as one user may be able to receive information about other users.
Rule | Severity | Likelihood | Remediation Cost | Priority | Level |
---|---|---|---|---|---|
CON01- 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 |
---|
\[[API 06|AA. Java References#API 06]\] Class AtomicInteger
\[[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
\[[Daconta 03|AA. Java References#Daconta 03]\] Item 31: Instance Variables in Servlets
\[[JavaThreads 04|AA. Java References#JavaThreads 04]\] Section 5.2 Atomic Variables
\[[Goetz 06|AA. Java References#Goetz 06]\] 2.3. "Locking"
\[[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" |
The getSum()
method contains a race condition. For example, when a
and b
currently have the values 0
and Integer.MAX_VALUE
, respectively, and one thread calls getSum()
while another calls setValues(Integer.MAX_VALUE, 0)
, the getSum()
method might return either 0
or Integer.MAX_VALUE
, or it might overflow. Overflow will occur when the first thread reads a
and b
after the second thread has set the value of a
to Integer.MAX_VALUE
but before it has set the value of b
to 0
.
Note that declaring the variables as volatile fails to resolve the issue because these compound operations involve reads and writes of multiple variables.
Noncompliant Code Example (Addition of Atomic Integers)
In this noncompliant code example, a
and b
are replaced with atomic integers:
Code Block | ||
---|---|---|
| ||
final class Adder {
private final AtomicInteger a = new AtomicInteger();
private final AtomicInteger b = new AtomicInteger();
public int getSum() {
return a.get() + b.get();
}
public void setValues(int a, int b) {
this.a.set(a);
this.b.set(b);
}
}
|
The simple replacement of the two int
fields with atomic integers fails to eliminate the race condition because the compound operation a.get() + b.get()
is still non-atomic.
Compliant Solution (Addition)
This compliant solution synchronizes the setValues()
and getSum()
methods to ensure atomicity:
Code Block | ||
---|---|---|
| ||
final class Adder {
private int a;
private int b;
public synchronized int getSum() {
// Check for overflow
return a + b;
}
public synchronized void setValues(int a, int b) {
this.a = a;
this.b = b;
}
}
|
The operations within the synchronized methods are now atomic with respect to other synchronized methods that lock on that object's monitor (that is, its intrinsic lock). It is now possible, for example, to add overflow checking to the synchronized getSum()
method without introducing the possibility of a race condition.
Risk Assessment
When operations on shared variables are not atomic, unexpected results can be produced. For example, information can be disclosed inadvertently because one user can receive information about other users.
Rule | Severity | Likelihood | Remediation Cost | Priority | Level |
---|---|---|---|---|---|
VNA02-J | Medium | Probable | Medium | P8 | L2 |
Automated Detection
Some available static analysis tools can detect the instances of non-atomic update of a concurrently shared value. The result of the update is determined by the interleaving of thread execution. These tools can detect the instances where thread-shared data is accessed without holding an appropriate lock, possibly causing a race condition.
Tool | Version | Checker | Description | ||||||
---|---|---|---|---|---|---|---|---|---|
CodeSonar | 4.2 | FB.MT_CORRECTNESS.IS2_INCONSISTENT_SYNC FB.MT_CORRECTNESS.IS_FIELD_NOT_GUARDED FB.MT_CORRECTNESS.STCAL_INVOKE_ON_STATIC_CALENDAR_INSTANCE FB.MT_CORRECTNESS.STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE FB.MT_CORRECTNESS.STCAL_STATIC_CALENDAR_INSTANCE FB.MT_CORRECTNESS.STCAL_STATIC_SIMPLE_DATE_FORMAT_INSTANCE | Inconsistent synchronization Field not guarded against concurrent access Call to static Calendar Call to static DateFormat Static Calendar field Static DateFormat | ||||||
Coverity | 7.5 | GUARDED_BY_VIOLATION | Implemented | ||||||
Parasoft Jtest |
| CERT.VNA02.SSUG CERT.VNA02.MRAV | Make the get method for a field synchronized if the set method is synchronized Access related Atomic variables in a synchronized block | ||||||
PVS-Studio |
| V6074 | |||||||
ThreadSafe |
| CCE_SL_INCONSISTENT | Implemented |
Related Guidelines
CWE-366, Race Condition within a Thread |
Bibliography
[API 2014] | |
Item 66, "Synchronize Access to Shared Mutable Iata" | |
Section 2.3, "Locking" | |
[JLS 2015] | Chapter 17, "Threads and Locks" |
[Lea 2000] | Section 2.1.1.1, "Objects and Locks" |
...
11. Concurrency (CON) 11. Concurrency (CON) CON02-J. Always synchronize on the appropriate object