| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.rice.ksb.security; |
| 17 | |
|
| 18 | |
import java.io.ByteArrayInputStream; |
| 19 | |
import java.io.IOException; |
| 20 | |
import java.security.Signature; |
| 21 | |
import java.security.cert.CertificateFactory; |
| 22 | |
|
| 23 | |
import javax.servlet.ServletInputStream; |
| 24 | |
import javax.servlet.http.HttpServletRequest; |
| 25 | |
import javax.servlet.http.HttpServletRequestWrapper; |
| 26 | |
|
| 27 | |
import org.apache.commons.codec.binary.Base64; |
| 28 | |
import org.apache.commons.lang.StringUtils; |
| 29 | |
import org.kuali.rice.ksb.service.KSBServiceLocator; |
| 30 | |
import org.kuali.rice.ksb.util.KSBConstants; |
| 31 | |
|
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | |
|
| 36 | |
|
| 37 | |
|
| 38 | |
|
| 39 | |
public class SignatureVerifyingRequestWrapper extends HttpServletRequestWrapper { |
| 40 | |
|
| 41 | |
private byte[] digitalSignature; |
| 42 | |
private Signature signature; |
| 43 | |
|
| 44 | |
public SignatureVerifyingRequestWrapper(HttpServletRequest request) { |
| 45 | 0 | super(request); |
| 46 | 0 | String encodedSignature = request.getHeader(KSBConstants.DIGITAL_SIGNATURE_HEADER); |
| 47 | 0 | if (StringUtils.isEmpty(encodedSignature)) { |
| 48 | 0 | throw new RuntimeException("A digital signature was required on the request but none was found."); |
| 49 | |
} |
| 50 | 0 | String verificationAlias = request.getHeader(KSBConstants.KEYSTORE_ALIAS_HEADER); |
| 51 | 0 | String encodedCertificate = request.getHeader(KSBConstants.KEYSTORE_CERTIFICATE_HEADER); |
| 52 | 0 | if ( (StringUtils.isEmpty(verificationAlias)) && (StringUtils.isEmpty(encodedCertificate)) ) { |
| 53 | 0 | throw new RuntimeException("A verification alias or certificate was required on the request but neither was found."); |
| 54 | |
} |
| 55 | |
try { |
| 56 | 0 | this.digitalSignature = Base64.decodeBase64(encodedSignature.getBytes("UTF-8")); |
| 57 | 0 | if (StringUtils.isNotBlank(encodedCertificate)) { |
| 58 | 0 | byte[] certificate = Base64.decodeBase64(encodedCertificate.getBytes("UTF-8")); |
| 59 | 0 | CertificateFactory cf = CertificateFactory.getInstance("X.509"); |
| 60 | 0 | this.signature = KSBServiceLocator.getDigitalSignatureService().getSignatureForVerification(cf.generateCertificate(new ByteArrayInputStream(certificate))); |
| 61 | 0 | } else if (StringUtils.isNotBlank(verificationAlias)) { |
| 62 | 0 | this.signature = KSBServiceLocator.getDigitalSignatureService().getSignatureForVerification(verificationAlias); |
| 63 | |
} |
| 64 | 0 | } catch (Exception e) { |
| 65 | 0 | throw new RuntimeException("Failed to initialize digital signature verification.", e); |
| 66 | 0 | } |
| 67 | 0 | } |
| 68 | |
|
| 69 | |
@Override |
| 70 | |
public ServletInputStream getInputStream() throws IOException { |
| 71 | 0 | return new SignatureVerifyingInputStream(this.digitalSignature, this.signature, super.getInputStream()); |
| 72 | |
} |
| 73 | |
|
| 74 | |
} |