HDFS-13194. CachePool permissions incorrectly checked. Contributed by Jianfei Jiang.
This commit is contained in:
parent
d86f301d46
commit
a9c14b1119
@ -573,7 +573,9 @@ public void checkPermission(CachePool pool, FsAction access)
|
||||
&& mode.getGroupAction().implies(access)) {
|
||||
return;
|
||||
}
|
||||
if (mode.getOtherAction().implies(access)) {
|
||||
if (!getUser().equals(pool.getOwnerName())
|
||||
&& !isMemberOfGroup(pool.getGroupName())
|
||||
&& mode.getOtherAction().implies(access)) {
|
||||
return;
|
||||
}
|
||||
throw new AccessControlException("Permission denied while accessing pool "
|
||||
|
@ -420,6 +420,9 @@ public void testAddRemoveDirectives() throws Exception {
|
||||
setMode(new FsPermission((short)0777)));
|
||||
proto.addCachePool(new CachePoolInfo("pool4").
|
||||
setMode(new FsPermission((short)0)));
|
||||
proto.addCachePool(new CachePoolInfo("pool5").
|
||||
setMode(new FsPermission((short)0007))
|
||||
.setOwnerName(unprivilegedUser.getShortUserName()));
|
||||
|
||||
CacheDirectiveInfo alpha = new CacheDirectiveInfo.Builder().
|
||||
setPath(new Path("/alpha")).
|
||||
@ -488,6 +491,18 @@ public void testAddRemoveDirectives() throws Exception {
|
||||
|
||||
long deltaId = addAsUnprivileged(delta);
|
||||
|
||||
try {
|
||||
addAsUnprivileged(new CacheDirectiveInfo.Builder().
|
||||
setPath(new Path("/epsilon")).
|
||||
setPool("pool5").
|
||||
build());
|
||||
fail("expected an error when adding to a pool with " +
|
||||
"mode 007 (no permissions for pool owner).");
|
||||
} catch (AccessControlException e) {
|
||||
GenericTestUtils.
|
||||
assertExceptionContains("Permission denied while accessing pool", e);
|
||||
}
|
||||
|
||||
// We expect the following to succeed, because DistributedFileSystem
|
||||
// qualifies the path.
|
||||
long relativeId = addAsUnprivileged(
|
||||
|
Loading…
Reference in New Issue
Block a user