You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "runlinzhang (JIRA)" <ji...@apache.org> on 2017/05/08 05:19:04 UTC

[jira] [Created] (HDFS-11764) NPE when the GroupMappingServiceProvider has no group

runlinzhang created HDFS-11764:
----------------------------------

             Summary: NPE when the GroupMappingServiceProvider has no group 
                 Key: HDFS-11764
                 URL: https://issues.apache.org/jira/browse/HDFS-11764
             Project: Hadoop HDFS
          Issue Type: Bug
          Components: security
    Affects Versions: 2.7.2
            Reporter: runlinzhang
            Priority: Critical
             Fix For: 2.7.2


The following code can throw NPE if GroupMappingServiceProvider.getGroups() returns null.

public List<String> load(String user) throws Exception {
      List<String> groups = fetchGroupList(user);

      if (groups.isEmpty()) {
        if (isNegativeCacheEnabled()) {
          negativeCache.add(user);
        }

        // We throw here to prevent Cache from retaining an empty group
        throw noGroupsForUser(user);
      }

      return groups;
    }

eg:image





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

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: hdfs-dev-help@hadoop.apache.org