blob: e1dbbaf54f673de3368991783f4b6af8988886ab [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 Chena6ac2a62020-04-07 17:25:56 +080035#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;
Mike Yu021c3e12019-10-08 17:29:34 +080049void resolv_populate_res_for_net(ResState* statp);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090050
Bernie Innocentia4be3c82019-03-28 19:25:11 +090051std::vector<unsigned> resolv_list_caches();
52
Luke Huange126fbe2019-07-20 17:36:30 +080053std::vector<std::string> resolv_cache_dump_subsampling_map(unsigned netid);
54uint32_t resolv_cache_get_subsampling_denom(unsigned netid, int return_code);
55
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090056typedef enum {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +090057 RESOLV_CACHE_UNSUPPORTED, /* the cache can't handle that kind of queries */
58 /* or the answer buffer is too small */
59 RESOLV_CACHE_NOTFOUND, /* the cache doesn't know about this query */
Luke Huangba7bef92018-12-26 16:53:03 +080060 RESOLV_CACHE_FOUND, /* the cache found the answer */
61 RESOLV_CACHE_SKIP /* Don't do anything on cache */
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090062} ResolvCacheStatus;
63
Mike Yud1ec2542019-06-06 17:17:53 +080064ResolvCacheStatus resolv_cache_lookup(unsigned netid, const void* query, int querylen, void* answer,
65 int answersize, int* answerlen, uint32_t flags);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090066
Mike Yud1ec2542019-06-06 17:17:53 +080067// add a (query,answer) to the cache. If the pair has been in the cache, no new entry will be added
68// in the cache.
69int resolv_cache_add(unsigned netid, const void* query, int querylen, const void* answer,
70 int answerlen);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090071
72/* Notify the cache a request failed */
Luke Huangba7bef92018-12-26 16:53:03 +080073void _resolv_cache_query_failed(unsigned netid, const void* query, int querylen, uint32_t flags);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090074
chenbrucefd837fa2019-10-29 18:35:36 +080075// Get a customized table for a given network.
76std::vector<std::string> getCustomizedTableByName(const size_t netid, const char* hostname);
77
Bernie Innocentie71a28a2019-05-29 00:42:35 +090078// Sets name servers for a given network.
Ken Chen99344882020-01-01 14:59:38 +080079// TODO: Pass all of ResolverParamsParcel and remove the res_params argument.
Ken Chena6ac2a62020-04-07 17:25:56 +080080int resolv_set_nameservers(unsigned netid, const std::vector<std::string>& servers,
81 const std::vector<std::string>& domains, const res_params& params,
82 const aidl::android::net::ResolverOptionsParcel& resolverOptions =
83 {{} /* hosts */,
Ken Chenbc481b82020-05-21 23:30:01 +080084 aidl::android::net::IDnsResolver::TC_MODE_DEFAULT,
85 false /* enforceDnsUid */},
Ken Chena6ac2a62020-04-07 17:25:56 +080086 const std::vector<int32_t>& transportTypes = {});
Bernie Innocentie71a28a2019-05-29 00:42:35 +090087
88// Creates the cache associated with the given network.
89int resolv_create_cache_for_net(unsigned netid);
90
91// Deletes the cache associated with the given network.
92void resolv_delete_cache_for_net(unsigned netid);
Mike Yud1ec2542019-06-06 17:17:53 +080093
Ken Chen766feae2019-10-30 15:13:44 +080094// Flushes the cache associated with the given network.
95int resolv_flush_cache_for_net(unsigned netid);
96
chenbruce3e5c35f2020-02-20 14:08:25 +080097// Get transport types to a given network.
98android::net::NetworkType resolv_get_network_types_for_net(unsigned netid);
99
Mike Yud1ec2542019-06-06 17:17:53 +0800100// Return true if the cache is existent in the given network, false otherwise.
101bool has_named_cache(unsigned netid);
102
103// For test only.
104// Get the expiration time of a cache entry. Return 0 on success; otherwise, an negative error is
105// returned if the expiration time can't be acquired.
Mike Yuc7649d12019-05-22 15:28:07 +0800106int resolv_cache_get_expiration(unsigned netid, const std::vector<char>& query, time_t* expiration);
Mike Yue655b1d2019-08-28 17:49:59 +0800107
chenbruceedec3e12021-06-27 23:25:07 +0800108// Set addresses to DnsStats for a given network.
109int resolv_stats_set_addrs(unsigned netid, android::net::Protocol proto,
110 const std::vector<std::string>& addrs, int port);
Mike Yue655b1d2019-08-28 17:49:59 +0800111
112// Add a statistics record to DnsStats for a given network.
113bool resolv_stats_add(unsigned netid, const android::netdutils::IPSockAddr& server,
114 const android::net::DnsQueryEvent* record);
115
Mike Yu6407ae42020-02-10 21:11:05 +0800116/* Retrieve a local copy of the stats for the given netid. The buffer must have space for
117 * MAXNS __resolver_stats. Returns the revision id of the resolvers used.
118 */
119int resolv_cache_get_resolver_stats(
120 unsigned netid, res_params* params, res_stats stats[MAXNS],
121 const std::vector<android::netdutils::IPSockAddr>& serverSockAddrs);
122
123/* Add a sample to the shared struct for the given netid and server, provided that the
124 * revision_id of the stored servers has not changed.
125 */
126void resolv_cache_add_resolver_stats_sample(unsigned netid, int revision_id,
127 const android::netdutils::IPSockAddr& serverSockAddr,
128 const res_sample& sample, int max_samples);
chenbruce3e5c35f2020-02-20 14:08:25 +0800129
130// Convert TRANSPORT_* to NT_*. It's public only for unit testing.
131android::net::NetworkType convert_network_type(const std::vector<int32_t>& transportTypes);
132
133// Dump net configuration log for a given network.
134void resolv_netconfig_dump(android::netdutils::DumpWriter& dw, unsigned netid);