HADOOP-12413. AccessControlList should avoid calling getGroupNames in isUserInList with empty groups. Contributed by Zhihai Xu.
(cherry picked from commit b2017d9b03
)
This commit is contained in:
parent
3531823fcc
commit
be9354d010
|
@ -264,6 +264,9 @@ Release 2.8.0 - UNRELEASED
|
|||
HADOOP-12324. Better exception reporting in SaslPlainServer.
|
||||
(Mike Yoder via stevel)
|
||||
|
||||
HADOOP-12413. AccessControlList should avoid calling getGroupNames in
|
||||
isUserInList with empty groups. (Zhihai Xu via cnauroth)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HADOOP-11785. Reduce the number of listStatus operation in distcp
|
||||
|
|
|
@ -230,7 +230,7 @@ public class AccessControlList implements Writable {
|
|||
public final boolean isUserInList(UserGroupInformation ugi) {
|
||||
if (allAllowed || users.contains(ugi.getShortUserName())) {
|
||||
return true;
|
||||
} else {
|
||||
} else if (!groups.isEmpty()) {
|
||||
for(String group: ugi.getGroupNames()) {
|
||||
if (groups.contains(group)) {
|
||||
return true;
|
||||
|
|
|
@ -37,6 +37,10 @@ import org.apache.hadoop.security.UserGroupInformation;
|
|||
import org.apache.hadoop.util.NativeCodeLoader;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.mockito.Mockito.never;
|
||||
import static org.mockito.Mockito.spy;
|
||||
import static org.mockito.Mockito.verify;
|
||||
|
||||
@InterfaceAudience.LimitedPrivate({"HDFS", "MapReduce"})
|
||||
@InterfaceStability.Evolving
|
||||
public class TestAccessControlList {
|
||||
|
@ -449,6 +453,11 @@ public class TestAccessControlList {
|
|||
assertUserAllowed(susan, acl);
|
||||
assertUserAllowed(barbara, acl);
|
||||
assertUserAllowed(ian, acl);
|
||||
|
||||
acl = new AccessControlList("");
|
||||
UserGroupInformation spyUser = spy(drwho);
|
||||
acl.isUserAllowed(spyUser);
|
||||
verify(spyUser, never()).getGroupNames();
|
||||
}
|
||||
|
||||
private void assertUserAllowed(UserGroupInformation ugi,
|
||||
|
|
Loading…
Reference in New Issue