HBASE-18572 Delete can't remove the cells which have no visibility label
This commit is contained in:
parent
8c85b6b853
commit
c013bf8a7a
|
@ -551,12 +551,16 @@ public class DefaultVisibilityLabelServiceImpl implements VisibilityLabelService
|
||||||
@Override
|
@Override
|
||||||
public boolean matchVisibility(List<Tag> putVisTags, Byte putTagsFormat, List<Tag> deleteVisTags,
|
public boolean matchVisibility(List<Tag> putVisTags, Byte putTagsFormat, List<Tag> deleteVisTags,
|
||||||
Byte deleteTagsFormat) throws IOException {
|
Byte deleteTagsFormat) throws IOException {
|
||||||
if ((deleteTagsFormat != null && deleteTagsFormat == SORTED_ORDINAL_SERIALIZATION_FORMAT)
|
// Early out if there are no tags in both of cell and delete
|
||||||
&& (putTagsFormat == null || putTagsFormat == SORTED_ORDINAL_SERIALIZATION_FORMAT)) {
|
if (putVisTags.isEmpty() && deleteVisTags.isEmpty()) {
|
||||||
if (putVisTags.isEmpty()) {
|
return true;
|
||||||
// Early out if there are no tags in the cell
|
}
|
||||||
|
// Early out if one of the tags is empty
|
||||||
|
if (putVisTags.isEmpty() ^ deleteVisTags.isEmpty()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if ((deleteTagsFormat != null && deleteTagsFormat == SORTED_ORDINAL_SERIALIZATION_FORMAT)
|
||||||
|
&& (putTagsFormat == null || putTagsFormat == SORTED_ORDINAL_SERIALIZATION_FORMAT)) {
|
||||||
if (putTagsFormat == null) {
|
if (putTagsFormat == null) {
|
||||||
return matchUnSortedVisibilityTags(putVisTags, deleteVisTags);
|
return matchUnSortedVisibilityTags(putVisTags, deleteVisTags);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -1074,6 +1074,10 @@ public class VisibilityController implements MasterObserver, RegionObserver,
|
||||||
public ReturnCode filterKeyValue(Cell cell) throws IOException {
|
public ReturnCode filterKeyValue(Cell cell) throws IOException {
|
||||||
List<Tag> putVisTags = new ArrayList<>();
|
List<Tag> putVisTags = new ArrayList<>();
|
||||||
Byte putCellVisTagsFormat = VisibilityUtils.extractVisibilityTags(cell, putVisTags);
|
Byte putCellVisTagsFormat = VisibilityUtils.extractVisibilityTags(cell, putVisTags);
|
||||||
|
if (putVisTags.isEmpty() && deleteCellVisTags.isEmpty()) {
|
||||||
|
// Early out if there are no tags in the cell
|
||||||
|
return ReturnCode.INCLUDE;
|
||||||
|
}
|
||||||
boolean matchFound = VisibilityLabelServiceManager
|
boolean matchFound = VisibilityLabelServiceManager
|
||||||
.getInstance().getVisibilityLabelService()
|
.getInstance().getVisibilityLabelService()
|
||||||
.matchVisibility(putVisTags, putCellVisTagsFormat, deleteCellVisTags,
|
.matchVisibility(putVisTags, putCellVisTagsFormat, deleteCellVisTags,
|
||||||
|
|
|
@ -20,6 +20,7 @@ package org.apache.hadoop.hbase.security.visibility;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
|
@ -45,6 +46,10 @@ public class VisibilityScanDeleteTracker extends ScanDeleteTracker {
|
||||||
|
|
||||||
private static final Log LOG = LogFactory.getLog(VisibilityScanDeleteTracker.class);
|
private static final Log LOG = LogFactory.getLog(VisibilityScanDeleteTracker.class);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This tag is used for the DELETE cell which has no visibility label.
|
||||||
|
*/
|
||||||
|
private static final List<Tag> EMPTY_TAG = Collections.EMPTY_LIST;
|
||||||
// Its better to track the visibility tags in delete based on each type. Create individual
|
// Its better to track the visibility tags in delete based on each type. Create individual
|
||||||
// data structures for tracking each of them. This would ensure that there is no tracking based
|
// data structures for tracking each of them. This would ensure that there is no tracking based
|
||||||
// on time and also would handle all cases where deletefamily or deletecolumns is specified with
|
// on time and also would handle all cases where deletefamily or deletecolumns is specified with
|
||||||
|
@ -110,7 +115,6 @@ public class VisibilityScanDeleteTracker extends ScanDeleteTracker {
|
||||||
private boolean extractDeleteCellVisTags(Cell delCell, Type type) {
|
private boolean extractDeleteCellVisTags(Cell delCell, Type type) {
|
||||||
// If tag is present in the delete
|
// If tag is present in the delete
|
||||||
boolean hasVisTag = false;
|
boolean hasVisTag = false;
|
||||||
if (delCell.getTagsLength() > 0) {
|
|
||||||
Byte deleteCellVisTagsFormat = null;
|
Byte deleteCellVisTagsFormat = null;
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case DeleteFamily:
|
case DeleteFamily:
|
||||||
|
@ -122,6 +126,8 @@ public class VisibilityScanDeleteTracker extends ScanDeleteTracker {
|
||||||
if (!delTags.isEmpty()) {
|
if (!delTags.isEmpty()) {
|
||||||
visibilityTagsDeleteFamily.add(new Triple<>(delTags, deleteCellVisTagsFormat, delCell.getTimestamp()));
|
visibilityTagsDeleteFamily.add(new Triple<>(delTags, deleteCellVisTagsFormat, delCell.getTimestamp()));
|
||||||
hasVisTag = true;
|
hasVisTag = true;
|
||||||
|
} else {
|
||||||
|
visibilityTagsDeleteFamily.add(new Triple<>(EMPTY_TAG, deleteCellVisTagsFormat, delCell.getTimestamp()));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case DeleteFamilyVersion:
|
case DeleteFamilyVersion:
|
||||||
|
@ -133,6 +139,8 @@ public class VisibilityScanDeleteTracker extends ScanDeleteTracker {
|
||||||
if (!delTags.isEmpty()) {
|
if (!delTags.isEmpty()) {
|
||||||
visibilityTagsDeleteFamilyVersion.add(new Triple<>(delTags, deleteCellVisTagsFormat, delCell.getTimestamp()));
|
visibilityTagsDeleteFamilyVersion.add(new Triple<>(delTags, deleteCellVisTagsFormat, delCell.getTimestamp()));
|
||||||
hasVisTag = true;
|
hasVisTag = true;
|
||||||
|
} else {
|
||||||
|
visibilityTagsDeleteFamilyVersion.add(new Triple<>(EMPTY_TAG, deleteCellVisTagsFormat, delCell.getTimestamp()));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case DeleteColumn:
|
case DeleteColumn:
|
||||||
|
@ -144,6 +152,8 @@ public class VisibilityScanDeleteTracker extends ScanDeleteTracker {
|
||||||
if (!delTags.isEmpty()) {
|
if (!delTags.isEmpty()) {
|
||||||
visibilityTagsDeleteColumns.add(new Pair<>(delTags, deleteCellVisTagsFormat));
|
visibilityTagsDeleteColumns.add(new Pair<>(delTags, deleteCellVisTagsFormat));
|
||||||
hasVisTag = true;
|
hasVisTag = true;
|
||||||
|
} else {
|
||||||
|
visibilityTagsDeleteColumns.add(new Pair<>(EMPTY_TAG, deleteCellVisTagsFormat));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case Delete:
|
case Delete:
|
||||||
|
@ -155,12 +165,13 @@ public class VisibilityScanDeleteTracker extends ScanDeleteTracker {
|
||||||
if (!delTags.isEmpty()) {
|
if (!delTags.isEmpty()) {
|
||||||
visiblityTagsDeleteColumnVersion.add(new Pair<>(delTags, deleteCellVisTagsFormat));
|
visiblityTagsDeleteColumnVersion.add(new Pair<>(delTags, deleteCellVisTagsFormat));
|
||||||
hasVisTag = true;
|
hasVisTag = true;
|
||||||
|
} else {
|
||||||
|
visiblityTagsDeleteColumnVersion.add(new Pair<>(EMPTY_TAG, deleteCellVisTagsFormat));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
throw new IllegalArgumentException("Invalid delete type");
|
throw new IllegalArgumentException("Invalid delete type");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return hasVisTag;
|
return hasVisTag;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -418,6 +418,10 @@ public class ExpAsStringVisibilityLabelServiceImpl implements VisibilityLabelSer
|
||||||
|
|
||||||
private static boolean checkForMatchingVisibilityTagsWithSortedOrder(List<Tag> putVisTags,
|
private static boolean checkForMatchingVisibilityTagsWithSortedOrder(List<Tag> putVisTags,
|
||||||
List<Tag> deleteVisTags) {
|
List<Tag> deleteVisTags) {
|
||||||
|
// Early out if there are no tags in both of cell and delete
|
||||||
|
if (putVisTags.isEmpty() && deleteVisTags.isEmpty()) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
boolean matchFound = false;
|
boolean matchFound = false;
|
||||||
// If the size does not match. Definitely we are not comparing the equal
|
// If the size does not match. Definitely we are not comparing the equal
|
||||||
// tags.
|
// tags.
|
||||||
|
|
|
@ -17,9 +17,12 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.hadoop.hbase.security.visibility;
|
package org.apache.hadoop.hbase.security.visibility;
|
||||||
|
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.hbase.Cell;
|
import org.apache.hadoop.hbase.Cell;
|
||||||
import org.apache.hadoop.hbase.CellScanner;
|
import org.apache.hadoop.hbase.CellScanner;
|
||||||
|
import org.apache.hadoop.hbase.CellUtil;
|
||||||
import org.apache.hadoop.hbase.HBaseTestingUtility;
|
import org.apache.hadoop.hbase.HBaseTestingUtility;
|
||||||
import org.apache.hadoop.hbase.HColumnDescriptor;
|
import org.apache.hadoop.hbase.HColumnDescriptor;
|
||||||
import org.apache.hadoop.hbase.HConstants;
|
import org.apache.hadoop.hbase.HConstants;
|
||||||
|
@ -41,6 +44,9 @@ import org.apache.hadoop.hbase.security.User;
|
||||||
import org.apache.hadoop.hbase.testclassification.MediumTests;
|
import org.apache.hadoop.hbase.testclassification.MediumTests;
|
||||||
import org.apache.hadoop.hbase.testclassification.SecurityTests;
|
import org.apache.hadoop.hbase.testclassification.SecurityTests;
|
||||||
import org.apache.hadoop.hbase.util.Bytes;
|
import org.apache.hadoop.hbase.util.Bytes;
|
||||||
|
import org.apache.hadoop.hbase.util.DefaultEnvironmentEdge;
|
||||||
|
import org.apache.hadoop.hbase.util.EnvironmentEdge;
|
||||||
|
import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
|
||||||
import org.apache.hadoop.hbase.util.Threads;
|
import org.apache.hadoop.hbase.util.Threads;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.AfterClass;
|
import org.junit.AfterClass;
|
||||||
|
@ -67,6 +73,7 @@ import static org.junit.Assert.assertTrue;
|
||||||
*/
|
*/
|
||||||
@Category({SecurityTests.class, MediumTests.class})
|
@Category({SecurityTests.class, MediumTests.class})
|
||||||
public class TestVisibilityLabelsWithDeletes {
|
public class TestVisibilityLabelsWithDeletes {
|
||||||
|
private static final Log LOG = LogFactory.getLog(TestVisibilityLabelsWithDeletes.class);
|
||||||
private static final String TOPSECRET = "TOPSECRET";
|
private static final String TOPSECRET = "TOPSECRET";
|
||||||
private static final String PUBLIC = "PUBLIC";
|
private static final String PUBLIC = "PUBLIC";
|
||||||
private static final String PRIVATE = "PRIVATE";
|
private static final String PRIVATE = "PRIVATE";
|
||||||
|
@ -3285,4 +3292,188 @@ public class TestVisibilityLabelsWithDeletes {
|
||||||
public static <T> List<T> createList(T... ts) {
|
public static <T> List<T> createList(T... ts) {
|
||||||
return new ArrayList<>(Arrays.asList(ts));
|
return new ArrayList<>(Arrays.asList(ts));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private enum DeleteMark {
|
||||||
|
ROW,
|
||||||
|
FAMILY,
|
||||||
|
FAMILY_VERSION,
|
||||||
|
COLUMN,
|
||||||
|
CELL
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Delete addDeleteMark(Delete d, DeleteMark mark, long now) {
|
||||||
|
switch (mark) {
|
||||||
|
case ROW:
|
||||||
|
break;
|
||||||
|
case FAMILY:
|
||||||
|
d.addFamily(fam);
|
||||||
|
break;
|
||||||
|
case FAMILY_VERSION:
|
||||||
|
d.addFamilyVersion(fam, now);
|
||||||
|
break;
|
||||||
|
case COLUMN:
|
||||||
|
d.addColumns(fam, qual);
|
||||||
|
break;
|
||||||
|
case CELL:
|
||||||
|
d.addColumn(fam, qual);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return d;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testDeleteCellWithoutVisibility() throws IOException, InterruptedException {
|
||||||
|
for (DeleteMark mark : DeleteMark.values()) {
|
||||||
|
testDeleteCellWithoutVisibility(mark);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void testDeleteCellWithoutVisibility(DeleteMark mark) throws IOException, InterruptedException {
|
||||||
|
setAuths();
|
||||||
|
final TableName tableName = TableName.valueOf("testDeleteCellWithoutVisibility-" + mark.name());
|
||||||
|
Admin hBaseAdmin = TEST_UTIL.getAdmin();
|
||||||
|
HColumnDescriptor colDesc = new HColumnDescriptor(fam);
|
||||||
|
colDesc.setMaxVersions(5);
|
||||||
|
HTableDescriptor desc = new HTableDescriptor(tableName);
|
||||||
|
desc.addFamily(colDesc);
|
||||||
|
hBaseAdmin.createTable(desc);
|
||||||
|
long now = EnvironmentEdgeManager.currentTime();
|
||||||
|
List<Put> puts = new ArrayList<>(1);
|
||||||
|
Put put = new Put(row1);
|
||||||
|
if (mark == DeleteMark.FAMILY_VERSION) {
|
||||||
|
put.addColumn(fam, qual, now, value);
|
||||||
|
} else {
|
||||||
|
put.addColumn(fam, qual, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
puts.add(put);
|
||||||
|
try (Table table = TEST_UTIL.getConnection().getTable(tableName)){
|
||||||
|
table.put(puts);
|
||||||
|
Result r = table.get(new Get(row1));
|
||||||
|
assertEquals(1, r.size());
|
||||||
|
assertEquals(Bytes.toString(value), Bytes.toString(CellUtil.cloneValue(r.rawCells()[0])));
|
||||||
|
|
||||||
|
Delete d = addDeleteMark(new Delete(row1), mark, now);
|
||||||
|
table.delete(d);
|
||||||
|
r = table.get(new Get(row1));
|
||||||
|
assertEquals(0, r.size());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testDeleteCellWithVisibility() throws IOException, InterruptedException {
|
||||||
|
for (DeleteMark mark : DeleteMark.values()) {
|
||||||
|
testDeleteCellWithVisibility(mark);
|
||||||
|
testDeleteCellWithVisibilityV2(mark);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void testDeleteCellWithVisibility(DeleteMark mark) throws IOException, InterruptedException {
|
||||||
|
setAuths();
|
||||||
|
final TableName tableName = TableName.valueOf("testDeleteCellWithVisibility-" + mark.name());
|
||||||
|
Admin hBaseAdmin = TEST_UTIL.getAdmin();
|
||||||
|
HColumnDescriptor colDesc = new HColumnDescriptor(fam);
|
||||||
|
colDesc.setMaxVersions(5);
|
||||||
|
HTableDescriptor desc = new HTableDescriptor(tableName);
|
||||||
|
desc.addFamily(colDesc);
|
||||||
|
hBaseAdmin.createTable(desc);
|
||||||
|
long now = EnvironmentEdgeManager.currentTime();
|
||||||
|
List<Put> puts = new ArrayList<>(2);
|
||||||
|
Put put = new Put(row1);
|
||||||
|
if (mark == DeleteMark.FAMILY_VERSION) {
|
||||||
|
put.addColumn(fam, qual, now, value);
|
||||||
|
} else {
|
||||||
|
put.addColumn(fam, qual, value);
|
||||||
|
}
|
||||||
|
puts.add(put);
|
||||||
|
put = new Put(row1);
|
||||||
|
if (mark == DeleteMark.FAMILY_VERSION) {
|
||||||
|
put.addColumn(fam, qual, now, value1);
|
||||||
|
} else {
|
||||||
|
put.addColumn(fam, qual, value1);
|
||||||
|
}
|
||||||
|
put.setCellVisibility(new CellVisibility(PRIVATE));
|
||||||
|
puts.add(put);
|
||||||
|
try (Table table = TEST_UTIL.getConnection().getTable(tableName)) {
|
||||||
|
table.put(puts);
|
||||||
|
Result r = table.get(new Get(row1));
|
||||||
|
assertEquals(0, r.size());
|
||||||
|
r = table.get(new Get(row1).setAuthorizations(new Authorizations(PRIVATE)));
|
||||||
|
assertEquals(1, r.size());
|
||||||
|
assertEquals(Bytes.toString(value1), Bytes.toString(CellUtil.cloneValue(r.rawCells()[0])));
|
||||||
|
|
||||||
|
Delete d = addDeleteMark(new Delete(row1), mark, now);
|
||||||
|
table.delete(d);
|
||||||
|
|
||||||
|
r = table.get(new Get(row1));
|
||||||
|
assertEquals(0, r.size());
|
||||||
|
r = table.get(new Get(row1).setAuthorizations(new Authorizations(PRIVATE)));
|
||||||
|
assertEquals(1, r.size());
|
||||||
|
assertEquals(Bytes.toString(value1), Bytes.toString(CellUtil.cloneValue(r.rawCells()[0])));
|
||||||
|
|
||||||
|
d = addDeleteMark(new Delete(row1).setCellVisibility(new CellVisibility(PRIVATE)), mark, now);
|
||||||
|
table.delete(d);
|
||||||
|
|
||||||
|
r = table.get(new Get(row1));
|
||||||
|
assertEquals(0, r.size());
|
||||||
|
r = table.get(new Get(row1).setAuthorizations(new Authorizations(PRIVATE)));
|
||||||
|
assertEquals(0, r.size());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void testDeleteCellWithVisibilityV2(DeleteMark mark) throws IOException, InterruptedException {
|
||||||
|
setAuths();
|
||||||
|
final TableName tableName = TableName.valueOf("testDeleteCellWithVisibilityV2-" + mark.name());
|
||||||
|
Admin hBaseAdmin = TEST_UTIL.getAdmin();
|
||||||
|
HColumnDescriptor colDesc = new HColumnDescriptor(fam);
|
||||||
|
colDesc.setMaxVersions(5);
|
||||||
|
HTableDescriptor desc = new HTableDescriptor(tableName);
|
||||||
|
desc.addFamily(colDesc);
|
||||||
|
hBaseAdmin.createTable(desc);
|
||||||
|
long now = EnvironmentEdgeManager.currentTime();
|
||||||
|
List<Put> puts = new ArrayList<>(2);
|
||||||
|
Put put = new Put(row1);
|
||||||
|
put.setCellVisibility(new CellVisibility(PRIVATE));
|
||||||
|
if (mark == DeleteMark.FAMILY_VERSION) {
|
||||||
|
put.addColumn(fam, qual, now, value);
|
||||||
|
} else {
|
||||||
|
put.addColumn(fam, qual, value);
|
||||||
|
}
|
||||||
|
puts.add(put);
|
||||||
|
put = new Put(row1);
|
||||||
|
if (mark == DeleteMark.FAMILY_VERSION) {
|
||||||
|
put.addColumn(fam, qual, now, value1);
|
||||||
|
} else {
|
||||||
|
put.addColumn(fam, qual, value1);
|
||||||
|
}
|
||||||
|
puts.add(put);
|
||||||
|
try (Table table = TEST_UTIL.getConnection().getTable(tableName)){
|
||||||
|
table.put(puts);
|
||||||
|
Result r = table.get(new Get(row1));
|
||||||
|
assertEquals(1, r.size());
|
||||||
|
assertEquals(Bytes.toString(value1), Bytes.toString(CellUtil.cloneValue(r.rawCells()[0])));
|
||||||
|
r = table.get(new Get(row1).setAuthorizations(new Authorizations(PRIVATE)));
|
||||||
|
assertEquals(1, r.size());
|
||||||
|
assertEquals(Bytes.toString(value1), Bytes.toString(CellUtil.cloneValue(r.rawCells()[0])));
|
||||||
|
|
||||||
|
Delete d = addDeleteMark(new Delete(row1), mark, now);
|
||||||
|
table.delete(d);
|
||||||
|
|
||||||
|
r = table.get(new Get(row1));
|
||||||
|
assertEquals(0, r.size());
|
||||||
|
r = table.get(new Get(row1).setAuthorizations(new Authorizations(PRIVATE)));
|
||||||
|
assertEquals(0, r.size());
|
||||||
|
|
||||||
|
d = addDeleteMark(new Delete(row1).setCellVisibility(new CellVisibility(PRIVATE)), mark, now);
|
||||||
|
table.delete(d);
|
||||||
|
|
||||||
|
r = table.get(new Get(row1));
|
||||||
|
assertEquals(0, r.size());
|
||||||
|
r = table.get(new Get(row1).setAuthorizations(new Authorizations(PRIVATE)));
|
||||||
|
assertEquals(0, r.size());
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue