2022-04-24 07:25:04 +00:00
|
|
|
/*
|
|
|
|
Copyright 2022 CAcert Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-04-16 20:24:32 +00:00
|
|
|
package hsm
|
|
|
|
|
2022-08-03 07:59:26 +00:00
|
|
|
func (a *Access) EnsureCAKeysAndCertificates() error {
|
2022-04-19 14:48:32 +00:00
|
|
|
var label string
|
|
|
|
|
2022-08-03 07:59:26 +00:00
|
|
|
conf := a.GetSignerConfig()
|
2022-04-16 20:24:32 +00:00
|
|
|
|
2022-05-01 10:36:17 +00:00
|
|
|
for _, label = range conf.RootCAs() {
|
2022-08-03 07:59:26 +00:00
|
|
|
crt, err := a.GetRootCACertificate(label)
|
2022-04-16 20:24:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-08-03 07:59:26 +00:00
|
|
|
if a.IsVerbose() {
|
2022-11-20 09:07:02 +00:00
|
|
|
a.logger.Infof(
|
2022-04-20 07:03:26 +00:00
|
|
|
"found root CA certificate %s:\n Subject %s\n Issuer %s\n Valid from %s until %s\n Serial %s",
|
|
|
|
label,
|
|
|
|
crt.Subject,
|
|
|
|
crt.Issuer,
|
|
|
|
crt.NotBefore,
|
|
|
|
crt.NotAfter,
|
|
|
|
crt.SerialNumber)
|
|
|
|
} else {
|
2022-11-20 09:07:02 +00:00
|
|
|
a.logger.Infof("found root CA certificate %s: %s", label, crt.Subject.CommonName)
|
2022-04-20 07:03:26 +00:00
|
|
|
}
|
2022-04-16 20:24:32 +00:00
|
|
|
}
|
|
|
|
|
2022-08-03 14:01:06 +00:00
|
|
|
for _, label = range conf.SubordinateCAs() {
|
|
|
|
crt, err := a.GetSubordinateCACertificate(label)
|
2022-04-16 20:24:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-04-19 14:48:32 +00:00
|
|
|
|
2022-08-03 07:59:26 +00:00
|
|
|
if a.IsVerbose() {
|
2022-11-20 09:07:02 +00:00
|
|
|
a.logger.Infof(
|
2022-08-03 14:01:06 +00:00
|
|
|
"found subordinate CA certificate %s:\n Subject %s\n Issuer %s\n Valid from %s until %s\n Serial %s",
|
2022-04-20 07:03:26 +00:00
|
|
|
label,
|
|
|
|
crt.Subject,
|
|
|
|
crt.Issuer,
|
|
|
|
crt.NotBefore,
|
|
|
|
crt.NotAfter,
|
|
|
|
crt.SerialNumber)
|
|
|
|
} else {
|
2022-11-20 09:07:02 +00:00
|
|
|
a.logger.Infof("found subordinate CA certificate %s: %s", label, crt.Subject.CommonName)
|
2022-04-20 07:03:26 +00:00
|
|
|
}
|
2022-04-16 20:24:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|