Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 1 | #!/bin/bash |
Jakub Latusek | 2eea149 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 2 | {{/* |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 3 | |
| 4 | # Copyright © 2020 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. |
Jakub Latusek | 2eea149 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 17 | */}} |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 18 | |
| 19 | CERTS_DIR=${CERTS_DIR:-/certs} |
| 20 | WORK_DIR=${WORK_DIR:-/updatedTruststore} |
| 21 | ONAP_TRUSTSTORE=${ONAP_TRUSTSTORE:-truststoreONAPall.jks} |
| 22 | JRE_TRUSTSTORE=${JRE_TRUSTSTORE:-$JAVA_HOME/lib/security/cacerts} |
| 23 | TRUSTSTORE_OUTPUT_FILENAME=${TRUSTSTORE_OUTPUT_FILENAME:-truststore.jks} |
| 24 | |
| 25 | mkdir -p $WORK_DIR |
| 26 | |
| 27 | # Decrypt and move relevant files to WORK_DIR |
| 28 | for f in $CERTS_DIR/*; do |
Sylvain Desbureaux | 3638967 | 2021-01-19 14:51:24 +0100 | [diff] [blame] | 29 | export canonical_name_nob64=$(echo $f | sed 's/.*\/\([^\/]*\)/\1/') |
| 30 | export canonical_name_b64=$(echo $f | sed 's/.*\/\([^\/]*\)\(\.b64\)/\1/') |
Guillaume Lambert | 5f4af05 | 2021-03-09 21:52:32 +0100 | [diff] [blame^] | 31 | if [ "$AAF_ENABLED" = "false" ] && [ "$canonical_name_b64" = "$ONAP_TRUSTSTORE" ]; then |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 32 | # Dont use onap truststore when aaf is disabled |
| 33 | continue |
| 34 | fi |
Guillaume Lambert | 5f4af05 | 2021-03-09 21:52:32 +0100 | [diff] [blame^] | 35 | if [ "$AAF_ENABLED" = "false" ] && [ "$canonical_name_nob64" = "$ONAP_TRUSTSTORE" ]; then |
Sylvain Desbureaux | 3638967 | 2021-01-19 14:51:24 +0100 | [diff] [blame] | 36 | # Dont use onap truststore when aaf is disabled |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 37 | continue |
| 38 | fi |
Guillaume Lambert | 5f4af05 | 2021-03-09 21:52:32 +0100 | [diff] [blame^] | 39 | if [ ${f: -3} = ".sh" ]; then |
Sylvain Desbureaux | 3638967 | 2021-01-19 14:51:24 +0100 | [diff] [blame] | 40 | continue |
| 41 | fi |
Guillaume Lambert | 5f4af05 | 2021-03-09 21:52:32 +0100 | [diff] [blame^] | 42 | if [ ${f: -4} = ".b64" ] |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 43 | then |
| 44 | base64 -d $f > $WORK_DIR/`basename $f .b64` |
| 45 | else |
| 46 | cp $f $WORK_DIR/. |
| 47 | fi |
| 48 | done |
| 49 | |
| 50 | # Prepare truststore output file |
Guillaume Lambert | 5f4af05 | 2021-03-09 21:52:32 +0100 | [diff] [blame^] | 51 | if [ "$AAF_ENABLED" = "true" ] |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 52 | then |
| 53 | mv $WORK_DIR/$ONAP_TRUSTSTORE $WORK_DIR/$TRUSTSTORE_OUTPUT_FILENAME |
| 54 | else |
| 55 | echo "AAF is disabled, using JRE truststore" |
| 56 | cp $JRE_TRUSTSTORE $WORK_DIR/$TRUSTSTORE_OUTPUT_FILENAME |
| 57 | fi |
| 58 | |
| 59 | # Import Custom Certificates |
| 60 | for f in $WORK_DIR/*; do |
Guillaume Lambert | 5f4af05 | 2021-03-09 21:52:32 +0100 | [diff] [blame^] | 61 | if [ ${f: -4} = ".pem" ]; then |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 62 | echo "importing certificate: $f" |
| 63 | keytool -import -file $f -alias `basename $f` -keystore $WORK_DIR/$TRUSTSTORE_OUTPUT_FILENAME -storepass $TRUSTSTORE_PASSWORD -noprompt |
Sylvain Desbureaux | 3638967 | 2021-01-19 14:51:24 +0100 | [diff] [blame] | 64 | if [ $? != 0 ]; then |
Jozsef Csongvai | 9d4d5af | 2020-07-13 11:10:25 -0400 | [diff] [blame] | 65 | echo "failed importing certificate: $f" |
| 66 | exit 1 |
| 67 | fi |
| 68 | fi |
| 69 | done |