View Javadoc

1   //
2   //  ========================================================================
3   //  Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
4   //  ------------------------------------------------------------------------
5   //  All rights reserved. This program and the accompanying materials
6   //  are made available under the terms of the Eclipse Public License v1.0
7   //  and Apache License v2.0 which accompanies this distribution.
8   //
9   //      The Eclipse Public License is available at
10  //      http://www.eclipse.org/legal/epl-v10.html
11  //
12  //      The Apache License v2.0 is available at
13  //      http://www.opensource.org/licenses/apache2.0.php
14  //
15  //  You may elect to redistribute this code under either of these licenses.
16  //  ========================================================================
17  //
18  
19  package org.eclipse.jetty.security.authentication;
20  
21  import java.io.IOException;
22  
23  import javax.servlet.ServletRequest;
24  import javax.servlet.ServletResponse;
25  import javax.servlet.http.HttpServletRequest;
26  import javax.servlet.http.HttpServletResponse;
27  
28  import org.eclipse.jetty.http.HttpHeaders;
29  import org.eclipse.jetty.security.ServerAuthException;
30  import org.eclipse.jetty.security.UserAuthentication;
31  import org.eclipse.jetty.server.Authentication;
32  import org.eclipse.jetty.server.Authentication.User;
33  import org.eclipse.jetty.server.UserIdentity;
34  import org.eclipse.jetty.util.log.Log;
35  import org.eclipse.jetty.util.log.Logger;
36  import org.eclipse.jetty.util.security.Constraint;
37  
38  public class SpnegoAuthenticator extends LoginAuthenticator
39  {
40      private static final Logger LOG = Log.getLogger(SpnegoAuthenticator.class);
41      
42      private String _authMethod = Constraint.__SPNEGO_AUTH;
43      
44      public SpnegoAuthenticator()
45      {
46      	
47      }
48      
49      /**
50       * Allow for a custom authMethod value to be set for instances where SPENGO may not be appropriate
51       * @param authMethod
52       */
53      public SpnegoAuthenticator( String authMethod )
54      {
55      	_authMethod = authMethod;
56      }
57      
58      public String getAuthMethod()
59      {
60          return _authMethod;
61      }
62  
63      public Authentication validateRequest(ServletRequest request, ServletResponse response, boolean mandatory) throws ServerAuthException
64      {        
65          HttpServletRequest req = (HttpServletRequest)request;
66          HttpServletResponse res = (HttpServletResponse)response;
67          
68          String header = req.getHeader(HttpHeaders.AUTHORIZATION);
69  
70          if (!mandatory)
71          {
72              return new DeferredAuthentication(this);
73          }
74          
75          // check to see if we have authorization headers required to continue
76          if ( header == null )
77          {
78              try
79              {
80              	 if (DeferredAuthentication.isDeferred(res))
81              	 {
82                       return Authentication.UNAUTHENTICATED;
83              	 }
84              	 
85                  LOG.debug("SpengoAuthenticator: sending challenge");
86                  res.setHeader(HttpHeaders.WWW_AUTHENTICATE, HttpHeaders.NEGOTIATE);
87                  res.sendError(HttpServletResponse.SC_UNAUTHORIZED);
88                  return Authentication.SEND_CONTINUE;
89              } 
90              catch (IOException ioe)
91              {
92                  throw new ServerAuthException(ioe);
93              }       
94          }
95          else if (header != null && header.startsWith(HttpHeaders.NEGOTIATE))
96          {
97              String spnegoToken = header.substring(10);
98              
99              UserIdentity user = _loginService.login(null,spnegoToken);
100             
101             if ( user != null )
102             {
103                 return new UserAuthentication(getAuthMethod(),user);
104             }
105         }
106         
107         return Authentication.UNAUTHENTICATED;
108     }
109 
110     public boolean secureResponse(ServletRequest request, ServletResponse response, boolean mandatory, User validatedUser) throws ServerAuthException
111     {
112         return true;
113     }
114 
115 }