Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Bernie Innocenti | 189eb50 | 2018-10-01 23:10:18 +0900 | [diff] [blame] | 17 | #ifndef NETD_RESOLV_PARAMS_H |
| 18 | #define NETD_RESOLV_PARAMS_H |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 19 | |
| 20 | #include <stdint.h> |
| 21 | |
Bernie Innocenti | 34de3ba | 2019-02-19 18:08:36 +0900 | [diff] [blame] | 22 | #define MAXNS 4 // max # name servers we'll track |
| 23 | #define MAXDNSRCH 6 // max # domains in search path |
| 24 | #define MAXDNSRCHPATH 256 // max length of domain search paths |
| 25 | #define MAXNSSAMPLES 64 // max # samples to store per server |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 26 | |
Bernie Innocenti | 189eb50 | 2018-10-01 23:10:18 +0900 | [diff] [blame] | 27 | // Per-netid configuration parameters passed from netd to the resolver |
Bernie Innocenti | 34de3ba | 2019-02-19 18:08:36 +0900 | [diff] [blame] | 28 | struct res_params { |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 29 | uint16_t sample_validity; // sample lifetime in s |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 30 | // threshold of success / total samples below which a server is considered broken |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 31 | uint8_t success_threshold; // 0: disable, value / 100 otherwise |
| 32 | uint8_t min_samples; // min # samples needed for statistics to be considered meaningful |
| 33 | uint8_t max_samples; // max # samples taken into account for statistics |
| 34 | int base_timeout_msec; // base query retry timeout (if 0, use RES_TIMEOUT) |
waynema | d193e4d | 2019-02-18 17:47:59 +0800 | [diff] [blame] | 35 | int retry_count; // number of retries |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 36 | }; |
| 37 | |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 38 | // The DNS over TLS mode on a specific netId. |
| 39 | enum class PrivateDnsMode : uint8_t { OFF, OPPORTUNISTIC, STRICT }; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 40 | |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 41 | // Validation status of a DNS over TLS server (on a specific netId). |
| 42 | enum class Validation : uint8_t { in_process, success, fail, unknown_server, unknown_netid }; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 43 | |
Bernie Innocenti | ee1b85b | 2018-09-25 14:23:19 +0900 | [diff] [blame] | 44 | #define LIBNETD_RESOLV_PUBLIC extern "C" [[gnu::visibility("default")]] |
| 45 | |
Bernie Innocenti | 189eb50 | 2018-10-01 23:10:18 +0900 | [diff] [blame] | 46 | #endif // NETD_RESOLV_PARAMS_H |