Giter Club home page Giter Club logo

reproduce-webclassloader-jarfiles-race's Introduction

Reproduce a race-condition in WebappClassLoader

Please see ReproduceTest

ReproduceTest.shouldProvokeRaceConditionIn_findResourceInternalFromJars concurrently calls WebappClassLoader.addJar(), WebappClassLoader.findResource() and WebappClassLoader.closeJARs().

The exceptions thrown by findResource() (written to the console / System.out) show that findResource() and closeJARs() are not properly synchronized with each other.

Please note: The occurrence of this problem strongly depends on the threads timings and thus on the executing machine. Basically, this works on my machine; you might have to change the timings by playing around with the Thread.sleep() intervals to provoke the issue.

Proposed Solution

closeJARs() (and some other methods) synchronizes on the field jarFilesLock. findResource()'s helper method findClassInternal() synchronizes on jarFiles and is the only method that does that.

I think it's very likely that it was meant to synchronize on jarFilesLock, too.

Additionally IntelliJ warns:

Synchronization on a non-final field 'jarFiles' Reports synchronized statements where the lock expression is a reference to a non-final field. Such statements are unlikely to have useful semantics, as different threads may be locking on different objects even when operating on the same object.

As e.g. closeJARs() mutates the jarFiles array, generally all accesses to it should synchronize with jarFilesLock.

reproduce-webclassloader-jarfiles-race's People

Contributors

supersven avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.