/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2006-2011 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2011 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(R) is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * OpenNMS(R) is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenNMS(R). If not, see: * http://www.gnu.org/licenses/ * * For more information contact: * OpenNMS(R) Licensing <license@opennms.org> * http://www.opennms.org/ * http://www.opennms.com/ *******************************************************************************/ package org.opennms.netmgt.vulnscand; import java.util.ArrayList; import java.util.List; import java.util.concurrent.ExecutorService; import org.opennms.core.utils.ThreadCategory; import org.opennms.netmgt.EventConstants; import org.opennms.netmgt.eventd.EventIpcManagerFactory; import org.opennms.netmgt.model.events.EventListener; import org.opennms.netmgt.xml.event.Event; /** * * @author <a href="mailto:seth@opennms.org">Seth Leger</a> * @author <a href="mailto:weave@oculan.com">Brian Weaver</a> * @author <a href="http://www.opennms.org/">OpenNMS</a> */ final class BroadcastEventProcessor implements EventListener { /** * SQL query to retrieve node ID of a particular interface address */ @SuppressWarnings("unused") private static String SQL_RETRIEVE_NODEID = "select nodeid from ipinterface where ipaddr=? and isManaged!='D'"; /** * The location where suspectInterface events are enqueued for processing. */ @SuppressWarnings("unused") private final ExecutorService m_suspectExecutor; /** * The Vulnscand rescan scheduler */ @SuppressWarnings("unused") private final Object m_scheduler; /** * Create message selector to set to the subscription */ private void installMessageSelector() { // Create the message selector for the UEIs this service is interested in List<String> ueiList = new ArrayList<String>(); // specificVulnerabilityScan ueiList.add(EventConstants.SPECIFIC_VULN_SCAN_EVENT_UEI); EventIpcManagerFactory.getIpcManager().addEventListener(this, ueiList); } /** * This constructor is called to initialize the event receiver. A * connection to the message server is opened and this instance is setup as * the endpoint for broadcast events. When a new event arrives it is * processed and the appropriate action is taken. * * @param suspectExecutor * The queue where new Runnable objects are enqueued for * running.. * @param scheduler * Rescan scheduler. * */ BroadcastEventProcessor(ExecutorService suspectExecutor, Object scheduler) { // Suspect queue m_suspectExecutor = suspectExecutor; // Scheduler m_scheduler = scheduler; installMessageSelector(); } /** * </p> * Closes the current connections to the Java Message Queue if they are * still active. This call may be invoked more than once safely and may be * invoked during object finalization. * </p> * */ synchronized void close() { EventIpcManagerFactory.getIpcManager().removeEventListener(this); } /** * This method may be invoked by the garbage collection. Once invoked it * ensures that the <code>close</code> method is called <em>at least</em> * once during the cycle of this object. * * @throws java.lang.Throwable if any. */ protected void finalize() throws Throwable { close(); // ensure it's closed } /** * {@inheritDoc} * * This method is invoked by the JMS topic session when a new event is * available for processing. Currently only text based messages are * processed by this callback. Each message is examined for its Universal * Event Identifier and the appropriate action is taking based on each UEI. */ public void onEvent(Event event) { ThreadCategory log = ThreadCategory.getInstance(getClass()); String eventUei = event.getUei(); if (eventUei == null) return; if (log.isDebugEnabled()) log.debug("Received event: " + eventUei); if (eventUei.equals(EventConstants.SPECIFIC_VULN_SCAN_EVENT_UEI)) { // ADD RESCAN CAPABILITIES HERE // NEED TO GET THE SCAN LEVEL, // LAST SCAN DATE FROM THE DATABASE, // AND THE RESCAN INTERVAL /* * // new poll event try { if (log.isDebugEnabled()) * log.debug("onMessage: Adding interface to suspectInterface Q: " + * event.getInterface()); m_suspectQ.add(new NessusScan(new * NessusScanConfiguration(InetAddressUtils.addr(event.getInterface()), * int newScanLevel, Date newLastScan, long newInterval))); } catch * (java.net.UnknownHostException ex) { log.error("onMessage: Could * not schedule invalid interface: \"" + event.getInterface() + * "\"", ex); } catch(Throwable ex) { log.error("onMessage: Failed * to add interface \"" + event.getInterface() + "\" to suspect * queue", ex); } */ } else { log.error("Cannot process event with UEI: " + event.getUei()); } } // end onEvent() /** * <p>getName</p> * * @return a {@link java.lang.String} object. */ public String getName() { return "Vulnscand:BroadcastEventProcessor"; } } // end class