MAPREDUCE-3878. Null user on filtered jobhistory job page (Jonathon Eagles via tgraves)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1292831 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Graves 2012-02-23 15:50:53 +00:00
parent 8a2073cc61
commit 81f5c5933d
2 changed files with 12 additions and 3 deletions

View File

@ -136,6 +136,9 @@ Release 0.23.2 - UNRELEASED
to the maven build. (Ravi Prakash via vinodkv)
MAPREDUCE-3884. PWD should be first in the classpath of MR tasks (tucu)
MAPREDUCE-3878. Null user on filtered jobhistory job page (Jonathon Eagles
via tgraves)
Release 0.23.1 - 2012-02-17

View File

@ -343,9 +343,15 @@ void accessDenied(String s) {
* @return True if the requesting user has permission to view the job
*/
boolean checkAccess(Job job) {
UserGroupInformation callerUgi = UserGroupInformation.createRemoteUser(
request().getRemoteUser());
return job.checkAccess(callerUgi, JobACL.VIEW_JOB);
String remoteUser = request().getRemoteUser();
UserGroupInformation callerUGI = null;
if (remoteUser != null) {
callerUGI = UserGroupInformation.createRemoteUser(remoteUser);
}
if (callerUGI != null && !job.checkAccess(callerUGI, JobACL.VIEW_JOB)) {
return false;
}
return true;
}
/**