DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
  1. DZone
  2. Coding
  3. Java
  4. Detecting Java Race Conditions With Tests, Part 1: Lost Updates

Detecting Java Race Conditions With Tests, Part 1: Lost Updates

See how detecting Java race conditions is actually rather easy. In Part I of this two-part article, you will see how to detect lost updates, the first type of Java race conditions.

Thomas Krieger user avatar by
Thomas Krieger
·
Apr. 09, 16 · Tutorial
Like (4)
Save
Tweet
Share
17.58K Views

Join the DZone community and get the full member experience.

Join For Free

Detecting Java race conditions is hard; detecting them during tests is impossible. Really?

In the following article, I want to show you that it is actually rather easy. In Part I of this article, you will see how to detect lost updates, the first type of Java race conditions. In Part II, we will look at the second type of Java race conditions: non-atomic access.

So What Are Visibility Problems Anyway?

If you read and write to the same field from different threads without synchronization, you will lose updates.


Multi Core Memory Architecture


Why? In multi-core computers, every core has a cache. If you write to a field, another thread sees the old value if that thread runs on another core. If the thread runs on the same core, you will see the new value. Only if the cache was invalidated, will the thread always see the new value. Without invalidating the cache you lose updates. And invalidating the cache is what a synchronization statement or writing to a volatile field does.

Okay, So What Can I Do?

Simply run a multi-threaded test. Afterward, check if each concurrent field access is correctly synchronized. The Java memory model formally specifies which statements correctly synchronize a field access. For example, the following is correctly synchronized, since between the write and read is a thread start:

public class ThreadStart extends Thread {

    private int i = 0;

    public static void main(String[] args) {
        ThreadStart threadStart = new ThreadStart();
        threadStart.i = 8;

        /*
         * 
         * see https://docs.oracle.com/javase/specs/jls/se7/html/jls-17.html#jls-17.4.4
         * An action that starts a thread synchronizes-with the first action in the thread 
         * it starts. 
         */

        threadStart.start();
    }

    @Override
    public void run() {
        int j =  i;
    }

}

So let’s get started with a simple example—a counter:

public class Counter {

    private int i = 0;

    public void addOne() {
        i++;
    }
}

To test the counter, we use the following JUnit test. The concurrent test runner runs the test method from four different threads.

import org.junit.Test;
import org.junit.runner.RunWith;
import com.anarsoft.vmlens.concurrent.junit.ConcurrentTestRunner;

@RunWith(ConcurrentTestRunner.class)
public class TestCounter {

    private final Counter counter = new Counter();

    @Test
    public void testAdd() {
        counter.addOne();
    }
}

To trace the fields and synchronization actions, add the vmlens agent path to the virtual machine arguments. After the run, vmlens checks all field accesses. If vmlens finds a field access that is not correctly synchronized, we have detected a Java race condition.


Example Java Race Condition


It Is Not a Bug, It Is a Feature

Probably you have noticed the detected Java race condition accessing the field numInvocations in the class sun.reflect.NativeMethodAccessorImpl. If we look at the source code, we see that it is used to switch to a faster implementation, if a threshold is reached.

public Object invoke(Object obj, Object[] args)
         throws IllegalArgumentException, InvocationTargetException
{
      if (++numInvocations > ReflectionFactory.inflationThreshold()) {
            MethodAccessorImpl acc = (MethodAccessorImpl)
                new MethodAccessorGenerator().
                    generateMethod(method.getDeclaringClass(),
                                   method.getName(),
                                   method.getParameterTypes(),
                                   method.getReturnType(),
                                   method.getExceptionTypes(),
                                   method.getModifiers());
            parent.setDelegate(acc);
        }
        return invoke0(method, obj, args);
 }

This is an example of a Java race condition, which is not a bug but a feature. The performance loss to make the numInvocations count thread safe is worse than to lose some values.

If It Is Not Tested, It Is Probably Broken

Since detecting Java race conditions with testing is rather new, you can expect many undetected race conditions. Here is an example of race conditions during the start and stop of Jenkins, an open-source continuous integration server:


Java Race Conditions in Jenkins


So detecting lost updates with tests is possible. As a test runner, I used concurrent-junit; as a race condition catcher, I used vmlens. In Part II we will look at non-atomic updates.

Testing Java (programming language)

Published at DZone with permission of Thomas Krieger, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Express Hibernate Queries as Type-Safe Java Streams
  • AWS Cloud Migration: Best Practices and Pitfalls to Avoid
  • ChatGPT: The Unexpected API Test Automation Help
  • Real-Time Stream Processing With Hazelcast and StreamNative

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: