Return-Path: X-Original-To: apmail-hadoop-common-issues-archive@minotaur.apache.org Delivered-To: apmail-hadoop-common-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 406251151E for ; Tue, 24 Jun 2014 14:08:29 +0000 (UTC) Received: (qmail 52293 invoked by uid 500); 24 Jun 2014 14:08:28 -0000 Delivered-To: apmail-hadoop-common-issues-archive@hadoop.apache.org Received: (qmail 52219 invoked by uid 500); 24 Jun 2014 14:08:28 -0000 Mailing-List: contact common-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-issues@hadoop.apache.org Delivered-To: mailing list common-issues@hadoop.apache.org Received: (qmail 52060 invoked by uid 99); 24 Jun 2014 14:08:28 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Jun 2014 14:08:28 +0000 Date: Tue, 24 Jun 2014 14:08:28 +0000 (UTC) From: "Hudson (JIRA)" To: common-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HADOOP-10665) Make Hadoop Authentication Handler loads case in-sensitive MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HADOOP-10665?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14042147#comment-14042147 ] Hudson commented on HADOOP-10665: --------------------------------- SUCCESS: Integrated in Hadoop-Hdfs-trunk #1784 (See [https://builds.apache.org/job/Hadoop-Hdfs-trunk/1784/]) HADOOP-10665. Make Hadoop Authentication Handler loads case in-sensitive (Contributed by Benoy Antony) (vinayakumarb: http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1605049) * /hadoop/common/trunk/hadoop-common-project/hadoop-auth/src/main/java/org/apache/hadoop/security/authentication/server/AuthenticationFilter.java * /hadoop/common/trunk/hadoop-common-project/hadoop-auth/src/test/java/org/apache/hadoop/security/authentication/server/TestAuthenticationFilter.java * /hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt > Make Hadoop Authentication Handler loads case in-sensitive > ---------------------------------------------------------- > > Key: HADOOP-10665 > URL: https://issues.apache.org/jira/browse/HADOOP-10665 > Project: Hadoop Common > Issue Type: Improvement > Components: security > Reporter: Benoy Antony > Assignee: Benoy Antony > Priority: Minor > Fix For: 2.5.0 > > Attachments: HADOOP-10665.patch, HADOOP-10665.patch > > > The authentication mechanism for http specified via _hadoop.http.authentication.type_ is matched in in a case sensitive way. If one specifies the type {simple,kerberos} in the wrong case, the following exception is thrown . > Caused by: java.lang.ClassNotFoundException: Simple > at java.net.URLClassLoader$1.run(URLClassLoader.java:366) > at java.net.URLClassLoader$1.run(URLClassLoader.java:355) > at java.security.AccessController.doPrivileged(Native Method) > at java.net.URLClassLoader.findClass(URLClassLoader.java:354) > at java.lang.ClassLoader.loadClass(ClassLoader.java:425) > at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) > at java.lang.ClassLoader.loadClass(ClassLoader.java:358) > at org.apache.hadoop.security.authentication.server.AuthenticationFilter.init(AuthenticationFilter.java:148) > ... 24 more > I believe , it is safe to ignore case during this comparison. -- This message was sent by Atlassian JIRA (v6.2#6252)