blob: 450997991d3468b04ce620e71c97352d54e64139 [file] [log] [blame]
/*
* 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.sentry.policy.sqoop;
import static org.apache.sentry.core.common.utils.SentryConstants.AUTHORIZABLE_SPLITTER;
import java.util.List;
import org.apache.sentry.core.common.Model;
import org.apache.sentry.core.model.sqoop.SqoopActionConstant;
import org.apache.sentry.policy.common.Privilege;
import org.apache.sentry.policy.common.PrivilegeFactory;
import org.apache.sentry.core.common.utils.KeyValue;
import com.google.common.base.Preconditions;
import com.google.common.base.Strings;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
// todo: SqoopWildcardPrivilege is replaced by CommonPrivilege, it should be removed
public class SqoopWildcardPrivilege implements Privilege {
public static class Factory implements PrivilegeFactory {
@Override
public Privilege createPrivilege(String permission) {
return new SqoopWildcardPrivilege(permission);
}
}
private final ImmutableList<KeyValue> parts;
public SqoopWildcardPrivilege(String permission) {
if (Strings.isNullOrEmpty(permission)) {
throw new IllegalArgumentException("permission string cannot be null or empty.");
}
List<KeyValue>parts = Lists.newArrayList();
for (String authorizable : AUTHORIZABLE_SPLITTER.trimResults().split(permission.trim())) {
if (authorizable.isEmpty()) {
throw new IllegalArgumentException("Privilege '" + permission + "' has an empty section");
}
parts.add(new KeyValue(authorizable));
}
if (parts.isEmpty()) {
throw new AssertionError("Should never occur: " + permission);
}
this.parts = ImmutableList.copyOf(parts);
}
@Override
public boolean implies(Privilege p, Model model) {
if (!(p instanceof SqoopWildcardPrivilege)) {
return false;
}
SqoopWildcardPrivilege wp = (SqoopWildcardPrivilege)p;
List<KeyValue> otherParts = wp.parts;
if(equals(wp)) {
return true;
}
int index = 0;
for (KeyValue otherPart : otherParts) {
// If this privilege has less parts than the other privilege, everything
// after the number of parts contained
// in this privilege is automatically implied, so return true
if (parts.size() - 1 < index) {
return true;
} else {
KeyValue part = parts.get(index);
// Support for action inheritance from parent to child
if (part.getKey().equalsIgnoreCase(SqoopActionConstant.NAME)
&& !(otherPart.getKey().equalsIgnoreCase(SqoopActionConstant.NAME))) {
continue;
}
// are the keys even equal
if(!part.getKey().equalsIgnoreCase(otherPart.getKey())) {
return false;
}
if (!impliesKeyValue(part, otherPart)) {
return false;
}
index++;
}
}
// If this privilege has more parts than
// the other parts, only imply it if
// all of the other parts are "*" or "ALL"
for (; index < parts.size(); index++) {
KeyValue part = parts.get(index);
if (!part.getValue().equals(SqoopActionConstant.ALL)) {
return false;
}
}
return true;
}
private boolean impliesKeyValue(KeyValue policyPart, KeyValue requestPart) {
Preconditions.checkState(policyPart.getKey().equalsIgnoreCase(requestPart.getKey()),
"Please report, this method should not be called with two different keys");
if(policyPart.getValue().equalsIgnoreCase(SqoopActionConstant.ALL) ||
policyPart.getValue().equalsIgnoreCase(SqoopActionConstant.ALL_NAME) ||
policyPart.equals(requestPart)) {
return true;
} else if (!SqoopActionConstant.NAME.equalsIgnoreCase(policyPart.getKey())
&& SqoopActionConstant.ALL.equalsIgnoreCase(requestPart.getValue())) {
/* privilege request is to match with any object of given type */
return true;
}
return false;
}
}