DZone
Java Zone
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
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Java Zone > 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 · Java Zone · Tutorial
Like (4)
Save
Tweet
16.81K 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

  • How to Test JavaScript Code in a Browser
  • Augmented Analytics: The Future of Business Intelligence
  • Refactoring Java Application: Object-Oriented And Functional Approaches
  • Creating a Spring Boot Project With Eclipse and Maven

Comments

Java Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • 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:

DZone.com is powered by 

AnswerHub logo