summaryrefslogtreecommitdiffstats
path: root/core/utils/provider/src/main/java/org/onap/ccsdk/sli/core/utils/common/AcceptIpAddressHostNameVerifier.java
blob: 25686d542fcc60afddda12c887cad90927c23085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*-
 * ============LICENSE_START=======================================================
 * onap
 * ================================================================================
 * Copyright (C) 2021 AT&T
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

 package org.onap.ccsdk.sli.core.utils.common;

import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLSession;

/**
 * HostnameVerifier that accepts IP addresses without verification, but 
 * does default host name verification on true FQDNs
 */
public class AcceptIpAddressHostNameVerifier implements HostnameVerifier {

    public static final String DISABLE_HOSTNAME_VERIFICATION = "org.onap.ccsdk.host.verification.disable";

    public static final String IPV4_REGEX = "\\A(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)(\\.(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)){3}\\z";
    public static final String IPV6_HEX4DECCOMPRESSED_REGEX = "\\A((?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)?) ::((?:[0-9A-Fa-f]{1,4}:)*)(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)(\\.(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)){3}\\z";
    public static final String IPV6_6HEX4DEC_REGEX = "\\A((?:[0-9A-Fa-f]{1,4}:){6,6})(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)(\\.(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)){3}\\z";
    public static final String IPV6_HEXCOMPRESSED_REGEX = "\\A((?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)?)::((?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)?)\\z";
    public static final String IPV6_REGEX = "\\A(?:[0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}\\z";

    boolean disableHostVerification = false;

    public AcceptIpAddressHostNameVerifier() {
        // Allow for host name verification to be disabled if
        // necessary (for example, if self-signed certificates must
        // be supported)
        String disableHostVerification = System.getProperty(DISABLE_HOSTNAME_VERIFICATION, "false");

        if ("true".equalsIgnoreCase(disableHostVerification)) {
            this.disableHostVerification = true;
        } else {
            this.disableHostVerification = false;
        }
    }

    public AcceptIpAddressHostNameVerifier(boolean disableHostVerification) {
        this.disableHostVerification = disableHostVerification;
    }
    
    @Override
    public boolean verify(String hostName, SSLSession session) {

        if (disableHostVerification) {
            return true;
        }

        // Null host name should never happen, but better to be safe
        if (hostName == null) {
            return false;
        }

        // If "hostName" is an IP address, accept it
        if (hostName.matches(IPV4_REGEX) ||
            hostName.matches(IPV6_REGEX) ||
            hostName.matches(IPV6_HEX4DECCOMPRESSED_REGEX) ||
            hostName.matches(IPV6_6HEX4DEC_REGEX) || 
            hostName.matches(IPV6_HEXCOMPRESSED_REGEX))
        {
            return true;
        }

        // Handle localhost as special case
        if (hostName.equals("localhost")) {
            return(true);
        }

        // Host name is not an IP address - perform default host
        // name verification.
        HostnameVerifier defaultHv = HttpsURLConnection.getDefaultHostnameVerifier();
        return(defaultHv.verify(hostName, session));
    }

    
}