Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 54711 invoked from network); 16 Apr 2008 17:00:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Apr 2008 17:00:31 -0000 Received: (qmail 51817 invoked by uid 500); 16 Apr 2008 17:00:30 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 51796 invoked by uid 500); 16 Apr 2008 17:00:30 -0000 Mailing-List: contact core-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-dev@hadoop.apache.org Received: (qmail 51774 invoked by uid 99); 16 Apr 2008 17:00:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 10:00:30 -0700 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; Wed, 16 Apr 2008 16:59:46 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id AB7EB234C0D5 for ; Wed, 16 Apr 2008 09:57:21 -0700 (PDT) Message-ID: <1728537641.1208365041701.JavaMail.jira@brutus> Date: Wed, 16 Apr 2008 09:57:21 -0700 (PDT) From: "Devaraj Das (JIRA)" To: core-dev@hadoop.apache.org Subject: [jira] Updated: (HADOOP-3256) JobHistory file on HDFS should not use the 'job name' In-Reply-To: <2123979905.1208221266408.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HADOOP-3256?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Devaraj Das updated HADOOP-3256: -------------------------------- Resolution: Fixed Hadoop Flags: [Reviewed] Status: Resolved (was: Patch Available) I just committed this. Thanks, Arun! > JobHistory file on HDFS should not use the 'job name' > ----------------------------------------------------- > > Key: HADOOP-3256 > URL: https://issues.apache.org/jira/browse/HADOOP-3256 > Project: Hadoop Core > Issue Type: Bug > Components: mapred > Affects Versions: 0.17.0 > Reporter: Arun C Murthy > Assignee: Arun C Murthy > Priority: Blocker > Fix For: 0.17.0 > > Attachments: HADOOP-3256_0_20080414.patch, HADOOP-3256_1_20080415.patch, HADOOP-3256_2_20080415.patch, HADOOP-3256_2_20080415.patch, HADOOP-3256_2_20080415.patch, HADOOP-3256_2_20080415.patch > > > HADOOP-2178 introduced the feature of saving jobhistory logs on HDFS. > Unfortunately the following code: > {noformat} > // setup the history log file for this job > String logFileName = jobUniqueString + > "_" + user+ "_" + jobName; > if (logFileName.length() > MAX_FILENAME_SIZE) { > logFileName = logFileName.substring(0, MAX_FILENAME_SIZE-1); > } > {noformat} > is vulnerable to user-provided job names. > Specifically I ran into 'URISyntaxException' with jobs whose names include a ":". > The easy fix is to ensure that we do not use the human-friendly job names and only the jobid. > The long term fix is to ensure that Path handles filenames with _any_ characters. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.