blob: 0126a11605e2bd3385071bf3ee2be75da4db4cef [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.ranger.plugin.contextenricher;
import org.apache.commons.lang.StringUtils;
import org.apache.ranger.admin.client.RangerAdminClient;
import org.apache.ranger.authorization.hadoop.config.RangerPluginConfig;
import org.apache.ranger.plugin.policyengine.RangerPluginContext;
import org.apache.ranger.plugin.util.ServiceGdsInfo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.nio.channels.ClosedByInterruptException;
import java.util.Map;
public class RangerAdminGdsInfoRetriever extends RangerGdsInfoRetriever {
private static final Logger LOG = LoggerFactory.getLogger(RangerAdminGdsInfoRetriever.class);
private static final String OPTION_DEDUP_TAGS = "deDupTags";
private static final Boolean OPTION_DEDUP_TAGS_DEFAULT = true;
private RangerAdminClient adminClient;
private boolean deDupTags;
@Override
public void init(Map<String, String> options) {
try {
if (StringUtils.isNotBlank(serviceName) && serviceDef != null && StringUtils.isNotBlank(appId)) {
RangerPluginConfig pluginConfig = super.pluginConfig;
if (pluginConfig == null) {
pluginConfig = new RangerPluginConfig(serviceDef.getName(), serviceName, appId, null, null, null);
}
String deDupTagsVal = options != null ? options.get(OPTION_DEDUP_TAGS) : null;
RangerPluginContext pluginContext = getPluginContext();
RangerAdminClient rangerAdmin = pluginContext.getAdminClient();
this.deDupTags = StringUtils.isNotBlank(deDupTagsVal) ? Boolean.parseBoolean(deDupTagsVal) : OPTION_DEDUP_TAGS_DEFAULT;
this.adminClient = (rangerAdmin != null) ? rangerAdmin : pluginContext.createAdminClient(pluginConfig);
} else {
LOG.error("FATAL: Cannot find service/serviceDef to use for retrieving tags. Will NOT be able to retrieve GdsInfo.");
}
} catch (Exception excp) {
LOG.error("FATAL: Failed to initialize GDS retriever. Will not be able to enforce GDS policies", excp);
}
}
@Override
public ServiceGdsInfo retrieveGdsInfo(long lastKnownVersion, long lastActivationTimeInMillis) throws InterruptedException {
ServiceGdsInfo ret = null;
if (adminClient != null) {
try {
ret = adminClient.getGdsInfoIfUpdated(lastKnownVersion, lastActivationTimeInMillis);
} catch (ClosedByInterruptException excp) {
LOG.error("gdsInfo retriever thread was interrupted while blocked on I/O", excp);
throw new InterruptedException();
} catch (Exception e) {
LOG.error("gdsInfo retriever encountered exception. Returning null gdsInfo", e);
}
}
if (ret != null && deDupTags) {
ret.dedupStrings();
}
return ret;
}
}