Merge "Sonar fixes related to exceptions"
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / config / Config.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.config;
23
24 import java.io.IOException;
25 import java.lang.reflect.Constructor;
26 import java.lang.reflect.Field;
27 import java.lang.reflect.InvocationTargetException;
28 import java.lang.reflect.Method;
29 import java.net.HttpURLConnection;
30 import java.net.InetAddress;
31 import java.net.URI;
32 import java.net.UnknownHostException;
33 import java.security.NoSuchAlgorithmException;
34 import java.security.cert.CertificateException;
35 import java.util.ArrayList;
36 import java.util.List;
37
38 import org.onap.aaf.cadi.AbsUserCache;
39 import org.onap.aaf.cadi.Access;
40 import org.onap.aaf.cadi.Access.Level;
41 import org.onap.aaf.cadi.CachingLur;
42 import org.onap.aaf.cadi.CadiException;
43 import org.onap.aaf.cadi.Connector;
44 import org.onap.aaf.cadi.CredVal;
45 import org.onap.aaf.cadi.CredValDomain;
46 import org.onap.aaf.cadi.Locator;
47 import org.onap.aaf.cadi.LocatorException;
48 import org.onap.aaf.cadi.Lur;
49 import org.onap.aaf.cadi.PropAccess;
50 import org.onap.aaf.cadi.Symm;
51 import org.onap.aaf.cadi.TrustChecker;
52 import org.onap.aaf.cadi.lur.EpiLur;
53 import org.onap.aaf.cadi.lur.LocalLur;
54 import org.onap.aaf.cadi.lur.NullLur;
55 import org.onap.aaf.cadi.taf.HttpEpiTaf;
56 import org.onap.aaf.cadi.taf.HttpTaf;
57 import org.onap.aaf.cadi.taf.basic.BasicHttpTaf;
58 import org.onap.aaf.cadi.taf.cert.X509Taf;
59 import org.onap.aaf.cadi.taf.dos.DenialOfServiceTaf;
60
61 /**
62  * Create a Consistent Configuration mechanism, even when configuration styles are as vastly different as
63  * Properties vs JavaBeans vs FilterConfigs...
64  * 
65  * @author Jonathan
66  *
67  */
68 public class Config {
69
70         private static final String AAF_V2_0 = "org.onap.aaf.cadi.aaf.v2_0";
71         private static final String AAF_V2_0_AAFCON = AAF_V2_0+".AAFCon";
72         private static final String AAF_V2_0_AAF_LUR_PERM = AAF_V2_0+".AAFLurPerm";
73         private static final String OAUTH = "org.onap.auth.oauth";
74         private static final String OAUTH_TOKEN_MGR = OAUTH+".TokenMgr";
75         private static final String OAUTH_HTTP_TAF = OAUTH+".OAuth2HttpTaf";
76         private static final String OAUTH_DIRECT_TAF = OAUTH+".OAuthDirectTAF";
77         public static final String UTF_8 = "UTF-8";
78
79         // Property Names associated with configurations.
80         // As of 1.0.2, these have had the dots removed so as to be compatible with JavaBean style
81         // configurations as well as property list style.
82         public static final String HOSTNAME = "hostname";
83         public static final String CADI_PROP_FILES = "cadi_prop_files"; // Additional Properties files (separate with ;)
84         public static final String CADI_LOGLEVEL = "cadi_loglevel";
85         public static final String CADI_LOGDIR = "cadi_log_dir";
86         public static final String CADI_ETCDIR = "cadi_etc_dir";
87         public static final String CADI_LOGNAME = "cadi_logname";
88         public static final String CADI_KEYFILE = "cadi_keyfile";
89         public static final String CADI_KEYSTORE = "cadi_keystore";
90         public static final String CADI_KEYSTORE_PASSWORD = "cadi_keystore_password";
91         public static final String CADI_ALIAS = "cadi_alias";
92         public static final String CADI_LOGINPAGE_URL = "cadi_loginpage_url";
93         public static final String CADI_LATITUDE = "cadi_latitude";
94         public static final String CADI_LONGITUDE = "cadi_longitude";
95
96
97         public static final String CADI_KEY_PASSWORD = "cadi_key_password";
98         public static final String CADI_TRUSTSTORE = "cadi_truststore";
99         public static final String CADI_TRUSTSTORE_PASSWORD = "cadi_truststore_password";
100         public static final String CADI_X509_ISSUERS = "cadi_x509_issuers";
101         public static final String CADI_TRUST_MASKS="cadi_trust_masks";
102         public static final String CADI_TRUST_PERM="cadi_trust_perm"; //  IDs with this perm can utilize the "AS " user concept
103         public static final String CADI_PROTOCOLS = "cadi_protocols";
104         public static final String CADI_NOAUTHN = "cadi_noauthn";
105         public static final String CADI_LOC_LIST = "cadi_loc_list";
106         
107         public static final String CADI_USER_CHAIN_TAG = "cadi_user_chain";
108         public static final String CADI_USER_CHAIN = "USER_CHAIN";
109         
110         public static final String CADI_OAUTH2_URL="cadi_oauth2_url";
111         public static final String CADI_TOKEN_DIR = "cadi_token_dir";
112
113     public static final String HTTPS_PROTOCOLS = "https.protocols";
114     public static final String HTTPS_CIPHER_SUITES = "https.cipherSuites";
115     public static final String HTTPS_CLIENT_PROTOCOLS="jdk.tls.client.protocols";
116     public static final String HTTPS_CIPHER_SUITES_DEFAULT="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,"
117                 + "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA,"
118                 + "TLS_ECDH_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_DSS_WITH_AES_128_CBC_SHA,"
119                 + "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA,TLS_ECDHE_RSA_WITH_RC4_128_SHA,TLS_ECDH_ECDSA_WITH_RC4_128_SHA,"
120                 + "TLS_ECDH_RSA_WITH_RC4_128_SHA,TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,"
121                 + "TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA,TLS_EMPTY_RENEGOTIATION_INFO_SCSV";
122                  
123
124         public static final String LOCALHOST_ALLOW = "localhost_allow";
125         public static final String LOCALHOST_DENY = "localhost_deny";
126         
127         public static final String BASIC_REALM = "basic_realm";  // what is sent to the client 
128         public static final String BASIC_WARN = "basic_warn";  // Warning of insecure channel 
129         public static final String USERS = "local_users";
130         public static final String GROUPS = "local_groups";
131         public static final String WRITE_TO = "local_writeto"; // dump RBAC to local file in Tomcat Style (some apps use)
132         
133         public static final String OAUTH_CLIENT_ID="client_id";
134         public static final String OAUTH_CLIENT_SECRET="client_secret";
135         
136         public static final String AAF_ENV = "aaf_env";
137         public static final String AAF_ROOT_NS = "aaf_root_ns";
138         public static final String AAF_ROOT_NS_DEF = "org.osaaf.aaf";
139         public static final String AAF_ROOT_COMPANY = "aaf_root_company";
140         public static final String AAF_LOCATE_URL = "aaf_locate_url"; //URL for AAF locator
141         private static final String AAF_LOCATE_URL_TAG = "AAF_LOCATE_URL"; // Name of Above for use in Config Variables.
142         public static final String AAF_DEFAULT_VERSION = "2.1";
143         public static final String AAF_URL = "aaf_url"; //URL for AAF... Use to trigger AAF configuration
144         public static final String AAF_URL_DEF = "https://AAF_LOCATE_URL/AAF_NS.service:" + AAF_DEFAULT_VERSION;
145         public static final String GUI_URL_DEF = "https://AAF_LOCATE_URL/AAF_NS.gui:" + AAF_DEFAULT_VERSION;
146         public static final String CM_URL_DEF = "https://AAF_LOCATE_URL/AAF_NS.cm:" + AAF_DEFAULT_VERSION;
147         public static final String FS_URL_DEF = "https://AAF_LOCATE_URL/AAF_NS.fs:" + AAF_DEFAULT_VERSION;
148         public static final String HELLO_URL_DEF = "https://AAF_LOCATE_URL/AAF_NS.hello:" + AAF_DEFAULT_VERSION;
149         public static final String OAUTH2_TOKEN_URL = "https://AAF_LOCATE_URL/AAF_NS.token:" + AAF_DEFAULT_VERSION;
150         public static final String OAUTH2_INTROSPECT_URL = "https://AAF_LOCATE_URL/AAF_NS.introspect:" + AAF_DEFAULT_VERSION;
151
152         public static final String AAF_REGISTER_AS = "aaf_register_as";
153         public static final String AAF_APPID = "aaf_id";
154         public static final String AAF_APPPASS = "aaf_password";
155         public static final String AAF_LUR_CLASS = "aaf_lur_class";
156         public static final String AAF_TAF_CLASS = "aaf_taf_class";
157         public static final String AAF_CONNECTOR_CLASS = "aaf_connector_class";
158         public static final String AAF_LOCATOR_CLASS = "aaf_locator_class";
159         public static final String AAF_CONN_TIMEOUT = "aaf_conn_timeout";
160         public static final String AAF_CONN_TIMEOUT_DEF = "3000";
161         public static final String AAF_CONN_IDLE_TIMEOUT = "aaf_conn_idle_timeout"; // only for Direct Jetty Access.
162         public static final String AAF_CONN_IDLE_TIMEOUT_DEF = "10000"; // only for Direct Jetty Access.
163          
164         // Default Classes: These are for Class loading to avoid direct compile links
165         public static final String AAF_TAF_CLASS_DEF = "org.onap.aaf.cadi.aaf.v2_0.AAFTaf";
166         public static final String AAF_LOCATOR_CLASS_DEF = "org.onap.aaf.cadi.aaf.v2_0.AAFLocator";
167         public static final String CADI_OLUR_CLASS_DEF = "org.onap.aaf.cadi.olur.OLur";
168         public static final String CADI_OBASIC_HTTP_TAF_DEF = "org.onap.aaf.cadi.obasic.OBasicHttpTaf";
169         public static final String CADI_AAF_CON_DEF = "org.onap.aaf.cadi.aaf.v2_0.AAFCon";
170
171         public static final String AAF_CALL_TIMEOUT = "aaf_timeout";
172         public static final String AAF_CALL_TIMEOUT_DEF = "5000";
173         public static final String AAF_USER_EXPIRES = "aaf_user_expires";
174         public static final String AAF_USER_EXPIRES_DEF = "600000"; // Default is 10 mins
175         public static final String AAF_CLEAN_INTERVAL = "aaf_clean_interval";
176         public static final String AAF_CLEAN_INTERVAL_DEF = "30000"; // Default is 30 seconds
177         public static final String AAF_REFRESH_TRIGGER_COUNT = "aaf_refresh_trigger_count";
178         public static final String AAF_REFRESH_TRIGGER_COUNT_DEF = "3"; // Default is 10 mins
179         
180         public static final String AAF_HIGH_COUNT = "aaf_high_count";
181         public static final String AAF_HIGH_COUNT_DEF = "1000"; // Default is 1000 entries
182         public static final String AAF_PERM_MAP = "aaf_perm_map";
183         public static final String AAF_COMPONENT = "aaf_component";
184         public static final String AAF_CERT_IDS = "aaf_cert_ids";
185         public static final String AAF_DEBUG_IDS = "aaf_debug_ids"; // comma delimited
186         public static final String AAF_DATA_DIR = "aaf_data_dir"; // AAF processes and Components only.
187
188         public static final String GW_URL = "gw_url";
189         public static final String CM_URL = "cm_url";
190         public static final String CM_TRUSTED_CAS = "cm_trusted_cas";
191
192         public static final String PATHFILTER_URLPATTERN = "pathfilter_urlpattern";
193         public static final String PATHFILTER_STACK = "pathfilter_stack";
194         public static final String PATHFILTER_NS = "pathfilter_ns";
195         public static final String PATHFILTER_NOT_AUTHORIZED_MSG = "pathfilter_not_authorized_msg";
196
197         // This one should go unpublic
198         public static final String AAF_DEFAULT_REALM = "aaf_default_realm";
199         private static String defaultRealm="none";
200
201         public static final String AAF_DOMAIN_SUPPORT = "aaf_domain_support";
202         public static final String AAF_DOMAIN_SUPPORT_DEF = ".com:.org";
203
204         // OAUTH2
205         public static final String AAF_OAUTH2_TOKEN_URL = "aaf_oauth2_token_url";
206         public static final String AAF_OAUTH2_INTROSPECT_URL = "aaf_oauth2_introspect_url";
207         public static final String AAF_ALT_OAUTH2_TOKEN_URL = "aaf_alt_oauth2_token_url";
208         public static final String AAF_ALT_OAUTH2_INTROSPECT_URL = "aaf_alt_oauth2_introspect_url";
209         public static final String AAF_ALT_OAUTH2_DOMAIN = "aaf_alt_oauth2_domain"; 
210         public static final String AAF_ALT_CLIENT_ID = "aaf_alt_oauth2_client_id";
211         public static final String AAF_ALT_CLIENT_SECRET = "aaf_alt_oauth2_client_secret";
212         public static final String AAF_OAUTH2_HELLO_URL = "aaf_oauth2_hello_url";
213
214         private static final String AAF_V2_0_AAF_CON_HTTP = "org.onap.aaf.cadi.aaf.v2_0.AAFConHttp";
215
216
217         public static void setDefaultRealm(Access access) {
218                 try {
219                         defaultRealm = logProp(access,Config.AAF_DEFAULT_REALM,
220                                 logProp(access,Config.BASIC_REALM,
221                                         logProp(access,HOSTNAME,InetAddress.getLocalHost().getHostName())
222                                         )
223                                 );
224                 } catch (UnknownHostException e) {
225                         access.log(Level.INIT, "Unable to determine Hostname",e);
226                 }
227         }
228
229         public static HttpTaf configHttpTaf(Connector con, SecurityInfoC<HttpURLConnection> si, TrustChecker tc, CredVal up, Lur lur, Object ... additionalTafLurs) throws CadiException, LocatorException {
230                 Access access = si.access;
231                 /////////////////////////////////////////////////////
232                 // Setup AAFCon for any following
233                 /////////////////////////////////////////////////////
234                 Class<?> aafConClass = loadClass(access,CADI_AAF_CON_DEF);
235                 Object aafcon = null;
236                 if(con!=null && aafConClass!=null && aafConClass.isAssignableFrom(con.getClass())) {
237                         aafcon = con;
238                 } else if(lur != null) {
239                         Field f;
240                         try {
241                                 f = lur.getClass().getField("aaf");
242                                 aafcon = f.get(lur);
243                         } catch (Exception e) {
244                                 access.log(Level.INIT, e);
245                         }
246                 }
247
248                 boolean hasDirectAAF = hasDirect("DirectAAFLur",additionalTafLurs);
249                 // IMPORTANT!  Don't attempt to load AAF Connector if there is no AAF URL
250                 String aafURL = access.getProperty(AAF_URL,null);
251                 if(!hasDirectAAF && aafcon==null && aafURL!=null) {
252                         aafcon = loadAAFConnector(si, aafURL);  
253                 }
254                 
255                 HttpTaf taf;
256                 // Setup Host, in case Network reports an unusable Hostname (i.e. VTiers, VPNs, etc)
257                 String hostname = logProp(access, HOSTNAME,null);
258                 if(hostname==null) {
259                         try {
260                                 hostname = InetAddress.getLocalHost().getHostName();
261                         } catch (UnknownHostException e1) {
262                                 throw new CadiException("Unable to determine Hostname",e1);
263                         }
264                 }
265                 
266                 access.log(Level.INIT, "Hostname set to",hostname);
267                 // Get appropriate TAFs
268                 ArrayList<HttpTaf> htlist = new ArrayList<>();
269
270                 /////////////////////////////////////////////////////
271                 // Add a Denial of Service TAF
272                 // Note: how IPs and IDs are added are up to service type.
273                 // They call "DenialOfServiceTaf.denyIP(String) or denyID(String)
274                 /////////////////////////////////////////////////////
275                 htlist.add(new DenialOfServiceTaf(access));
276
277                 /////////////////////////////////////////////////////
278                 // Configure Client Cert TAF
279                 /////////////////////////////////////////////////////
280                 X509Taf x509TAF = null;
281                 String truststore = logProp(access, CADI_TRUSTSTORE,null);
282                 if(truststore!=null) {
283                         String truststorePwd = access.getProperty(CADI_TRUSTSTORE_PASSWORD,null);
284                         if(truststorePwd!=null) {
285                                 if(truststorePwd.startsWith(Symm.ENC)) {
286                                         try {
287                                                 access.decrypt(truststorePwd,false);
288                                         } catch (IOException e) {
289                                                 throw new CadiException(CADI_TRUSTSTORE_PASSWORD + " cannot be decrypted",e);
290                                         }
291                                 }
292                                 try {
293                                         x509TAF=new X509Taf(access,lur);
294                                         htlist.add(x509TAF);
295                                         access.log(Level.INIT,"Certificate Authorization enabled");
296                                 } catch (SecurityException | IllegalArgumentException e) {
297                                         access.log(Level.INIT,"AAFListedCertIdentity cannot be instantiated. Certificate Authorization is now disabled",e);
298                                 } catch (CertificateException e) {
299                                         access.log(Level.INIT,"Certificate Authorization failed, it is disabled",e);
300                                 } catch (NoSuchAlgorithmException e) {
301                                         access.log(Level.INIT,"Certificate Authorization failed, wrong Security Algorithm",e);
302                                 }
303                         }
304                 } else {
305                         access.log(Level.INIT,"Certificate Authorization not enabled");
306                 }
307                 
308                 /////////////////////////////////////////////////////
309                 // Configure Basic Auth (local content)
310                 /////////////////////////////////////////////////////
311                 boolean hasOAuthDirectTAF = hasDirect("DirectOAuthTAF", additionalTafLurs);
312                 String basicRealm = logProp(access, BASIC_REALM,null);
313                 String aafCleanup = logProp(access, AAF_USER_EXPIRES,AAF_USER_EXPIRES_DEF); // Default is 10 mins
314                 long userExp = Long.parseLong(aafCleanup);
315                 boolean basicWarn = "TRUE".equals(access.getProperty(BASIC_WARN,"FALSE"));
316
317                 if(!hasDirectAAF) {
318                         HttpTaf aaftaf=null;
319                         if(!hasOAuthDirectTAF) {
320                                 if(basicRealm!=null) {
321                                         @SuppressWarnings("unchecked")
322                                         Class<HttpTaf> obasicCls = (Class<HttpTaf>)loadClass(access,CADI_OBASIC_HTTP_TAF_DEF);
323                                         if(obasicCls!=null) {
324                                                 try {
325                                                         String tokenurl = logProp(access,Config.AAF_OAUTH2_TOKEN_URL, null);
326                                                         String introspecturl = logProp(access,Config.AAF_OAUTH2_INTROSPECT_URL, null);
327                                                         if(tokenurl==null || introspecturl==null) {
328                                                                 access.log(Level.INIT,"Both tokenurl and introspecturl are required. Oauth Authorization is disabled.");
329                                                         }
330                                                         Constructor<HttpTaf> obasicConst = obasicCls.getConstructor(PropAccess.class,String.class, String.class, String.class);
331                                                         htlist.add(obasicConst.newInstance(access,basicRealm,tokenurl,introspecturl));
332                                                         access.log(Level.INIT,"Oauth supported Basic Authorization is enabled");
333                                                 } catch (NoSuchMethodException | SecurityException | InstantiationException | IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
334                                                         access.log(Level.INIT, e);
335                                                 }
336                                         } else if(up!=null) {
337                                                 access.log(Level.INIT,"Basic Authorization is enabled using realm",basicRealm);
338                                                 // Allow warning about insecure channel to be turned off
339                                                 if(!basicWarn) {
340                                                         access.log(Level.INIT, "WARNING! The basicWarn property has been set to false.",
341                                                                 " There will be no additional warning if Basic Auth is used on an insecure channel");
342                                                 }
343                                                 BasicHttpTaf bht = new BasicHttpTaf(access, up, basicRealm, userExp, basicWarn);
344                                                 for(Object o : additionalTafLurs) {
345                                                         if(o instanceof CredValDomain) {
346                                                                 bht.add((CredValDomain)o);
347                                                         }
348                                                 }
349                                                 if(x509TAF!=null) {
350                                                         x509TAF.add(bht);
351                                                 }
352                                                 htlist.add(bht);
353                                                 access.log(Level.INIT,"Basic Authorization is enabled");
354                                         }
355                                 } else {
356                                         access.log(Level.INIT,"Local Basic Authorization is disabled.  Enable by setting basicRealm=<appropriate realm, i.e. my.att.com>");
357                                 }
358                         
359                                 /////////////////////////////////////////////////////
360                                 // Configure AAF Driven Basic Auth
361                                 /////////////////////////////////////////////////////
362                                 if(aafcon==null) {
363                                         access.log(Level.INIT,"AAF Connection (AAFcon) is null.  Cannot create an AAF TAF");
364                                 } else if(aafURL==null) {
365                                         access.log(Level.INIT,"No AAF URL in properties, Cannot create an AAF TAF");
366                                 } else {// There's an AAF_URL... try to configure an AAF 
367                                         String aafTafClassName = logProp(access, AAF_TAF_CLASS,AAF_TAF_CLASS_DEF);
368                                         // Only 2.0 available at this time
369                                         if(AAF_TAF_CLASS_DEF.equals(aafTafClassName)) { 
370                                                 try {
371                                                         Class<?> aafTafClass = loadClass(access,aafTafClassName);
372                                                         if(aafTafClass!=null) {
373                                                                 Constructor<?> cstr = aafTafClass.getConstructor(Connector.class,boolean.class,AbsUserCache.class);
374                                                                 if(cstr!=null) {
375                                                                         if(lur instanceof AbsUserCache) {
376                                                                                 aaftaf = (HttpTaf)cstr.newInstance(aafcon,basicWarn,lur);
377                                                                         } else {
378                                                                                 cstr = aafTafClass.getConstructor(Connector.class,boolean.class);
379                                                                                 if(cstr!=null) {
380                                                                                         aaftaf = (HttpTaf)cstr.newInstance(aafcon,basicWarn);
381                                                                                 }
382                                                                         }
383                                                                         if(aaftaf==null) {
384                                                                                 access.log(Level.INIT,"ERROR! AAF TAF Failed construction.  NOT Configured");
385                                                                         } else {
386                                                                                 access.log(Level.INIT,"AAF TAF Configured to ",aafURL);
387                                                                                 // Note: will add later, after all others configured
388                                                                         }
389                                                                 }
390                                                         } else {
391                                                                 access.log(Level.INIT, "There is no AAF TAF class available: %s. AAF TAF not configured.",aafTafClassName);
392                                                         }
393                                                 } catch(Exception e) {
394                                                         access.log(Level.INIT,"ERROR! AAF TAF Failed construction.  NOT Configured",e);
395                                                 }
396                                         }
397                                 }
398                         }
399                         
400                         /////////////////////////////////////////////////////
401                         // Configure OAuth TAF
402                         /////////////////////////////////////////////////////
403                         if(!hasOAuthDirectTAF) {
404                                 String oauthTokenUrl = logProp(access,Config.AAF_OAUTH2_TOKEN_URL,null);
405                                 Class<?> oadtClss;
406                                 try {
407                                         oadtClss = Class.forName(OAUTH_DIRECT_TAF);
408                                 } catch (ClassNotFoundException e1) {
409                                         oadtClss = null;
410                                         access.log(Level.INIT, e1);
411                                 }
412                                 if(additionalTafLurs!=null && additionalTafLurs.length>0 && (oadtClss!=null && additionalTafLurs[0].getClass().isAssignableFrom(oadtClss))) {
413                                         htlist.add((HttpTaf)additionalTafLurs[0]);
414                                         String[] array= new String[additionalTafLurs.length-1];
415                                         if(array.length>0) {
416                                                 System.arraycopy(htlist, 1, array, 0, array.length);
417                                         }
418                                         additionalTafLurs = array;
419                                         access.log(Level.INIT,"OAuth2 Direct is enabled");
420                                 } else if(oauthTokenUrl!=null) {
421                                         String oauthIntrospectUrl = logProp(access,Config.AAF_OAUTH2_INTROSPECT_URL,null);
422                                         @SuppressWarnings("unchecked")
423                                         Class<HttpTaf> oaTCls = (Class<HttpTaf>)loadClass(access,OAUTH_HTTP_TAF);
424                                         if(oaTCls!=null) {
425                                                 Class<?> oaTTmgrCls = loadClass(access, OAUTH_TOKEN_MGR);
426                                                 if(oaTTmgrCls!=null) {
427                                                         try {
428                                                                 Method oaTTmgrGI = oaTTmgrCls.getMethod("getInstance",PropAccess.class,String.class,String.class);
429                                                                 Object oaTTmgr = oaTTmgrGI.invoke(null /*this is static method*/,access,oauthTokenUrl,oauthIntrospectUrl);
430                                                                 Constructor<HttpTaf> oaTConst = oaTCls.getConstructor(Access.class,oaTTmgrCls);
431                                                                 htlist.add(oaTConst.newInstance(access,oaTTmgr));
432                                                                 access.log(Level.INIT,"OAuth2 TAF is enabled");
433                                                         } catch (NoSuchMethodException | SecurityException | IllegalAccessException | IllegalArgumentException | InvocationTargetException | InstantiationException e) {
434                                                                 access.log(Level.INIT,"OAuth2HttpTaf cannot be instantiated. OAuth2 is disabled",e);
435                                                         }
436                                                 }
437                                         }
438                                 } else {
439                                         access.log(Level.INIT,"OAuth TAF is not configured");
440                                 }
441                         }
442         
443                         /////////////////////////////////////////////////////
444                         // Adding BasicAuth (AAF) last, after other primary Cookie Based
445                         // Needs to be before Cert... see below
446                         /////////////////////////////////////////////////////
447                         if(aaftaf!=null) {
448                                 htlist.add(aaftaf);
449                         }
450                 }       
451
452                 /////////////////////////////////////////////////////
453                 // Any Additional Lurs passed in Constructor
454                 /////////////////////////////////////////////////////
455                 if(additionalTafLurs!=null) {
456                         for(Object additional : additionalTafLurs) {
457                                 if(additional instanceof BasicHttpTaf) {
458                                         BasicHttpTaf ht = (BasicHttpTaf)additional;
459                                         for(Object cv : additionalTafLurs) {
460                                                 if(cv instanceof CredValDomain) {
461                                                         ht.add((CredValDomain)cv);
462                                                         access.printf(Level.INIT,"%s Authentication is enabled",cv);
463                                                 }
464                                         }
465                                         htlist.add(ht);
466                                 } else if(additional instanceof HttpTaf) {
467                                         HttpTaf ht = (HttpTaf)additional;
468                                         htlist.add(ht);
469                                         access.printf(Level.INIT,"%s Authentication is enabled",additional.getClass().getSimpleName());
470                                 } else if(hasOAuthDirectTAF) {
471                                         Class<?> daupCls;
472                                         try {
473                                                 daupCls = Class.forName("org.onap.aaf.auth.direct.DirectAAFUserPass");
474                                         } catch (ClassNotFoundException e) {
475                                                 daupCls = null;
476                                                 access.log(Level.INIT, e);
477                                         }
478                                         if(daupCls != null && additional.getClass().isAssignableFrom(daupCls)) {
479                                                 htlist.add(new BasicHttpTaf(access, (CredVal)additional , basicRealm, userExp, basicWarn));
480                                                 access.printf(Level.INIT,"Direct BasicAuth Authentication is enabled",additional.getClass().getSimpleName());
481                                         }
482                                 }
483                         }
484                 }
485                 
486                 // Add BasicAuth, if any, to x509Taf
487                 if(x509TAF!=null) {
488                         for( HttpTaf ht : htlist) {
489                                 if(ht instanceof BasicHttpTaf) {
490                                         x509TAF.add((BasicHttpTaf)ht);
491                                 }
492                         }
493                 }
494                 /////////////////////////////////////////////////////
495                 // Create EpiTaf from configured TAFs
496                 /////////////////////////////////////////////////////
497                 if(htlist.size()==1) {
498                         // just return the one
499                         taf = htlist.get(0);
500                 } else {
501                         HttpTaf[] htarray = new HttpTaf[htlist.size()];
502                         htlist.toArray(htarray);
503                         Locator<URI> locator = loadLocator(si, logProp(access, AAF_LOCATE_URL, null));
504                         
505                         taf = new HttpEpiTaf(access,locator, tc, htarray); // ok to pass locator == null
506                         String level = logProp(access, CADI_LOGLEVEL, null);
507                         if(level!=null) {
508                                 access.setLogLevel(Level.valueOf(level));
509                         }
510                 }
511                 
512                 return taf;
513         }
514         
515         public static String logProp(Access access,String tag, String def) {
516                 String rv = access.getProperty(tag, def);
517                 if(rv == null) {
518                         access.log(Level.INIT,tag,"is not explicitly set");
519                 } else {
520                         access.log(Level.INIT,tag,"is set to",rv);
521                 }
522                 return rv;
523         }
524         
525         public static Lur configLur(SecurityInfoC<HttpURLConnection> si, Connector con, Object ... additionalTafLurs) throws CadiException {
526                 Access access = si.access;
527                 List<Lur> lurs = new ArrayList<>();
528                 
529                 /////////////////////////////////////////////////////
530                 // Configure a Local Property Based RBAC/LUR
531                 /////////////////////////////////////////////////////
532                 try {
533                         String users = access.getProperty(USERS,null);
534                         String groups = access.getProperty(GROUPS,null);
535
536                         if(groups!=null || users!=null) {
537                                 LocalLur ll = new LocalLur(access, users, groups);  // note b64==null is ok.. just means no encryption.
538                                 lurs.add(ll);
539                                 
540                                 String writeto = access.getProperty(WRITE_TO,null);
541                                 if(writeto!=null) {
542                                         String msg = UsersDump.updateUsers(writeto, ll);
543                                         if(msg!=null) {
544                                                 access.log(Level.INIT,"ERROR! Error Updating ",writeto,"with roles and users:",msg);
545                                         }
546                                 }
547                         }
548                 } catch (IOException e) {
549                         throw new CadiException(e);
550                 }
551
552                 /////////////////////////////////////////////////////
553                 // Configure the OAuth Lur (if any)
554                 /////////////////////////////////////////////////////
555                 String tokenUrl = logProp(access,AAF_OAUTH2_TOKEN_URL, null);
556                 String introspectUrl = logProp(access,AAF_OAUTH2_INTROSPECT_URL, null);
557                 if(tokenUrl!=null && introspectUrl !=null) {
558                         try {
559                                 Class<?> olurCls = loadClass(access, CADI_OLUR_CLASS_DEF);
560                                 if(olurCls!=null) {
561                                         Constructor<?> olurCnst = olurCls.getConstructor(PropAccess.class,String.class,String.class);
562                                         Lur olur = (Lur)olurCnst.newInstance(access,tokenUrl,introspectUrl);
563                                         lurs.add(olur);
564                                         access.log(Level.INIT, "OAuth2 LUR enabled");
565                                 } else {
566                                         access.log(Level.INIT,"AAF/OAuth LUR plugin is not available.");
567                                 }
568                         } catch (NoSuchMethodException| SecurityException | InstantiationException | IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
569                                 String msg = e.getMessage();
570                                 if(msg==null && e.getCause()!=null) {
571                                         msg = e.getCause().getMessage();
572                                 }
573                                 access.log(Level.INIT,"AAF/OAuth LUR is not instantiated.",msg,e);
574                         } 
575                 } else {
576                         access.log(Level.INIT, "OAuth2 Lur disabled");
577                 }
578
579                 if(con!=null) { // try to reutilize connector
580                         lurs.add(con.newLur());
581                 } else { 
582                         /////////////////////////////////////////////////////
583                         // Configure the AAF Lur (if any)
584                         /////////////////////////////////////////////////////
585                         String aafURL = logProp(access,AAF_URL,null); // Trigger Property
586                         String aafEnv = access.getProperty(AAF_ENV,null);
587                         if(aafEnv == null && aafURL!=null && access instanceof PropAccess) { // set AAF_ENV from AAF_URL
588                                 int ec = aafURL.indexOf("envContext=");
589                                 if(ec>0) {
590                                         ec += 11; // length of envContext=
591                                         int slash = aafURL.indexOf('/', ec);
592                                         if(slash>0) {
593                                                 aafEnv = aafURL.substring(ec, slash);
594                                                 ((PropAccess)access).setProperty(AAF_ENV, aafEnv);
595                                                 access.printf(Level.INIT, "Setting aafEnv to %s from aaf_url value",aafEnv);
596                                         }
597                                 }
598                         }
599
600                         // Don't configure AAF if it is using DirectAccess
601                         if(!hasDirect("DirectAAFLur",additionalTafLurs)) {
602                                 if(aafURL==null) {
603                                         access.log(Level.INIT,"No AAF LUR properties, AAF will not be loaded");
604                                 } else {// There's an AAF_URL... try to configure an AAF
605                                         String aafLurClassStr = logProp(access,AAF_LUR_CLASS,AAF_V2_0_AAF_LUR_PERM);
606                                         ////////////AAF Lur 2.0 /////////////
607                                         if(aafLurClassStr!=null && aafLurClassStr.startsWith(AAF_V2_0)) { 
608                                                 try {
609                                                         Object aafcon = loadAAFConnector(si, aafURL);
610                                                         if(aafcon==null) {
611                                                                 access.log(Level.INIT,"AAF LUR class,",aafLurClassStr,"cannot be constructed without valid AAFCon object.");
612                                                         } else {
613                                                                 Class<?> aafAbsAAFCon = loadClass(access, AAF_V2_0_AAFCON);
614                                                                 if(aafAbsAAFCon!=null) {
615                                                                         Method mNewLur = aafAbsAAFCon.getMethod("newLur");
616                                                                         Object aaflur = mNewLur.invoke(aafcon);
617                                 
618                                                                         if(aaflur==null) {
619                                                                                 access.log(Level.INIT,"ERROR! AAF LUR Failed construction.  NOT Configured");
620                                                                         } else {
621                                                                                 access.log(Level.INIT,"AAF LUR Configured to ",aafURL);
622                                                                                 lurs.add((Lur)aaflur);
623                                                                                 String debugIDs = logProp(access,Config.AAF_DEBUG_IDS, null);
624                                                                                 if(debugIDs !=null && aaflur instanceof CachingLur) {
625                                                                                         ((CachingLur<?>)aaflur).setDebug(debugIDs);
626                                                                                 }
627                                                                         }
628                                                                 }
629                                                         }
630                                                 } catch (Exception e) {
631                                                         access.log(e,"AAF LUR class,",aafLurClassStr,"could not be constructed with given Constructors.");
632                                                 }
633                                         } 
634                                 }
635                         }
636                 }
637
638                 /////////////////////////////////////////////////////
639                 // Any Additional passed in Constructor
640                 /////////////////////////////////////////////////////
641                 if(additionalTafLurs!=null) {
642                         for(Object additional : additionalTafLurs) {
643                                 if(additional instanceof Lur) {
644                                         lurs.add((Lur)additional);
645                                         access.log(Level.INIT, additional);
646                                 }
647                         }
648                 }
649
650                 /////////////////////////////////////////////////////
651                 // Return a Lur based on how many there are... 
652                 /////////////////////////////////////////////////////
653                 switch(lurs.size()) {
654                         case 0: 
655                                 access.log(Level.INIT,"WARNING! No CADI LURs configured");
656                                 // Return a NULL Lur that does nothing.
657                                 return new NullLur();
658                         case 1:
659                                 return lurs.get(0); // Only one, just return it, save processing
660                         default:
661                                 // Multiple Lurs, use EpiLUR to handle
662                                 Lur[] la = new Lur[lurs.size()];
663                                 lurs.toArray(la);
664                                 return new EpiLur(la);
665                 }
666         }
667         
668         private static boolean hasDirect(String simpleClassName, Object[] additionalTafLurs) {
669                 if(additionalTafLurs!=null) {
670                         for(Object tf : additionalTafLurs) {
671                                 if(tf.getClass().getSimpleName().equals(simpleClassName)) {
672                                         return true;
673                                 }
674                         }
675                 }
676                 return false;
677         }
678
679         public static Object loadAAFConnector(SecurityInfoC<HttpURLConnection> si, String aafURL) {
680                 Access access = si.access;
681                 Object aafcon = null;
682                 Class<?> aafConClass = null;
683
684                 try {
685                         if (aafURL!=null) {
686                                 String aafConnector = access.getProperty(AAF_CONNECTOR_CLASS, AAF_V2_0_AAF_CON_HTTP);
687                                 if (AAF_V2_0_AAF_CON_HTTP.equals(aafConnector)) {
688                                         aafConClass = loadClass(access, AAF_V2_0_AAF_CON_HTTP);
689                                         if (aafConClass != null) {
690                                                 for (Constructor<?> c : aafConClass.getConstructors()) {
691                                                         List<Object> lo = new ArrayList<>();
692                                                         for (Class<?> pc : c.getParameterTypes()) {
693                                                                 if (pc.equals(Access.class)) {
694                                                                         lo.add(access);
695                                                                 } else if (pc.equals(Locator.class)) {
696                                                                         lo.add(loadLocator(si, aafURL));
697                                                                 }
698                                                         }
699                                                         if (c.getParameterTypes().length != lo.size()) {
700                                                                 continue; // back to another Constructor
701                                                         } else {
702                                                                 aafcon = c.newInstance(lo.toArray());
703                                                         }
704                                                         break;
705                                                 }
706                                         }
707                                 }
708                                 if (aafcon != null) {
709                                         String mechid = logProp(access, Config.AAF_APPID, null);
710                                         String pass = access.getProperty(Config.AAF_APPPASS, null);
711                                         if (mechid != null && pass != null) {
712                                                 try {
713                                                         Method basicAuth = aafConClass.getMethod("basicAuth", String.class, String.class);
714                                                         basicAuth.invoke(aafcon, mechid, pass);
715                                                 } catch (NoSuchMethodException nsme) {
716                                                         access.log(Level.NONE, nsme);
717                                                         // it's ok, don't use
718                                                 }
719                                         }
720                                 }
721                         }
722                 } catch (Exception e) {
723                         access.log(e, "AAF Connector could not be constructed with given Constructors.");
724                 }
725
726                 return aafcon;
727         }
728
729         public static Class<?> loadClass(Access access, String className) {
730                 Class<?> cls=null;
731                 try {
732                         cls = access.classLoader().loadClass(className);
733                 } catch (ClassNotFoundException cnfe) {
734                         access.log(Level.NONE, cnfe);
735                         try {
736                                 cls = access.getClass().getClassLoader().loadClass(className);
737                         } catch (ClassNotFoundException cnfe2) {
738                                 access.log(Level.NONE, cnfe2);
739                                 // just return null
740                         }
741                 }
742                 return cls;
743         }
744
745         @SuppressWarnings("unchecked")
746         public static Locator<URI> loadLocator(SecurityInfoC<HttpURLConnection> si, final String _url) throws LocatorException {
747                 Access access = si.access;
748                 Locator<URI> locator = null;
749                 if(_url==null) {
750                         access.log(Level.INIT,"No URL passed to 'loadLocator'. Disabled");
751                 } else {
752                         String url = _url;
753                         String replacement;
754                         int idxAAFLocateUrl;
755                         if((idxAAFLocateUrl=_url.indexOf(AAF_LOCATE_URL_TAG))>0 && ((replacement=access.getProperty(AAF_LOCATE_URL, null))!=null)) {
756                                 StringBuilder sb = new StringBuilder(replacement);
757                                 if(!replacement.endsWith("/locate")) {
758                                         sb.append("/locate");
759                                 } 
760                                 sb.append(_url,idxAAFLocateUrl+AAF_LOCATE_URL_TAG.length(),_url.length());
761                                 url = sb.toString();
762                         }
763         
764                         try {
765                                 Class<?> lcls = loadClass(access,AAF_LOCATOR_CLASS_DEF);
766                                 if(lcls==null) {
767                                         throw new CadiException("Need to include aaf-cadi-aaf jar for AAFLocator");
768                                 }
769                                 // First check for preloaded
770                                 try {
771                                         Method meth = lcls.getMethod("create",String.class);
772                                         locator = (Locator<URI>)meth.invoke(null,url);
773                                 } catch (Exception e) {
774                                         access.log(Level.INIT, e);
775                                 }
776                                 if(locator==null) {
777                                         URI locatorURI = new URI(url);
778                                         Constructor<?> cnst = lcls.getConstructor(SecurityInfoC.class,URI.class);
779                                         locator = (Locator<URI>)cnst.newInstance(new Object[] {si,locatorURI});
780                                         int port = locatorURI.getPort();
781                                         String portS = port<0?"":(":"+locatorURI.getPort());
782                                         
783                                         access.log(Level.INFO, "AAFLocator enabled using " + locatorURI.getScheme() +"://"+locatorURI.getHost() + portS);
784                                 } else {
785                                         access.log(Level.INFO, "AAFLocator enabled using preloaded " + locator.getClass().getSimpleName());
786                                 }
787                         } catch (InvocationTargetException e) {
788                                 if(e.getTargetException() instanceof LocatorException) {
789                                         throw (LocatorException)e.getTargetException();
790                                 }
791                                 access.log(Level.INIT,e.getTargetException().getMessage(),"AAFLocator for",url,"could not be created.",e);
792                         } catch (Exception e) {
793                                 access.log(Level.INIT,"AAFLocator for",url,"could not be created.",e);
794                         }
795                 }
796                 return locator;
797         }
798
799         // Set by CSP, or is hostname.
800         public static String getDefaultRealm() {
801                 return defaultRealm;
802         }
803
804 }
805