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.aa;
52 import java.io.ByteArrayOutputStream;
53 import java.io.IOException;
54 import java.io.PrintStream;
55 import java.net.MalformedURLException;
57 import java.security.Principal;
58 import java.util.Arrays;
59 import java.util.List;
60 import java.util.Properties;
62 import javax.naming.NamingException;
63 import javax.naming.directory.DirContext;
64 import javax.naming.directory.InitialDirContext;
65 import javax.servlet.ServletException;
66 import javax.servlet.UnavailableException;
67 import javax.servlet.http.HttpServlet;
68 import javax.servlet.http.HttpServletRequest;
69 import javax.servlet.http.HttpServletResponse;
71 import org.apache.log4j.Logger;
72 import org.apache.log4j.MDC;
73 import org.opensaml.QName;
74 import org.opensaml.SAMLException;
75 import org.opensaml.SAMLIdentifier;
77 import edu.internet2.middleware.eduPerson.Init;
78 import edu.internet2.middleware.shibboleth.aa.arp.ArpEngine;
79 import edu.internet2.middleware.shibboleth.aa.arp.ArpException;
80 import edu.internet2.middleware.shibboleth.common.AuthNPrincipal;
81 import edu.internet2.middleware.shibboleth.common.ShibResource;
82 import edu.internet2.middleware.shibboleth.hs.HandleRepository;
83 import edu.internet2.middleware.shibboleth.hs.HandleRepositoryException;
84 import edu.internet2.middleware.shibboleth.hs.HandleRepositoryFactory;
85 import edu.internet2.middleware.shibboleth.hs.InvalidHandleException;
88 * Attribute Authority & Release Policy
89 * Handles Initialization and incoming requests to AA
91 * @author Parviz Dousti (dousti@cmu.edu)
92 * @author Walter Hoehn (wassa@columbia.edu)
95 public class AAServlet extends HttpServlet {
97 protected AAResponder responder;
98 protected HandleRepository handleRepository;
99 protected Properties configuration;
100 private static Logger log = Logger.getLogger(AAServlet.class.getName());
102 public void init() throws ServletException {
105 MDC.put("serviceId", "[AA] Core");
106 log.info("Initializing Attribute Authority.");
110 configuration = loadConfiguration();
112 ArpEngine arpEngine = new ArpEngine(configuration);
114 handleRepository = HandleRepositoryFactory.getInstance(configuration);
117 "Using JNDI context ("
118 + configuration.getProperty("java.naming.factory.initial")
119 + ") for attribute retrieval.");
121 DirContext ctx = new InitialDirContext(configuration);
127 configuration.getProperty(
128 "edu.internet2.middleware.shibboleth.aa.AAServlet.authorityName"));
130 log.info("Attribute Authority initialization complete.");
132 } catch (NamingException ne) {
134 "The AA could not be initialized due to a problem with the JNDI context configuration: "
136 throw new UnavailableException("Attribute Authority failed to initialize.");
137 } catch (ArpException ae) {
139 "The AA could not be initialized due to a problem with the ARP Engine configuration: " + ae);
140 throw new UnavailableException("Attribute Authority failed to initialize.");
141 } catch (AAException ae) {
142 log.fatal("The AA could not be initialized: " + ae);
143 throw new UnavailableException("Attribute Authority failed to initialize.");
144 } catch (HandleRepositoryException he) {
146 "The AA could not be initialized due to a problem with the Handle Repository configuration: "
148 throw new UnavailableException("Attribute Authority failed to initialize.");
151 protected Properties loadConfiguration() throws AAException {
154 Properties defaultProps = new Properties();
155 defaultProps.setProperty(
156 "edu.internet2.middleware.shibboleth.aa.arp.provider.FileSystemArpRepository.Path",
158 defaultProps.setProperty(
159 "edu.internet2.middleware.shibboleth.aa.arp.ArpRepository.implementation",
160 "edu.internet2.middleware.shibboleth.aa.arp.provider.FileSystemArpRepository");
161 defaultProps.setProperty("edu.internet2.middleware.shibboleth.aa.AAServlet.ldapUserDnPhrase", "uid=");
162 defaultProps.setProperty(
163 "java.naming.factory.initial",
164 "edu.internet2.middleware.shibboleth.aaLocal.EchoCtxFactory");
165 defaultProps.setProperty(
166 "edu.internet2.middleware.shibboleth.hs.provider.CryptoHandleRepository.keyStorePath",
168 defaultProps.setProperty("edu.internet2.middleware.shibboleth.audiences", "urn:mace:InCommon:pilot:2003");
169 defaultProps.setProperty("edu.internet2.middleware.shibboleth.aa.AAServlet.passThruErrors", "false");
172 Properties properties = new Properties(defaultProps);
173 String propertiesFileLocation = getInitParameter("OriginPropertiesFile");
174 if (propertiesFileLocation == null) {
175 propertiesFileLocation = "/conf/origin.properties";
178 log.debug("Loading Configuration from (" + propertiesFileLocation + ").");
179 properties.load(new ShibResource(propertiesFileLocation, this.getClass()).getInputStream());
181 //Make sure we have all required parameters
182 StringBuffer missingProperties = new StringBuffer();
183 String[] requiredProperties =
185 "edu.internet2.middleware.shibboleth.aa.AAServlet.authorityName",
186 "java.naming.factory.initial",
187 "edu.internet2.middleware.shibboleth.aa.arp.ArpRepository.implementation",
188 "edu.internet2.middleware.shibboleth.audiences" };
190 for (int i = 0; i < requiredProperties.length; i++) {
191 if (properties.getProperty(requiredProperties[i]) == null) {
192 missingProperties.append("\"");
193 missingProperties.append(requiredProperties[i]);
194 missingProperties.append("\" ");
197 if (missingProperties.length() > 0) {
199 "Missing configuration data. The following configuration properites have not been set: "
200 + missingProperties.toString());
201 throw new AAException("Missing configuration data.");
204 } catch (IOException e) {
205 log.error("Could not load AA servlet configuration: " + e);
206 throw new AAException("Could not load AA servlet configuration.");
209 if (log.isDebugEnabled()) {
210 ByteArrayOutputStream debugStream = new ByteArrayOutputStream();
211 PrintStream debugPrinter = new PrintStream(debugStream);
212 properties.list(debugPrinter);
214 "Runtime configuration parameters: " + System.getProperty("line.separator") + debugStream.toString());
217 } catch (IOException e) {
218 log.error("Encountered a problem cleaning up resources: could not close debug stream.");
225 public void doPost(HttpServletRequest req, HttpServletResponse resp)
226 throws ServletException, IOException {
228 log.debug("Recieved a request.");
229 MDC.put("serviceId", "[AA] " + new SAMLIdentifier().toString());
230 MDC.put("remoteAddr", req.getRemoteAddr());
231 log.info("Handling request.");
238 configuration.getProperty(
239 "edu.internet2.middleware.shibboleth.aa.AAServlet.authorityName"),
240 configuration.getProperty("edu.internet2.middleware.shibboleth.audiences").replaceAll(
246 log.info("Attribute Query Handle for this request: (" + saml.getHandle() + ").");
247 Principal principal = null;
248 if (saml.getHandle().equalsIgnoreCase("foo")) {
250 principal = new AuthNPrincipal("test-handle");
252 principal = handleRepository.getPrincipal(saml.getHandle());
257 resource = new URL(saml.getResource());
258 } catch (MalformedURLException mue) {
260 "Request contained an improperly formatted resource identifier. Attempting to "
261 + "handle request without one.");
264 if (saml.getShar() == null) {
265 log.info("Request is from an unauthenticated SHAR.");
267 log.info("Request is from SHAR: (" + saml.getShar() + ").");
272 responder.getReleaseAttributes(
274 configuration.getProperty(
275 "edu.internet2.middleware.shibboleth.aa.AAServlet.ldapUserDnPhrase"),
278 log.info("Got " + attrs.size() + " attributes for " + principal.getName());
279 saml.respond(resp, attrs, null);
280 log.info("Successfully responded about " + principal.getName());
282 } catch (InvalidHandleException e) {
283 log.info("Could not associate the Attribute Query Handle with a principal: " + e);
287 SAMLException.REQUESTER,
288 new QName(edu.internet2.middleware.shibboleth.common.XML.SHIB_NS, "InvalidHandle")};
290 .getProperty("edu.internet2.middleware.shibboleth.aa.AAServlet.passThruErrors", "false")
295 Arrays.asList(codes),
296 "The supplied Attribute Query Handle was unrecognized or expired.",
303 Arrays.asList(codes),
304 "The supplied Attribute Query Handle was unrecognized or expired."));
307 } catch (Exception ee) {
308 log.fatal("Could not construct a SAML error response: " + ee);
309 throw new ServletException("Attribute Authority response failure.");
312 } catch (Exception e) {
313 log.error("Error while processing request: " + e);
316 .getProperty("edu.internet2.middleware.shibboleth.aa.AAServlet.passThruErrors", "false")
320 new SAMLException(SAMLException.RESPONDER, "General error processing request.", e));
324 new SAMLException(SAMLException.RESPONDER, "General error processing request."));
327 } catch (Exception ee) {
328 log.fatal("Could not construct a SAML error response: " + ee);
329 throw new ServletException("Attribute Authority response failure.");