2 * The Shibboleth License, Version 1.
4 * University Corporation for Advanced Internet Development, Inc.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
11 * Redistributions of source code must retain the above copyright notice, this
12 * list of conditions and the following disclaimer.
14 * Redistributions in binary form must reproduce the above copyright notice,
15 * this list of conditions and the following disclaimer in the documentation
16 * and/or other materials provided with the distribution, if any, must include
17 * the following acknowledgment: "This product includes software developed by
18 * the University Corporation for Advanced Internet Development
19 * <http://www.ucaid.edu>Internet2 Project. Alternately, this acknowledegement
20 * may appear in the software itself, if and wherever such third-party
21 * acknowledgments normally appear.
23 * Neither the name of Shibboleth nor the names of its contributors, nor
24 * Internet2, nor the University Corporation for Advanced Internet Development,
25 * Inc., nor UCAID may be used to endorse or promote products derived from this
26 * software without specific prior written permission. For written permission,
27 * please contact shibboleth@shibboleth.org
29 * Products derived from this software may not be called Shibboleth, Internet2,
30 * UCAID, or the University Corporation for Advanced Internet Development, nor
31 * may Shibboleth appear in their name, without prior written permission of the
32 * University Corporation for Advanced Internet Development.
35 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
36 * AND WITH ALL FAULTS. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
38 * PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED AND THE ENTIRE RISK
39 * OF SATISFACTORY QUALITY, PERFORMANCE, ACCURACY, AND EFFORT IS WITH LICENSEE.
40 * IN NO EVENT SHALL THE COPYRIGHT OWNER, CONTRIBUTORS OR THE UNIVERSITY
41 * CORPORATION FOR ADVANCED INTERNET DEVELOPMENT, INC. BE LIABLE FOR ANY DIRECT,
42 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
43 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
44 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
45 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
46 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
47 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
50 package edu.internet2.middleware.shibboleth.hs;
52 import java.io.ByteArrayOutputStream;
53 import java.io.IOException;
54 import java.io.PrintStream;
55 import java.security.KeyStore;
56 import java.security.KeyStoreException;
57 import java.security.NoSuchAlgorithmException;
58 import java.security.PrivateKey;
59 import java.security.UnrecoverableKeyException;
60 import java.security.cert.Certificate;
61 import java.security.cert.CertificateException;
62 import java.util.Arrays;
63 import java.util.Collections;
64 import java.util.Date;
65 import java.util.Properties;
67 import javax.servlet.RequestDispatcher;
68 import javax.servlet.ServletException;
69 import javax.servlet.UnavailableException;
70 import javax.servlet.http.HttpServlet;
71 import javax.servlet.http.HttpServletRequest;
72 import javax.servlet.http.HttpServletResponse;
74 import org.apache.log4j.Logger;
75 import org.apache.log4j.MDC;
76 import org.doomdark.uuid.UUIDGenerator;
77 import org.opensaml.QName;
78 import org.opensaml.SAMLAuthorityBinding;
79 import org.opensaml.SAMLBinding;
80 import org.opensaml.SAMLException;
81 import org.opensaml.SAMLResponse;
82 import sun.misc.BASE64Decoder;
84 import edu.internet2.middleware.shibboleth.common.AuthNPrincipal;
85 import edu.internet2.middleware.shibboleth.common.ShibPOSTProfile;
86 import edu.internet2.middleware.shibboleth.common.ShibPOSTProfileFactory;
87 import edu.internet2.middleware.shibboleth.common.ShibResource;
89 public class HandleServlet extends HttpServlet {
91 protected Properties configuration;
92 protected HandleRepository handleRepository;
93 protected ShibPOSTProfile postProfile;
94 private static Logger log = Logger.getLogger(HandleServlet.class.getName());
95 private Certificate[] certificates;
96 private PrivateKey privateKey;
97 protected Properties loadConfiguration() throws HSConfigurationException {
100 Properties defaultProps = new Properties();
101 defaultProps.setProperty(
102 "edu.internet2.middleware.shibboleth.hs.HandleRepository.implementation",
103 "edu.internet2.middleware.shibboleth.hs.provider.MemoryHandleRepository");
104 defaultProps.setProperty("edu.internet2.middleware.shibboleth.hs.BaseHandleRepository.handleTTL", "1800000");
105 defaultProps.setProperty(
106 "edu.internet2.middleware.shibboleth.hs.provider.CryptoHandleRepository.keyStorePath",
108 defaultProps.setProperty("edu.internet2.middleware.shibboleth.audiences", "urn:mace:InCommon:pilot:2003");
111 Properties properties = new Properties(defaultProps);
112 String propertiesFileLocation = getInitParameter("OriginPropertiesFile");
113 if (propertiesFileLocation == null) {
114 propertiesFileLocation = "/conf/origin.properties";
117 log.debug("Loading Configuration from (" + propertiesFileLocation + ").");
118 properties.load(new ShibResource(propertiesFileLocation, this.getClass()).getInputStream());
120 //Make sure we have all required parameters
121 StringBuffer missingProperties = new StringBuffer();
122 String[] requiredProperties =
124 "edu.internet2.middleware.shibboleth.hs.HandleServlet.issuer",
125 "edu.internet2.middleware.shibboleth.hs.HandleServlet.authenticationDomain",
126 "edu.internet2.middleware.shibboleth.hs.HandleServlet.AAUrl",
127 "edu.internet2.middleware.shibboleth.hs.HandleServlet.keyStorePath",
128 "edu.internet2.middleware.shibboleth.hs.HandleServlet.keyStorePassword",
129 "edu.internet2.middleware.shibboleth.hs.HandleServlet.keyStoreKeyAlias",
130 "edu.internet2.middleware.shibboleth.hs.HandleServlet.keyStoreKeyPassword",
131 "edu.internet2.middleware.shibboleth.audiences" };
133 for (int i = 0; i < requiredProperties.length; i++) {
134 if (properties.getProperty(requiredProperties[i]) == null) {
135 missingProperties.append("\"");
136 missingProperties.append(requiredProperties[i]);
137 missingProperties.append("\" ");
140 if (missingProperties.length() > 0) {
142 "Missing configuration data. The following configuration properites have not been set: "
143 + missingProperties.toString());
144 throw new HSConfigurationException("Missing configuration data.");
147 } catch (IOException e) {
148 log.error("Could not load HS servlet configuration: " + e);
149 throw new HSConfigurationException("Could not load HS servlet configuration.");
152 if (log.isDebugEnabled()) {
153 ByteArrayOutputStream debugStream = new ByteArrayOutputStream();
154 PrintStream debugPrinter = new PrintStream(debugStream);
155 properties.list(debugPrinter);
157 "Runtime configuration parameters: " + System.getProperty("line.separator") + debugStream.toString());
160 } catch (IOException e) {
161 log.error("Encountered a problem cleaning up resources: could not close debug stream.");
168 public void init() throws ServletException {
170 MDC.put("serviceId", "[HS] Core");
172 log.info("Initializing Handle Service.");
173 configuration = loadConfiguration();
175 edu.internet2.middleware.eduPerson.Init.init();
180 ShibPOSTProfileFactory.getInstance(
182 configuration.getProperty("edu.internet2.middleware.shibboleth.audiences").replaceAll(
186 configuration.getProperty("edu.internet2.middleware.shibboleth.hs.HandleServlet.issuer"));
188 handleRepository = HandleRepositoryFactory.getInstance(configuration);
189 log.info("Handle Service initialization complete.");
191 } catch (SAMLException ex) {
192 log.fatal("Error initializing SAML libraries: " + ex);
193 throw new UnavailableException("Handle Service failed to initialize.");
194 } catch (HSConfigurationException ex) {
195 log.fatal("Handle Service runtime configuration error. Please fix and re-initialize. Cause: " + ex);
196 throw new UnavailableException("Handle Service failed to initialize.");
197 } catch (HandleRepositoryException ex) {
198 log.fatal("Unable to load Handle Repository: " + ex);
199 throw new UnavailableException("Handle Service failed to initialize.");
203 protected void initPKI() throws HSConfigurationException {
205 KeyStore keyStore = KeyStore.getInstance("JKS");
209 configuration.getProperty("edu.internet2.middleware.shibboleth.hs.HandleServlet.keyStorePath"),
213 .getProperty("edu.internet2.middleware.shibboleth.hs.HandleServlet.keyStorePassword")
217 (PrivateKey) keyStore.getKey(
218 configuration.getProperty("edu.internet2.middleware.shibboleth.hs.HandleServlet.keyStoreKeyAlias"),
220 .getProperty("edu.internet2.middleware.shibboleth.hs.HandleServlet.keyStoreKeyPassword")
223 if (configuration.getProperty("edu.internet2.middleware.shibboleth.hs.HandleServlet.certAlias") != null) {
225 keyStore.getCertificateChain(
226 configuration.getProperty("edu.internet2.middleware.shibboleth.hs.HandleServlet.certAlias"));
229 keyStore.getCertificateChain(
230 configuration.getProperty(
231 "edu.internet2.middleware.shibboleth.hs.HandleServlet.keyStoreKeyAlias"));
233 } catch (KeyStoreException e) {
234 throw new HSConfigurationException("An error occurred while accessing the java keystore: " + e);
235 } catch (NoSuchAlgorithmException e) {
236 throw new HSConfigurationException("Appropriate JCE provider not found in the java environment: " + e);
237 } catch (CertificateException e) {
238 throw new HSConfigurationException(
239 "The java keystore contained a certificate that could not be loaded: " + e);
240 } catch (IOException e) {
241 throw new HSConfigurationException("An error occurred while reading the java keystore: " + e);
242 } catch (UnrecoverableKeyException e) {
243 throw new HSConfigurationException(
244 "An error occurred while attempting to load the key from the java keystore: " + e);
247 public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
249 log.debug("Recieved a request.");
250 MDC.put("serviceId", "[HS] " + UUIDGenerator.getInstance().generateRandomBasedUUID());
251 MDC.put("remoteAddr", req.getRemoteAddr());
252 log.info("Handling request.");
255 checkRequestParams(req);
257 req.setAttribute("shire", req.getParameter("shire"));
258 req.setAttribute("target", req.getParameter("target"));
260 String handle = handleRepository.getHandle(new AuthNPrincipal(req.getRemoteUser()));
261 log.info("Issued Handle (" + handle + ") to (" + req.getRemoteUser() + ")");
263 byte[] buf = generateAssertion(handle, req.getParameter("shire"), req.getRemoteAddr(), req.getAuthType());
265 createForm(req, res, buf);
267 } catch (HandleRepositoryException ex) {
269 handleError(req, res, ex);
271 } catch (InvalidClientDataException ex) {
273 handleError(req, res, ex);
275 } catch (SAMLException ex) {
277 handleError(req, res, ex);
283 protected byte[] generateAssertion(String handle, String shireURL, String clientAddress, String authType)
284 throws SAMLException, IOException {
286 SAMLAuthorityBinding binding =
287 new SAMLAuthorityBinding(
288 SAMLBinding.SAML_SOAP_HTTPS,
289 configuration.getProperty("edu.internet2.middleware.shibboleth.hs.HandleServlet.AAUrl"),
290 new QName(org.opensaml.XML.SAMLP_NS, "AttributeQuery"));
296 configuration.getProperty("edu.internet2.middleware.shibboleth.hs.HandleServlet.authenticationDomain"),
299 new Date(System.currentTimeMillis()),
300 Collections.singleton(binding),
302 Arrays.asList(certificates),
309 protected void createForm(HttpServletRequest req, HttpServletResponse res, byte[] buf)
310 throws IOException, ServletException {
312 //Hardcoded to ASCII to ensure Base64 encoding compatibility
313 req.setAttribute("assertion", new String(buf, "ASCII"));
315 if (log.isDebugEnabled()) {
318 "Dumping generated SAML Response:"
319 + System.getProperty("line.separator")
320 + new String(new BASE64Decoder().decodeBuffer(new String(buf, "ASCII")), "UTF8"));
321 } catch (IOException e) {
322 log.error("Encountered an error while decoding SAMLReponse for logging purposes.");
326 RequestDispatcher rd = req.getRequestDispatcher("/hs.jsp");
327 rd.forward(req, res);
330 protected void handleError(HttpServletRequest req, HttpServletResponse res, Exception e)
331 throws ServletException, IOException {
333 req.setAttribute("errorText", e.toString());
334 req.setAttribute("requestURL", req.getRequestURI().toString());
335 RequestDispatcher rd = req.getRequestDispatcher("/hserror.jsp");
337 rd.forward(req, res);
341 protected void checkRequestParams(HttpServletRequest req) throws InvalidClientDataException {
343 if (req.getParameter("target") == null || req.getParameter("target").equals("")) {
344 throw new InvalidClientDataException("Invalid data from SHIRE: no target URL received.");
346 if ((req.getParameter("shire") == null) || (req.getParameter("shire").equals(""))) {
347 throw new InvalidClientDataException("Invalid data from SHIRE: No acceptance URL received.");
349 if ((req.getRemoteUser() == null) || (req.getRemoteUser().equals(""))) {
350 throw new InvalidClientDataException("Unable to authenticate remote user");
352 if ((req.getRemoteAddr() == null) || (req.getRemoteAddr().equals(""))) {
353 throw new InvalidClientDataException("Unable to obtain client address.");
357 class InvalidClientDataException extends Exception {
358 public InvalidClientDataException(String message) {