finding concurrency bugs in java
play

Finding Concurrency Bugs in Java David Hovemeyer and William Pugh - PowerPoint PPT Presentation

Outline Introduction Concurrency Bug Patterns Conclusions Finding Concurrency Bugs in Java David Hovemeyer and William Pugh July 25, 2004 David Hovemeyer and William Pugh Finding Concurrency Bugs in Java Outline Introduction Concurrency


  1. Outline Introduction Concurrency Bug Patterns Conclusions Finding Concurrency Bugs in Java David Hovemeyer and William Pugh July 25, 2004 David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  2. Outline Introduction Concurrency Bug Patterns Conclusions Introduction Background Our Work Concurrency Bug Patterns Inconsistent Synchronization Double Checked Locking Unconditional Wait Other Bug Patterns Conclusions Conclusions Recommendations David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  3. Outline Introduction Background Concurrency Bug Patterns Our Work Conclusions Programmers are Not Scared Enough ◮ Java makes threaded programming “too easy” ◮ Language often hides consequences of incorrect synchronization ◮ Many (most?) Java programmers play fast and loose with synchronization ◮ Result: many production concurrent Java programs have serious, avoidable concurrency bugs ◮ Programmer intuition about behavior of programs with data races is almost always wrong ◮ Program usually works ◮ ...until deployed in a mission-critical application? David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  4. Outline Introduction Background Concurrency Bug Patterns Our Work Conclusions Our Work ◮ Develop simple, effective static analysis techniques for finding bugs ◮ Including concurrency bugs ◮ http://findbugs.sourceforge.net ◮ Idea: bug patterns ◮ Deviations from good practice ◮ Code idioms that are likely to be errors ◮ Analyze real applications and libraries ◮ Was analysis effective at finding real errors? ◮ Was the false positive rate acceptable? ◮ Can we convince developers bugs are worth fixing? ◮ Can we gain insight on why bugs are introduced? David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  5. Outline Inconsistent Synchronization Introduction Double Checked Locking Concurrency Bug Patterns Unconditional Wait Conclusions Other Bug Patterns Concurrency Bug Patterns David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  6. Outline Inconsistent Synchronization Introduction Double Checked Locking Concurrency Bug Patterns Unconditional Wait Conclusions Other Bug Patterns Finding and Eliminating Data Races ◮ Lots of techniques exist to find and eliminate data races: ◮ Race-free Java dialects (sound, but restrictive) ◮ Sophisticated static analysis (interprocedural, context-sensitive) ◮ Dynamic techniques ◮ How about simple techniques? ◮ Java programs usually have relatively simple concurrency patterns ◮ Look for violations of most common synchronization idiom ◮ Can we find real bugs? David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  7. Outline Inconsistent Synchronization Introduction Double Checked Locking Concurrency Bug Patterns Unconditional Wait Conclusions Other Bug Patterns Inconsistent Synchronization ◮ Common idiom: synchronize on this reference ◮ Track scope of locks intraprocedurally, examine field accesses ◮ Ignore accesses in... ◮ non-public methods called only from locked contexts ◮ methods not likely to be reachable from multiple threads: constructors, finalizers, readObject() , etc. ◮ Report fields where accesses are usually, but not always, synchronized ◮ Result: this technique finds lots of data races ◮ 114 we verified in core J2SE libraries (JDK 1.5, build 42) ◮ 2 found in prerelease version of JDK 1.4.2, fixed by Sun in JDK 1.5 David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  8. Outline Inconsistent Synchronization Introduction Double Checked Locking Concurrency Bug Patterns Unconditional Wait Conclusions Other Bug Patterns Ranking Warnings: The Hypothesis ◮ We believed that programmers would strive to synchronize all mutable field accesses for objects intended to be thread-safe ◮ Therefore: ◮ The higher the percentage of synchronized accesses, ◮ The more likely unsynchronized accesses would indicate genuine bugs ◮ So, we gave higher priority to warnings of fields synchronized between 75% and 99% of the time David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  9. Outline Inconsistent Synchronization Introduction Double Checked Locking Concurrency Bug Patterns Unconditional Wait Conclusions Other Bug Patterns Ranking Warnings: The Reality ◮ The hypothesis was incorrect: Inconsistent synchronization false positive results for rt-1.5-b42 120 Serious Harmless and false 100 Number of warnings 80 60 40 20 0 50 60 70 80 90 100 Minimum accesses synchronized (percent) David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  10. Outline Inconsistent Synchronization Introduction Double Checked Locking Concurrency Bug Patterns Unconditional Wait Conclusions Other Bug Patterns Interpretation ◮ Fields synchronized, e.g., 95% of the time not significantly more likely to be bugs than fields synchronized 50% of the time ◮ Programmers are deliberately using race conditions to communicate values between threads ◮ Some examples of unsynchronized accesses: ◮ Set methods (very common) ◮ Get methods (very common) ◮ Copying internal collection to an array ◮ Programs work “most of the time” ◮ Many bugs may not be exploitable in practice ◮ Still, not a comforting thought David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  11. Outline Inconsistent Synchronization Introduction Double Checked Locking Concurrency Bug Patterns Unconditional Wait Conclusions Other Bug Patterns Double Checked Locking ◮ A common technique to avoid locking in lazy initialization of a singleton: if (singleton == null) { synchronized (lock) { if (singleton == null) singleton = new Singleton(); } } ◮ JVM can reorder writes! ◮ Without acquiring lock, may see incompletely initialized object ◮ Still widely used ◮ We found 78 doublecheck instances in core J2SE libraries ◮ And 4 doublecheck instances in JBoss David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  12. Outline Inconsistent Synchronization Introduction Double Checked Locking Concurrency Bug Patterns Unconditional Wait Conclusions Other Bug Patterns Detecting Double Checked Locking ◮ State machine driven pattern recognition over bytecode ◮ Bytecode closely matches source ◮ Look for: 1. Load of field 2. Null comparison 3. Monitorenter 4. Load of field 5. Null comparison 6. Object creation, Store to field David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  13. Outline Inconsistent Synchronization Introduction Double Checked Locking Concurrency Bug Patterns Unconditional Wait Conclusions Other Bug Patterns Unconditional Wait ◮ Triggered when monitor wait is done immediately upon entering a synchronized block: 1. monitorenter 2. invokevirtual Object.wait() ◮ Often means condition was checked without the lock held ◮ Usually a novice thread programmer error, but... ◮ 2 occurrences in JBoss! David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  14. Outline Inconsistent Synchronization Introduction Double Checked Locking Concurrency Bug Patterns Unconditional Wait Conclusions Other Bug Patterns Example ◮ Example (JBoss 4.0.0 DR3) // If we are not enabled, then wait if (!enabled) { try { log.debug("Disabled, waiting for notification"); synchronized (lock) { lock.wait(); } } catch (InterruptedException ignore) {} } David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  15. Outline Inconsistent Synchronization Introduction Double Checked Locking Concurrency Bug Patterns Unconditional Wait Conclusions Other Bug Patterns Other Bug Patterns ◮ Some concurrency bug patterns more useful for finding mistakes in novice code: ◮ Wait Not In Loop ◮ Monitor waits must be in a loop which checks the condition ◮ Other threads can run between wakeup and reacquiring lock ◮ Java allows spurious wakeups ◮ Monitors used for multiple conditions ◮ Two Lock Wait ◮ Waiting with two locks creates possibility of deadlock ◮ Found bug in J2SE CORBA ORB implementation ◮ More patterns described in paper David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  16. Outline Introduction Conclusions Concurrency Bug Patterns Recommendations Conclusions Conclusions David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  17. Outline Introduction Conclusions Concurrency Bug Patterns Recommendations Conclusions Conclusions ◮ Trivial static inspection reveals a large number of concurrency bugs in widely-used applications and libraries ◮ Why are these bugs there? ◮ Benign reason: everyone makes mistakes ◮ Sinister reason: programmers are too willing to take chances ◮ Many bug patterns can be easily automated ◮ With tuning, false positive rate is acceptable (usually less than 50%) David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

  18. Outline Introduction Conclusions Concurrency Bug Patterns Recommendations Conclusions Recommendations ◮ Once introduced, bugs are difficult and expensive to fix ◮ Especially true of concurrency bugs, where reproducibility is low and likelihood of introducing other errors is high ◮ We should make early detection tools (static and dynamic) easy to use ◮ Tools that don’t require developers to change working style more likely to be adopted in practice ◮ Simplicity helps: ◮ If analysis is simple, it’s usually easy to explain results to user ◮ It makes sense to fix obvious bugs before tackling subtle bugs David Hovemeyer and William Pugh Finding Concurrency Bugs in Java

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend