[OOM] Update Linux SSL Truststore /etc/ssl
[oom.git] / kubernetes / common / cert-wrapper / resources / import-custom-certs.sh
1 #!/bin/sh
2 {{/*
3
4 # Copyright © 2020-2021 Bell Canada
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 */}}
18
19 CERTS_DIR=${CERTS_DIR:-/certs}
20 MORE_CERTS_DIR=${MORE_CERTS_DIR:-/more_certs}
21 WORK_DIR=${WORK_DIR:-/updatedTruststore}
22 ONAP_TRUSTSTORE=${ONAP_TRUSTSTORE:-truststoreONAPall.jks}
23 JRE_TRUSTSTORE=${JRE_TRUSTSTORE:-$JAVA_HOME/lib/security/cacerts}
24 TRUSTSTORE_OUTPUT_FILENAME=${TRUSTSTORE_OUTPUT_FILENAME:-truststore.jks}
25 SSL_WORKDIR=${SSL_WORKDIR:-/usr/local/share/ca-certificates}
26
27 mkdir -p $WORK_DIR
28
29 # Decrypt and move relevant files to WORK_DIR
30 for f in $CERTS_DIR/*; do
31   export canonical_name_nob64=$(echo $f | sed 's/.*\/\([^\/]*\)/\1/')
32   export canonical_name_b64=$(echo $f | sed 's/.*\/\([^\/]*\)\(\.b64\)/\1/')
33   if [ "$AAF_ENABLED" = "false" ] && [ "$canonical_name_b64" = "$ONAP_TRUSTSTORE" ]; then
34     # Dont use onap truststore when aaf is disabled
35     continue
36   fi
37   if [ "$AAF_ENABLED" = "false" ] && [ "$canonical_name_nob64" = "$ONAP_TRUSTSTORE" ]; then
38     # Dont use onap truststore when aaf is disabled
39     continue
40   fi
41   if [ ${f: -3} = ".sh" ]; then
42     continue
43   fi
44   if [ ${f: -4} = ".b64" ]
45     then
46       base64 -d $f > $WORK_DIR/`basename $f .b64`
47     else
48       cp $f $WORK_DIR/.
49   fi
50 done
51
52 for f in $MORE_CERTS_DIR/*; do
53   if [ ${f: -4} == ".pem" ]
54     then
55       cp $f $WORK_DIR/.
56   fi
57 done
58
59 # Prepare truststore output file
60 if [ "$AAF_ENABLED" = "true" ]
61   then
62     echo "AAF is enabled, use 'AAF' truststore"
63     export TRUSTSTORE_OUTPUT_FILENAME=${ONAP_TRUSTSTORE}
64   else
65     echo "AAF is disabled, using JRE truststore"
66     cp $JRE_TRUSTSTORE $WORK_DIR/$TRUSTSTORE_OUTPUT_FILENAME
67 fi
68
69 # Import Custom Certificates
70 for f in $WORK_DIR/*; do
71   if [ ${f: -4} = ".pem" ]; then
72     echo "importing certificate: $f"
73     keytool -import -file $f -alias `basename $f` -keystore $WORK_DIR/$TRUSTSTORE_OUTPUT_FILENAME -storepass $TRUSTSTORE_PASSWORD -noprompt
74     if [ $? != 0 ]; then
75       echo "failed importing certificate: $f"
76       exit 1
77     fi
78   fi
79 done
80
81 # Import certificates to Linux SSL Truststore
82 cp $CERTS_DIR/*.crt $SSL_WORKDIR/.
83 cp $MORE_CERTS_DIR/*.crt $SSL_WORKDIR/.
84 update-ca-certificates
85 if [ $? != 0 ]
86   then
87     echo "failed importing certificates"
88     exit 1
89   else
90     cp /etc/ssl/certs/ca-certificates.crt $WORK_DIR/.
91 fi