Code that uses synchronization can sometimes be enigmatic and tricky to debug. Misuse of synchronization primitives is a common source of implementation errors. An analysis of the JDK 1.6.0 source code unveiled at least 31 bugs that fell into this category. \[[Pugh 08|AA. Java References#Pugh 08]\]of concurrency issues. Synchronizing on objects that may be reused can result in deadlock and nondeterministic behavior. Consequently, programs must never synchronize on objects that may be reused. Wiki Markup
Noncompliant Code Example (
...
Boolean
Lock Object)
This noncompliant code example locks synchronizes on a nonfinal object that is declared public
. It is possible that untrusted code can change the value of the lock object and foil any attempts to synchronize Boolean
lock object.
Code Block | ||
---|---|---|
| ||
public Object publicLockprivate final Boolean initialized = new Object()Boolean.FALSE; synchronized(publicLock) { public // body } |
Compliant Solution (final
lock object)
This compliant solution synchronizes on a private final
object and is safe from malicious manipulation.
Code Block | ||
---|---|---|
| ||
private final Object privateLock = new Object();
synchronized(privateLock) {
// body
}
|
Noncompliant Code Example (String
constant)
Wiki Markup |
---|
A {{String}} constant is interned in Java. According to the Java API \[[API 06|AA. Java References#API 06]\] Class {{String}} documentation: |
When the
intern()
method is invoked, if the pool already contains a string equal to thisString
object as determined by theequals(Object)
method, then the string from the pool is returned. Otherwise, thisString
object is added to the pool and a reference to thisString
object is returned.
void doSomething() {
synchronized (initialized) {
// ...
}
}
|
The Boolean
type is unsuitable for locking purposes because it allows only two values: true and false. Boolean literals containing the same value share unique instances of the Boolean
class in the Java Virtual Machine (JVM). In this example, initialized
refers to the instance corresponding to the value Boolean.FALSE
. If any other code were to inadvertently synchronize on a Boolean
literal with this value, the lock instance would be reused and the system could become unresponsive or could deadlock.
Noncompliant Code Example (Boxed Primitive)
This noncompliant code example locks on a boxed Integer
object.Consequently, a String
constant behaves like a global variable in the JVM. As demonstrated in this noncompliant code example, even if each instance of an object maintains its own field lock
, it points to a common String
constant in the JVM. Legitimate code that locks on the same String
constant renders all synchronization attempts inadequate. Likewise, hostile code from any other package can deliberately exploit this vulnerability.
Code Block | ||
---|---|---|
| ||
//private Thisint bugcount was found in jetty-6.1.3 BoundedThreadPool= 0; private final StringInteger _lockLock = "one"; synchronized(_lock) { /* ... */ } |
Noncompliant Code Example (Mutable lock object)
This noncompliant code example synchronizes on a mutable field instead of an object and demonstrates no mutual exclusion properties. This is because the thread that holds a lock on the field can modify the referenced object's value which allows another thread that is blocked on the unmodified value to resume, at the same time, granting access to a third thread that is blocked on the modified value. When aiming to modify a field, it is incorrect to synchronize on the same (or another) field as this is equivalent to synchronizing on the field's contents.
Code Block | ||
---|---|---|
| ||
private Integer semaphore = new Integer(0);
synchronized(semaphore) { /* ... */ }
|
count; // Boxed primitive Lock is shared
public void doSomething() {
synchronized (Lock) {
count++;
// ...
}
}
|
Boxed types may use the same instance for a range of integer values; consequently, they suffer from the same reuse problem as Boolean
constants. The wrapper object are reused when the value can be represented as a byte; JVM implementations are also permitted to reuse wrapper objects for larger ranges of values. While use of the intrinsic lock associated with the boxed Integer
wrapper object is insecure; instances of the Integer
object constructed using the new
operator This is a mutual exclusion problem as opposed to the sharing issue discussed in the previous noncompliant code example. Note that the boxed Integer
primitive is shared as shown below and not the Integer
object (new Integer(value)
) itself.
Code Block |
---|
int lock = 0;
Integer Lock = lock; // Boxed primitive Lock will be shared
|
In general, holding a lock on any data structure are unique and not reused. In general, locks on any data type that contains a boxed value can be dangerousare insecure.
Noncompliant Code Example (Boolean
lock object)
Compliant Solution (Integer)
This compliant solution locks on a nonboxed Integer
, using a variant of the private lock object idiom. The doSomething()
method synchronizes using the intrinsic lock of the Integer
instance, Lock
This noncompliant code example uses a {{Boolean}} field to synchronize. However, there can only be two possible values ({{true}} and {{false}}) that a {{Boolean}} can assume. Consequently, any other code that synchronizes on the same value can cause unresponsiveness and deadlocks \[[Findbugs 08|AA. Java References#Findbugs 08]\]. Wiki Markup
Code Block | |||
---|---|---|---|
| |||
private int count = 0; private final BooleanInteger initializedLock = Boolean.FALSE; synchronized(initialized new Integer(count); public void doSomething() { ifsynchronized (!initializedLock) { // Perform initializationcount++; initialized = Boolean.TRUE;// ... } } |
Compliant Solution (raw Object
lock object)
When explicitly constructed, an Integer
object has a unique reference and its own intrinsic lock that is distinct not only from other Integer
objects, but also from boxed integers that have the same value. While this is an acceptable solution, it can cause maintenance problems because developers can incorrectly assume that boxed integers are also appropriate lock objects. A more appropriate solution is to synchronize on a private final lock object as described in the final compliant solution for this rule.
Noncompliant Code Example (Interned String
Object)
This noncompliant code example locks on an interned String
objectIn the absence of an existing object to lock on, using a raw object to synchronize suffices.
Code Block | ||
---|---|---|
| ||
private final ObjectString lock = new ObjectString("LOCK").intern(); synchronized(lock public void doSomething() { /* ... */ } |
Note that the instance of the raw object should not be changed from within the synchronized block. For example, creating and storing the reference of a new object into the lock
field is highly inadvisable. To prevent such modifications, declare the lock
field final
.
Noncompliant Code Example (getClass()
lock object)
Synchronizing on getClass()
rather than a class literal can also be counterproductive. Whenever the implementing class is subclassed, the subclass locks on a completely different Class
object.
Code Block | ||
---|---|---|
| ||
synchronized(getClass()) { /* ... */ }
|
Wiki Markup |
---|
This idea is sometimes easy to miss, especially when the Java Language Specification is misunderstood. Section 4.3.2 "The Class Object" of the specification \[[JLS 05|AA. Java References#JLS 05]\] describes how method synchronization works: |
A class method that is declared
synchronized
synchronizes on the lock associated with theClass
object of the class.
This does not mean that it is required to synchronize on the Class
object of the base class.
Compliant Solution (class name qualification)
Explicitly define the name of the class (superclass in this example) in the synchronization block. This can be achieved in two ways. One way is to explicitly pass the superclass's instance.
Code Block | ||
---|---|---|
| ||
synchronized(SuperclassName.class) { ... }
|
The second way is to use the Class.forName()
method.
Code Block | ||
---|---|---|
| ||
synchronized(Class.forName("SuperclassName")) { ... }
|
Finally, it is more important to recognize the entities with whom synchronization is required rather than indiscreetly scavenging for variables or objects to synchronize on.
Noncompliant Code Example (collection view)
Wiki Markup |
---|
When using synchronization wrappers, the synchronization object must be the {{Collection}} object. The synchronization is necessary to enforce atomicity ([CON07-J. Ensure atomicity of calls to thread-safe APIs]). This noncompliant code example demonstrates inappropriate synchronization resulting from locking on a {{Collection}} view instead of the Collection itself \[[Tutorials 08|AA. Java References#Tutorials 08]\]. |
Code Block | ||
---|---|---|
| ||
Map<Integer, String> m = Collections.synchronizedMap(new HashMap<Integer, String>());
Set<Integer> s = m.keySet();
synchronized(s) { // Incorrectly synchronizes on s
for(Integer k : s) {
// Do something
}
}
|
Compliant Solution (collection lock object)
This compliant solution correctly synchronizes on the Collection
object instead of the Collection
view.
Code Block | ||
---|---|---|
| ||
// ...
synchronized(m) { // Synchronize on m, not s
for(Integer k : s) {
// Do something
}
}
|
Noncompliant Code Example (nonstatic lock object)
This noncompliant code example uses a nonstatic lock object to guard access to a static
field. If two Runnable
tasks, each consisting of a thread are started, they will create two instances of the lock object and lock on each separately. This does not prevent either thread from observing an inconsistent value of field counter
because the increment operation on volatile
fields is not atomic, in the absence of proper synchronization.
synchronized (lock) {
// ...
}
}
|
According to the Java API class java.lang.String
documentation [API 2006]:
When the
intern()
method is invoked, if the pool already contains a string equal to thisString
object as determined by theequals(Object)
method, then the string from the pool is returned. Otherwise, thisString
object is added to the pool and a reference to thisString
object is returned.
Consequently, an interned String
object behaves like a global variable in the JVM. As demonstrated in this noncompliant code example, even when every instance of an object maintains its own lock
field, the fields all refer to a common String
constant. Locking on String
constants has the same reuse problem as locking on Boolean
constants.
Additionally, hostile code from any other package can exploit this vulnerability, if the class is accessible. See rule LCK00-J. Use private final lock objects to synchronize classes that may interact with untrusted code for more information.
Noncompliant Code Example (String
Literal)
This noncompliant code example locks on a final String
literal.
Code Block | ||
---|---|---|
| ||
// This bug was found in jetty-6.1.3 BoundedThreadPool
private final String lock = "LOCK";
public void doSomething() {
synchronized (lock) {
// ...
}
}
|
String
literals are constant and are automatically interned. Consequently, this example suffers from the same pitfalls as the preceding noncompliant code example.
Compliant Solution (String
Instance)
This compliant solution locks on a noninterned String
instance.
Code Block | ||
---|---|---|
| ||
private final String lock = new String("LOCK");
public void doSomething() {
synchronized (lock) {
| ||
Code Block | ||
| ||
class CountBoxes implements Runnable { static volatile int counter; // ... Object lock = new Object(); public void run() { synchronized(lock) { counter++; // ... } } public static void main(String[] args) { Runnable r1 = new CountBoxes(); Thread t1 = new Thread(r1); Runnable r2 = new CountBoxes(); Thread t2 = new Thread(r2); t1.start(); t2.start(); } } |
Compliant Solution (static
lock object)
}
|
A String
instance differs from a String
literal. The instance has a unique reference and its own intrinsic lock that is distinct from other String
object instances or literals. Nevertheless, a better approach is to synchronize on a private final lock object, as shown in the following compliant solution.
Compliant Solution (Private Final Lock Object
)
This compliant solution synchronizes on a private final lock object. This is one of the few cases in which a java.lang.Object
instance is usefulThis compliant solution declares the lock object as static
and consequently, ensures the atomicity of the increment operation.
Code Block | ||
---|---|---|
| ||
class CountBoxes implements Runnable { static volatile int counter; // ... staticprivate final Object lock = new Object(); // ... } |
Noncompliant Code Example (ReentrantLock
lock object)
This noncompliant code example incorrectly uses a ReentrantLock
as the lock object.
Code Block | ||
---|---|---|
| ||
final Lock lock = new ReentrantLock();
synchronized(lock) { /* ... */ }
|
Compliant Solution (lock()
and unlock()
)
The proper mechanism to lock in this case is to explicitly use the lock()
and unlock()
methods provided by the ReentrantLock
class.
Code Block | ||
---|---|---|
| ||
final Lock lock = new ReentrantLock(); lock.lock(); try { public void doSomething() { synchronized (lock) { // ... } finally { lock.unlock(); } |
Risk Assessment
}
}
|
For more information on using an Object
as a lock, see rule LCK00-J. Use private final lock objects to synchronize classes that may interact with untrusted code.
Risk Assessment
A significant number of concurrency vulnerabilities arise from locking on the wrong kind of object. It is important to consider the properties of the lock object rather than simply scavenging for objects on which to synchronizeSynchronizing on an incorrect variable can provide a false sense of thread safety and result in nondeterministic behavior.
Rule | Severity | Likelihood | Remediation Cost | Priority | Level |
---|
LCK01-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 String
\[[Pugh 08|AA. Java References#Pugh 08]\] "Synchronization"
\[[Miller 09|AA. Java References#Miller 09]\] Locking
\[[Tutorials 08|AA. Java References#Tutorials 08]\] [Wrapper Implementations|http://java.sun.com/docs/books/tutorial/collections/implementations/wrapper.html] |
Some static analysis tools can detect violations of this rule.
Tool | Version | Checker | Description | ||||||
---|---|---|---|---|---|---|---|---|---|
The Checker Framework |
| Lock Checker | Concurrency and lock errors (see Chapter 6) | ||||||
Parasoft Jtest |
| CERT.LCK01.SCS | Do not synchronize on constant Strings | ||||||
PVS-Studio |
| V6070 | |||||||
SonarQube |
| S1860 | |||||||
ThreadSafe |
| CCE_CC_REUSEDOBJ_SYNC | Implemented |
Bibliography
[API 2006] | Class String, Collections |
Locking | |
Synchronization | |
...
VOID CON00-J. Synchronize access to shared mutable variables 11. Concurrency (CON) CON03-J. Do not use background threads during class initialization