blob: d8a3afc9c16d4fe26a8a6a479899be925e2a074b [file] [log] [blame]
Bernie Innocenti318ed2d2018-08-30 04:05:20 +09001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
Bernie Innocentie71a28a2019-05-29 00:42:35 +090028
29#pragma once
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090030
Luke Huange126fbe2019-07-20 17:36:30 +080031#include <unordered_map>
Bernie Innocentia4be3c82019-03-28 19:25:11 +090032#include <vector>
33
Ken Chen99344882020-01-01 14:59:38 +080034#include <aidl/android/net/IDnsResolver.h>
Ken Chen05420812020-04-07 18:58:38 +000035#include <aidl/android/net/ResolverOptionsParcel.h>
Ken Chen99344882020-01-01 14:59:38 +080036
Mike Yue655b1d2019-08-28 17:49:59 +080037#include <netdutils/DumpWriter.h>
38#include <netdutils/InternetAddresses.h>
39#include <stats.pb.h>
40
41#include "ResolverStats.h"
Ken Chen99c0b322019-11-20 14:24:09 +080042#include "params.h"
Mike Yu6407ae42020-02-10 21:11:05 +080043#include "stats.h"
Mike Yue655b1d2019-08-28 17:49:59 +080044
Bernie Innocenti08487112019-10-11 21:14:13 +090045// Sets the name server addresses to the provided ResState.
46// The name servers are retrieved from the cache which is associated
47// with the network to which ResState is associated.
48struct ResState;
chenbrucefd837fa2019-10-29 18:35:36 +080049
50typedef std::multimap<std::string /* hostname */, std::string /* IPv4/IPv6 address */> HostMapping;
51
Mike Yu021c3e12019-10-08 17:29:34 +080052void resolv_populate_res_for_net(ResState* statp);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090053
Bernie Innocentia4be3c82019-03-28 19:25:11 +090054std::vector<unsigned> resolv_list_caches();
55
Luke Huange126fbe2019-07-20 17:36:30 +080056std::vector<std::string> resolv_cache_dump_subsampling_map(unsigned netid);
57uint32_t resolv_cache_get_subsampling_denom(unsigned netid, int return_code);
58
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090059typedef enum {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +090060 RESOLV_CACHE_UNSUPPORTED, /* the cache can't handle that kind of queries */
61 /* or the answer buffer is too small */
62 RESOLV_CACHE_NOTFOUND, /* the cache doesn't know about this query */
Luke Huangba7bef92018-12-26 16:53:03 +080063 RESOLV_CACHE_FOUND, /* the cache found the answer */
64 RESOLV_CACHE_SKIP /* Don't do anything on cache */
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090065} ResolvCacheStatus;
66
Mike Yud1ec2542019-06-06 17:17:53 +080067ResolvCacheStatus resolv_cache_lookup(unsigned netid, const void* query, int querylen, void* answer,
68 int answersize, int* answerlen, uint32_t flags);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090069
Mike Yud1ec2542019-06-06 17:17:53 +080070// add a (query,answer) to the cache. If the pair has been in the cache, no new entry will be added
71// in the cache.
72int resolv_cache_add(unsigned netid, const void* query, int querylen, const void* answer,
73 int answerlen);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090074
75/* Notify the cache a request failed */
Luke Huangba7bef92018-12-26 16:53:03 +080076void _resolv_cache_query_failed(unsigned netid, const void* query, int querylen, uint32_t flags);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090077
chenbrucefd837fa2019-10-29 18:35:36 +080078// Get a customized table for a given network.
79std::vector<std::string> getCustomizedTableByName(const size_t netid, const char* hostname);
80
Bernie Innocentie71a28a2019-05-29 00:42:35 +090081// Sets name servers for a given network.
Ken Chen99344882020-01-01 14:59:38 +080082// TODO: Pass all of ResolverParamsParcel and remove the res_params argument.
Ken Chen05420812020-04-07 18:58:38 +000083int resolv_set_nameservers(unsigned netid, const std::vector<std::string>& servers,
84 const std::vector<std::string>& domains, const res_params& params,
85 const aidl::android::net::ResolverOptionsParcel& resolverOptions =
86 {{} /* hosts */,
Ken Chen85fb9ea2020-05-21 23:30:01 +080087 aidl::android::net::IDnsResolver::TC_MODE_DEFAULT,
88 false /* enforceDnsUid */},
Ken Chen05420812020-04-07 18:58:38 +000089 const std::vector<int32_t>& transportTypes = {});
Bernie Innocentie71a28a2019-05-29 00:42:35 +090090
91// Creates the cache associated with the given network.
92int resolv_create_cache_for_net(unsigned netid);
93
94// Deletes the cache associated with the given network.
95void resolv_delete_cache_for_net(unsigned netid);
Mike Yud1ec2542019-06-06 17:17:53 +080096
Ken Chen766feae2019-10-30 15:13:44 +080097// Flushes the cache associated with the given network.
98int resolv_flush_cache_for_net(unsigned netid);
99
Bruce Chen340bb8d2020-04-03 12:56:13 +0000100// Get transport types to a given network.
101android::net::NetworkType resolv_get_network_types_for_net(unsigned netid);
102
Mike Yud1ec2542019-06-06 17:17:53 +0800103// For test only.
104// Return true if the cache is existent in the given network, false otherwise.
105bool has_named_cache(unsigned netid);
106
107// For test only.
108// Get the expiration time of a cache entry. Return 0 on success; otherwise, an negative error is
109// returned if the expiration time can't be acquired.
Mike Yuc7649d12019-05-22 15:28:07 +0800110int resolv_cache_get_expiration(unsigned netid, const std::vector<char>& query, time_t* expiration);
Mike Yue655b1d2019-08-28 17:49:59 +0800111
112// Set private DNS servers to DnsStats for a given network.
113int resolv_stats_set_servers_for_dot(unsigned netid, const std::vector<std::string>& servers);
114
115// Add a statistics record to DnsStats for a given network.
116bool resolv_stats_add(unsigned netid, const android::netdutils::IPSockAddr& server,
117 const android::net::DnsQueryEvent* record);
118
Mike Yu6407ae42020-02-10 21:11:05 +0800119/* Retrieve a local copy of the stats for the given netid. The buffer must have space for
120 * MAXNS __resolver_stats. Returns the revision id of the resolvers used.
121 */
122int resolv_cache_get_resolver_stats(
123 unsigned netid, res_params* params, res_stats stats[MAXNS],
124 const std::vector<android::netdutils::IPSockAddr>& serverSockAddrs);
125
126/* Add a sample to the shared struct for the given netid and server, provided that the
127 * revision_id of the stored servers has not changed.
128 */
129void resolv_cache_add_resolver_stats_sample(unsigned netid, int revision_id,
130 const android::netdutils::IPSockAddr& serverSockAddr,
131 const res_sample& sample, int max_samples);
Bruce Chen340bb8d2020-04-03 12:56:13 +0000132
133// Convert TRANSPORT_* to NT_*. It's public only for unit testing.
134android::net::NetworkType convert_network_type(const std::vector<int32_t>& transportTypes);
135
136// Dump net configuration log for a given network.
137void resolv_netconfig_dump(android::netdutils::DumpWriter& dw, unsigned netid);