/* * 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.audit.queue; import java.util.ArrayList; import java.util.Collection; import java.util.Date; import java.util.HashMap; import java.util.Map; import java.util.Properties; import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.TimeUnit; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.log4j.MDC; import org.apache.ranger.audit.model.AuditEventBase; import org.apache.ranger.audit.provider.AuditHandler; import org.apache.ranger.audit.provider.MiscUtil; /** * This is a non-blocking queue with no limit on capacity. */ public class AuditSummaryQueue extends AuditQueue implements Runnable { private static final Log logger = LogFactory .getLog(AuditSummaryQueue.class); public static final String PROP_SUMMARY_INTERVAL = "summary.interval.ms"; LinkedBlockingQueue<AuditEventBase> queue = new LinkedBlockingQueue<AuditEventBase>(); Thread consumerThread = null; static int threadCount = 0; static final String DEFAULT_NAME = "summary"; private static final int MAX_DRAIN = 100000; private int maxSummaryIntervalMs = 5000; HashMap<String, AuditSummary> summaryMap = new HashMap<String, AuditSummary>(); public AuditSummaryQueue(AuditHandler consumer) { super(consumer); setName(DEFAULT_NAME); } @Override public void init(Properties props, String propPrefix) { super.init(props, propPrefix); maxSummaryIntervalMs = MiscUtil.getIntProperty(props, propPrefix + "." + PROP_SUMMARY_INTERVAL, maxSummaryIntervalMs); logger.info("maxSummaryInterval=" + maxSummaryIntervalMs + ", name=" + getName()); } /* * (non-Javadoc) * * @see * org.apache.ranger.audit.provider.AuditProvider#log(org.apache.ranger. * audit.model.AuditEventBase) */ @Override public boolean log(AuditEventBase event) { // Add to the queue and return ASAP if (queue.size() >= getMaxQueueSize()) { return false; } queue.add(event); return true; } @Override public boolean log(Collection<AuditEventBase> events) { boolean ret = true; for (AuditEventBase event : events) { ret = log(event); if (!ret) { break; } } return ret; } /* * (non-Javadoc) * * @see org.apache.ranger.audit.provider.AuditProvider#start() */ @Override public void start() { if (consumer != null) { consumer.start(); } consumerThread = new Thread(this, this.getClass().getName() + (threadCount++)); consumerThread.setDaemon(true); consumerThread.start(); } /* * (non-Javadoc) * * @see org.apache.ranger.audit.provider.AuditProvider#stop() */ @Override public void stop() { logger.info("Stop called. name=" + getName()); setDrain(true); try { if (consumerThread != null) { logger.info("Interrupting consumerThread. name=" + getName() + ", consumer=" + (consumer == null ? null : consumer.getName())); consumerThread.interrupt(); } } catch (Throwable t) { // ignore any exception } consumerThread = null; } /* * (non-Javadoc) * * @see java.lang.Runnable#run() */ @Override public void run() { try { //This is done to clear the MDC context to avoid issue with Ranger Auditing for Knox MDC.clear(); runLogAudit(); } catch (Throwable t) { logger.fatal("Exited thread without abnormaly. queue=" + getName(), t); } } public void runLogAudit() { long lastDispatchTime = System.currentTimeMillis(); while (true) { // Time to next dispatch long nextDispatchDuration = lastDispatchTime - System.currentTimeMillis() + maxSummaryIntervalMs; Collection<AuditEventBase> eventList = new ArrayList<AuditEventBase>(); try { AuditEventBase event = null; if (!isDrain() && nextDispatchDuration > 0) { event = queue.poll(nextDispatchDuration, TimeUnit.MILLISECONDS); } else { // For poll() is non blocking event = queue.poll(); } if (event != null) { eventList.add(event); queue.drainTo(eventList, MAX_DRAIN - 1); } else { // poll returned due to timeout, so reseting clock nextDispatchDuration = lastDispatchTime - System.currentTimeMillis() + maxSummaryIntervalMs; lastDispatchTime = System.currentTimeMillis(); } } catch (InterruptedException e) { logger.info("Caught exception in consumer thread. Shutdown might be in progress"); } catch (Throwable t) { logger.error("Caught error during processing request.", t); } for (AuditEventBase event : eventList) { // Add to hash map String key = event.getEventKey(); AuditSummary auditSummary = summaryMap.get(key); if (auditSummary == null) { auditSummary = new AuditSummary(); auditSummary.event = event; auditSummary.startTime = event.getEventTime(); auditSummary.endTime = event.getEventTime(); auditSummary.count = 1; summaryMap.put(key, auditSummary); } else { auditSummary.endTime = event.getEventTime(); auditSummary.count++; } } if (isDrain() || nextDispatchDuration <= 0) { // Reset time just before sending the logs lastDispatchTime = System.currentTimeMillis(); for (Map.Entry<String, AuditSummary> entry : summaryMap .entrySet()) { AuditSummary auditSummary = entry.getValue(); auditSummary.event.setEventCount(auditSummary.count); long timeDiff = auditSummary.endTime.getTime() - auditSummary.startTime.getTime(); timeDiff = timeDiff > 0 ? timeDiff : 1; auditSummary.event.setEventDurationMS(timeDiff); boolean ret = consumer.log(auditSummary.event); if (!ret) { // We need to drop this event logFailedEvent(auditSummary.event); } } summaryMap.clear(); } if (isDrain()) { if (summaryMap.isEmpty() && queue.isEmpty()) { break; } if (isDrainMaxTimeElapsed()) { logger.warn("Exiting polling loop because max time allowed reached. name=" + getName() + ", waited for " + (stopTime - System.currentTimeMillis()) + " ms"); } } } logger.info("Exiting polling loop. name=" + getName()); try { // Call stop on the consumer logger.info("Calling to stop consumer. name=" + getName() + ", consumer.name=" + consumer.getName()); consumer.stop(); } catch (Throwable t) { logger.error("Error while calling stop on consumer.", t); } logger.info("Exiting consumerThread.run() method. name=" + getName()); } class AuditSummary { Date startTime = null; Date endTime = null; int count = 0; AuditEventBase event; } }