View Javadoc

1   /*
2    * Copyright 2005-2007 The Kuali Foundation
3    * 
4    * 
5    * Licensed under the Educational Community License, Version 2.0 (the "License");
6    * you may not use this file except in compliance with the License.
7    * You may obtain a copy of the License at
8    * 
9    * http://www.opensource.org/licenses/ecl2.php
10   * 
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.kuali.rice.ksb.security;
18  
19  import java.io.ByteArrayInputStream;
20  import java.io.IOException;
21  import java.security.Signature;
22  import java.security.cert.CertificateFactory;
23  
24  import javax.servlet.ServletInputStream;
25  import javax.servlet.http.HttpServletRequest;
26  import javax.servlet.http.HttpServletRequestWrapper;
27  
28  import org.apache.commons.codec.binary.Base64;
29  import org.apache.commons.lang.StringUtils;
30  import org.kuali.rice.ksb.service.KSBServiceLocator;
31  import org.kuali.rice.ksb.util.KSBConstants;
32  
33  /**
34   * An HttpServletRequestWrapper which will wraps the underlying request's InputStream in a 
35   * SignatureVerifyingInputStream which will verify the digital signature of the request after 
36   * all of the data has been read from the input stream.
37   * 
38   * @author Kuali Rice Team (rice.collab@kuali.org)
39   */
40  public class SignatureVerifyingRequestWrapper extends HttpServletRequestWrapper {
41  
42  	private byte[] digitalSignature;
43  	private Signature signature;
44  	
45  	public SignatureVerifyingRequestWrapper(HttpServletRequest request) {
46  		super(request);
47  		String encodedSignature = request.getHeader(KSBConstants.DIGITAL_SIGNATURE_HEADER);
48  		if (StringUtils.isEmpty(encodedSignature)) {
49  			throw new RuntimeException("A digital signature was required on the request but none was found.");
50  		}
51  		String verificationAlias = request.getHeader(KSBConstants.KEYSTORE_ALIAS_HEADER);
52  		String encodedCertificate = request.getHeader(KSBConstants.KEYSTORE_CERTIFICATE_HEADER);
53  		if ( (StringUtils.isEmpty(verificationAlias)) && (StringUtils.isEmpty(encodedCertificate)) ) {
54              throw new RuntimeException("A verification alias or certificate was required on the request but neither was found.");
55  		}
56  		try {
57              this.digitalSignature = Base64.decodeBase64(encodedSignature.getBytes("UTF-8"));
58              if (StringUtils.isNotBlank(encodedCertificate)) {
59                  byte[] certificate = Base64.decodeBase64(encodedCertificate.getBytes("UTF-8"));
60                  CertificateFactory cf = CertificateFactory.getInstance("X.509");
61                  this.signature = KSBServiceLocator.getDigitalSignatureService().getSignatureForVerification(cf.generateCertificate(new ByteArrayInputStream(certificate)));
62              } else if (StringUtils.isNotBlank(verificationAlias)) {
63                  this.signature = KSBServiceLocator.getDigitalSignatureService().getSignatureForVerification(verificationAlias);
64              }
65  		} catch (Exception e) {
66  			throw new RuntimeException("Failed to initialize digital signature verification.", e);
67  		}
68  	}
69  
70  	@Override
71  	public ServletInputStream getInputStream() throws IOException {
72  		return new SignatureVerifyingInputStream(this.digitalSignature, this.signature, super.getInputStream());
73  	}
74  	
75  }