View Javadoc

1   /**
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *     http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing, software
13   * distributed under the License is distributed on an "AS IS" BASIS,
14   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   * See the License for the specific language governing permissions and
16   * limitations under the License.
17   */
18  package org.apache.hadoop.hbase.security.visibility;
19  
20  import java.io.IOException;
21  import java.util.Map;
22  
23  import org.apache.hadoop.hbase.classification.InterfaceAudience;
24  import org.apache.hadoop.hbase.Cell;
25  import org.apache.hadoop.hbase.CellUtil;
26  import org.apache.hadoop.hbase.filter.FilterBase;
27  import org.apache.hadoop.hbase.util.ByteRange;
28  import org.apache.hadoop.hbase.util.SimpleMutableByteRange;
29  
30  /**
31   * This Filter checks the visibility expression with each KV against visibility labels associated
32   * with the scan. Based on the check the KV is included in the scan result or gets filtered out.
33   */
34  @InterfaceAudience.Private
35  class VisibilityLabelFilter extends FilterBase {
36  
37    private final VisibilityExpEvaluator expEvaluator;
38    private final Map<ByteRange, Integer> cfVsMaxVersions;
39    private final ByteRange curFamily;
40    private final ByteRange curQualifier;
41    private int curFamilyMaxVersions;
42    private int curQualMetVersions;
43  
44    public VisibilityLabelFilter(VisibilityExpEvaluator expEvaluator,
45        Map<ByteRange, Integer> cfVsMaxVersions) {
46      this.expEvaluator = expEvaluator;
47      this.cfVsMaxVersions = cfVsMaxVersions;
48      this.curFamily = new SimpleMutableByteRange();
49      this.curQualifier = new SimpleMutableByteRange();
50    }
51  
52    @Override
53    public boolean filterRowKey(Cell cell) throws IOException {
54      // Impl in FilterBase might do unnecessary copy for Off heap backed Cells.
55      return false;
56    }
57  
58    @Override
59    public ReturnCode filterKeyValue(Cell cell) throws IOException {
60      if (curFamily.getBytes() == null
61          || !(CellUtil.matchingFamily(cell, curFamily.getBytes(), curFamily.getOffset(),
62              curFamily.getLength()))) {
63        curFamily.set(cell.getFamilyArray(), cell.getFamilyOffset(), cell.getFamilyLength());
64        // For this family, all the columns can have max of curFamilyMaxVersions versions. No need to
65        // consider the older versions for visibility label check.
66        // Ideally this should have been done at a lower layer by HBase (?)
67        curFamilyMaxVersions = cfVsMaxVersions.get(curFamily);
68        // Family is changed. Just unset curQualifier.
69        curQualifier.unset();
70      }
71      if (curQualifier.getBytes() == null
72          || !(CellUtil.matchingQualifier(cell, curQualifier.getBytes(), curQualifier.getOffset(),
73              curQualifier.getLength()))) {
74        curQualifier.set(cell.getQualifierArray(), cell.getQualifierOffset(),
75            cell.getQualifierLength());
76        curQualMetVersions = 0;
77      }
78      curQualMetVersions++;
79      if (curQualMetVersions > curFamilyMaxVersions) {
80        return ReturnCode.SKIP;
81      }
82  
83      return this.expEvaluator.evaluate(cell) ? ReturnCode.INCLUDE : ReturnCode.SKIP;
84    }
85  
86    @Override
87    public void reset() throws IOException {
88      this.curFamily.unset();
89      this.curQualifier.unset();
90      this.curFamilyMaxVersions = 0;
91      this.curQualMetVersions = 0;
92    }
93  }