aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/persistence/DnsNameResolver.java
blob: f6c8006b70365458c4c46bec0959df69d48aea5c (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
// Copyright Vespa.ai. 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.net.InetAddresses;

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.Collections;
import java.util.EnumSet;
import java.util.HashSet;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;

/**
 * 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 {

    @Override
    public Set<String> resolveAll(String name) {
        return resolve(name, RecordType.A, RecordType.AAAA);
    }

    @Override
    public Set<String> resolve(String name, RecordType first, RecordType... rest) {
        Set<String> results = new HashSet<>();
        for (var type : EnumSet.of(first, rest)) {
            try {
                results.addAll(lookupName(name, type));
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
        return Collections.unmodifiableSet(results);
    }

    @Override
    public Optional<String> resolveHostname(String ipAddress) {
        try {
            // TODO(mpolden): Use lookupName instead. IP address must be translated to its reverse
            //                notation first.
            String hostname = InetAddress.getByName(ipAddress).getHostName();
            return InetAddresses.isInetAddress(hostname) ? Optional.empty() : Optional.of(hostname);
        } catch (UnknownHostException ignored) {
        }
        return Optional.empty();
    }

    private Set<String> lookupName(String name, RecordType type) throws NamingException {
        DirContext ctx = new InitialDirContext();
        Attributes attributes = ctx.getAttributes("dns:/" + name, new String[]{type.value()});
        Attribute attribute = attributes.get(type.value());
        if (attribute == null) {
            return Set.of();
        }
        Set<String> results = new HashSet<>();
        attribute.getAll().asIterator().forEachRemaining(value -> results.add(Objects.toString(value)));
        return results;
    }

}