HDFS-15372. Files in snapshots no longer see attribute provider permissions. Contributed by Stephen O'Donnell.
Signed-off-by: Wei-Chiu Chuang <weichiu@apache.org>
This commit is contained in:
parent
edf716a5c3
commit
d50e93ce7b
@ -73,7 +73,6 @@
|
|||||||
import java.io.Closeable;
|
import java.io.Closeable;
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.lang.reflect.Method;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
@ -2032,7 +2031,23 @@ INodeAttributes getAttributes(INodesInPath iip)
|
|||||||
// first empty component for the root. however file status
|
// first empty component for the root. however file status
|
||||||
// related calls are expected to strip out the root component according
|
// related calls are expected to strip out the root component according
|
||||||
// to TestINodeAttributeProvider.
|
// to TestINodeAttributeProvider.
|
||||||
byte[][] components = iip.getPathComponents();
|
// Due to HDFS-15372 the attribute provider should received the resolved
|
||||||
|
// snapshot path. Ie, rather than seeing /d/.snapshot/sn/data it should
|
||||||
|
// see /d/data. However, for the path /d/.snapshot/sn it should see this
|
||||||
|
// full path. If the current inode is the snapshot name, it always has the
|
||||||
|
// same ID as its parent inode, so we can use that to check if it is the
|
||||||
|
// path which needs handled specially.
|
||||||
|
byte[][] components;
|
||||||
|
INodeDirectory parent = node.getParent();
|
||||||
|
if (iip.isSnapshot()
|
||||||
|
&& parent != null && parent.getId() != node.getId()) {
|
||||||
|
// For snapshot paths, we always user node.getPathComponents so the
|
||||||
|
// snapshot path is resolved to the real path, unless the last component
|
||||||
|
// is the snapshot name root directory.
|
||||||
|
components = node.getPathComponents();
|
||||||
|
} else {
|
||||||
|
components = iip.getPathComponents();
|
||||||
|
}
|
||||||
components = Arrays.copyOfRange(components, 1, components.length);
|
components = Arrays.copyOfRange(components, 1, components.length);
|
||||||
nodeAttrs = ap.getAttributes(components, nodeAttrs);
|
nodeAttrs = ap.getAttributes(components, nodeAttrs);
|
||||||
}
|
}
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Stack;
|
import java.util.Stack;
|
||||||
@ -207,7 +208,7 @@ void checkPermission(INodesInPath inodesInPath, boolean doCheckOwner,
|
|||||||
final INodeAttributes[] inodeAttrs = new INodeAttributes[inodes.length];
|
final INodeAttributes[] inodeAttrs = new INodeAttributes[inodes.length];
|
||||||
final byte[][] components = inodesInPath.getPathComponents();
|
final byte[][] components = inodesInPath.getPathComponents();
|
||||||
for (int i = 0; i < inodes.length && inodes[i] != null; i++) {
|
for (int i = 0; i < inodes.length && inodes[i] != null; i++) {
|
||||||
inodeAttrs[i] = getINodeAttrs(components, i, inodes[i], snapshotId);
|
inodeAttrs[i] = getINodeAttrs(inodes[i], snapshotId);
|
||||||
}
|
}
|
||||||
|
|
||||||
String path = inodesInPath.getPath();
|
String path = inodesInPath.getPath();
|
||||||
@ -257,8 +258,7 @@ void checkPermission(INodesInPath inodesInPath, boolean doCheckOwner,
|
|||||||
void checkPermission(INode inode, int snapshotId, FsAction access)
|
void checkPermission(INode inode, int snapshotId, FsAction access)
|
||||||
throws AccessControlException {
|
throws AccessControlException {
|
||||||
byte[][] pathComponents = inode.getPathComponents();
|
byte[][] pathComponents = inode.getPathComponents();
|
||||||
INodeAttributes nodeAttributes = getINodeAttrs(pathComponents,
|
INodeAttributes nodeAttributes = getINodeAttrs(inode, snapshotId);
|
||||||
pathComponents.length - 1, inode, snapshotId);
|
|
||||||
try {
|
try {
|
||||||
INodeAttributes[] iNodeAttr = {nodeAttributes};
|
INodeAttributes[] iNodeAttr = {nodeAttributes};
|
||||||
AccessControlEnforcer enforcer = getAccessControlEnforcer();
|
AccessControlEnforcer enforcer = getAccessControlEnforcer();
|
||||||
@ -367,23 +367,31 @@ public void checkPermissionWithContext(
|
|||||||
authzContext.getSubAccess(), authzContext.isIgnoreEmptyDir());
|
authzContext.getSubAccess(), authzContext.isIgnoreEmptyDir());
|
||||||
}
|
}
|
||||||
|
|
||||||
private INodeAttributes getINodeAttrs(byte[][] pathByNameArr, int pathIdx,
|
private INodeAttributes getINodeAttrs(INode inode, int snapshotId) {
|
||||||
INode inode, int snapshotId) {
|
|
||||||
INodeAttributes inodeAttrs = inode.getSnapshotINode(snapshotId);
|
INodeAttributes inodeAttrs = inode.getSnapshotINode(snapshotId);
|
||||||
|
/**
|
||||||
|
* This logic is similar to {@link FSDirectory#getAttributes()} and it
|
||||||
|
* ensures that the attribute provider sees snapshot paths resolved to their
|
||||||
|
* original location. This means the attributeProvider can apply permissions
|
||||||
|
* to the snapshot paths in the same was as the live paths. See HDFS-15372.
|
||||||
|
*/
|
||||||
if (getAttributesProvider() != null) {
|
if (getAttributesProvider() != null) {
|
||||||
String[] elements = new String[pathIdx + 1];
|
|
||||||
/**
|
/**
|
||||||
* {@link INode#getPathComponents(String)} returns a null component
|
* If we have an inode representing a path like /d/.snapshot/snap1
|
||||||
* for the root only path "/". Assign an empty string if so.
|
* then calling inode.getPathComponents returns [null, d, snap1]. If we
|
||||||
|
* call inode.getFullPathName() it will return /d/.snapshot/snap1. For
|
||||||
|
* this special path (snapshot root) the attribute provider should see:
|
||||||
|
*
|
||||||
|
* [null, d, .snapshot/snap1]
|
||||||
|
*
|
||||||
|
* Using IIP.resolveFromRoot, it will take the inode fullPathName and
|
||||||
|
* construct an IIP object that give the correct components as above.
|
||||||
*/
|
*/
|
||||||
if (pathByNameArr.length == 1 && pathByNameArr[0] == null) {
|
INodesInPath iip = INodesInPath.resolveFromRoot(inode);
|
||||||
elements[0] = "";
|
byte[][] components = iip.getPathComponents();
|
||||||
} else {
|
components = Arrays.copyOfRange(components, 1, components.length);
|
||||||
for (int i = 0; i < elements.length; i++) {
|
inodeAttrs = getAttributesProvider()
|
||||||
elements[i] = DFSUtil.bytes2String(pathByNameArr[i]);
|
.getAttributes(components, inodeAttrs);
|
||||||
}
|
|
||||||
}
|
|
||||||
inodeAttrs = getAttributesProvider().getAttributes(elements, inodeAttrs);
|
|
||||||
}
|
}
|
||||||
return inodeAttrs;
|
return inodeAttrs;
|
||||||
}
|
}
|
||||||
@ -439,7 +447,7 @@ private void checkSubAccess(byte[][] components, int pathIdx,
|
|||||||
if (!(cList.isEmpty() && ignoreEmptyDir)) {
|
if (!(cList.isEmpty() && ignoreEmptyDir)) {
|
||||||
//TODO have to figure this out with inodeattribute provider
|
//TODO have to figure this out with inodeattribute provider
|
||||||
INodeAttributes inodeAttr =
|
INodeAttributes inodeAttr =
|
||||||
getINodeAttrs(components, pathIdx, d, snapshotId);
|
getINodeAttrs(d, snapshotId);
|
||||||
if (!hasPermission(inodeAttr, access)) {
|
if (!hasPermission(inodeAttr, access)) {
|
||||||
throw new AccessControlException(
|
throw new AccessControlException(
|
||||||
toAccessControlString(inodeAttr, d.getFullPathName(), access));
|
toAccessControlString(inodeAttr, d.getFullPathName(), access));
|
||||||
@ -457,7 +465,7 @@ private void checkSubAccess(byte[][] components, int pathIdx,
|
|||||||
if (inodeAttr.getFsPermission().getStickyBit()) {
|
if (inodeAttr.getFsPermission().getStickyBit()) {
|
||||||
for (INode child : cList) {
|
for (INode child : cList) {
|
||||||
INodeAttributes childInodeAttr =
|
INodeAttributes childInodeAttr =
|
||||||
getINodeAttrs(components, pathIdx, child, snapshotId);
|
getINodeAttrs(child, snapshotId);
|
||||||
if (isStickyBitViolated(inodeAttr, childInodeAttr)) {
|
if (isStickyBitViolated(inodeAttr, childInodeAttr)) {
|
||||||
List<byte[]> allComponentList = new ArrayList<>();
|
List<byte[]> allComponentList = new ArrayList<>();
|
||||||
for (int i = 0; i <= pathIdx; ++i) {
|
for (int i = 0; i <= pathIdx; ++i) {
|
||||||
|
@ -135,6 +135,27 @@ static INodesInPath resolve(final INodeDirectory startingDir,
|
|||||||
return resolve(startingDir, components, false);
|
return resolve(startingDir, components, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves the existing INodes from a path, starting at the root directory.
|
||||||
|
* The root directory is located by following the parent link in the inode
|
||||||
|
* recursively until the final root inode is found.
|
||||||
|
* The inodes returned will depend upon the output of inode.getFullPathName().
|
||||||
|
* For a snapshot path, like /data/.snapshot/snap1, it will be resolved to:
|
||||||
|
* [null, data, .snapshot/snap1]
|
||||||
|
* For a file in the snapshot, as inode.getFullPathName resolves the snapshot
|
||||||
|
* information, the returned inodes for a path like /data/.snapshot/snap1/d1
|
||||||
|
* would be:
|
||||||
|
* [null, data, d1]
|
||||||
|
* @param inode the {@link INode} to be resolved
|
||||||
|
* @return INodesInPath
|
||||||
|
*/
|
||||||
|
static INodesInPath resolveFromRoot(INode inode) {
|
||||||
|
INode[] inodes = getINodes(inode);
|
||||||
|
byte[][] paths = INode.getPathComponents(inode.getFullPathName());
|
||||||
|
INodeDirectory rootDir = inodes[0].asDirectory();
|
||||||
|
return resolve(rootDir, paths);
|
||||||
|
}
|
||||||
|
|
||||||
static INodesInPath resolve(final INodeDirectory startingDir,
|
static INodesInPath resolve(final INodeDirectory startingDir,
|
||||||
byte[][] components, final boolean isRaw) {
|
byte[][] components, final boolean isRaw) {
|
||||||
Preconditions.checkArgument(startingDir.compareTo(components[0]) == 0);
|
Preconditions.checkArgument(startingDir.compareTo(components[0]) == 0);
|
||||||
|
@ -33,6 +33,7 @@
|
|||||||
import org.apache.hadoop.fs.XAttr;
|
import org.apache.hadoop.fs.XAttr;
|
||||||
import org.apache.hadoop.fs.permission.*;
|
import org.apache.hadoop.fs.permission.*;
|
||||||
import org.apache.hadoop.hdfs.DFSConfigKeys;
|
import org.apache.hadoop.hdfs.DFSConfigKeys;
|
||||||
|
import org.apache.hadoop.hdfs.DistributedFileSystem;
|
||||||
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
||||||
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
||||||
import org.apache.hadoop.security.AccessControlException;
|
import org.apache.hadoop.security.AccessControlException;
|
||||||
@ -80,6 +81,7 @@ public void checkPermission(String fsOwner, String supergroup,
|
|||||||
ancestorAccess, parentAccess, access, subAccess, ignoreEmptyDir);
|
ancestorAccess, parentAccess, access, subAccess, ignoreEmptyDir);
|
||||||
}
|
}
|
||||||
CALLED.add("checkPermission|" + ancestorAccess + "|" + parentAccess + "|" + access);
|
CALLED.add("checkPermission|" + ancestorAccess + "|" + parentAccess + "|" + access);
|
||||||
|
CALLED.add("checkPermission|" + path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -93,6 +95,7 @@ public void checkPermissionWithContext(
|
|||||||
CALLED.add("checkPermission|" + authzContext.getAncestorAccess()
|
CALLED.add("checkPermission|" + authzContext.getAncestorAccess()
|
||||||
+ "|" + authzContext.getParentAccess() + "|" + authzContext
|
+ "|" + authzContext.getParentAccess() + "|" + authzContext
|
||||||
.getAccess());
|
.getAccess());
|
||||||
|
CALLED.add("checkPermission|" + authzContext.getPath());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -109,7 +112,12 @@ public void stop() {
|
|||||||
@Override
|
@Override
|
||||||
public INodeAttributes getAttributes(String[] pathElements,
|
public INodeAttributes getAttributes(String[] pathElements,
|
||||||
final INodeAttributes inode) {
|
final INodeAttributes inode) {
|
||||||
|
String fullPath = String.join("/", pathElements);
|
||||||
|
if (!fullPath.startsWith("/")) {
|
||||||
|
fullPath = "/" + fullPath;
|
||||||
|
}
|
||||||
CALLED.add("getAttributes");
|
CALLED.add("getAttributes");
|
||||||
|
CALLED.add("getAttributes|"+fullPath);
|
||||||
final boolean useDefault = useDefault(pathElements);
|
final boolean useDefault = useDefault(pathElements);
|
||||||
final boolean useNullAcl = useNullAclFeature(pathElements);
|
final boolean useNullAcl = useNullAclFeature(pathElements);
|
||||||
return new INodeAttributes() {
|
return new INodeAttributes() {
|
||||||
@ -485,4 +493,111 @@ public Void run() throws Exception {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
// HDFS-15372 - Attribute provider should not see the snapshot path as it
|
||||||
|
// should be resolved into the original path name before it hits the provider.
|
||||||
|
public void testAttrProviderSeesResolvedSnapahotPaths() throws Exception {
|
||||||
|
FileSystem fs = FileSystem.get(miniDFS.getConfiguration(0));
|
||||||
|
DistributedFileSystem hdfs = miniDFS.getFileSystem();
|
||||||
|
final Path userPath = new Path("/user");
|
||||||
|
final Path authz = new Path("/user/authz");
|
||||||
|
final Path authzChild = new Path("/user/authz/child2");
|
||||||
|
|
||||||
|
fs.mkdirs(userPath);
|
||||||
|
fs.setPermission(userPath, new FsPermission(HDFS_PERMISSION));
|
||||||
|
fs.mkdirs(authz);
|
||||||
|
hdfs.allowSnapshot(userPath);
|
||||||
|
fs.setPermission(authz, new FsPermission(HDFS_PERMISSION));
|
||||||
|
fs.mkdirs(authzChild);
|
||||||
|
fs.setPermission(authzChild, new FsPermission(HDFS_PERMISSION));
|
||||||
|
fs.createSnapshot(userPath, "snapshot_1");
|
||||||
|
UserGroupInformation ugi = UserGroupInformation.createUserForTesting("u1",
|
||||||
|
new String[]{"g1"});
|
||||||
|
ugi.doAs(new PrivilegedExceptionAction<Void>() {
|
||||||
|
@Override
|
||||||
|
public Void run() throws Exception {
|
||||||
|
FileSystem fs = FileSystem.get(miniDFS.getConfiguration(0));
|
||||||
|
final Path snapChild =
|
||||||
|
new Path("/user/.snapshot/snapshot_1/authz/child2");
|
||||||
|
// Run various methods on the path to access the attributes etc.
|
||||||
|
fs.getAclStatus(snapChild);
|
||||||
|
fs.getContentSummary(snapChild);
|
||||||
|
fs.getFileStatus(snapChild);
|
||||||
|
Assert.assertFalse(CALLED.contains("getAttributes|" +
|
||||||
|
snapChild.toString()));
|
||||||
|
Assert.assertTrue(CALLED.contains("getAttributes|/user/authz/child2"));
|
||||||
|
// The snapshot path should be seen by the permission checker, but when
|
||||||
|
// it checks access, the paths will be resolved so the attributeProvider
|
||||||
|
// only sees the resolved path.
|
||||||
|
Assert.assertTrue(
|
||||||
|
CALLED.contains("checkPermission|" + snapChild.toString()));
|
||||||
|
CALLED.clear();
|
||||||
|
fs.getAclStatus(new Path("/"));
|
||||||
|
Assert.assertTrue(CALLED.contains("checkPermission|/"));
|
||||||
|
Assert.assertTrue(CALLED.contains("getAttributes|/"));
|
||||||
|
|
||||||
|
CALLED.clear();
|
||||||
|
fs.getFileStatus(new Path("/user"));
|
||||||
|
Assert.assertTrue(CALLED.contains("checkPermission|/user"));
|
||||||
|
Assert.assertTrue(CALLED.contains("getAttributes|/user"));
|
||||||
|
|
||||||
|
CALLED.clear();
|
||||||
|
fs.getFileStatus(new Path("/user/.snapshot"));
|
||||||
|
Assert.assertTrue(CALLED.contains("checkPermission|/user/.snapshot"));
|
||||||
|
// attribute provider never sees the .snapshot path directly.
|
||||||
|
Assert.assertFalse(CALLED.contains("getAttributes|/user/.snapshot"));
|
||||||
|
|
||||||
|
CALLED.clear();
|
||||||
|
fs.getFileStatus(new Path("/user/.snapshot/snapshot_1"));
|
||||||
|
Assert.assertTrue(
|
||||||
|
CALLED.contains("checkPermission|/user/.snapshot/snapshot_1"));
|
||||||
|
Assert.assertTrue(
|
||||||
|
CALLED.contains("getAttributes|/user/.snapshot/snapshot_1"));
|
||||||
|
|
||||||
|
CALLED.clear();
|
||||||
|
fs.getFileStatus(new Path("/user/.snapshot/snapshot_1/authz"));
|
||||||
|
Assert.assertTrue(CALLED
|
||||||
|
.contains("checkPermission|/user/.snapshot/snapshot_1/authz"));
|
||||||
|
Assert.assertTrue(CALLED.contains("getAttributes|/user/authz"));
|
||||||
|
|
||||||
|
CALLED.clear();
|
||||||
|
fs.getFileStatus(new Path("/user/authz"));
|
||||||
|
Assert.assertTrue(CALLED.contains("checkPermission|/user/authz"));
|
||||||
|
Assert.assertTrue(CALLED.contains("getAttributes|/user/authz"));
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
// Delete the files / folders covered by the snapshot, then re-check they
|
||||||
|
// are all readable correctly.
|
||||||
|
fs.delete(authz, true);
|
||||||
|
ugi.doAs(new PrivilegedExceptionAction<Void>() {
|
||||||
|
@Override
|
||||||
|
public Void run() throws Exception {
|
||||||
|
FileSystem fs = FileSystem.get(miniDFS.getConfiguration(0));
|
||||||
|
|
||||||
|
CALLED.clear();
|
||||||
|
fs.getFileStatus(new Path("/user/.snapshot"));
|
||||||
|
Assert.assertTrue(CALLED.contains("checkPermission|/user/.snapshot"));
|
||||||
|
// attribute provider never sees the .snapshot path directly.
|
||||||
|
Assert.assertFalse(CALLED.contains("getAttributes|/user/.snapshot"));
|
||||||
|
|
||||||
|
CALLED.clear();
|
||||||
|
fs.getFileStatus(new Path("/user/.snapshot/snapshot_1"));
|
||||||
|
Assert.assertTrue(
|
||||||
|
CALLED.contains("checkPermission|/user/.snapshot/snapshot_1"));
|
||||||
|
Assert.assertTrue(
|
||||||
|
CALLED.contains("getAttributes|/user/.snapshot/snapshot_1"));
|
||||||
|
|
||||||
|
CALLED.clear();
|
||||||
|
fs.getFileStatus(new Path("/user/.snapshot/snapshot_1/authz"));
|
||||||
|
Assert.assertTrue(CALLED
|
||||||
|
.contains("checkPermission|/user/.snapshot/snapshot_1/authz"));
|
||||||
|
Assert.assertTrue(CALLED.contains("getAttributes|/user/authz"));
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user