7256af40e3888cd2ef27ae0822d33355d0a35f15
[aaf/authz.git] / cadi / aaf / src / main / java / org / onap / aaf / cadi / configure / PlaceArtifactInKeystore.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
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  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.cadi.configure;
23
24 import java.io.File;
25 import java.security.KeyStore;
26 import java.security.PrivateKey;
27 import java.security.cert.Certificate;
28 import java.security.cert.X509Certificate;
29 import java.util.ArrayList;
30 import java.util.Collection;
31 import java.util.HashSet;
32 import java.util.List;
33 import java.util.Set;
34
35 import org.onap.aaf.cadi.CadiException;
36 import org.onap.aaf.cadi.Symm;
37 import org.onap.aaf.cadi.config.Config;
38 import org.onap.aaf.cadi.util.Chmod;
39 import org.onap.aaf.misc.env.Trans;
40
41 import certman.v1_0.Artifacts.Artifact;
42 import certman.v1_0.CertInfo;
43
44 public class PlaceArtifactInKeystore extends ArtifactDir {
45     private String kst;
46
47     public PlaceArtifactInKeystore(String kst) {
48         this.kst = kst;
49     }
50
51     @Override
52     public boolean _place(Trans trans, CertInfo certInfo, Artifact arti) throws CadiException {
53         final String ext = (kst==Agent.PKCS12?"p12":kst);
54         File fks = new File(dir,arti.getNs()+'.'+ext);
55         try {
56             KeyStore jks = KeyStore.getInstance(kst);
57             if (fks.exists()) {
58                 File backup = File.createTempFile(fks.getName()+'.', ".backup",dir);
59                 fks.renameTo(backup);
60             }    
61
62             // Get the Cert(s)... Might include Trust store
63             Collection<? extends Certificate> certColl = Factory.toX509Certificate(certInfo.getCerts());
64             // find where the trusts end in 1.0 API
65         
66             X509Certificate x509;
67             List<X509Certificate> chainList = new ArrayList<>();
68             Set<X509Certificate> caSet = new HashSet<>();
69             for (Certificate c : certColl) {
70                 x509 = (X509Certificate)c;
71                 // Is a Root (self-signed, anyway)
72                 if (x509.getSubjectDN().equals(x509.getIssuerDN())) {
73                     caSet.add(x509);
74                 } else {
75                     chainList.add(x509);
76                 }
77             }
78 //            chainList.addAll(caSet);
79             //Collections.reverse(chainList);
80
81             // Properties, etc
82             // Add CADI Keyfile Entry to Properties
83             File keyfile = new File(arti.getDir()+'/'+arti.getNs() + ".keyfile");
84             PropHolder props = PropHolder.get(arti, "cred.props");
85             props.add(Config.CADI_KEYFILE,keyfile.getAbsolutePath());
86
87             // Set Keystore Password
88             props.add(Config.CADI_KEYSTORE,fks.getAbsolutePath());
89             String keystorePass = Symm.randomGen(Agent.PASS_SIZE);
90             String encP = props.addEnc(Config.CADI_KEYSTORE_PASSWORD,keystorePass);
91             // Since there are now more than one Keystore type, the keystore password property might
92             // be overwritten, making the store useless without key. So we write it specifically
93             // as well.
94             props.add(Config.CADI_KEYSTORE_PASSWORD+'_'+ext,encP);
95             char[] keystorePassArray = keystorePass.toCharArray();
96             jks.load(null,keystorePassArray); // load in
97             
98             // Add Private Key/Cert Entry for App
99             // Note: Java SSL security classes, while having a separate key from keystore,
100             // is documented to not actually work. 
101             // java.security.UnrecoverableKeyException: Cannot recover key
102             // You can create a custom Key Manager to make it work, but Practicality  
103             // dictates that you live with the default, meaning, they are the same
104             String keyPass = keystorePass; //Symm.randomGen(CmAgent.PASS_SIZE);
105             PrivateKey pk = Factory.toPrivateKey(trans, certInfo.getPrivatekey());
106             props.addEnc(Config.CADI_KEY_PASSWORD, keyPass);
107             props.add(Config.CADI_ALIAS, arti.getMechid());
108 //            Set<Attribute> attribs = new HashSet<>();
109 //            if (kst.equals("pkcs12")) {
110 //                // Friendly Name
111 //                attribs.add(new PKCS12Attribute("1.2.840.113549.1.9.20", arti.getNs()));
112 //            } 
113 //            
114             KeyStore.ProtectionParameter protParam = 
115                     new KeyStore.PasswordProtection(keyPass.toCharArray());
116             
117             Certificate[] trustChain = new Certificate[chainList.size()];
118             chainList.toArray(trustChain);
119             KeyStore.PrivateKeyEntry pkEntry = 
120                 new KeyStore.PrivateKeyEntry(pk, trustChain);
121             jks.setEntry(arti.getMechid(), 
122                     pkEntry, protParam);
123
124             // Write out
125             write(fks,Chmod.to644,jks,keystorePassArray);
126             
127             // Change out to TrustStore
128             // NOTE: PKCS12 does NOT support Trusted Entries.  Put in JKS Always
129             fks = new File(dir,arti.getNs()+".trust.jks");
130             if (fks.exists()) {
131                 File backup = File.createTempFile(fks.getName()+'.', ".backup",dir);
132                 fks.renameTo(backup);
133             }    
134
135             jks = KeyStore.getInstance(Agent.JKS);
136             
137             // Set Truststore Password
138             props.add(Config.CADI_TRUSTSTORE,fks.getAbsolutePath());
139             String trustStorePass = Symm.randomGen(Agent.PASS_SIZE);
140             props.addEnc(Config.CADI_TRUSTSTORE_PASSWORD,trustStorePass);
141             char[] truststorePassArray = trustStorePass.toCharArray();
142             jks.load(null,truststorePassArray); // load in
143             
144             // Add Trusted Certificates, but PKCS12 doesn't support
145             Certificate[] trustCAs = new Certificate[caSet.size()];
146             caSet.toArray(trustCAs);
147             for (int i=0; i<trustCAs.length;++i) {
148                 jks.setCertificateEntry("ca_" + arti.getCa() + '_' + i, trustCAs[i]);
149             }
150             // Write out
151             write(fks,Chmod.to644,jks,truststorePassArray);
152             return true;
153         } catch (Exception e) {
154             throw new CadiException(e);
155         }
156     }
157
158 }