Versions Compared

Key

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

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:

Code Block
bgColor#FFcccc
final class Flag
Wiki Markup
Compound operations on shared variables (consisting of more than one discrete operation) must be performed atomically. Errors can arise from compound operations that need to be perceived atomically but are not \[[JLS 05|AA. Java References#JLS 05]\]. 

Compound assignment expressions include operators {{*=, /=, %=, +=, -=, <<=, >>=, >>>=, ^=, or |=}}. The postfix and prefix increment ({{\+\+}}) and decrement ({{\-\-}})  operations can also be treated as compound expressions. 

For atomicity of a grouping of calls to independently atomic methods of the existing Java API, see [CON07-J. Do not assume that a grouping 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 though this is not an issue with most modern JVMs (see [CON25-J. Ensure atomicity when reading and writing 64-bit values]).

h2. Noncompliant Code Example (bitwise compound operation)

This noncompliant code example declares a shared {{boolean}} variable {{flag}} and uses an optimization in the {{toggle()}} method to negate the current value of the flag.

{code:bgColor=#FFcccc}
class Foo {
  private boolean flag = true;
 
  public flagvoid toggle() { 
    flag ^= true; // same as// Unsafe
    flag = !flag; 
  }
}
{code}

However, this codepublic isboolean not thread-safe. Multiple threads may not observe the latest state of the {{flag}} because {{^=}} constitutes a non-atomic operation.

h2. Noncompliant Code Example ({{volatile}} variable)

This noncompliant code example derives from the preceding one but declares the {{flag}} as {{volatile}}. 

{code:bgColor=#FFcccc}
class Foo {
  private volatile boolean flag = true;
 
  public boolean toggle() { 
    flag ^= true; // same as flag = !flag; 
    return flag;
  }
}
{code}

It is still insecure for multithreaded use because {{volatile}} does not guarantee the visibility of updates to the shared variable {{flag}} when a compound operation is performed.

h2. Compliant Solution (synchronization)

This compliant solution synchronized the {{toggle()}} method to ensure that the {{flag}} is made visible to all the threads.

{code:bgColor=#ccccff}
class Foo {
  private getFlag() { // Unsafe
    return flag;
  }
}

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 flag, true, into a temporary variable

2

true

t2

Reads the current value of flag, (still) true, into a temporary variable

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 flag

6

false

t2

Writes the temporary variable's value to flag

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
bgColor#FFcccc
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
bgColor#FFcccc
final class Flag {
  private volatile boolean flag = true;
 
  public synchronized booleanvoid toggle() {  // Unsafe
    flag ^= true; // same as flag = !flag; 
  }

  public boolean getFlag() { // Safe
    return flag;
  }
}
{code}

h2. Compliant Solution ({{java.util.concurrent.atomic.AtomicBoolean}})

This compliant solution uses the {{java.util.concurrent.atomic.AtomicBoolean}} type to declare the {{flag}}. 

{code

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
bgColor#ccccff
final class Flag {
  private boolean flag = true;

  public synchronized void toggle():bgColor=#ccccff}
class Foo {
  private AtomicBoolean flag ^= new AtomicBoolean(true) true; // Same as flag = !flag;
  }

  public synchronized boolean togglegetFlag() { 
    boolean temp;
    do {
      temp = flag.get();
    } while(!flag.compareAndSet(temp, !temp));
    return flag.get();
  }
}
{code}

It ensures that updates to the variable are carried out by using the {{compareAndSet()}} method of the class {{AtomicBoolean}}. All updates are made visible to other threads.

{mc}
// THIS CONTENT IS CURRENTLY HIDDEN
h2. Noncompliant Code Example (bitwise logic)

This class maintains a set of flags, which can be set and cleared independently. They are stored in a single byte field.

{code:bgColor=#FFcccc}
class Flags {
  public static final byte FLAG_1 = 1
  public static final byte FLAG_2 = 2;
  public static final byte FLAG_4 = 4;
  public static final byte FLAG_8 = 8;

  private byte flags = 0;

  public void setFlag(byte flag) {
    flags |= flag;
  }

  public void clearFlag(byte flag) {
    flags &= ~flag;
  }
} 
{code}

This class is not thread-safe at all, even though only one value is modified.  For instance, suppose Thread 1 calls {{setFlag( FLAG_1)}} while Thread 2 calls {{setFlag( FLAG_2)}}. The following represents one possible execution of the two threads:

||Time||flags=||Thread||Action||
|1|0|_t_~1~|reads the current value of {{flags}}, 0, into a temporary variable|
|2|0|_t_~2~|reads the current value of {{flags}}, (still) 0, into a temporary variable |
|3|0|_t_~1~|sets the 1st byte, creating the value 1|
|4|0|_t_~2~|sets the 2nd byte, creating the value 2|
|5|1| _t_~1~|writes the temporary variable value to {{flags}}|
|6|2| _t_~2~|writes the temporary variable value to {{flags}}|

As a result, the effect of the call by _t_~1~ is not reflected in {{flags}}; the program behaves as if the call was never made. 

Furthermore, it is quite likely that if one thread sets a flag, and another thread retrieves the flags value, the second thread will not see the setting from the first thread.


h2. Noncompliant Code Example (volatile)

In this noncompliant code example, the {[flags}} field is {{volatile}}.

{code:bgColor=#FFcccc}
class Flags {
  public static final byte FLAG_1 = 1
  public static final byte FLAG_2 = 2;
  public static final byte FLAG_4 = 4;
  public static final byte FLAG_8 = 8;

  private volatile byte flags = 0;

  public void setFlag(byte flag) {
    flags |= flag;
  }

  public void clearFlag(byte flag) {
    flags &= ~flag;
  }
} 
{code}

The {{volatile}} keyword guarantees that any writes to the {{flags}} variable will be seen by any subsequent reads. However, the {{volatile}} keyword does not prevent the exedcution scenario described above. In particular, it does not guarantee that the read of the {{flags}} variable followed by the write of the {{flags}} variable is atomic.


h2. Compliant Solution ({{java.util.concurrent.atomic}} classes)

The {{java.util.concurrent}} utilities can be used to atomically manipulate a shared variable. In this compliant solution, {{flags}} is an {{AtomicInteger}}, allowing composite operations to be performed atomically.

{code:bgColor=#ccccff}
class Flags {
  private AtomicInteger flags = new AtomicInteger( 0);

  public void setFlag(byte flag) {
    while (true) {
      int old = flags.get();
      int next = old | flag;
      if (flags.compareAndSet( old, next)) {
        break;
      }
    }
  }

  public void clearFlag(byte flag) {
    while (true) {
      int old = flags.get();
      int next = old & ~flag;
      if (flags.compareAndSet( old, next)) {
        break;
      }
    }
  }
} 

{code}

Note that updates to shared atomic variables are visible to other threads.

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 of {{flags}} to the updated value if and only if the current value equals the expected value \[[API 06|AA. Java References#API 06]\].  The {{while}} loop ensures that each  method persists in trying to set {{flags}} until it succeeds.


h2. Compliant Solution (synchronization)

This compliant solution uses synchronization to protect access to the {{flags}} field. Synchronization provides a way to safely share object state across multiple threads without the need to reason about reorderings, compiler optimizations, and hardware specific behavior.

{code:bgColor=#ccccff}
class Flags {
  private byte flags = 0;
  private Object lock = new Object();

  public void setFlag(byte flag) {
    synchronized (lock) {
      flags |= flag;
    }
  }

  public void clearFlag(byte flag) {
    synchronized (lock) {
      flags &= ~flag;
    }
  }
} 
{code}

If code is synchronized correctly, updates to shared variables are instantly made visible to other threads. Synchronization is more expensive than using the optimized {{java.util.concurrent}} utilities and should generally be preferred when it is sufficiently complex to carry out the operation atomically using the utilities. When using synchronization, care must be taken to avoid deadlocks (see [CON12-J. Avoid deadlock by requesting and releasing locks in the same order]).

Constructors and methods can use block synchronization as an alternative to method synchronization. Block synchronization synchronizes a block of code rather than a method, as shown in this compliant solution. Block synchronization can also synchronize on a lock besides the object's intrinsic lock, as is recommended by [CON04-J. Use the private lock object idiom instead of the Class object's intrinsic locking mechanism].

// END OF HIDDEN CONTENT
{mc}

h2. Noncompliant Code Example (increment/decrement)

Prefix and postfix, increment and decrement operations are non-atomic in that the value written depends upon the value initially read from the operand.  For example, {{x+\+}} is non-atomic because it is a composite operation consisting of three discrete operations: reading the current value of {{x}}, adding one to it, and writing the new, incremented value back to {{x}}.  

This noncompliant code example contains a data race that may result in the {{itemsInInventory}} field failing to account for removed items.

{code:bgColor=#FFcccc}
class InventoryManager {
  private static final int MIN_INVENTORY = 3;
  private int itemsInInventory = 100;

  public final void removeItem() {
    if (itemsInInventory <= MIN_INVENTORY) {
      throw new IllegalStateException("Under stocked");
    }
    itemsInInventory--;
  }
} 
{code}

For example, if the {{removeItem()}} method is concurrently invoked by two threads, _t_~1~ and _t_~2~, the execution of these threads may be interleaved so that:

||Time||itemsInInventory=||Thread||Action||
|1|100|_t_~1~|reads the current value of {{itemsInInventory}}, 100, into a temporary variable|
|2|100|_t_~2~|reads the current value of {{itemsInInventory}}, (still) 100, into a temporary variable |
|3|100|_t_~1~|decrements the temporary variable to 99|
|4|100|_t_~2~|decrements the temporary variable to 99|
|5|99| _t_~1~|writes the temporary variable value to {{itemsInInventory}}|
|6|99| _t_~2~|writes the temporary variable value to {{itemsInInventory}}|

As a result, the effect of the call by _t_~1~ is not reflected in {{itemsInInventory}}; the program behaves as if the call was never made. 


As another example, suppose itemsInInventory currently has the value MIN_INVENTORY + 1.  If the {{removeItem()}} method is concurrently invoked by two threads, _t_~1~ and _t_~2~, the execution of these threads may be interleaved so that:

||Time||itemsInInventory=||Thread||Action||
|1|MIN_INVENTORY+1|_t_~1~|checks that the current value of {{itemsInInventory}} is large enough to decrement, which it is|
|2|MIN_INVENTORY+1|_t_~2~|checks that the current value of {{itemsInInventory}} is large enough to decrement, which it is|
|3|MIN_INVENTORY+1|_t_~1~|reads the current value of {{itemsInInventory}}, MIN_INVENTORY+1, into a temporary variable |
|4|MIN_INVENTORY|_t_~1~|decrements the temporary variable to MIN_INVENTORY|
|5|MIN_INVENTORY| _t_~1~|writes the temporary variable value to {{itemsInInventory}}|
|6|MIN_INVENTORY|_t_~2~|reads the current value of {{itemsInInventory}}, MIN_INVENTORY, into a temporary variable |
|7|MIN_INVENTORY-1|_t_~2~|decrements the temporary variable to MIN_INVENTORY-1|
|8|MIN_INVENTORY-1| _t_~2~|writes the temporary variable value to {{itemsInInventory}}|

As a result, both threads decrement {{itemsInInventory}} but the range check on the variable is bypassed, causing the variable to have an invalid value. The decrement operation may even wrap if {{MIN_INVENTORY == Integer.MIN_VALUE}}.


h2. Noncompliant Code Example (volatile)

This noncompliant code example attempts to resolve the problem by declaring {{itemsInInventory}} volatile.

{code:bgColor=#FFcccc}
class InventoryManager {
  private static final int MIN_INVENTORY = 3;
  private volatile int itemsInInventory = 100;

  public final void removeItem() {
    if (itemsInInventory <= MIN_INVENTORY) {
      throw new IllegalStateException("under stocked");
    }
    itemsInInventory--;
  }
} 
{code}

Volatile variables are unsuitable when more than one read/write operation needs to be atomic.  The use of a volatile variable in this noncompliant code example guarantees that once {{itemsInInventory}} has been updated, the new value is visible to all threads that read the field.  However, because the post decrement operator is nonatomic, even when {{volatile}} is used, the interleaving described in the previous noncompliant code example is still possible. Furthermore, the race codnition imposed by range-checking {{itemsInInventory}} before decrementing it is also still possible.


h2. Compliant Solution ({{java.util.concurrent.atomic}} classes)

The {{java.util.concurrent}} utilities can be used to atomically manipulate a shared variable. This compliant solution defines {{intemsInInventory}} as a {{java.util.concurrent.atomic.AtomicInteger}} variable, allowing composite operations to be performed atomically.

{code:bgColor=#ccccff}
class InventoryManager {
  private static final int MIN_INVENTORY = 3;
  private final AtomicInteger itemsInInventory = new AtomicInteger(100);

  public final void removeItem() {
    while (true) {
      int old = itemsInInventory.get();
      if (old <= MIN_INVENTORY) {
        throw new IllegalStateException("Under stocked");
      }
      int next = old - 1; // Decrement
      if (itemsInInventory.compareAndSet(old, next)) {
        break;
      }
    } // end while
  } // end removeItem()
} 
{code}

Note that updates to shared atomic variables are visible to other threads.

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 of {{itemsInInventory}} to the updated value if and only if the current value equals the expected value \[[API 06|AA. Java References#API 06]\].  The {{while}} loop ensures that the {{removeItem()}} method succeeds in decrementing the most recent value of {{itemsInInventory}} as long as the inventory count is greater than {{MIN_INVENTORY}}.


h2. Compliant Solution (method synchronization)

Synchronization provides a way to safely share object state across multiple threads without the need to reason about reorderings, compiler optimizations, and hardware specific behavior.

This compliant solution uses method synchronization to synchronize access to {{itemsInInventory}}. Consequently, access to {{itemsInInventory}} is mutually exclusive and its state consistent across all threads.

{code:bgColor=#ccccff}
class InventoryManager {
  private static final int MIN_INVENTORY = 3;
  private int itemsInInventory = 100;

  public final synchronized void removeItem() {
    if (itemsInInventory <= MIN_INVENTORY) {
      throw new IllegalStateException("Under stocked");
    }
    itemsInInventory--;
  }
} 
{code}

If code is synchronized correctly, updates to shared variables are instantly made visible to other threads. Synchronization is more expensive than using the optimized {{java.util.concurrent}} utilities and should generally be preferred when it is sufficiently complex to carry out the operation atomically using the utilities. When using synchronization, care must be taken to avoid deadlocks (see [CON12-J. Avoid deadlock by requesting and releasing locks in the same order]).

h2. Compliant Solution (block synchronization)

Constructors and methods can use block synchronization as an alternative to method synchronization. Block synchronization synchronizes a block of code rather than a method, as shown in this compliant solution.

{code:bgColor=#ccccff}
class InventoryManager {
  private static final int MIN_INVENTORY = 3;
  private int itemsInInventory = 100;
  private final Object lock = new Object();

  public final void removeItem() {
    synchronized(lock) {
      if (itemsInInventory <= MIN_INVENTORY) {
        throw new IllegalStateException("Under stocked");
      }
      itemsInInventory--;
    }
  }
} 
{code}

Block synchronization is preferable over method synchronization because it enables reduction of the duration for which the lock is held. This is because statements that do not require synchronization can be safely moved out of the synchronized block. This compliant solution requires all statements to be synchronized and consequently, is comparable to the previous compliant solution with respect to performance.

Block synchronization when used in conjunction with a {{private}} internal lock object also protects against denial of service attacks. Block synchronization does not require synchronizing on an internal private lock object instead of the intrinsic lock of the class's object ({{this}} reference). However, it is more secure to synchronize on an internal private lock object instead of a more accessible lock object. See [CON04-J. Use the private lock object idiom instead of the Class object's intrinsic locking mechanism] for more information.


h2. Compliant Solution ({{ReentrantLock}})

This compliant solution uses a {{java.util.concurrent.locks.ReentrantLock}} to atomically perform the post-decrement operation.

{code:bgColor=#ccccff}
class InventoryManager {
  private static final int MIN_INVENTORY = 3;
  private int itemsInInventory = 100;
  private final Lock lock = new ReentrantLock();

  public final void removeItem() {
    if (lock.tryLock()) {
      try {
        if (itemsInInventory <= MIN_INVENTORY) {
          throw new IllegalStateException("Under stocked");
        }
        itemsInInventory--;
      } finally {
        lock.unlock();
      }
    }
  } // end removeItem()
} 
{code}

Code that uses this lock behaves similar to synchronized code that uses the traditional monitor lock. {{ReentrantLock}} 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 some thread requires a lock to write information while other threads require the lock to concurrently read the information.


h2. Noncompliant Code Example (addition, volatile fields)

In this noncompliant code example, the two fields {{a}} and {{b}} may be set by multiple threads, using the {{setValues()}} method.

{code:bgColor=#FFcccc}
private volatile int a;
private volatile int b;

public int getSum() throws ArithmeticException {
  // Check for integer overflow
  if( b > 0 ? a > Integer.MAX_VALUE - b : a < Integer.MIN_VALUE - b ) {
    throw new ArithmeticException("Not in range");
  }

  return a + b;
}

public void setValues(int a, int b) {
  this.a = a;
  this.b = b;
}
{code}

The {{getSum()}} method may return a different sum every time it is invoked from different threads. For instance, if {{a}} and {{b}} currently have the value 0, and one thread calls {{getSum()}} while another calls {{setValues(1, 1)}}, then {{getSum()}} might return 0, 1, or 2. Of these, the value 1 is unacceptable; it is returned when the first thread reads {{a}} and {{b}}, after the second thread has set the value of {{a}} but before it has set the value of {{b}}.
 
h2. Noncompliant Code Example (addition, atomic integer fields)

The issues described in the previous noncompliant code example can also arise when the volatile variables {{a}} and {{b}} are replaced with atomic integers. 

{code:bgColor=#FFcccc}
private final AtomicInteger a = new AtomicInteger();
private final AtomicInteger b = new AtomicInteger();
  
public int getSum() throws ArithmeticException {

  // Check for integer overflow
  if( b.get() > 0 ? a.get() > Integer.MAX_VALUE - b.get() : a.get() < Integer.MIN_VALUE - b.get() ) {
    throw new ArithmeticException("Not in range");
  }
  return a.get() + b.get(); // or, return a.getAndAdd(b.get());
}

public void setValues(int a, int b) {
  this.a.set(a);
  this.b.set(b);
}
{code}

For example, when a thread is executing {{setValues()}} another may invoke {{getSum()}} and retrieve an incorrect result. Furthermore, in the absence of synchronization, there are data races in the check for integer overflow.

h2. Compliant Solution (addition)

This compliant solution synchronizes the {{setValues()}} method so that the entire operation is atomic.

{code:bgColor=#ccccff}
private int a;
private int b;

public synchronized int getSum() throws ArithmeticException {
  // Check for integer overflow
  if( b > 0 ? a > Integer.MAX_VALUE - b : a < Integer.MIN_VALUE - b ) {
    throw new ArithmeticException("Not in range");
  }

  return a + b;
}

public synchronized void setValues(int a, int b) {
  this.a = a;
  this.b = b;
}
{code}

Unlike the noncompliant code example, if {{a}} and {{b}} currently have the value 0, and one thread calls {{getSum()}} while another calls {{setValues(1, 1)}}, {{getSum()}} may return return 0, or 2, depending on which thread obtains the intrinsic lock first. The locking guarantees that {{getSum()}} will never return the unacceptable value 1.
h2. 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 | {color:#cc9900}{*}P8{*}{color} | {color:#cc9900}{*}L2{*}{color} |


h3. Automated Detection

TODO



h3. Related Vulnerabilities

Search for vulnerabilities resulting from the violation of this rule on the [CERT website|https://www.kb.cert.org/vulnotes/bymetric?searchview&query=FIELD+KEYWORDS+contains+CON30-J].

h2. References

\[[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 CERT Sun Microsystems Secure Coding Standard for Java^button_arrow_left.png!|11. Concurrency (CON)]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[!The CERT Sun Microsystems Secure Coding Standard for Java^button_arrow_up.png!|11. Concurrency (CON)]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[!The CERT Sun Microsystems Secure Coding Standard for Java^button_arrow_right.png!|CON02-J. Always synchronize on the appropriate object]

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 flag, true, into a temporary variable

2

true

t1

Toggles the temporary variable to false

3

false

t1

Writes the temporary variable's value to flag

4

false

t2

Reads the current value of flag, false, into a temporary variable

5

false

t2

Toggles the temporary variable to true

6

true

t2

Writes the temporary variable's value to flag

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 operation.

Code Block
bgColor#ccccff
final class Flag {
  private volatile boolean flag = true;

  public synchronized void toggle() {
    flag ^= true; // Same as flag = !flag;
  }

  public boolean getFlag() {
    return flag;
  }
}

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 read-write lock to ensure atomicity and visibility:

Code Block
bgColor#ccccff
final class Flag {
  private boolean flag = true;
  private final ReadWriteLock lock = new ReentrantReadWriteLock();
  private final Lock readLock = lock.readLock();
  private final Lock writeLock = lock.writeLock();

  public void toggle() {
    writeLock.lock();
    try {
      flag ^= true; // Same as flag = !flag;
    } finally {
      writeLock.unlock();
    }
  }

  public boolean getFlag() {
    readLock.lock();
    try {
      return flag;
    } 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
bgColor#ccccff
import java.util.concurrent.atomic.AtomicBoolean;

final class Flag {
  private AtomicBoolean flag = new AtomicBoolean(true);

  public void toggle() {
    boolean temp;
    do {
      temp = flag.get();
    } while (!flag.compareAndSet(temp, !temp));
  }

  public AtomicBoolean getFlag() {
    return 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 this noncompliant code example, multiple 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
bgColor#FFcccc
final class Adder {
  private int a;
  private int b;

  public int getSum() {
    return a + b;
  }

  public void setValues(int a, int b) {
    this.a = a;
    this.b = b;
  }
}

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
bgColor#FFcccc
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
bgColor#ccccff
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.

ToolVersionCheckerDescription
CodeSonar4.2FB.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
Coverity7.5

GUARDED_BY_VIOLATION
INDIRECT_GUARDED_BY_VIOLATION
NON_STATIC_GUARDING_STATIC
NON_STATIC_GUARDING_STATIC
SERVLET_ATOMICITY
FB.IS2_INCONSISTENT_SYNC
FB.IS_FIELD_NOT_GUARDED
FB.IS_INCONSISTENT_SYNC
FB.STCAL_INVOKE_ON_STATIC_ CALENDAR_INSTANCE
FB.STCAL_INVOKE_ON_STATIC_ DATE_FORMAT_INSTANCE
FB.STCAL_STATIC_CALENDAR_ INSTANCE
FB.STCAL_STATIC_SIMPLE_DATE_ FORMAT_INSTANCE

Implemented
Parasoft Jtest
Include Page
Parasoft_V
Parasoft_V
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

Include Page
PVS-Studio_V
PVS-Studio_V

V6074
ThreadSafe
Include Page
ThreadSafe_V
ThreadSafe_V

CCE_SL_INCONSISTENT
CCE_CC_CALLBACK_ACCESS
CCE_SL_MIXED
CCE_SL_INCONSISTENT_COL
CCE_SL_MIXED_COL
CCE_CC_UNSAFE_CONTENT

Implemented


Related Guidelines

MITRE CWE

CWE-366, Race Condition within a Thread
CWE-413, Improper Resource Locking
CWE-567, Unsynchronized Access to Shared Data in a Multithreaded Context
CWE-667, Improper Locking

Bibliography


...

Image Added Image Added Image Added