summaryrefslogtreecommitdiffstats
blob: 20caae85881337b1c71e905a097a772e652cc51a (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
/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */
/*
 * Copyright (c) 2011, Isode Limited, London, England.
 * All rights reserved.
 */
package com.isode.stroke.tls;

import com.isode.stroke.idn.IDNA;
import com.isode.stroke.jid.JID;
import java.util.List;

public class ServerIdentityVerifier {

    public ServerIdentityVerifier(JID jid) {
        domain = jid.getDomain();
        encodedDomain = IDNA.getEncoded(domain);
    }

    public boolean certificateVerifies(Certificate certificate) {
        if (certificate==null) {
            return false;
        }
        boolean hasSAN = false;

        // DNS names
        List<String> dnsNames = certificate.getDNSNames();
        for (String dnsName : dnsNames) {
            if (matchesDomain(dnsName)) {
                return true;
            }
        }
        hasSAN |= !dnsNames.isEmpty();

        // SRV names
        List<String> srvNames = certificate.getSRVNames();
        for (String srvName : srvNames) {
            // Only match SRV names that begin with the service; this isn't required per
            // spec, but we're being purist about this.
            if (srvName.startsWith("_xmpp-client.") && matchesDomain(srvName.substring("_xmpp-client.".length()))) {
                return true;
            }
        }
        hasSAN |= !srvNames.isEmpty();

        // XmppAddr
        List<String> xmppAddresses = certificate.getXMPPAddresses();
        for (String xmppAddress : xmppAddresses) {
            if (matchesAddress(xmppAddress)) {
                return true;
            }
        }
        hasSAN |= !xmppAddresses.isEmpty();

        // CommonNames. Only check this if there was no SAN (according to spec).
        if (!hasSAN) {
            List<String> commonNames = certificate.getCommonNames();
            for (String commonName : commonNames) {
                if (matchesDomain(commonName)) {
                    return true;
                }
            }
        }

        return false;
    }

    boolean matchesDomain(String s) {
        if (s.startsWith("*.")) {
            String matchString = s.substring(2);
            String matchDomain = encodedDomain;
            int dotIndex = matchDomain.indexOf('.');
            if (dotIndex >= 0) {
                matchDomain = matchDomain.substring(dotIndex + 1);
            }
            return matchString.equals(matchDomain);
        }
        else {
            return s.equals(encodedDomain);
        }
    }

    boolean matchesAddress(String s) {
        return s.equals(domain);
    }
    private String domain;
    private String encodedDomain;
}