c5d6f3e8f6dba45207671dbbd292138a983be7b6
[oom/platform/cert-service.git] / certService / src / main / java / org / onap / oom / certservice / cmpv2client / validation / CmpCertificationValidator.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2020 Nordix Foundation.
4  * ================================================================================
5  * Modification copyright 2021 Nokia
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.oom.certservice.cmpv2client.validation;
24
25
26 import org.apache.http.impl.client.CloseableHttpClient;
27 import org.bouncycastle.asn1.ASN1ObjectIdentifier;
28 import org.bouncycastle.asn1.cmp.CertResponse;
29 import org.bouncycastle.asn1.cmp.PKIHeader;
30 import org.bouncycastle.asn1.cmp.PKIMessage;
31 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
32 import org.onap.oom.certservice.certification.configuration.model.Cmpv2Server;
33 import org.onap.oom.certservice.certification.model.CsrModel;
34 import org.onap.oom.certservice.cmpv2client.exceptions.CmpClientException;
35 import org.onap.oom.certservice.cmpv2client.exceptions.CmpServerException;
36 import org.onap.oom.certservice.cmpv2client.impl.CmpUtil;
37 import org.onap.oom.certservice.cmpv2client.impl.PkiStatus;
38 import org.slf4j.Logger;
39 import org.slf4j.LoggerFactory;
40
41 import java.security.PublicKey;
42 import java.util.Date;
43 import java.util.Objects;
44 import java.util.Optional;
45
46 import static org.onap.oom.certservice.cmpv2client.impl.CmpResponseValidationHelper.checkImplicitConfirm;
47 import static org.onap.oom.certservice.cmpv2client.impl.CmpResponseValidationHelper.verifyPasswordBasedProtection;
48 import static org.onap.oom.certservice.cmpv2client.impl.CmpResponseValidationHelper.verifySignature;
49
50 public class CmpCertificationValidator {
51     private static final String DEFAULT_CA_NAME = "Certification Authority";
52     private static final ASN1ObjectIdentifier PASSWORD_BASED_MAC = new ASN1ObjectIdentifier("1.2.840.113533.7.66.13");
53     private static final Logger LOG = LoggerFactory.getLogger(CmpCertificationValidator.class);
54
55     public void validate(
56         final CsrModel csrModel,
57         final Cmpv2Server server,
58         final CloseableHttpClient httpClient,
59         final Date notBefore,
60         final Date notAfter) {
61
62         String caName = CmpUtil.isNullOrEmpty(server.getCaName()) ? server.getCaName() : DEFAULT_CA_NAME;
63         LOG.info(
64             "Validate before creating Certificate Request for CA: {}", caName);
65
66         CmpUtil.notNull(csrModel, "CsrModel Instance");
67         CmpUtil.notNull(csrModel.getSubjectData(), "Subject DN");
68         CmpUtil.notNull(csrModel.getPrivateKey(), "Subject private key");
69         CmpUtil.notNull(csrModel.getPublicKey(), "Subject public key");
70         CmpUtil.notNull(server.getIssuerDN(), "Issuer DN");
71         CmpUtil.notNull(server.getUrl(), "External CA URL");
72         CmpUtil.notNull(server.getAuthentication().getIak(), "IAK/RV Password");
73         CmpUtil.notNull(httpClient, "Closeable Http Client");
74
75         if (notBefore != null && notAfter != null && notBefore.compareTo(notAfter) > 0) {
76             throw new IllegalArgumentException("Before Date is set after the After Date");
77         }
78     }
79
80     public void checkCmpResponse(final PKIMessage respPkiMessage, final PublicKey publicKey, final String initAuthPassword)
81         throws CmpClientException {
82         final PKIHeader header = respPkiMessage.getHeader();
83         final AlgorithmIdentifier protectionAlgo = header.getProtectionAlg();
84         verifySignatureWithPublicKey(respPkiMessage, publicKey);
85         if (isPasswordBasedMacAlgorithm(protectionAlgo)) {
86             LOG.info("CMP response is protected by Password Base Mac Algorithm. Attempt to verify protection");
87             verifyPasswordBasedMacProtection(respPkiMessage, initAuthPassword, header, protectionAlgo);
88         }
89     }
90
91     public void checkServerResponse(CertResponse certResponse) {
92         if (certResponse.getStatus() != null && certResponse.getStatus().getStatus() != null) {
93             logServerResponse(certResponse);
94             if (certResponse.getStatus().getStatus().intValue() == PkiStatus.REJECTED.getCode()) {
95                 String serverMessage = certResponse.getStatus().getStatusString().getStringAt(0).getString();
96                 throw new CmpServerException(Optional.ofNullable(serverMessage).orElse("N/A"));
97             }
98         }
99     }
100
101     private boolean isPasswordBasedMacAlgorithm(AlgorithmIdentifier protectionAlgo) throws CmpClientException {
102         if (Objects.isNull(protectionAlgo)) {
103             LOG.error("CMP response does not contain Protection Algorithm field");
104             throw new CmpClientException("CMP response does not contain Protection Algorithm field");
105         }
106         return PASSWORD_BASED_MAC.equals(protectionAlgo.getAlgorithm());
107     }
108
109     private void verifySignatureWithPublicKey(PKIMessage respPkiMessage, PublicKey publicKey)
110         throws CmpClientException {
111         if (Objects.nonNull(publicKey)) {
112             LOG.debug("Verifying signature of the response.");
113             verifySignature(respPkiMessage, publicKey);
114         } else {
115             LOG.error("Public Key is not available, therefore cannot verify signature");
116             throw new CmpClientException(
117                 "Public Key is not available, therefore cannot verify signature");
118         }
119     }
120
121     private void verifyPasswordBasedMacProtection(PKIMessage respPkiMessage, String initAuthPassword,
122         PKIHeader header, AlgorithmIdentifier protectionAlgo)
123         throws CmpClientException {
124         LOG.debug("Verifying PasswordBased Protection of the Response.");
125         verifyPasswordBasedProtection(respPkiMessage, initAuthPassword, protectionAlgo);
126         checkImplicitConfirm(header);
127     }
128
129     private void logServerResponse(CertResponse certResponse) {
130         if (LOG.isInfoEnabled()) {
131             LOG.info("Response status code: {}", certResponse.getStatus().getStatus());
132         }
133         if (certResponse.getStatus().getStatusString() != null) {
134             String serverMessage = certResponse.getStatus().getStatusString().getStringAt(0).getString();
135             LOG.warn("Response status text: {}", serverMessage);
136         }
137         if (LOG.isWarnEnabled() && certResponse.getStatus().getFailInfo() != null) {
138             LOG.warn("Response fail info:   {}", certResponse.getStatus().getFailInfo());
139         }
140     }
141 }