summaryrefslogtreecommitdiffstats
path: root/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/persistence/DnsNameResolver.java
blob: 461b7346119541993d5cb0e87c6d771cb4309a01 (plain) (blame)
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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.persistence;

import com.google.common.collect.ImmutableSet;
import com.google.common.net.InetAddresses;
import com.yahoo.log.LogLevel;

import javax.naming.NamingException;
import javax.naming.directory.Attribute;
import javax.naming.directory.Attributes;
import javax.naming.directory.DirContext;
import javax.naming.directory.InitialDirContext;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.Optional;
import java.util.Set;
import java.util.logging.Logger;

/**
 * Implementation of a name resolver that always uses a DNS server to resolve the given name. The intention is to avoid
 * possibly incorrect/incomplete records in /etc/hosts.
 *
 * @author mpolden
 */
public class DnsNameResolver implements NameResolver {

    private static final Logger logger = Logger.getLogger(DnsNameResolver.class.getName());

    @Override
    public Set<String> getAllByNameOrThrow(String hostname) {
        try {
            Optional<String> cname = lookupName(hostname, Type.CNAME);
            if (cname.isPresent()) {
                hostname = cname.get();
            }
            Optional<String> inet4Address = lookupName(hostname, Type.A);
            Optional<String> inet6Address = lookupName(hostname, Type.AAAA);

            ImmutableSet.Builder<String> ipAddresses = ImmutableSet.builder();
            inet4Address.ifPresent(ipAddresses::add);
            inet6Address.ifPresent(ipAddresses::add);
            return ipAddresses.build();
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }

    @Override
    public Optional<String> getHostname(String ipAddress) {
        try {
            String hostname = InetAddress.getByName(ipAddress).getHostName();
            return InetAddresses.isInetAddress(hostname) ? Optional.empty() : Optional.of(hostname);
        } catch (UnknownHostException e) {
            // This is not an exceptional state hence the debug level
            logger.log(LogLevel.DEBUG, "Unable to resolve ipaddress", e);
        }
        return Optional.empty();
    }

    private Optional<String> lookupName(String name, Type type) throws NamingException {
        DirContext ctx = new InitialDirContext();
        Attributes attributes = ctx.getAttributes("dns:/" + name, new String[]{type.value});
        Optional<Attribute> attribute = Optional.ofNullable(attributes.get(type.value));
        if (attribute.isPresent()) {
            return Optional.ofNullable(attribute.get().get()).map(Object::toString);
        }
        return Optional.empty();
    }

    private enum Type {

        A("A"),
        AAAA("AAAA"),
        CNAME("CNAME");

        private final String value;

        Type(String value) {
            this.value = value;
        }
    }

}