HBASE-19483 Add proper privilege check for rsgroup commands
Signed-off-by: tedyu <yuzhihong@gmail.com>
This commit is contained in:
parent
895267d09c
commit
3fa3dcd9f9
|
@ -23,11 +23,10 @@ import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.hbase.io.hfile.HFile;
|
|
||||||
import org.apache.hadoop.hbase.security.User;
|
import org.apache.hadoop.hbase.security.User;
|
||||||
import org.apache.hadoop.hbase.security.visibility.LoadTestDataGeneratorWithVisibilityLabels;
|
import org.apache.hadoop.hbase.security.visibility.LoadTestDataGeneratorWithVisibilityLabels;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityClient;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityClient;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityController;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityTestUtil;
|
||||||
import org.apache.hadoop.hbase.testclassification.IntegrationTests;
|
import org.apache.hadoop.hbase.testclassification.IntegrationTests;
|
||||||
import org.apache.hadoop.hbase.util.LoadTestTool;
|
import org.apache.hadoop.hbase.util.LoadTestTool;
|
||||||
import org.junit.experimental.categories.Category;
|
import org.junit.experimental.categories.Category;
|
||||||
|
@ -76,9 +75,7 @@ public class IntegrationTestIngestWithVisibilityLabels extends IntegrationTestIn
|
||||||
public void setUpCluster() throws Exception {
|
public void setUpCluster() throws Exception {
|
||||||
util = getTestingUtil(null);
|
util = getTestingUtil(null);
|
||||||
Configuration conf = util.getConfiguration();
|
Configuration conf = util.getConfiguration();
|
||||||
conf.setInt(HFile.FORMAT_VERSION_KEY, 3);
|
VisibilityTestUtil.enableVisiblityLabels(conf);
|
||||||
conf.set("hbase.coprocessor.master.classes", VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.coprocessor.region.classes", VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.superuser", "admin," + User.getCurrent().getName());
|
conf.set("hbase.superuser", "admin," + User.getCurrent().getName());
|
||||||
super.setUpCluster();
|
super.setUpCluster();
|
||||||
addLabels();
|
addLabels();
|
||||||
|
|
|
@ -47,7 +47,6 @@ import org.apache.hadoop.hbase.client.Put;
|
||||||
import org.apache.hadoop.hbase.client.Result;
|
import org.apache.hadoop.hbase.client.Result;
|
||||||
import org.apache.hadoop.hbase.client.Scan;
|
import org.apache.hadoop.hbase.client.Scan;
|
||||||
import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
|
import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
|
||||||
import org.apache.hadoop.hbase.io.hfile.HFile;
|
|
||||||
import org.apache.hadoop.hbase.log.HBaseMarkers;
|
import org.apache.hadoop.hbase.log.HBaseMarkers;
|
||||||
import org.apache.hadoop.hbase.mapreduce.Import;
|
import org.apache.hadoop.hbase.mapreduce.Import;
|
||||||
import org.apache.hadoop.hbase.mapreduce.TableMapReduceUtil;
|
import org.apache.hadoop.hbase.mapreduce.TableMapReduceUtil;
|
||||||
|
@ -57,7 +56,7 @@ import org.apache.hadoop.hbase.security.access.Permission;
|
||||||
import org.apache.hadoop.hbase.security.visibility.Authorizations;
|
import org.apache.hadoop.hbase.security.visibility.Authorizations;
|
||||||
import org.apache.hadoop.hbase.security.visibility.CellVisibility;
|
import org.apache.hadoop.hbase.security.visibility.CellVisibility;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityClient;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityClient;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityController;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityTestUtil;
|
||||||
import org.apache.hadoop.hbase.testclassification.IntegrationTests;
|
import org.apache.hadoop.hbase.testclassification.IntegrationTests;
|
||||||
import org.apache.hadoop.hbase.util.AbstractHBaseTool;
|
import org.apache.hadoop.hbase.util.AbstractHBaseTool;
|
||||||
import org.apache.hadoop.hbase.util.Bytes;
|
import org.apache.hadoop.hbase.util.Bytes;
|
||||||
|
@ -373,9 +372,7 @@ public class IntegrationTestBigLinkedListWithVisibility extends IntegrationTestB
|
||||||
public void setUpCluster() throws Exception {
|
public void setUpCluster() throws Exception {
|
||||||
util = getTestingUtil(null);
|
util = getTestingUtil(null);
|
||||||
Configuration conf = util.getConfiguration();
|
Configuration conf = util.getConfiguration();
|
||||||
conf.setInt(HFile.FORMAT_VERSION_KEY, 3);
|
VisibilityTestUtil.enableVisiblityLabels(conf);
|
||||||
conf.set("hbase.coprocessor.master.classes", VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.coprocessor.region.classes", VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.superuser", User.getCurrent().getName());
|
conf.set("hbase.superuser", User.getCurrent().getName());
|
||||||
conf.setBoolean("dfs.permissions", false);
|
conf.setBoolean("dfs.permissions", false);
|
||||||
USER = User.createUserForTesting(conf, userName, new String[] {});
|
USER = User.createUserForTesting(conf, userName, new String[] {});
|
||||||
|
|
|
@ -40,7 +40,6 @@ import org.apache.hadoop.hbase.client.Result;
|
||||||
import org.apache.hadoop.hbase.client.Scan;
|
import org.apache.hadoop.hbase.client.Scan;
|
||||||
import org.apache.hadoop.hbase.client.ScannerCallable;
|
import org.apache.hadoop.hbase.client.ScannerCallable;
|
||||||
import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
|
import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
|
||||||
import org.apache.hadoop.hbase.io.hfile.HFile;
|
|
||||||
import org.apache.hadoop.hbase.mapreduce.TableMapReduceUtil;
|
import org.apache.hadoop.hbase.mapreduce.TableMapReduceUtil;
|
||||||
import org.apache.hadoop.hbase.mapreduce.TableMapper;
|
import org.apache.hadoop.hbase.mapreduce.TableMapper;
|
||||||
import org.apache.hadoop.hbase.mapreduce.TableRecordReaderImpl;
|
import org.apache.hadoop.hbase.mapreduce.TableRecordReaderImpl;
|
||||||
|
@ -48,7 +47,7 @@ import org.apache.hadoop.hbase.security.User;
|
||||||
import org.apache.hadoop.hbase.security.visibility.Authorizations;
|
import org.apache.hadoop.hbase.security.visibility.Authorizations;
|
||||||
import org.apache.hadoop.hbase.security.visibility.CellVisibility;
|
import org.apache.hadoop.hbase.security.visibility.CellVisibility;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityClient;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityClient;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityController;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityTestUtil;
|
||||||
import org.apache.hadoop.hbase.testclassification.IntegrationTests;
|
import org.apache.hadoop.hbase.testclassification.IntegrationTests;
|
||||||
import org.apache.hadoop.hbase.util.AbstractHBaseTool;
|
import org.apache.hadoop.hbase.util.AbstractHBaseTool;
|
||||||
import org.apache.hadoop.hbase.util.Bytes;
|
import org.apache.hadoop.hbase.util.Bytes;
|
||||||
|
@ -116,9 +115,7 @@ public class IntegrationTestWithCellVisibilityLoadAndVerify extends IntegrationT
|
||||||
public void setUpCluster() throws Exception {
|
public void setUpCluster() throws Exception {
|
||||||
util = getTestingUtil(null);
|
util = getTestingUtil(null);
|
||||||
Configuration conf = util.getConfiguration();
|
Configuration conf = util.getConfiguration();
|
||||||
conf.setInt(HFile.FORMAT_VERSION_KEY, 3);
|
VisibilityTestUtil.enableVisiblityLabels(conf);
|
||||||
conf.set("hbase.coprocessor.master.classes", VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.coprocessor.region.classes", VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.superuser", User.getCurrent().getName());
|
conf.set("hbase.superuser", User.getCurrent().getName());
|
||||||
conf.setBoolean("dfs.permissions", false);
|
conf.setBoolean("dfs.permissions", false);
|
||||||
super.setUpCluster();
|
super.setUpCluster();
|
||||||
|
|
|
@ -58,7 +58,7 @@ import org.apache.hadoop.hbase.security.visibility.ScanLabelGenerator;
|
||||||
import org.apache.hadoop.hbase.security.visibility.SimpleScanLabelGenerator;
|
import org.apache.hadoop.hbase.security.visibility.SimpleScanLabelGenerator;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityClient;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityClient;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityConstants;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityConstants;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityController;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityTestUtil;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityUtils;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityUtils;
|
||||||
import org.apache.hadoop.hbase.testclassification.LargeTests;
|
import org.apache.hadoop.hbase.testclassification.LargeTests;
|
||||||
import org.apache.hadoop.hbase.testclassification.MapReduceTests;
|
import org.apache.hadoop.hbase.testclassification.MapReduceTests;
|
||||||
|
@ -121,9 +121,7 @@ public class TestImportTSVWithVisibilityLabels implements Configurable {
|
||||||
conf = util.getConfiguration();
|
conf = util.getConfiguration();
|
||||||
SUPERUSER = User.createUserForTesting(conf, "admin", new String[] { "supergroup" });
|
SUPERUSER = User.createUserForTesting(conf, "admin", new String[] { "supergroup" });
|
||||||
conf.set("hbase.superuser", "admin,"+User.getCurrent().getName());
|
conf.set("hbase.superuser", "admin,"+User.getCurrent().getName());
|
||||||
conf.setInt("hfile.format.version", 3);
|
VisibilityTestUtil.enableVisiblityLabels(conf);
|
||||||
conf.set("hbase.coprocessor.master.classes", VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.coprocessor.region.classes", VisibilityController.class.getName());
|
|
||||||
conf.setClass(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS, SimpleScanLabelGenerator.class,
|
conf.setClass(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS, SimpleScanLabelGenerator.class,
|
||||||
ScanLabelGenerator.class);
|
ScanLabelGenerator.class);
|
||||||
util.startMiniCluster();
|
util.startMiniCluster();
|
||||||
|
|
|
@ -43,7 +43,7 @@ import org.apache.hadoop.hbase.security.visibility.ScanLabelGenerator;
|
||||||
import org.apache.hadoop.hbase.security.visibility.SimpleScanLabelGenerator;
|
import org.apache.hadoop.hbase.security.visibility.SimpleScanLabelGenerator;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityClient;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityClient;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityConstants;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityConstants;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityController;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityTestUtil;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityUtils;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityUtils;
|
||||||
import org.apache.hadoop.hbase.testclassification.MediumTests;
|
import org.apache.hadoop.hbase.testclassification.MediumTests;
|
||||||
import org.apache.hadoop.hbase.testclassification.RestTests;
|
import org.apache.hadoop.hbase.testclassification.RestTests;
|
||||||
|
@ -130,10 +130,8 @@ public class TestScannersWithLabels {
|
||||||
conf = TEST_UTIL.getConfiguration();
|
conf = TEST_UTIL.getConfiguration();
|
||||||
conf.setClass(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS,
|
conf.setClass(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS,
|
||||||
SimpleScanLabelGenerator.class, ScanLabelGenerator.class);
|
SimpleScanLabelGenerator.class, ScanLabelGenerator.class);
|
||||||
conf.setInt("hfile.format.version", 3);
|
|
||||||
conf.set("hbase.superuser", SUPERUSER.getShortName());
|
conf.set("hbase.superuser", SUPERUSER.getShortName());
|
||||||
conf.set("hbase.coprocessor.master.classes", VisibilityController.class.getName());
|
VisibilityTestUtil.enableVisiblityLabels(conf);
|
||||||
conf.set("hbase.coprocessor.region.classes", VisibilityController.class.getName());
|
|
||||||
TEST_UTIL.startMiniCluster(1);
|
TEST_UTIL.startMiniCluster(1);
|
||||||
// Wait for the labels table to become available
|
// Wait for the labels table to become available
|
||||||
TEST_UTIL.waitTableEnabled(VisibilityConstants.LABELS_TABLE_NAME.getName(), 50000);
|
TEST_UTIL.waitTableEnabled(VisibilityConstants.LABELS_TABLE_NAME.getName(), 50000);
|
||||||
|
|
|
@ -18,6 +18,11 @@
|
||||||
|
|
||||||
package org.apache.hadoop.hbase.rsgroup;
|
package org.apache.hadoop.hbase.rsgroup;
|
||||||
|
|
||||||
|
|
||||||
|
import com.google.protobuf.RpcCallback;
|
||||||
|
import com.google.protobuf.RpcController;
|
||||||
|
import com.google.protobuf.Service;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
|
@ -26,10 +31,6 @@ import java.util.Optional;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
import com.google.protobuf.RpcCallback;
|
|
||||||
import com.google.protobuf.RpcController;
|
|
||||||
import com.google.protobuf.Service;
|
|
||||||
|
|
||||||
import org.apache.hadoop.hbase.CoprocessorEnvironment;
|
import org.apache.hadoop.hbase.CoprocessorEnvironment;
|
||||||
import org.apache.hadoop.hbase.HConstants;
|
import org.apache.hadoop.hbase.HConstants;
|
||||||
import org.apache.hadoop.hbase.NamespaceDescriptor;
|
import org.apache.hadoop.hbase.NamespaceDescriptor;
|
||||||
|
@ -46,6 +47,7 @@ import org.apache.hadoop.hbase.coprocessor.MasterCoprocessorEnvironment;
|
||||||
import org.apache.hadoop.hbase.coprocessor.MasterObserver;
|
import org.apache.hadoop.hbase.coprocessor.MasterObserver;
|
||||||
import org.apache.hadoop.hbase.coprocessor.ObserverContext;
|
import org.apache.hadoop.hbase.coprocessor.ObserverContext;
|
||||||
import org.apache.hadoop.hbase.ipc.CoprocessorRpcUtils;
|
import org.apache.hadoop.hbase.ipc.CoprocessorRpcUtils;
|
||||||
|
import org.apache.hadoop.hbase.ipc.RpcServer;
|
||||||
import org.apache.hadoop.hbase.master.MasterServices;
|
import org.apache.hadoop.hbase.master.MasterServices;
|
||||||
import org.apache.hadoop.hbase.net.Address;
|
import org.apache.hadoop.hbase.net.Address;
|
||||||
import org.apache.hadoop.hbase.protobuf.ProtobufUtil;
|
import org.apache.hadoop.hbase.protobuf.ProtobufUtil;
|
||||||
|
@ -75,10 +77,16 @@ import org.apache.hadoop.hbase.protobuf.generated.RSGroupAdminProtos.RemoveRSGro
|
||||||
import org.apache.hadoop.hbase.protobuf.generated.RSGroupAdminProtos.RemoveServersRequest;
|
import org.apache.hadoop.hbase.protobuf.generated.RSGroupAdminProtos.RemoveServersRequest;
|
||||||
import org.apache.hadoop.hbase.protobuf.generated.RSGroupAdminProtos.RemoveServersResponse;
|
import org.apache.hadoop.hbase.protobuf.generated.RSGroupAdminProtos.RemoveServersResponse;
|
||||||
import org.apache.hadoop.hbase.protobuf.generated.TableProtos;
|
import org.apache.hadoop.hbase.protobuf.generated.TableProtos;
|
||||||
import org.apache.hbase.thirdparty.com.google.common.collect.Sets;
|
import org.apache.hadoop.hbase.security.User;
|
||||||
|
import org.apache.hadoop.hbase.security.UserProvider;
|
||||||
|
import org.apache.hadoop.hbase.security.access.AccessChecker;
|
||||||
|
import org.apache.hadoop.hbase.security.access.Permission.Action;
|
||||||
|
import org.apache.hadoop.hbase.security.access.TableAuthManager;
|
||||||
|
import org.apache.hadoop.hbase.zookeeper.ZKWatcher;
|
||||||
import org.apache.yetus.audience.InterfaceAudience;
|
import org.apache.yetus.audience.InterfaceAudience;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.apache.hbase.thirdparty.com.google.common.collect.Sets;
|
||||||
|
|
||||||
// TODO: Encapsulate MasterObserver functions into separate subclass.
|
// TODO: Encapsulate MasterObserver functions into separate subclass.
|
||||||
@CoreCoprocessor
|
@CoreCoprocessor
|
||||||
|
@ -92,12 +100,17 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
private RSGroupInfoManager groupInfoManager;
|
private RSGroupInfoManager groupInfoManager;
|
||||||
private RSGroupAdminServer groupAdminServer;
|
private RSGroupAdminServer groupAdminServer;
|
||||||
private final RSGroupAdminService groupAdminService = new RSGroupAdminServiceImpl();
|
private final RSGroupAdminService groupAdminService = new RSGroupAdminServiceImpl();
|
||||||
|
private AccessChecker accessChecker;
|
||||||
|
|
||||||
|
/** Provider for mapping principal names to Users */
|
||||||
|
private UserProvider userProvider;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void start(CoprocessorEnvironment env) throws IOException {
|
public void start(CoprocessorEnvironment env) throws IOException {
|
||||||
if (!(env instanceof HasMasterServices)) {
|
if (!(env instanceof HasMasterServices)) {
|
||||||
throw new IOException("Does not implement HMasterServices");
|
throw new IOException("Does not implement HMasterServices");
|
||||||
}
|
}
|
||||||
|
|
||||||
master = ((HasMasterServices)env).getMasterServices();
|
master = ((HasMasterServices)env).getMasterServices();
|
||||||
groupInfoManager = RSGroupInfoManagerImpl.getInstance(master);
|
groupInfoManager = RSGroupInfoManagerImpl.getInstance(master);
|
||||||
groupAdminServer = new RSGroupAdminServer(master, groupInfoManager);
|
groupAdminServer = new RSGroupAdminServer(master, groupInfoManager);
|
||||||
|
@ -106,6 +119,16 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
if (!RSGroupableBalancer.class.isAssignableFrom(clazz)) {
|
if (!RSGroupableBalancer.class.isAssignableFrom(clazz)) {
|
||||||
throw new IOException("Configured balancer does not support RegionServer groups.");
|
throw new IOException("Configured balancer does not support RegionServer groups.");
|
||||||
}
|
}
|
||||||
|
ZKWatcher zk = ((HasMasterServices)env).getMasterServices().getZooKeeper();
|
||||||
|
accessChecker = new AccessChecker(env.getConfiguration(), zk);
|
||||||
|
|
||||||
|
// set the user-provider.
|
||||||
|
this.userProvider = UserProvider.instantiate(env.getConfiguration());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void stop(CoprocessorEnvironment env) {
|
||||||
|
TableAuthManager.release(accessChecker.getAuthManager());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -137,6 +160,7 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
LOG.info(master.getClientIdAuditPrefix() + " initiates rsgroup info retrieval, group="
|
LOG.info(master.getClientIdAuditPrefix() + " initiates rsgroup info retrieval, group="
|
||||||
+ groupName);
|
+ groupName);
|
||||||
try {
|
try {
|
||||||
|
checkPermission("getRSGroupInfo");
|
||||||
RSGroupInfo rsGroupInfo = groupAdminServer.getRSGroupInfo(groupName);
|
RSGroupInfo rsGroupInfo = groupAdminServer.getRSGroupInfo(groupName);
|
||||||
if (rsGroupInfo != null) {
|
if (rsGroupInfo != null) {
|
||||||
builder.setRSGroupInfo(RSGroupProtobufUtil.toProtoGroupInfo(rsGroupInfo));
|
builder.setRSGroupInfo(RSGroupProtobufUtil.toProtoGroupInfo(rsGroupInfo));
|
||||||
|
@ -151,10 +175,11 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
public void getRSGroupInfoOfTable(RpcController controller,
|
public void getRSGroupInfoOfTable(RpcController controller,
|
||||||
GetRSGroupInfoOfTableRequest request, RpcCallback<GetRSGroupInfoOfTableResponse> done) {
|
GetRSGroupInfoOfTableRequest request, RpcCallback<GetRSGroupInfoOfTableResponse> done) {
|
||||||
GetRSGroupInfoOfTableResponse.Builder builder = GetRSGroupInfoOfTableResponse.newBuilder();
|
GetRSGroupInfoOfTableResponse.Builder builder = GetRSGroupInfoOfTableResponse.newBuilder();
|
||||||
try {
|
|
||||||
TableName tableName = ProtobufUtil.toTableName(request.getTableName());
|
TableName tableName = ProtobufUtil.toTableName(request.getTableName());
|
||||||
LOG.info(master.getClientIdAuditPrefix() + " initiates rsgroup info retrieval, table="
|
LOG.info(master.getClientIdAuditPrefix() + " initiates rsgroup info retrieval, table="
|
||||||
+ tableName);
|
+ tableName);
|
||||||
|
try {
|
||||||
|
checkPermission("getRSGroupInfoOfTable");
|
||||||
RSGroupInfo RSGroupInfo = groupAdminServer.getRSGroupInfoOfTable(tableName);
|
RSGroupInfo RSGroupInfo = groupAdminServer.getRSGroupInfoOfTable(tableName);
|
||||||
if (RSGroupInfo != null) {
|
if (RSGroupInfo != null) {
|
||||||
builder.setRSGroupInfo(RSGroupProtobufUtil.toProtoGroupInfo(RSGroupInfo));
|
builder.setRSGroupInfo(RSGroupProtobufUtil.toProtoGroupInfo(RSGroupInfo));
|
||||||
|
@ -169,13 +194,14 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
public void moveServers(RpcController controller, MoveServersRequest request,
|
public void moveServers(RpcController controller, MoveServersRequest request,
|
||||||
RpcCallback<MoveServersResponse> done) {
|
RpcCallback<MoveServersResponse> done) {
|
||||||
MoveServersResponse.Builder builder = MoveServersResponse.newBuilder();
|
MoveServersResponse.Builder builder = MoveServersResponse.newBuilder();
|
||||||
try {
|
|
||||||
Set<Address> hostPorts = Sets.newHashSet();
|
Set<Address> hostPorts = Sets.newHashSet();
|
||||||
for (HBaseProtos.ServerName el : request.getServersList()) {
|
for (HBaseProtos.ServerName el : request.getServersList()) {
|
||||||
hostPorts.add(Address.fromParts(el.getHostName(), el.getPort()));
|
hostPorts.add(Address.fromParts(el.getHostName(), el.getPort()));
|
||||||
}
|
}
|
||||||
LOG.info(master.getClientIdAuditPrefix() + " move servers " + hostPorts +" to rsgroup "
|
LOG.info(master.getClientIdAuditPrefix() + " move servers " + hostPorts +" to rsgroup "
|
||||||
+ request.getTargetGroup());
|
+ request.getTargetGroup());
|
||||||
|
try {
|
||||||
|
checkPermission("moveServers");
|
||||||
groupAdminServer.moveServers(hostPorts, request.getTargetGroup());
|
groupAdminServer.moveServers(hostPorts, request.getTargetGroup());
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
CoprocessorRpcUtils.setControllerException(controller, e);
|
CoprocessorRpcUtils.setControllerException(controller, e);
|
||||||
|
@ -187,13 +213,14 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
public void moveTables(RpcController controller, MoveTablesRequest request,
|
public void moveTables(RpcController controller, MoveTablesRequest request,
|
||||||
RpcCallback<MoveTablesResponse> done) {
|
RpcCallback<MoveTablesResponse> done) {
|
||||||
MoveTablesResponse.Builder builder = MoveTablesResponse.newBuilder();
|
MoveTablesResponse.Builder builder = MoveTablesResponse.newBuilder();
|
||||||
try {
|
|
||||||
Set<TableName> tables = new HashSet<>(request.getTableNameList().size());
|
Set<TableName> tables = new HashSet<>(request.getTableNameList().size());
|
||||||
for (TableProtos.TableName tableName : request.getTableNameList()) {
|
for (TableProtos.TableName tableName : request.getTableNameList()) {
|
||||||
tables.add(ProtobufUtil.toTableName(tableName));
|
tables.add(ProtobufUtil.toTableName(tableName));
|
||||||
}
|
}
|
||||||
LOG.info(master.getClientIdAuditPrefix() + " move tables " + tables +" to rsgroup "
|
LOG.info(master.getClientIdAuditPrefix() + " move tables " + tables +" to rsgroup "
|
||||||
+ request.getTargetGroup());
|
+ request.getTargetGroup());
|
||||||
|
try {
|
||||||
|
checkPermission("moveTables");
|
||||||
groupAdminServer.moveTables(tables, request.getTargetGroup());
|
groupAdminServer.moveTables(tables, request.getTargetGroup());
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
CoprocessorRpcUtils.setControllerException(controller, e);
|
CoprocessorRpcUtils.setControllerException(controller, e);
|
||||||
|
@ -207,6 +234,7 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
AddRSGroupResponse.Builder builder = AddRSGroupResponse.newBuilder();
|
AddRSGroupResponse.Builder builder = AddRSGroupResponse.newBuilder();
|
||||||
LOG.info(master.getClientIdAuditPrefix() + " add rsgroup " + request.getRSGroupName());
|
LOG.info(master.getClientIdAuditPrefix() + " add rsgroup " + request.getRSGroupName());
|
||||||
try {
|
try {
|
||||||
|
checkPermission("addRSGroup");
|
||||||
groupAdminServer.addRSGroup(request.getRSGroupName());
|
groupAdminServer.addRSGroup(request.getRSGroupName());
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
CoprocessorRpcUtils.setControllerException(controller, e);
|
CoprocessorRpcUtils.setControllerException(controller, e);
|
||||||
|
@ -221,6 +249,7 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
RemoveRSGroupResponse.newBuilder();
|
RemoveRSGroupResponse.newBuilder();
|
||||||
LOG.info(master.getClientIdAuditPrefix() + " remove rsgroup " + request.getRSGroupName());
|
LOG.info(master.getClientIdAuditPrefix() + " remove rsgroup " + request.getRSGroupName());
|
||||||
try {
|
try {
|
||||||
|
checkPermission("removeRSGroup");
|
||||||
groupAdminServer.removeRSGroup(request.getRSGroupName());
|
groupAdminServer.removeRSGroup(request.getRSGroupName());
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
CoprocessorRpcUtils.setControllerException(controller, e);
|
CoprocessorRpcUtils.setControllerException(controller, e);
|
||||||
|
@ -232,8 +261,10 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
public void balanceRSGroup(RpcController controller,
|
public void balanceRSGroup(RpcController controller,
|
||||||
BalanceRSGroupRequest request, RpcCallback<BalanceRSGroupResponse> done) {
|
BalanceRSGroupRequest request, RpcCallback<BalanceRSGroupResponse> done) {
|
||||||
BalanceRSGroupResponse.Builder builder = BalanceRSGroupResponse.newBuilder();
|
BalanceRSGroupResponse.Builder builder = BalanceRSGroupResponse.newBuilder();
|
||||||
LOG.info(master.getClientIdAuditPrefix() + " balance rsgroup, group=" + request.getRSGroupName());
|
LOG.info(master.getClientIdAuditPrefix() + " balance rsgroup, group="
|
||||||
|
+ request.getRSGroupName());
|
||||||
try {
|
try {
|
||||||
|
checkPermission("balanceRSGroup");
|
||||||
builder.setBalanceRan(groupAdminServer.balanceRSGroup(request.getRSGroupName()));
|
builder.setBalanceRan(groupAdminServer.balanceRSGroup(request.getRSGroupName()));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
CoprocessorRpcUtils.setControllerException(controller, e);
|
CoprocessorRpcUtils.setControllerException(controller, e);
|
||||||
|
@ -248,6 +279,7 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
ListRSGroupInfosResponse.Builder builder = ListRSGroupInfosResponse.newBuilder();
|
ListRSGroupInfosResponse.Builder builder = ListRSGroupInfosResponse.newBuilder();
|
||||||
LOG.info(master.getClientIdAuditPrefix() + " list rsgroup");
|
LOG.info(master.getClientIdAuditPrefix() + " list rsgroup");
|
||||||
try {
|
try {
|
||||||
|
checkPermission("listRSGroup");
|
||||||
for (RSGroupInfo RSGroupInfo : groupAdminServer.listRSGroups()) {
|
for (RSGroupInfo RSGroupInfo : groupAdminServer.listRSGroups()) {
|
||||||
builder.addRSGroupInfo(RSGroupProtobufUtil.toProtoGroupInfo(RSGroupInfo));
|
builder.addRSGroupInfo(RSGroupProtobufUtil.toProtoGroupInfo(RSGroupInfo));
|
||||||
}
|
}
|
||||||
|
@ -261,10 +293,12 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
public void getRSGroupInfoOfServer(RpcController controller,
|
public void getRSGroupInfoOfServer(RpcController controller,
|
||||||
GetRSGroupInfoOfServerRequest request, RpcCallback<GetRSGroupInfoOfServerResponse> done) {
|
GetRSGroupInfoOfServerRequest request, RpcCallback<GetRSGroupInfoOfServerResponse> done) {
|
||||||
GetRSGroupInfoOfServerResponse.Builder builder = GetRSGroupInfoOfServerResponse.newBuilder();
|
GetRSGroupInfoOfServerResponse.Builder builder = GetRSGroupInfoOfServerResponse.newBuilder();
|
||||||
try {
|
|
||||||
Address hp = Address.fromParts(request.getServer().getHostName(),
|
Address hp = Address.fromParts(request.getServer().getHostName(),
|
||||||
request.getServer().getPort());
|
request.getServer().getPort());
|
||||||
LOG.info(master.getClientIdAuditPrefix() + " initiates rsgroup info retrieval, server=" + hp);
|
LOG.info(master.getClientIdAuditPrefix() + " initiates rsgroup info retrieval, server="
|
||||||
|
+ hp);
|
||||||
|
try {
|
||||||
|
checkPermission("getRSGroupInfoOfServer");
|
||||||
RSGroupInfo RSGroupInfo = groupAdminServer.getRSGroupOfServer(hp);
|
RSGroupInfo RSGroupInfo = groupAdminServer.getRSGroupOfServer(hp);
|
||||||
if (RSGroupInfo != null) {
|
if (RSGroupInfo != null) {
|
||||||
builder.setRSGroupInfo(RSGroupProtobufUtil.toProtoGroupInfo(RSGroupInfo));
|
builder.setRSGroupInfo(RSGroupProtobufUtil.toProtoGroupInfo(RSGroupInfo));
|
||||||
|
@ -279,7 +313,6 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
public void moveServersAndTables(RpcController controller,
|
public void moveServersAndTables(RpcController controller,
|
||||||
MoveServersAndTablesRequest request, RpcCallback<MoveServersAndTablesResponse> done) {
|
MoveServersAndTablesRequest request, RpcCallback<MoveServersAndTablesResponse> done) {
|
||||||
MoveServersAndTablesResponse.Builder builder = MoveServersAndTablesResponse.newBuilder();
|
MoveServersAndTablesResponse.Builder builder = MoveServersAndTablesResponse.newBuilder();
|
||||||
try {
|
|
||||||
Set<Address> hostPorts = Sets.newHashSet();
|
Set<Address> hostPorts = Sets.newHashSet();
|
||||||
for (HBaseProtos.ServerName el : request.getServersList()) {
|
for (HBaseProtos.ServerName el : request.getServersList()) {
|
||||||
hostPorts.add(Address.fromParts(el.getHostName(), el.getPort()));
|
hostPorts.add(Address.fromParts(el.getHostName(), el.getPort()));
|
||||||
|
@ -290,6 +323,8 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
}
|
}
|
||||||
LOG.info(master.getClientIdAuditPrefix() + " move servers " + hostPorts
|
LOG.info(master.getClientIdAuditPrefix() + " move servers " + hostPorts
|
||||||
+ " and tables " + tables + " to rsgroup" + request.getTargetGroup());
|
+ " and tables " + tables + " to rsgroup" + request.getTargetGroup());
|
||||||
|
try {
|
||||||
|
checkPermission("moveServersAndTables");
|
||||||
groupAdminServer.moveServersAndTables(hostPorts, tables, request.getTargetGroup());
|
groupAdminServer.moveServersAndTables(hostPorts, tables, request.getTargetGroup());
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
CoprocessorRpcUtils.setControllerException(controller, e);
|
CoprocessorRpcUtils.setControllerException(controller, e);
|
||||||
|
@ -303,13 +338,14 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
RpcCallback<RemoveServersResponse> done) {
|
RpcCallback<RemoveServersResponse> done) {
|
||||||
RemoveServersResponse.Builder builder =
|
RemoveServersResponse.Builder builder =
|
||||||
RemoveServersResponse.newBuilder();
|
RemoveServersResponse.newBuilder();
|
||||||
try {
|
|
||||||
Set<Address> servers = Sets.newHashSet();
|
Set<Address> servers = Sets.newHashSet();
|
||||||
for (HBaseProtos.ServerName el : request.getServersList()) {
|
for (HBaseProtos.ServerName el : request.getServersList()) {
|
||||||
servers.add(Address.fromParts(el.getHostName(), el.getPort()));
|
servers.add(Address.fromParts(el.getHostName(), el.getPort()));
|
||||||
}
|
}
|
||||||
LOG.info(master.getClientIdAuditPrefix()
|
LOG.info(master.getClientIdAuditPrefix()
|
||||||
+ " remove decommissioned servers from rsgroup: " + servers);
|
+ " remove decommissioned servers from rsgroup: " + servers);
|
||||||
|
try {
|
||||||
|
checkPermission("removeServers");
|
||||||
groupAdminServer.removeServers(servers);
|
groupAdminServer.removeServers(servers);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
CoprocessorRpcUtils.setControllerException(controller, e);
|
CoprocessorRpcUtils.setControllerException(controller, e);
|
||||||
|
@ -395,5 +431,21 @@ public class RSGroupAdminEndpoint implements MasterCoprocessor, MasterObserver {
|
||||||
groupAdminServer.removeServers(clearedServer);
|
groupAdminServer.removeServers(clearedServer);
|
||||||
}
|
}
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
public void checkPermission(String request) throws IOException {
|
||||||
|
accessChecker.requirePermission(getActiveUser(), request, Action.ADMIN);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the active user to which authorization checks should be applied.
|
||||||
|
* If we are in the context of an RPC call, the remote user is used,
|
||||||
|
* otherwise the currently logged in user is used.
|
||||||
|
*/
|
||||||
|
private User getActiveUser() throws IOException {
|
||||||
|
// for non-rpc handling, fallback to system user
|
||||||
|
Optional<User> optionalUser = RpcServer.getRequestUser();
|
||||||
|
if (optionalUser.isPresent()) {
|
||||||
|
return optionalUser.get();
|
||||||
|
}
|
||||||
|
return userProvider.getCurrent();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,329 @@
|
||||||
|
/*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*/
|
||||||
|
package org.apache.hadoop.hbase.rsgroup;
|
||||||
|
|
||||||
|
import static org.apache.hadoop.hbase.AuthUtil.toGroupEntry;
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
|
import org.apache.hadoop.conf.Configuration;
|
||||||
|
import org.apache.hadoop.hbase.HBaseTestingUtility;
|
||||||
|
import org.apache.hadoop.hbase.HConstants;
|
||||||
|
import org.apache.hadoop.hbase.TableName;
|
||||||
|
import org.apache.hadoop.hbase.TableNotFoundException;
|
||||||
|
import org.apache.hadoop.hbase.client.ColumnFamilyDescriptorBuilder;
|
||||||
|
import org.apache.hadoop.hbase.client.Connection;
|
||||||
|
import org.apache.hadoop.hbase.client.TableDescriptorBuilder;
|
||||||
|
import org.apache.hadoop.hbase.coprocessor.CoprocessorHost;
|
||||||
|
import org.apache.hadoop.hbase.security.User;
|
||||||
|
import org.apache.hadoop.hbase.security.access.AccessControlClient;
|
||||||
|
import org.apache.hadoop.hbase.security.access.AccessControlLists;
|
||||||
|
import org.apache.hadoop.hbase.security.access.Permission;
|
||||||
|
import org.apache.hadoop.hbase.security.access.SecureTestUtil;
|
||||||
|
import org.apache.hadoop.hbase.security.access.TableAuthManager;
|
||||||
|
import org.apache.hadoop.hbase.testclassification.SecurityTests;
|
||||||
|
import org.apache.hadoop.hbase.util.Bytes;
|
||||||
|
import org.junit.AfterClass;
|
||||||
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.experimental.categories.Category;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Performs authorization checks for rsgroup operations, according to different
|
||||||
|
* levels of authorized users.
|
||||||
|
*/
|
||||||
|
@Category({SecurityTests.class})
|
||||||
|
public class TestRSGroupsWithACL extends SecureTestUtil{
|
||||||
|
private static final Logger LOG = LoggerFactory.getLogger(TestRSGroupsWithACL.class);
|
||||||
|
private static TableName TEST_TABLE = TableName.valueOf("testtable1");
|
||||||
|
private static final HBaseTestingUtility TEST_UTIL = new HBaseTestingUtility();
|
||||||
|
private static Configuration conf;
|
||||||
|
|
||||||
|
private static Connection systemUserConnection;
|
||||||
|
// user with all permissions
|
||||||
|
private static User SUPERUSER;
|
||||||
|
// user granted with all global permission
|
||||||
|
private static User USER_ADMIN;
|
||||||
|
// user with rw permissions on column family.
|
||||||
|
private static User USER_RW;
|
||||||
|
// user with read-only permissions
|
||||||
|
private static User USER_RO;
|
||||||
|
// user is table owner. will have all permissions on table
|
||||||
|
private static User USER_OWNER;
|
||||||
|
// user with create table permissions alone
|
||||||
|
private static User USER_CREATE;
|
||||||
|
// user with no permissions
|
||||||
|
private static User USER_NONE;
|
||||||
|
|
||||||
|
private static final String GROUP_ADMIN = "group_admin";
|
||||||
|
private static final String GROUP_CREATE = "group_create";
|
||||||
|
private static final String GROUP_READ = "group_read";
|
||||||
|
private static final String GROUP_WRITE = "group_write";
|
||||||
|
|
||||||
|
private static User USER_GROUP_ADMIN;
|
||||||
|
private static User USER_GROUP_CREATE;
|
||||||
|
private static User USER_GROUP_READ;
|
||||||
|
private static User USER_GROUP_WRITE;
|
||||||
|
|
||||||
|
private static byte[] TEST_FAMILY = Bytes.toBytes("f1");
|
||||||
|
|
||||||
|
private static RSGroupAdminEndpoint rsGroupAdminEndpoint;
|
||||||
|
|
||||||
|
@BeforeClass
|
||||||
|
public static void setupBeforeClass() throws Exception {
|
||||||
|
// setup configuration
|
||||||
|
conf = TEST_UTIL.getConfiguration();
|
||||||
|
conf.set(HConstants.HBASE_MASTER_LOADBALANCER_CLASS,
|
||||||
|
RSGroupBasedLoadBalancer.class.getName());
|
||||||
|
// Enable security
|
||||||
|
enableSecurity(conf);
|
||||||
|
// Verify enableSecurity sets up what we require
|
||||||
|
verifyConfiguration(conf);
|
||||||
|
// Enable rsgroup
|
||||||
|
configureRSGroupAdminEndpoint(conf);
|
||||||
|
|
||||||
|
TEST_UTIL.startMiniCluster();
|
||||||
|
rsGroupAdminEndpoint = (RSGroupAdminEndpoint) TEST_UTIL.getMiniHBaseCluster().getMaster().
|
||||||
|
getMasterCoprocessorHost().findCoprocessor(RSGroupAdminEndpoint.class.getName());
|
||||||
|
// Wait for the ACL table to become available
|
||||||
|
TEST_UTIL.waitUntilAllRegionsAssigned(AccessControlLists.ACL_TABLE_NAME);
|
||||||
|
|
||||||
|
// create a set of test users
|
||||||
|
SUPERUSER = User.createUserForTesting(conf, "admin", new String[] { "supergroup" });
|
||||||
|
USER_ADMIN = User.createUserForTesting(conf, "admin2", new String[0]);
|
||||||
|
USER_RW = User.createUserForTesting(conf, "rwuser", new String[0]);
|
||||||
|
USER_RO = User.createUserForTesting(conf, "rouser", new String[0]);
|
||||||
|
USER_OWNER = User.createUserForTesting(conf, "owner", new String[0]);
|
||||||
|
USER_CREATE = User.createUserForTesting(conf, "tbl_create", new String[0]);
|
||||||
|
USER_NONE = User.createUserForTesting(conf, "nouser", new String[0]);
|
||||||
|
|
||||||
|
USER_GROUP_ADMIN =
|
||||||
|
User.createUserForTesting(conf, "user_group_admin", new String[] { GROUP_ADMIN });
|
||||||
|
USER_GROUP_CREATE =
|
||||||
|
User.createUserForTesting(conf, "user_group_create", new String[] { GROUP_CREATE });
|
||||||
|
USER_GROUP_READ =
|
||||||
|
User.createUserForTesting(conf, "user_group_read", new String[] { GROUP_READ });
|
||||||
|
USER_GROUP_WRITE =
|
||||||
|
User.createUserForTesting(conf, "user_group_write", new String[] { GROUP_WRITE });
|
||||||
|
|
||||||
|
systemUserConnection = TEST_UTIL.getConnection();
|
||||||
|
setUpTableAndUserPermissions();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void setUpTableAndUserPermissions() throws Exception {
|
||||||
|
TableDescriptorBuilder tableBuilder = TableDescriptorBuilder.newBuilder(TEST_TABLE);
|
||||||
|
ColumnFamilyDescriptorBuilder cfd = ColumnFamilyDescriptorBuilder.newBuilder(TEST_FAMILY);
|
||||||
|
cfd.setMaxVersions(100);
|
||||||
|
tableBuilder.addColumnFamily(cfd.build());
|
||||||
|
tableBuilder.setValue(TableDescriptorBuilder.OWNER, USER_OWNER.getShortName());
|
||||||
|
createTable(TEST_UTIL, tableBuilder.build(),
|
||||||
|
new byte[][] { Bytes.toBytes("s") });
|
||||||
|
|
||||||
|
// Set up initial grants
|
||||||
|
grantGlobal(TEST_UTIL, USER_ADMIN.getShortName(),
|
||||||
|
Permission.Action.ADMIN,
|
||||||
|
Permission.Action.CREATE,
|
||||||
|
Permission.Action.READ,
|
||||||
|
Permission.Action.WRITE);
|
||||||
|
|
||||||
|
grantOnTable(TEST_UTIL, USER_RW.getShortName(),
|
||||||
|
TEST_TABLE, TEST_FAMILY, null,
|
||||||
|
Permission.Action.READ,
|
||||||
|
Permission.Action.WRITE);
|
||||||
|
|
||||||
|
// USER_CREATE is USER_RW plus CREATE permissions
|
||||||
|
grantOnTable(TEST_UTIL, USER_CREATE.getShortName(),
|
||||||
|
TEST_TABLE, null, null,
|
||||||
|
Permission.Action.CREATE,
|
||||||
|
Permission.Action.READ,
|
||||||
|
Permission.Action.WRITE);
|
||||||
|
|
||||||
|
grantOnTable(TEST_UTIL, USER_RO.getShortName(),
|
||||||
|
TEST_TABLE, TEST_FAMILY, null,
|
||||||
|
Permission.Action.READ);
|
||||||
|
|
||||||
|
grantGlobal(TEST_UTIL, toGroupEntry(GROUP_ADMIN), Permission.Action.ADMIN);
|
||||||
|
grantGlobal(TEST_UTIL, toGroupEntry(GROUP_CREATE), Permission.Action.CREATE);
|
||||||
|
grantGlobal(TEST_UTIL, toGroupEntry(GROUP_READ), Permission.Action.READ);
|
||||||
|
grantGlobal(TEST_UTIL, toGroupEntry(GROUP_WRITE), Permission.Action.WRITE);
|
||||||
|
|
||||||
|
assertEquals(5, AccessControlLists.getTablePermissions(conf, TEST_TABLE).size());
|
||||||
|
try {
|
||||||
|
assertEquals(5, AccessControlClient.getUserPermissions(systemUserConnection,
|
||||||
|
TEST_TABLE.toString()).size());
|
||||||
|
} catch (Throwable e) {
|
||||||
|
LOG.error("error during call of AccessControlClient.getUserPermissions. ", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void cleanUp() throws Exception {
|
||||||
|
// Clean the _acl_ table
|
||||||
|
try {
|
||||||
|
deleteTable(TEST_UTIL, TEST_TABLE);
|
||||||
|
} catch (TableNotFoundException ex) {
|
||||||
|
// Test deleted the table, no problem
|
||||||
|
LOG.info("Test deleted table " + TEST_TABLE);
|
||||||
|
}
|
||||||
|
// Verify all table/namespace permissions are erased
|
||||||
|
assertEquals(0, AccessControlLists.getTablePermissions(conf, TEST_TABLE).size());
|
||||||
|
assertEquals(0, AccessControlLists.getNamespacePermissions(conf,
|
||||||
|
TEST_TABLE.getNamespaceAsString()).size());
|
||||||
|
}
|
||||||
|
|
||||||
|
@AfterClass
|
||||||
|
public static void tearDownAfterClass() throws Exception {
|
||||||
|
cleanUp();
|
||||||
|
TEST_UTIL.shutdownMiniCluster();
|
||||||
|
int total = TableAuthManager.getTotalRefCount();
|
||||||
|
assertTrue("Unexpected reference count: " + total, total == 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void configureRSGroupAdminEndpoint(Configuration conf) {
|
||||||
|
String currentCoprocessors = conf.get(CoprocessorHost.MASTER_COPROCESSOR_CONF_KEY);
|
||||||
|
String coprocessors = RSGroupAdminEndpoint.class.getName();
|
||||||
|
if (currentCoprocessors != null) {
|
||||||
|
coprocessors += "," + currentCoprocessors;
|
||||||
|
}
|
||||||
|
conf.set(CoprocessorHost.MASTER_COPROCESSOR_CONF_KEY, coprocessors);
|
||||||
|
conf.set(HConstants.HBASE_MASTER_LOADBALANCER_CLASS,
|
||||||
|
RSGroupBasedLoadBalancer.class.getName());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testGetRSGroupInfo() throws Exception {
|
||||||
|
AccessTestAction action = () -> {
|
||||||
|
rsGroupAdminEndpoint.checkPermission("getRSGroupInfo");
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
verifyAllowed(action, SUPERUSER, USER_ADMIN, USER_GROUP_ADMIN);
|
||||||
|
verifyDenied(action, USER_CREATE, USER_OWNER, USER_RW, USER_RO,
|
||||||
|
USER_NONE, USER_GROUP_READ, USER_GROUP_WRITE, USER_GROUP_CREATE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testGetRSGroupInfoOfTable() throws Exception {
|
||||||
|
AccessTestAction action = () -> {
|
||||||
|
rsGroupAdminEndpoint.checkPermission("getRSGroupInfoOfTable");
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
verifyAllowed(action, SUPERUSER, USER_ADMIN, USER_GROUP_ADMIN);
|
||||||
|
verifyDenied(action, USER_CREATE, USER_OWNER, USER_RW, USER_RO,
|
||||||
|
USER_NONE, USER_GROUP_READ, USER_GROUP_WRITE, USER_GROUP_CREATE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testMoveServers() throws Exception {
|
||||||
|
AccessTestAction action = () -> {
|
||||||
|
rsGroupAdminEndpoint.checkPermission("moveServers");
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
verifyAllowed(action, SUPERUSER, USER_ADMIN, USER_GROUP_ADMIN);
|
||||||
|
verifyDenied(action, USER_CREATE, USER_OWNER, USER_RW, USER_RO,
|
||||||
|
USER_NONE, USER_GROUP_READ, USER_GROUP_WRITE, USER_GROUP_CREATE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testMoveTables() throws Exception {
|
||||||
|
AccessTestAction action = () -> {
|
||||||
|
rsGroupAdminEndpoint.checkPermission("moveTables");
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
verifyAllowed(action, SUPERUSER, USER_ADMIN, USER_GROUP_ADMIN);
|
||||||
|
verifyDenied(action, USER_CREATE, USER_OWNER, USER_RW, USER_RO,
|
||||||
|
USER_NONE, USER_GROUP_READ, USER_GROUP_WRITE, USER_GROUP_CREATE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAddRSGroup() throws Exception {
|
||||||
|
AccessTestAction action = () -> {
|
||||||
|
rsGroupAdminEndpoint.checkPermission("addRSGroup");
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
verifyAllowed(action, SUPERUSER, USER_ADMIN, USER_GROUP_ADMIN);
|
||||||
|
verifyDenied(action, USER_CREATE, USER_OWNER, USER_RW, USER_RO,
|
||||||
|
USER_NONE, USER_GROUP_READ, USER_GROUP_WRITE, USER_GROUP_CREATE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRemoveRSGroup() throws Exception {
|
||||||
|
AccessTestAction action = () -> {
|
||||||
|
rsGroupAdminEndpoint.checkPermission("removeRSGroup");
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
verifyAllowed(action, SUPERUSER, USER_ADMIN, USER_GROUP_ADMIN);
|
||||||
|
verifyDenied(action, USER_CREATE, USER_OWNER, USER_RW, USER_RO,
|
||||||
|
USER_NONE, USER_GROUP_READ, USER_GROUP_WRITE, USER_GROUP_CREATE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testBalanceRSGroup() throws Exception {
|
||||||
|
AccessTestAction action = () -> {
|
||||||
|
rsGroupAdminEndpoint.checkPermission("balanceRSGroup");
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
verifyAllowed(action, SUPERUSER, USER_ADMIN, USER_GROUP_ADMIN);
|
||||||
|
verifyDenied(action, USER_CREATE, USER_OWNER, USER_RW, USER_RO,
|
||||||
|
USER_NONE, USER_GROUP_READ, USER_GROUP_WRITE, USER_GROUP_CREATE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testListRSGroup() throws Exception {
|
||||||
|
AccessTestAction action = () -> {
|
||||||
|
rsGroupAdminEndpoint.checkPermission("listRSGroup");
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
verifyAllowed(action, SUPERUSER, USER_ADMIN, USER_GROUP_ADMIN);
|
||||||
|
verifyDenied(action, USER_CREATE, USER_OWNER, USER_RW, USER_RO,
|
||||||
|
USER_NONE, USER_GROUP_READ, USER_GROUP_WRITE, USER_GROUP_CREATE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testGetRSGroupInfoOfServer() throws Exception {
|
||||||
|
AccessTestAction action = () -> {
|
||||||
|
rsGroupAdminEndpoint.checkPermission("getRSGroupInfoOfServer");
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
verifyAllowed(action, SUPERUSER, USER_ADMIN, USER_GROUP_ADMIN);
|
||||||
|
verifyDenied(action, USER_CREATE, USER_OWNER, USER_RW, USER_RO,
|
||||||
|
USER_NONE, USER_GROUP_READ, USER_GROUP_WRITE, USER_GROUP_CREATE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testMoveServersAndTables() throws Exception {
|
||||||
|
AccessTestAction action = () -> {
|
||||||
|
rsGroupAdminEndpoint.checkPermission("moveServersAndTables");
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
verifyAllowed(action, SUPERUSER, USER_ADMIN, USER_GROUP_ADMIN);
|
||||||
|
verifyDenied(action, USER_CREATE, USER_OWNER, USER_RW, USER_RO,
|
||||||
|
USER_NONE, USER_GROUP_READ, USER_GROUP_WRITE, USER_GROUP_CREATE);
|
||||||
|
}
|
||||||
|
}
|
|
@ -83,6 +83,7 @@ import org.apache.hadoop.hbase.replication.ReplicationException;
|
||||||
import org.apache.hadoop.hbase.replication.ReplicationPeerConfig;
|
import org.apache.hadoop.hbase.replication.ReplicationPeerConfig;
|
||||||
import org.apache.hadoop.hbase.replication.ReplicationPeerDescription;
|
import org.apache.hadoop.hbase.replication.ReplicationPeerDescription;
|
||||||
import org.apache.hadoop.hbase.security.User;
|
import org.apache.hadoop.hbase.security.User;
|
||||||
|
import org.apache.hadoop.hbase.security.access.AccessChecker;
|
||||||
import org.apache.hadoop.hbase.security.access.AccessController;
|
import org.apache.hadoop.hbase.security.access.AccessController;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityController;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityController;
|
||||||
import org.apache.hadoop.hbase.snapshot.ClientSnapshotDescriptionUtils;
|
import org.apache.hadoop.hbase.snapshot.ClientSnapshotDescriptionUtils;
|
||||||
|
@ -1810,7 +1811,7 @@ public class MasterRpcServices extends RSRpcServices
|
||||||
// A coprocessor that implements AccessControlService can provide AUTHORIZATION and
|
// A coprocessor that implements AccessControlService can provide AUTHORIZATION and
|
||||||
// CELL_AUTHORIZATION
|
// CELL_AUTHORIZATION
|
||||||
if (master.cpHost != null && hasAccessControlServiceCoprocessor(master.cpHost)) {
|
if (master.cpHost != null && hasAccessControlServiceCoprocessor(master.cpHost)) {
|
||||||
if (AccessController.isAuthorizationSupported(master.getConfiguration())) {
|
if (AccessChecker.isAuthorizationSupported(master.getConfiguration())) {
|
||||||
capabilities.add(SecurityCapabilitiesResponse.Capability.AUTHORIZATION);
|
capabilities.add(SecurityCapabilitiesResponse.Capability.AUTHORIZATION);
|
||||||
}
|
}
|
||||||
if (AccessController.isCellAuthorizationSupported(master.getConfiguration())) {
|
if (AccessController.isCellAuthorizationSupported(master.getConfiguration())) {
|
||||||
|
|
|
@ -0,0 +1,332 @@
|
||||||
|
/*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*/
|
||||||
|
package org.apache.hadoop.hbase.security.access;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.net.InetAddress;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.apache.hadoop.conf.Configuration;
|
||||||
|
import org.apache.hadoop.hbase.DoNotRetryIOException;
|
||||||
|
import org.apache.hadoop.hbase.TableName;
|
||||||
|
import org.apache.hadoop.hbase.client.RegionInfo;
|
||||||
|
import org.apache.hadoop.hbase.ipc.RpcServer;
|
||||||
|
import org.apache.hadoop.hbase.security.AccessDeniedException;
|
||||||
|
import org.apache.hadoop.hbase.security.User;
|
||||||
|
import org.apache.hadoop.hbase.security.access.Permission.Action;
|
||||||
|
import org.apache.hadoop.hbase.zookeeper.ZKWatcher;
|
||||||
|
import org.apache.yetus.audience.InterfaceAudience;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
@InterfaceAudience.Private
|
||||||
|
public final class AccessChecker {
|
||||||
|
private static final Logger AUDITLOG =
|
||||||
|
LoggerFactory.getLogger("SecurityLogger." + AccessChecker.class.getName());
|
||||||
|
private TableAuthManager authManager;
|
||||||
|
/**
|
||||||
|
* if we are active, usually false, only true if "hbase.security.authorization"
|
||||||
|
* has been set to true in site configuration.see HBASE-19483.
|
||||||
|
*/
|
||||||
|
private boolean authorizationEnabled;
|
||||||
|
|
||||||
|
public static boolean isAuthorizationSupported(Configuration conf) {
|
||||||
|
return conf.getBoolean(User.HBASE_SECURITY_AUTHORIZATION_CONF_KEY, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor with existing configuration
|
||||||
|
*
|
||||||
|
* @param conf Existing configuration to use
|
||||||
|
* @param zkw reference to the {@link ZKWatcher}
|
||||||
|
*/
|
||||||
|
public AccessChecker(final Configuration conf, final ZKWatcher zkw)
|
||||||
|
throws RuntimeException {
|
||||||
|
// If zk is null or IOException while obtaining auth manager,
|
||||||
|
// throw RuntimeException so that the coprocessor is unloaded.
|
||||||
|
if (zkw != null) {
|
||||||
|
try {
|
||||||
|
this.authManager = TableAuthManager.getOrCreate(zkw, conf);
|
||||||
|
} catch (IOException ioe) {
|
||||||
|
throw new RuntimeException("Error obtaining AccessChecker", ioe);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
throw new NullPointerException("Error obtaining AccessChecker, zk found null.");
|
||||||
|
}
|
||||||
|
authorizationEnabled = isAuthorizationSupported(conf);
|
||||||
|
}
|
||||||
|
|
||||||
|
public TableAuthManager getAuthManager() {
|
||||||
|
return authManager;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Authorizes that the current user has any of the given permissions to access the table.
|
||||||
|
*
|
||||||
|
* @param tableName Table requested
|
||||||
|
* @param permissions Actions being requested
|
||||||
|
* @throws IOException if obtaining the current user fails
|
||||||
|
* @throws AccessDeniedException if user has no authorization
|
||||||
|
*/
|
||||||
|
public void requireAccess(User user, String request, TableName tableName,
|
||||||
|
Action... permissions) throws IOException {
|
||||||
|
AuthResult result = null;
|
||||||
|
|
||||||
|
for (Action permission : permissions) {
|
||||||
|
if (authManager.hasAccess(user, tableName, permission)) {
|
||||||
|
result = AuthResult.allow(request, "Table permission granted",
|
||||||
|
user, permission, tableName, null, null);
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
// rest of the world
|
||||||
|
result = AuthResult.deny(request, "Insufficient permissions",
|
||||||
|
user, permission, tableName, null, null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
logResult(result);
|
||||||
|
if (authorizationEnabled && !result.isAllowed()) {
|
||||||
|
throw new AccessDeniedException("Insufficient permissions " + result.toContextString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Authorizes that the current user has global privileges for the given action.
|
||||||
|
*
|
||||||
|
* @param perm The action being requested
|
||||||
|
* @throws IOException if obtaining the current user fails
|
||||||
|
* @throws AccessDeniedException if authorization is denied
|
||||||
|
*/
|
||||||
|
public void requirePermission(User user, String request, Action perm)
|
||||||
|
throws IOException {
|
||||||
|
requireGlobalPermission(user, request, perm, null, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks that the user has the given global permission. The generated
|
||||||
|
* audit log message will contain context information for the operation
|
||||||
|
* being authorized, based on the given parameters.
|
||||||
|
*
|
||||||
|
* @param perm Action being requested
|
||||||
|
* @param tableName Affected table name.
|
||||||
|
* @param familyMap Affected column families.
|
||||||
|
*/
|
||||||
|
public void requireGlobalPermission(User user, String request,
|
||||||
|
Action perm, TableName tableName,
|
||||||
|
Map<byte[], ? extends Collection<byte[]>> familyMap)throws IOException {
|
||||||
|
AuthResult result;
|
||||||
|
if (authManager.authorize(user, perm)) {
|
||||||
|
result = AuthResult.allow(request, "Global check allowed",
|
||||||
|
user, perm, tableName, familyMap);
|
||||||
|
result.getParams().setTableName(tableName).setFamilies(familyMap);
|
||||||
|
logResult(result);
|
||||||
|
} else {
|
||||||
|
result = AuthResult.deny(request, "Global check failed",
|
||||||
|
user, perm, tableName, familyMap);
|
||||||
|
result.getParams().setTableName(tableName).setFamilies(familyMap);
|
||||||
|
logResult(result);
|
||||||
|
if (authorizationEnabled) {
|
||||||
|
throw new AccessDeniedException(
|
||||||
|
"Insufficient permissions for user '" + (user != null ? user.getShortName() : "null")
|
||||||
|
+ "' (global, action=" + perm.toString() + ")");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks that the user has the given global permission. The generated
|
||||||
|
* audit log message will contain context information for the operation
|
||||||
|
* being authorized, based on the given parameters.
|
||||||
|
*
|
||||||
|
* @param perm Action being requested
|
||||||
|
* @param namespace The given namespace
|
||||||
|
*/
|
||||||
|
public void requireGlobalPermission(User user, String request, Action perm,
|
||||||
|
String namespace) throws IOException {
|
||||||
|
AuthResult authResult;
|
||||||
|
if (authManager.authorize(user, perm)) {
|
||||||
|
authResult = AuthResult.allow(request, "Global check allowed",
|
||||||
|
user, perm, null);
|
||||||
|
authResult.getParams().setNamespace(namespace);
|
||||||
|
logResult(authResult);
|
||||||
|
} else {
|
||||||
|
authResult = AuthResult.deny(request, "Global check failed",
|
||||||
|
user, perm, null);
|
||||||
|
authResult.getParams().setNamespace(namespace);
|
||||||
|
logResult(authResult);
|
||||||
|
if (authorizationEnabled) {
|
||||||
|
throw new AccessDeniedException(
|
||||||
|
"Insufficient permissions for user '" + (user != null ? user.getShortName() : "null")
|
||||||
|
+ "' (global, action=" + perm.toString() + ")");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks that the user has the given global or namespace permission.
|
||||||
|
*
|
||||||
|
* @param namespace The given namespace
|
||||||
|
* @param permissions Actions being requested
|
||||||
|
*/
|
||||||
|
public void requireNamespacePermission(User user, String request, String namespace,
|
||||||
|
Action... permissions) throws IOException {
|
||||||
|
AuthResult result = null;
|
||||||
|
|
||||||
|
for (Action permission : permissions) {
|
||||||
|
if (authManager.authorize(user, namespace, permission)) {
|
||||||
|
result =
|
||||||
|
AuthResult.allow(request, "Namespace permission granted",
|
||||||
|
user, permission, namespace);
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
// rest of the world
|
||||||
|
result = AuthResult.deny(request, "Insufficient permissions",
|
||||||
|
user, permission, namespace);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
logResult(result);
|
||||||
|
if (authorizationEnabled && !result.isAllowed()) {
|
||||||
|
throw new AccessDeniedException("Insufficient permissions " + result.toContextString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks that the user has the given global or namespace permission.
|
||||||
|
*
|
||||||
|
* @param namespace The given namespace
|
||||||
|
* @param permissions Actions being requested
|
||||||
|
*/
|
||||||
|
public void requireNamespacePermission(User user, String request, String namespace,
|
||||||
|
TableName tableName, Map<byte[], ? extends Collection<byte[]>> familyMap,
|
||||||
|
Action... permissions) throws IOException {
|
||||||
|
AuthResult result = null;
|
||||||
|
|
||||||
|
for (Action permission : permissions) {
|
||||||
|
if (authManager.authorize(user, namespace, permission)) {
|
||||||
|
result =
|
||||||
|
AuthResult.allow(request, "Namespace permission granted",
|
||||||
|
user, permission, namespace);
|
||||||
|
result.getParams().setTableName(tableName).setFamilies(familyMap);
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
// rest of the world
|
||||||
|
result = AuthResult.deny(request, "Insufficient permissions",
|
||||||
|
user, permission, namespace);
|
||||||
|
result.getParams().setTableName(tableName).setFamilies(familyMap);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
logResult(result);
|
||||||
|
if (authorizationEnabled && !result.isAllowed()) {
|
||||||
|
throw new AccessDeniedException("Insufficient permissions " + result.toContextString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Authorizes that the current user has any of the given permissions for the
|
||||||
|
* given table, column family and column qualifier.
|
||||||
|
*
|
||||||
|
* @param tableName Table requested
|
||||||
|
* @param family Column family requested
|
||||||
|
* @param qualifier Column qualifier requested
|
||||||
|
* @throws IOException if obtaining the current user fails
|
||||||
|
* @throws AccessDeniedException if user has no authorization
|
||||||
|
*/
|
||||||
|
public void requirePermission(User user, String request, TableName tableName, byte[] family,
|
||||||
|
byte[] qualifier, Action... permissions) throws IOException {
|
||||||
|
AuthResult result = null;
|
||||||
|
|
||||||
|
for (Action permission : permissions) {
|
||||||
|
if (authManager.authorize(user, tableName, family, qualifier, permission)) {
|
||||||
|
result = AuthResult.allow(request, "Table permission granted",
|
||||||
|
user, permission, tableName, family,
|
||||||
|
qualifier);
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
// rest of the world
|
||||||
|
result = AuthResult.deny(request, "Insufficient permissions",
|
||||||
|
user, permission, tableName, family,
|
||||||
|
qualifier);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
logResult(result);
|
||||||
|
if (authorizationEnabled && !result.isAllowed()) {
|
||||||
|
throw new AccessDeniedException("Insufficient permissions " + result.toContextString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Authorizes that the current user has any of the given permissions for the
|
||||||
|
* given table, column family and column qualifier.
|
||||||
|
*
|
||||||
|
* @param tableName Table requested
|
||||||
|
* @param family Column family param
|
||||||
|
* @param qualifier Column qualifier param
|
||||||
|
* @throws IOException if obtaining the current user fails
|
||||||
|
* @throws AccessDeniedException if user has no authorization
|
||||||
|
*/
|
||||||
|
public void requireTablePermission(User user, String request,
|
||||||
|
TableName tableName,byte[] family, byte[] qualifier,
|
||||||
|
Action... permissions) throws IOException {
|
||||||
|
AuthResult result = null;
|
||||||
|
|
||||||
|
for (Action permission : permissions) {
|
||||||
|
if (authManager.authorize(user, tableName, null, null, permission)) {
|
||||||
|
result = AuthResult.allow(request, "Table permission granted",
|
||||||
|
user, permission, tableName, null, null);
|
||||||
|
result.getParams().setFamily(family).setQualifier(qualifier);
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
// rest of the world
|
||||||
|
result = AuthResult.deny(request, "Insufficient permissions",
|
||||||
|
user, permission, tableName, family, qualifier);
|
||||||
|
result.getParams().setFamily(family).setQualifier(qualifier);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
logResult(result);
|
||||||
|
if (authorizationEnabled && !result.isAllowed()) {
|
||||||
|
throw new AccessDeniedException("Insufficient permissions " + result.toContextString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void checkLockPermissions(User user, String namespace,
|
||||||
|
TableName tableName, RegionInfo[] regionInfos, String reason)
|
||||||
|
throws IOException {
|
||||||
|
if (namespace != null && !namespace.isEmpty()) {
|
||||||
|
requireNamespacePermission(user, reason, namespace, Action.ADMIN, Action.CREATE);
|
||||||
|
} else if (tableName != null || (regionInfos != null && regionInfos.length > 0)) {
|
||||||
|
// So, either a table or regions op. If latter, check perms ons table.
|
||||||
|
TableName tn = tableName != null? tableName: regionInfos[0].getTable();
|
||||||
|
requireTablePermission(user, reason, tn, null, null,
|
||||||
|
Action.ADMIN, Action.CREATE);
|
||||||
|
} else {
|
||||||
|
throw new DoNotRetryIOException("Invalid lock level when requesting permissions.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void logResult(AuthResult result) {
|
||||||
|
if (AUDITLOG.isTraceEnabled()) {
|
||||||
|
AUDITLOG.trace("Access " + (result.isAllowed() ? "allowed" : "denied") + " for user " + (
|
||||||
|
result.getUser() != null ?
|
||||||
|
result.getUser().getShortName() :
|
||||||
|
"UNKNOWN") + "; reason: " + result.getReason() + "; remote address: "
|
||||||
|
+ RpcServer.getRemoteAddress().map(InetAddress::toString).orElse("")
|
||||||
|
+ "; request: " + result.getRequest() + "; context: " + result.toContextString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -63,6 +63,7 @@ import org.apache.hadoop.hbase.protobuf.generated.AccessControlProtos;
|
||||||
import org.apache.hadoop.hbase.regionserver.InternalScanner;
|
import org.apache.hadoop.hbase.regionserver.InternalScanner;
|
||||||
import org.apache.hadoop.hbase.regionserver.Region;
|
import org.apache.hadoop.hbase.regionserver.Region;
|
||||||
import org.apache.hadoop.hbase.security.User;
|
import org.apache.hadoop.hbase.security.User;
|
||||||
|
import org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
|
||||||
import org.apache.hbase.thirdparty.com.google.common.collect.ArrayListMultimap;
|
import org.apache.hbase.thirdparty.com.google.common.collect.ArrayListMultimap;
|
||||||
import org.apache.hbase.thirdparty.com.google.common.collect.ListMultimap;
|
import org.apache.hbase.thirdparty.com.google.common.collect.ListMultimap;
|
||||||
import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
|
import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
|
||||||
|
@ -490,7 +491,8 @@ public class AccessControlLists {
|
||||||
return getPermissions(conf, tableName != null ? tableName.getName() : null, null);
|
return getPermissions(conf, tableName != null ? tableName.getName() : null, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ListMultimap<String, TablePermission> getNamespacePermissions(Configuration conf,
|
@VisibleForTesting
|
||||||
|
public static ListMultimap<String, TablePermission> getNamespacePermissions(Configuration conf,
|
||||||
String namespace) throws IOException {
|
String namespace) throws IOException {
|
||||||
return getPermissions(conf, Bytes.toBytes(toNamespaceEntry(namespace)), null);
|
return getPermissions(conf, Bytes.toBytes(toNamespaceEntry(namespace)), null);
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -754,7 +754,7 @@ public class TableAuthManager implements Closeable {
|
||||||
}
|
}
|
||||||
|
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
static int getTotalRefCount() {
|
public static int getTotalRefCount() {
|
||||||
int total = 0;
|
int total = 0;
|
||||||
for (int count : refCount.values()) {
|
for (int count : refCount.values()) {
|
||||||
total += count;
|
total += count;
|
||||||
|
|
|
@ -105,6 +105,7 @@ import org.apache.hadoop.hbase.regionserver.querymatcher.DeleteTracker;
|
||||||
import org.apache.hadoop.hbase.security.AccessDeniedException;
|
import org.apache.hadoop.hbase.security.AccessDeniedException;
|
||||||
import org.apache.hadoop.hbase.security.Superusers;
|
import org.apache.hadoop.hbase.security.Superusers;
|
||||||
import org.apache.hadoop.hbase.security.User;
|
import org.apache.hadoop.hbase.security.User;
|
||||||
|
import org.apache.hadoop.hbase.security.access.AccessChecker;
|
||||||
import org.apache.hadoop.hbase.security.access.AccessController;
|
import org.apache.hadoop.hbase.security.access.AccessController;
|
||||||
import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
|
import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
|
||||||
import org.apache.hbase.thirdparty.com.google.common.collect.MapMaker;
|
import org.apache.hbase.thirdparty.com.google.common.collect.MapMaker;
|
||||||
|
@ -141,8 +142,8 @@ public class VisibilityController implements MasterCoprocessor, RegionCoprocesso
|
||||||
|
|
||||||
private VisibilityLabelService visibilityLabelService;
|
private VisibilityLabelService visibilityLabelService;
|
||||||
|
|
||||||
/** if we are active, usually true, only not true if "hbase.security.authorization"
|
/** if we are active, usually false, only true if "hbase.security.authorization"
|
||||||
has been set to false in site configuration */
|
has been set to true in site configuration */
|
||||||
boolean authorizationEnabled;
|
boolean authorizationEnabled;
|
||||||
|
|
||||||
// Add to this list if there are any reserved tag types
|
// Add to this list if there are any reserved tag types
|
||||||
|
@ -153,19 +154,15 @@ public class VisibilityController implements MasterCoprocessor, RegionCoprocesso
|
||||||
RESERVED_VIS_TAG_TYPES.add(TagType.STRING_VIS_TAG_TYPE);
|
RESERVED_VIS_TAG_TYPES.add(TagType.STRING_VIS_TAG_TYPE);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isAuthorizationSupported(Configuration conf) {
|
|
||||||
return conf.getBoolean(User.HBASE_SECURITY_AUTHORIZATION_CONF_KEY, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isCellAuthorizationSupported(Configuration conf) {
|
public static boolean isCellAuthorizationSupported(Configuration conf) {
|
||||||
return isAuthorizationSupported(conf);
|
return AccessChecker.isAuthorizationSupported(conf);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void start(CoprocessorEnvironment env) throws IOException {
|
public void start(CoprocessorEnvironment env) throws IOException {
|
||||||
this.conf = env.getConfiguration();
|
this.conf = env.getConfiguration();
|
||||||
|
|
||||||
authorizationEnabled = isAuthorizationSupported(conf);
|
authorizationEnabled = AccessChecker.isAuthorizationSupported(conf);
|
||||||
if (!authorizationEnabled) {
|
if (!authorizationEnabled) {
|
||||||
LOG.warn("The VisibilityController has been loaded with authorization checks disabled.");
|
LOG.warn("The VisibilityController has been loaded with authorization checks disabled.");
|
||||||
}
|
}
|
||||||
|
|
|
@ -106,6 +106,7 @@ public class SecureTestUtil {
|
||||||
conf.set(CoprocessorHost.REGIONSERVER_COPROCESSOR_CONF_KEY, AccessController.class.getName());
|
conf.set(CoprocessorHost.REGIONSERVER_COPROCESSOR_CONF_KEY, AccessController.class.getName());
|
||||||
// Need HFile V3 for tags for security features
|
// Need HFile V3 for tags for security features
|
||||||
conf.setInt(HFile.FORMAT_VERSION_KEY, 3);
|
conf.setInt(HFile.FORMAT_VERSION_KEY, 3);
|
||||||
|
conf.set(User.HBASE_SECURITY_AUTHORIZATION_CONF_KEY, "true");
|
||||||
configureSuperuser(conf);
|
configureSuperuser(conf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -129,6 +130,11 @@ public class SecureTestUtil {
|
||||||
if (conf.getInt(HFile.FORMAT_VERSION_KEY, 2) < HFile.MIN_FORMAT_VERSION_WITH_TAGS) {
|
if (conf.getInt(HFile.FORMAT_VERSION_KEY, 2) < HFile.MIN_FORMAT_VERSION_WITH_TAGS) {
|
||||||
throw new RuntimeException("Post 0.96 security features require HFile version >= 3");
|
throw new RuntimeException("Post 0.96 security features require HFile version >= 3");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!conf.getBoolean(User.HBASE_SECURITY_AUTHORIZATION_CONF_KEY, false)) {
|
||||||
|
throw new RuntimeException("Post 2.0.0 security features require set "
|
||||||
|
+ User.HBASE_SECURITY_AUTHORIZATION_CONF_KEY + " to true");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void checkTablePerms(Configuration conf, TableName table, byte[] family, byte[] column,
|
public static void checkTablePerms(Configuration conf, TableName table, byte[] family, byte[] column,
|
||||||
|
|
|
@ -2838,81 +2838,6 @@ public class TestAccessController extends SecureTestUtil {
|
||||||
USER_GROUP_READ, USER_GROUP_ADMIN, USER_GROUP_CREATE);
|
USER_GROUP_READ, USER_GROUP_ADMIN, USER_GROUP_CREATE);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testMoveServers() throws Exception {
|
|
||||||
AccessTestAction action1 = new AccessTestAction() {
|
|
||||||
@Override
|
|
||||||
public Object run() throws Exception {
|
|
||||||
ACCESS_CONTROLLER.preMoveServers(ObserverContextImpl.createAndPrepare(CP_ENV),
|
|
||||||
null, null);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
verifyAllowed(action1, SUPERUSER, USER_ADMIN);
|
|
||||||
verifyDenied(action1, USER_CREATE, USER_RW, USER_RO, USER_NONE, USER_OWNER);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testMoveTables() throws Exception {
|
|
||||||
AccessTestAction action1 = new AccessTestAction() {
|
|
||||||
@Override
|
|
||||||
public Object run() throws Exception {
|
|
||||||
ACCESS_CONTROLLER.preMoveTables(ObserverContextImpl.createAndPrepare(CP_ENV),
|
|
||||||
null, null);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
verifyAllowed(action1, SUPERUSER, USER_ADMIN);
|
|
||||||
verifyDenied(action1, USER_CREATE, USER_RW, USER_RO, USER_NONE, USER_OWNER);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testAddGroup() throws Exception {
|
|
||||||
AccessTestAction action1 = new AccessTestAction() {
|
|
||||||
@Override
|
|
||||||
public Object run() throws Exception {
|
|
||||||
ACCESS_CONTROLLER.preAddRSGroup(ObserverContextImpl.createAndPrepare(CP_ENV),
|
|
||||||
null);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
verifyAllowed(action1, SUPERUSER, USER_ADMIN);
|
|
||||||
verifyDenied(action1, USER_CREATE, USER_RW, USER_RO, USER_NONE, USER_OWNER);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testRemoveGroup() throws Exception {
|
|
||||||
AccessTestAction action1 = new AccessTestAction() {
|
|
||||||
@Override
|
|
||||||
public Object run() throws Exception {
|
|
||||||
ACCESS_CONTROLLER.preRemoveRSGroup(ObserverContextImpl.createAndPrepare(CP_ENV),
|
|
||||||
null);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
verifyAllowed(action1, SUPERUSER, USER_ADMIN);
|
|
||||||
verifyDenied(action1, USER_CREATE, USER_RW, USER_RO, USER_NONE, USER_OWNER);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testBalanceGroup() throws Exception {
|
|
||||||
AccessTestAction action1 = new AccessTestAction() {
|
|
||||||
@Override
|
|
||||||
public Object run() throws Exception {
|
|
||||||
ACCESS_CONTROLLER.preBalanceRSGroup(ObserverContextImpl.createAndPrepare(CP_ENV),
|
|
||||||
null);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
verifyAllowed(action1, SUPERUSER, USER_ADMIN);
|
|
||||||
verifyDenied(action1, USER_CREATE, USER_RW, USER_RO, USER_NONE, USER_OWNER);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testAddReplicationPeer() throws Exception {
|
public void testAddReplicationPeer() throws Exception {
|
||||||
AccessTestAction action = new AccessTestAction() {
|
AccessTestAction action = new AccessTestAction() {
|
||||||
|
|
|
@ -14,7 +14,7 @@ import java.io.IOException;
|
||||||
|
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.hbase.coprocessor.CoprocessorHost;
|
import org.apache.hadoop.hbase.coprocessor.CoprocessorHost;
|
||||||
|
import org.apache.hadoop.hbase.security.User;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Utility methods for testing visibility labels.
|
* Utility methods for testing visibility labels.
|
||||||
|
@ -23,6 +23,7 @@ public class VisibilityTestUtil {
|
||||||
|
|
||||||
public static void enableVisiblityLabels(Configuration conf) throws IOException {
|
public static void enableVisiblityLabels(Configuration conf) throws IOException {
|
||||||
conf.setInt("hfile.format.version", 3);
|
conf.setInt("hfile.format.version", 3);
|
||||||
|
conf.setBoolean(User.HBASE_SECURITY_AUTHORIZATION_CONF_KEY, true);
|
||||||
appendCoprocessor(conf, CoprocessorHost.MASTER_COPROCESSOR_CONF_KEY,
|
appendCoprocessor(conf, CoprocessorHost.MASTER_COPROCESSOR_CONF_KEY,
|
||||||
VisibilityController.class.getName());
|
VisibilityController.class.getName());
|
||||||
appendCoprocessor(conf, CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
|
appendCoprocessor(conf, CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
|
||||||
|
|
|
@ -47,7 +47,7 @@ import org.apache.hadoop.hbase.security.visibility.ScanLabelGenerator;
|
||||||
import org.apache.hadoop.hbase.security.visibility.SimpleScanLabelGenerator;
|
import org.apache.hadoop.hbase.security.visibility.SimpleScanLabelGenerator;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityClient;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityClient;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityConstants;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityConstants;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityController;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityTestUtil;
|
||||||
import org.apache.hadoop.hbase.security.visibility.VisibilityUtils;
|
import org.apache.hadoop.hbase.security.visibility.VisibilityUtils;
|
||||||
import org.apache.hadoop.hbase.testclassification.ClientTests;
|
import org.apache.hadoop.hbase.testclassification.ClientTests;
|
||||||
import org.apache.hadoop.hbase.testclassification.MediumTests;
|
import org.apache.hadoop.hbase.testclassification.MediumTests;
|
||||||
|
@ -125,17 +125,14 @@ public void assertTColumnValuesEqual(List<TColumnValue> columnValuesA,
|
||||||
|
|
||||||
@BeforeClass
|
@BeforeClass
|
||||||
public static void beforeClass() throws Exception {
|
public static void beforeClass() throws Exception {
|
||||||
|
|
||||||
SUPERUSER = User.createUserForTesting(conf, "admin",
|
SUPERUSER = User.createUserForTesting(conf, "admin",
|
||||||
new String[] { "supergroup" });
|
new String[] { "supergroup" });
|
||||||
conf = UTIL.getConfiguration();
|
conf = UTIL.getConfiguration();
|
||||||
conf.setClass(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS,
|
conf.setClass(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS,
|
||||||
SimpleScanLabelGenerator.class, ScanLabelGenerator.class);
|
SimpleScanLabelGenerator.class, ScanLabelGenerator.class);
|
||||||
conf.set("hbase.superuser", SUPERUSER.getShortName());
|
conf.set("hbase.superuser", SUPERUSER.getShortName());
|
||||||
conf.set("hbase.coprocessor.master.classes",
|
VisibilityTestUtil.enableVisiblityLabels(conf);
|
||||||
VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.coprocessor.region.classes",
|
|
||||||
VisibilityController.class.getName());
|
|
||||||
conf.setInt("hfile.format.version", 3);
|
|
||||||
UTIL.startMiniCluster(1);
|
UTIL.startMiniCluster(1);
|
||||||
// Wait for the labels table to become available
|
// Wait for the labels table to become available
|
||||||
UTIL.waitTableEnabled(VisibilityConstants.LABELS_TABLE_NAME.getName(), 50000);
|
UTIL.waitTableEnabled(VisibilityConstants.LABELS_TABLE_NAME.getName(), 50000);
|
||||||
|
@ -459,8 +456,9 @@ public void testAppend() throws Exception {
|
||||||
*/
|
*/
|
||||||
private String pad(int n, byte pad) {
|
private String pad(int n, byte pad) {
|
||||||
String res = Integer.toString(n);
|
String res = Integer.toString(n);
|
||||||
while (res.length() < pad)
|
while (res.length() < pad) {
|
||||||
res = "0" + res;
|
res = "0" + res;
|
||||||
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -164,6 +164,17 @@ In case the table goes out of date, the unit tests which check for accuracy of p
|
||||||
| | mergeRegions | superuser\|global(A)
|
| | mergeRegions | superuser\|global(A)
|
||||||
| | rollWALWriterRequest | superuser\|global(A)
|
| | rollWALWriterRequest | superuser\|global(A)
|
||||||
| | replicateLogEntries | superuser\|global(W)
|
| | replicateLogEntries | superuser\|global(W)
|
||||||
|
|RSGroup |addRSGroup |superuser\|global(A)
|
||||||
|
| |balanceRSGroup |superuser\|global(A)
|
||||||
|
| |getRSGroupInfo |superuser\|global(A)
|
||||||
|
| |getRSGroupInfoOfTable|superuser\|global(A)
|
||||||
|
| |getRSGroupOfServer |superuser\|global(A)
|
||||||
|
| |listRSGroups |superuser\|global(A)
|
||||||
|
| |moveServers |superuser\|global(A)
|
||||||
|
| |moveServersAndTables |superuser\|global(A)
|
||||||
|
| |moveTables |superuser\|global(A)
|
||||||
|
| |removeRSGroup |superuser\|global(A)
|
||||||
|
| |removeServers |superuser\|global(A)
|
||||||
|===
|
|===
|
||||||
|
|
||||||
:numbered:
|
:numbered:
|
||||||
|
|
|
@ -2703,5 +2703,15 @@ Viewing the Master log will give you insight on rsgroup operation.
|
||||||
|
|
||||||
If it appears stuck, restart the Master process.
|
If it appears stuck, restart the Master process.
|
||||||
|
|
||||||
|
=== ACL
|
||||||
|
To enable ACL, add the following to your hbase-site.xml and restart your Master:
|
||||||
|
|
||||||
|
[source,xml]
|
||||||
|
----
|
||||||
|
<property>
|
||||||
|
<name>hbase.security.authorization</name>
|
||||||
|
<value>true</value>
|
||||||
|
<property>
|
||||||
|
----
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -806,6 +806,10 @@ For an example of using both together, see <<security.example.config>>.
|
||||||
+
|
+
|
||||||
[source,xml]
|
[source,xml]
|
||||||
----
|
----
|
||||||
|
<property>
|
||||||
|
<name>hbase.security.authorization</name>
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
<property>
|
<property>
|
||||||
<name>hbase.coprocessor.region.classes</name>
|
<name>hbase.coprocessor.region.classes</name>
|
||||||
<value>org.apache.hadoop.hbase.security.access.AccessController, org.apache.hadoop.hbase.security.token.TokenProvider</value>
|
<value>org.apache.hadoop.hbase.security.access.AccessController, org.apache.hadoop.hbase.security.token.TokenProvider</value>
|
||||||
|
@ -1186,6 +1190,10 @@ NOTE: Visibility labels are not currently applied for superusers.
|
||||||
+
|
+
|
||||||
[source,xml]
|
[source,xml]
|
||||||
----
|
----
|
||||||
|
<property>
|
||||||
|
<name>hbase.security.authorization</name>
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
<property>
|
<property>
|
||||||
<name>hbase.coprocessor.region.classes</name>
|
<name>hbase.coprocessor.region.classes</name>
|
||||||
<value>org.apache.hadoop.hbase.security.visibility.VisibilityController</value>
|
<value>org.apache.hadoop.hbase.security.visibility.VisibilityController</value>
|
||||||
|
@ -1453,6 +1461,10 @@ As mentioned in the above sections, the interface `VisibilityLabelService` could
|
||||||
|
|
||||||
[source,xml]
|
[source,xml]
|
||||||
----
|
----
|
||||||
|
<property>
|
||||||
|
<name>hbase.security.authorization</name>
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
<property>
|
<property>
|
||||||
<name>hbase.coprocessor.regionserver.classes</name>
|
<name>hbase.coprocessor.regionserver.classes</name>
|
||||||
<value>org.apache.hadoop.hbase.security.visibility.VisibilityController$VisibilityReplication</value>
|
<value>org.apache.hadoop.hbase.security.visibility.VisibilityController$VisibilityReplication</value>
|
||||||
|
@ -1671,6 +1683,10 @@ To enable secure bulk load, add the following properties to _hbase-site.xml_.
|
||||||
|
|
||||||
[source,xml]
|
[source,xml]
|
||||||
----
|
----
|
||||||
|
<property>
|
||||||
|
<name>hbase.security.authorization</name>
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
<property>
|
<property>
|
||||||
<name>hbase.bulkload.staging.dir</name>
|
<name>hbase.bulkload.staging.dir</name>
|
||||||
<value>/tmp/hbase-staging</value>
|
<value>/tmp/hbase-staging</value>
|
||||||
|
@ -1682,6 +1698,22 @@ To enable secure bulk load, add the following properties to _hbase-site.xml_.
|
||||||
</property>
|
</property>
|
||||||
----
|
----
|
||||||
|
|
||||||
|
[[hbase.secure.enable]]
|
||||||
|
=== Secure Enable
|
||||||
|
After hbase-2.x, the default 'hbase.security.authorization' changed.
|
||||||
|
Before hbase-2.x, it defaulted to true, in later HBase versions, the
|
||||||
|
default became false.
|
||||||
|
So to enable hbase authorization, the following propertie must be configured in _hbase-site.xml_.
|
||||||
|
See link:https://issues.apache.org/jira/browse/HBASE-19483[HBASE-19483];
|
||||||
|
|
||||||
|
[source,xml]
|
||||||
|
----
|
||||||
|
<property>
|
||||||
|
<name>hbase.security.authorization</name>
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
----
|
||||||
|
|
||||||
[[security.example.config]]
|
[[security.example.config]]
|
||||||
== Security Configuration Example
|
== Security Configuration Example
|
||||||
|
|
||||||
|
@ -1703,6 +1735,10 @@ All options have been discussed separately in the sections above.
|
||||||
<value>hbase, admin</value>
|
<value>hbase, admin</value>
|
||||||
</property>
|
</property>
|
||||||
<!-- Coprocessors for ACLs and Visibility Tags -->
|
<!-- Coprocessors for ACLs and Visibility Tags -->
|
||||||
|
<property>
|
||||||
|
<name>hbase.security.authorization</name>
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
<property>
|
<property>
|
||||||
<name>hbase.coprocessor.region.classes</name>
|
<name>hbase.coprocessor.region.classes</name>
|
||||||
<value>org.apache.hadoop.hbase.security.access.AccessController,
|
<value>org.apache.hadoop.hbase.security.access.AccessController,
|
||||||
|
|
Loading…
Reference in New Issue