Return-Path: Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: (qmail 58012 invoked from network); 10 Dec 2009 19:46:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 10 Dec 2009 19:46:41 -0000 Received: (qmail 37776 invoked by uid 500); 10 Dec 2009 19:46:41 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 37663 invoked by uid 500); 10 Dec 2009 19:46:41 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 37653 invoked by uid 99); 10 Dec 2009 19:46:41 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Dec 2009 19:46:41 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Dec 2009 19:46:39 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 15A9E234C04C for ; Thu, 10 Dec 2009 11:46:18 -0800 (PST) Message-ID: <1310477079.1260474378073.JavaMail.jira@brutus> Date: Thu, 10 Dec 2009 19:46:18 +0000 (UTC) From: "Boris (JIRA)" To: issues@commons.apache.org Subject: [jira] Commented: (LANG-481) Possible race-conditions in hashCode of the range classes In-Reply-To: <257814446.1232740199743.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LANG-481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12788868#action_12788868 ] Boris commented on LANG-481: ---------------------------- Sorry for the delay of my answer. The hashCode() of Harmony has the same reorder-bug as described above. It loads from a non-volatile field without synchronisation, so the code can be reordered and 0 could be wrongly returned as a hashCode. > Possible race-conditions in hashCode of the range classes > --------------------------------------------------------- > > Key: LANG-481 > URL: https://issues.apache.org/jira/browse/LANG-481 > Project: Commons Lang > Issue Type: Bug > Affects Versions: 2.4 > Reporter: Boris > Priority: Minor > Fix For: 3.0 > > Attachments: LANG-481-reordering_datarace.patch, LANG-481.patch > > > The hashCode() methods of the range classes look very suspicious to me. The value is lazily initialized, but the calculation is done _on the cached value. With some unlucky timing a caller may get an incomplete hash. > An unlucky sequence of Code could be something like > T1: if (hashCode == 0) // true > T1: hashCode = 17; > T2: if (hashCode == 0) // now false because hashCode was already set to 17 > T2: return hashCode; // return 17 > T1: hashCode = 37 * hashCode........... > where T1 and T2 are different threads accessing the method in parallel and T2 gets the wrong hash "17". > Affected classes are > org.apache.commons.lang.math.DoubleRange > org.apache.commons.lang.math.FloatRange > org.apache.commons.lang.math.IntRange > org.apache.commons.lang.math.LongRange > org.apache.commons.lang.math.NumberRange > org.apache.commons.lang.math.Range > Possible fix: calculate the hash on a temporary variable and finally assign it to the member -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.