/** * Copyright (c) 2008-2011 Sonatype, Inc. * All rights reserved. Includes the third-party code listed at http://www.sonatype.com/products/nexus/attributions. * * This program is free software: you can redistribute it and/or modify it only under the terms of the GNU Affero General * Public License Version 3 as published by the Free Software Foundation. * * This program 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 Affero General Public License Version 3 * for more details. * * You should have received a copy of the GNU Affero General Public License Version 3 along with this program. If not, see * http://www.gnu.org/licenses. * * Sonatype Nexus (TM) Open Source Version is available from Sonatype, Inc. Sonatype and Sonatype Nexus are trademarks of * Sonatype, Inc. Apache Maven is a trademark of the Apache Foundation. M2Eclipse is a trademark of the Eclipse Foundation. * All other trademarks are the property of their respective owners. */ package org.sonatype.nexus.security.filter.authz; import java.io.IOException; import java.util.Date; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.servlet.http.HttpServletRequest; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.shiro.subject.Subject; import org.apache.shiro.web.filter.authz.HttpMethodPermissionFilter; import org.sonatype.nexus.Nexus; import org.sonatype.nexus.configuration.application.NexusConfiguration; import org.sonatype.nexus.feeds.AuthcAuthzEvent; import org.sonatype.nexus.feeds.FeedRecorder; import org.sonatype.nexus.proxy.access.AccessManager; import org.sonatype.nexus.rest.RemoteIPFinder; import org.sonatype.nexus.security.filter.NexusJSecurityFilter; import org.sonatype.nexus.web.NexusBooterListener; /** * A filter that maps the action from the HTTP Verb. * * @author cstamas */ public class FailureLoggingHttpMethodPermissionFilter extends HttpMethodPermissionFilter { private final Log logger = LogFactory.getLog( this.getClass() ); private AuthcAuthzEvent currentAuthzEvt; protected Log getLogger() { return logger; } @Override protected boolean onAccessDenied( ServletRequest request, ServletResponse response ) throws IOException { recordAuthzFailureEvent( request, response ); request.setAttribute( NexusJSecurityFilter.REQUEST_IS_AUTHZ_REJECTED, Boolean.TRUE ); return false; } private void recordAuthzFailureEvent( ServletRequest request, ServletResponse response ) { Subject subject = getSubject( request, response ); if ( getNexusConfiguration().getAnonymousUsername().equals( subject.getPrincipal() ) ) { return; } String action = getHttpMethodAction( request ); String method = ( (HttpServletRequest) request ).getMethod(); String msg = "Unable to authorize user [" + subject.getPrincipal() + "] for " + action + "(HTTP method \"" + method + "\") to " + ( (HttpServletRequest) request ).getRequestURI() + " from IP Address " + RemoteIPFinder.findIP( (HttpServletRequest) request ); if ( isSimilarEvent( msg ) ) { return; } getLogger().info( msg ); AuthcAuthzEvent authzEvt = new AuthcAuthzEvent( new Date(), FeedRecorder.SYSTEM_AUTHZ, msg ); if ( HttpServletRequest.class.isAssignableFrom( request.getClass() ) ) { String ip = RemoteIPFinder.findIP( (HttpServletRequest) request ); if ( ip != null ) { authzEvt.getEventContext().put( AccessManager.REQUEST_REMOTE_ADDRESS, ip ); } } Nexus nexus = getNexus( request ); if ( nexus != null ) { try { nexus.addAuthcAuthzEvent( authzEvt ); } catch ( Exception e ) { // just neglect it, it should not disturb actual authz operation } } currentAuthzEvt = authzEvt; } private boolean isSimilarEvent( String msg ) { if ( currentAuthzEvt == null ) { return false; } if ( currentAuthzEvt.getMessage().equals( msg ) && ( System.currentTimeMillis() - currentAuthzEvt.getEventDate().getTime() < 2000L ) ) { return true; } return false; } protected Nexus getNexus( ServletRequest request ) { Nexus nexus = (Nexus) request.getAttribute( Nexus.class.getName() ); if ( nexus == null ) { nexus = NexusBooterListener.getNexus(); } return nexus; } protected NexusConfiguration getNexusConfiguration() { return (NexusConfiguration) getAttribute( NexusConfiguration.class.getName() ); } protected Object getAttribute( String key ) { return this.getFilterConfig().getServletContext().getAttribute( key ); } }