| Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1 | /* |
| 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 Innocenti | e71a28a | 2019-05-29 00:42:35 +0900 | [diff] [blame] | 28 | |
| 29 | #pragma once |
| Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 30 | |
| Luke Huang | e126fbe | 2019-07-20 17:36:30 +0800 | [diff] [blame] | 31 | #include <unordered_map> |
| Bernie Innocenti | a4be3c8 | 2019-03-28 19:25:11 +0900 | [diff] [blame] | 32 | #include <vector> |
| 33 | |
| Ken Chen | 9934488 | 2020-01-01 14:59:38 +0800 | [diff] [blame] | 34 | #include <aidl/android/net/IDnsResolver.h> |
| Ken Chen | a6ac2a6 | 2020-04-07 17:25:56 +0800 | [diff] [blame] | 35 | #include <aidl/android/net/ResolverOptionsParcel.h> |
| Ken Chen | 9934488 | 2020-01-01 14:59:38 +0800 | [diff] [blame] | 36 | |
| Mike Yu | e655b1d | 2019-08-28 17:49:59 +0800 | [diff] [blame] | 37 | #include <netdutils/DumpWriter.h> |
| 38 | #include <netdutils/InternetAddresses.h> |
| 39 | #include <stats.pb.h> |
| 40 | |
| 41 | #include "ResolverStats.h" |
| Ken Chen | 99c0b32 | 2019-11-20 14:24:09 +0800 | [diff] [blame] | 42 | #include "params.h" |
| Mike Yu | 6407ae4 | 2020-02-10 21:11:05 +0800 | [diff] [blame] | 43 | #include "stats.h" |
| Mike Yu | e655b1d | 2019-08-28 17:49:59 +0800 | [diff] [blame] | 44 | |
| Bernie Innocenti | 0848711 | 2019-10-11 21:14:13 +0900 | [diff] [blame] | 45 | // 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. |
| 48 | struct ResState; |
| Mike Yu | 021c3e1 | 2019-10-08 17:29:34 +0800 | [diff] [blame] | 49 | void resolv_populate_res_for_net(ResState* statp); |
| Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 50 | |
| Bernie Innocenti | a4be3c8 | 2019-03-28 19:25:11 +0900 | [diff] [blame] | 51 | std::vector<unsigned> resolv_list_caches(); |
| 52 | |
| Luke Huang | e126fbe | 2019-07-20 17:36:30 +0800 | [diff] [blame] | 53 | std::vector<std::string> resolv_cache_dump_subsampling_map(unsigned netid); |
| 54 | uint32_t resolv_cache_get_subsampling_denom(unsigned netid, int return_code); |
| 55 | |
| Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 56 | typedef enum { |
| Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 57 | 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 Huang | ba7bef9 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 60 | RESOLV_CACHE_FOUND, /* the cache found the answer */ |
| 61 | RESOLV_CACHE_SKIP /* Don't do anything on cache */ |
| Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 62 | } ResolvCacheStatus; |
| 63 | |
| Mike Yu | d1ec254 | 2019-06-06 17:17:53 +0800 | [diff] [blame] | 64 | ResolvCacheStatus resolv_cache_lookup(unsigned netid, const void* query, int querylen, void* answer, |
| 65 | int answersize, int* answerlen, uint32_t flags); |
| Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 66 | |
| Mike Yu | d1ec254 | 2019-06-06 17:17:53 +0800 | [diff] [blame] | 67 | // 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. |
| 69 | int resolv_cache_add(unsigned netid, const void* query, int querylen, const void* answer, |
| 70 | int answerlen); |
| Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 71 | |
| 72 | /* Notify the cache a request failed */ |
| Luke Huang | ba7bef9 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 73 | void _resolv_cache_query_failed(unsigned netid, const void* query, int querylen, uint32_t flags); |
| Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 74 | |
| chenbruce | fd837fa | 2019-10-29 18:35:36 +0800 | [diff] [blame] | 75 | // Get a customized table for a given network. |
| 76 | std::vector<std::string> getCustomizedTableByName(const size_t netid, const char* hostname); |
| 77 | |
| Bernie Innocenti | e71a28a | 2019-05-29 00:42:35 +0900 | [diff] [blame] | 78 | // Sets name servers for a given network. |
| Ken Chen | 9934488 | 2020-01-01 14:59:38 +0800 | [diff] [blame] | 79 | // TODO: Pass all of ResolverParamsParcel and remove the res_params argument. |
| Ken Chen | a6ac2a6 | 2020-04-07 17:25:56 +0800 | [diff] [blame] | 80 | int 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 Chen | bc481b8 | 2020-05-21 23:30:01 +0800 | [diff] [blame] | 84 | aidl::android::net::IDnsResolver::TC_MODE_DEFAULT, |
| 85 | false /* enforceDnsUid */}, |
| Ken Chen | a6ac2a6 | 2020-04-07 17:25:56 +0800 | [diff] [blame] | 86 | const std::vector<int32_t>& transportTypes = {}); |
| Bernie Innocenti | e71a28a | 2019-05-29 00:42:35 +0900 | [diff] [blame] | 87 | |
| 88 | // Creates the cache associated with the given network. |
| 89 | int resolv_create_cache_for_net(unsigned netid); |
| 90 | |
| 91 | // Deletes the cache associated with the given network. |
| 92 | void resolv_delete_cache_for_net(unsigned netid); |
| Mike Yu | d1ec254 | 2019-06-06 17:17:53 +0800 | [diff] [blame] | 93 | |
| Ken Chen | 766feae | 2019-10-30 15:13:44 +0800 | [diff] [blame] | 94 | // Flushes the cache associated with the given network. |
| 95 | int resolv_flush_cache_for_net(unsigned netid); |
| 96 | |
| chenbruce | 3e5c35f | 2020-02-20 14:08:25 +0800 | [diff] [blame] | 97 | // Get transport types to a given network. |
| 98 | android::net::NetworkType resolv_get_network_types_for_net(unsigned netid); |
| 99 | |
| Mike Yu | d1ec254 | 2019-06-06 17:17:53 +0800 | [diff] [blame] | 100 | // Return true if the cache is existent in the given network, false otherwise. |
| 101 | bool 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 Yu | c7649d1 | 2019-05-22 15:28:07 +0800 | [diff] [blame] | 106 | int resolv_cache_get_expiration(unsigned netid, const std::vector<char>& query, time_t* expiration); |
| Mike Yu | e655b1d | 2019-08-28 17:49:59 +0800 | [diff] [blame] | 107 | |
| chenbruce | edec3e1 | 2021-06-27 23:25:07 +0800 | [diff] [blame] | 108 | // Set addresses to DnsStats for a given network. |
| 109 | int resolv_stats_set_addrs(unsigned netid, android::net::Protocol proto, |
| 110 | const std::vector<std::string>& addrs, int port); |
| Mike Yu | e655b1d | 2019-08-28 17:49:59 +0800 | [diff] [blame] | 111 | |
| 112 | // Add a statistics record to DnsStats for a given network. |
| 113 | bool resolv_stats_add(unsigned netid, const android::netdutils::IPSockAddr& server, |
| 114 | const android::net::DnsQueryEvent* record); |
| 115 | |
| Mike Yu | 6407ae4 | 2020-02-10 21:11:05 +0800 | [diff] [blame] | 116 | /* 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 | */ |
| 119 | int 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 | */ |
| 126 | void 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); |
| chenbruce | 3e5c35f | 2020-02-20 14:08:25 +0800 | [diff] [blame] | 129 | |
| 130 | // Convert TRANSPORT_* to NT_*. It's public only for unit testing. |
| 131 | android::net::NetworkType convert_network_type(const std::vector<int32_t>& transportTypes); |
| 132 | |
| 133 | // Dump net configuration log for a given network. |
| 134 | void resolv_netconfig_dump(android::netdutils::DumpWriter& dw, unsigned netid); |