You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2017/06/06 18:23:18 UTC

[jira] [Commented] (VALIDATOR-427) Race Condition in DomainValidator

    [ https://issues.apache.org/jira/browse/VALIDATOR-427?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16039400#comment-16039400 ] 

Sebb commented on VALIDATOR-427:
--------------------------------

There is no race condition here.
The rule is that DomainValidator.updateTLDOverride() must be called before DomainValidator.getInstance().
If an application does not do that, it is an application bug.

The override arrays are static, and apply to all threads that use the singleton instance.
If the overrides could be changed after getInstance has been called, then different threads can get different results, possibly changing between calls.
That would be very confusing.

> Race Condition in DomainValidator
> ---------------------------------
>
>                 Key: VALIDATOR-427
>                 URL: https://issues.apache.org/jira/browse/VALIDATOR-427
>             Project: Commons Validator
>          Issue Type: Bug
>    Affects Versions: 1.6
>            Reporter: Steven Sheehy
>
> There's a race condition in DomainValidator which causes our application to fail sometimes. The issue occurs when the DomainValidator.getInstance() is called before we can call DomainValidator.updateTLDOverride() and we receive a IllegalStateException("Can only invoke this method before calling getInstance"). In a multi-threaded environment, DomainValidator.getInstance() can be called at any time and it is difficult to find a location in application startup which ensures DomainValidator.updateTLDOverride() is called before to initialize it. I was able to workaround during application runtime it by placing the initialization in a Spring @Configuration class, but there is no proper location in JUnit tests which can be called before any tests run.
> Therefore, I think the proper approach to address this is to allow DomainValidator.updateTLDOverride() to be updated at any time including after calls to getInstance(). Examining the source, I see that the both methods are synchronized and that the custom TLD arrays are all volatile. Therefore, assuming Java 1.5 or greater and its guarantees about volatile assignments, the code already guarantees proper synchronization for the TLD plus arrays and the inUse flag is not needed and can be removed.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)