[OOM-K8S-CERT-EXTERNAL-PROVIDER] Filter not supported CSR properties
[oom/platform/cert-service.git] / certServiceK8sExternalProvider / src / cmpv2provisioner / cmpv2_provisioner.go
1 /*
2  * ============LICENSE_START=======================================================
3  * oom-certservice-k8s-external-provider
4  * ================================================================================
5  * Copyright (c) 2019 Smallstep Labs, Inc.
6  * Modifications copyright (C) 2020 Nokia. All rights reserved.
7  * ================================================================================
8  * This source code was copied from the following git repository:
9  * https://github.com/smallstep/step-issuer
10  * The source code was modified for usage in the ONAP project.
11  * ================================================================================
12  * Licensed under the Apache License, Version 2.0 (the "License");
13  * you may not use this file except in compliance with the License.
14  * You may obtain a copy of the License at
15  *
16  *      http://www.apache.org/licenses/LICENSE-2.0
17  *
18  * Unless required by applicable law or agreed to in writing, software
19  * distributed under the License is distributed on an "AS IS" BASIS,
20  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21  * See the License for the specific language governing permissions and
22  * limitations under the License.
23  * ============LICENSE_END=========================================================
24  */
25
26 package cmpv2provisioner
27
28 import (
29         "context"
30         "sync"
31
32         certmanager "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
33         "k8s.io/apimachinery/pkg/types"
34         ctrl "sigs.k8s.io/controller-runtime"
35
36         "onap.org/oom-certservice/k8s-external-provider/src/certserviceclient"
37         "onap.org/oom-certservice/k8s-external-provider/src/cmpv2api"
38         "onap.org/oom-certservice/k8s-external-provider/src/cmpv2provisioner/csr"
39 )
40
41 var collection = new(sync.Map)
42
43 type CertServiceCA struct {
44         name              string
45         url               string
46         healthEndpoint    string
47         certEndpoint      string
48         caName            string
49         certServiceClient certserviceclient.CertServiceClient
50 }
51
52 func New(cmpv2Issuer *cmpv2api.CMPv2Issuer, certServiceClient certserviceclient.CertServiceClient) (*CertServiceCA, error) {
53
54         ca := CertServiceCA{}
55         ca.name = cmpv2Issuer.Name
56         ca.url = cmpv2Issuer.Spec.URL
57         ca.caName = cmpv2Issuer.Spec.CaName
58         ca.healthEndpoint = cmpv2Issuer.Spec.HealthEndpoint
59         ca.certEndpoint = cmpv2Issuer.Spec.CertEndpoint
60         ca.certServiceClient = certServiceClient
61
62         log := ctrl.Log.WithName("cmpv2-provisioner")
63         log.Info("Configuring CA: ", "name", ca.name, "url", ca.url, "caName", ca.caName, "healthEndpoint", ca.healthEndpoint, "certEndpoint", ca.certEndpoint)
64
65         return &ca, nil
66 }
67
68 func (ca *CertServiceCA) CheckHealth() error {
69         log := ctrl.Log.WithName("cmpv2-provisioner")
70         log.Info("Checking health of CMPv2 issuer: ", "name", ca.name)
71         return ca.certServiceClient.CheckHealth()
72 }
73
74 func Load(namespacedName types.NamespacedName) (*CertServiceCA, bool) {
75         provisioner, ok := collection.Load(namespacedName)
76         if !ok {
77                 return nil, ok
78         }
79         certServiceCAprovisioner, ok := provisioner.(*CertServiceCA)
80         return certServiceCAprovisioner, ok
81 }
82
83 func Store(namespacedName types.NamespacedName, provisioner *CertServiceCA) {
84         collection.Store(namespacedName, provisioner)
85 }
86
87 func (ca *CertServiceCA) Sign(
88         ctx context.Context,
89         certificateRequest *certmanager.CertificateRequest,
90         privateKeyBytes []byte,
91 ) (signedCertificateChain []byte, trustedCertificates []byte, err error) {
92         log := ctrl.Log.WithName("certservice-provisioner")
93         log.Info("Signing certificate: ", "cert-name", certificateRequest.Name)
94
95         log.Info("CA: ", "name", ca.name, "url", ca.url)
96
97         csrBytes := certificateRequest.Spec.Request
98         log.Info("Csr PEM: ", "bytes", csrBytes)
99
100         filteredCsrBytes, err := csr.FilterFieldsFromCSR(csrBytes, privateKeyBytes)
101         if err != nil {
102                 return nil, nil, err
103         }
104
105         response, err := ca.certServiceClient.GetCertificates(filteredCsrBytes, privateKeyBytes)
106         if err != nil {
107                 return nil, nil, err
108         }
109         log.Info("Successfully received response from CertService API")
110         log.Info("Certificate Chain", "cert-chain", response.CertificateChain)
111         log.Info("Trusted Certificates", "trust-certs", response.TrustedCertificates)
112
113         log.Info("Start parsing response")
114         signedCertificateChain, trustedCertificates, signErr := parseResponseToBytes(response)
115
116         if signErr != nil {
117                 log.Error(signErr, "Cannot parse response from CertService API")
118                 return nil, nil, signErr
119         }
120
121         log.Info("Successfully signed: ", "cert-name", certificateRequest.Name)
122
123         //TODO Debug level or skip
124         log.Info("Signed cert PEM: ", "bytes", signedCertificateChain)
125         log.Info("Trusted CA  PEM: ", "bytes", trustedCertificates)
126
127         return signedCertificateChain, trustedCertificates, nil
128 }