Details
Description
FSPermissionChecker may throw ArrayIndexOutOfBoundsException:0 when check if has permission, since it only check inode's aclFeature if null or not but not check it's entry size. When it meets aclFeature not null but it's entry size equal to 0, it will throw AIOOE.
private boolean hasPermission(INodeAttributes inode, FsAction access) { ...... final AclFeature aclFeature = inode.getAclFeature(); if (aclFeature != null) { // It's possible that the inode has a default ACL but no access ACL. int firstEntry = aclFeature.getEntryAt(0); if (AclEntryStatusFormat.getScope(firstEntry) == AclEntryScope.ACCESS) { return hasAclPermission(inode, access, mode, aclFeature); } } ...... }
Actually if use default INodeAttributeProvider, it can ensure that when inode's aclFeature is not null and it's entry size also will be greater than 0, but INodeAttributeProvider is a public interface, we could not ensure external implement (e.g. Apache Sentry, Apache Ranger) also has the similar constraint.