blob: 60b9b542677606083fc46764f1b773a6b7f70e5f [file] [log] [blame]
Bernie Innocenti55864192018-08-30 04:05:20 +09001/*
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 Innocenti189eb502018-10-01 23:10:18 +090017#ifndef NETD_RESOLV_PARAMS_H
18#define NETD_RESOLV_PARAMS_H
Bernie Innocenti55864192018-08-30 04:05:20 +090019
20#include <stdint.h>
21
22/* Hard-coded defines */
Bernie Innocentif12d5bb2018-08-31 14:09:46 +090023#define MAXNS 4 /* max # name servers we'll track */
24#define MAXDNSRCH 6 /* max # domains in search path */
25#define MAXDNSRCHPATH 256 /* max length of domain search paths */
26#define MAXNSSAMPLES 64 /* max # samples to store per server */
Bernie Innocenti55864192018-08-30 04:05:20 +090027
Bernie Innocenti189eb502018-10-01 23:10:18 +090028// Per-netid configuration parameters passed from netd to the resolver
29// TODO: rename to res_params
Bernie Innocenti55864192018-08-30 04:05:20 +090030struct __res_params {
Bernie Innocentif12d5bb2018-08-31 14:09:46 +090031 uint16_t sample_validity; // sample lifetime in s
Bernie Innocenti55864192018-08-30 04:05:20 +090032 // threshold of success / total samples below which a server is considered broken
Bernie Innocentif12d5bb2018-08-31 14:09:46 +090033 uint8_t success_threshold; // 0: disable, value / 100 otherwise
34 uint8_t min_samples; // min # samples needed for statistics to be considered meaningful
35 uint8_t max_samples; // max # samples taken into account for statistics
36 int base_timeout_msec; // base query retry timeout (if 0, use RES_TIMEOUT)
Bernie Innocenti55864192018-08-30 04:05:20 +090037};
38
Bernie Innocentif12d5bb2018-08-31 14:09:46 +090039typedef enum { res_goahead, res_nextns, res_modified, res_done, res_error } res_sendhookact;
Bernie Innocenti55864192018-08-30 04:05:20 +090040
Bernie Innocenti189eb502018-10-01 23:10:18 +090041typedef res_sendhookact (*res_send_qhook)(struct sockaddr* const*, const uint8_t**, int*, uint8_t*,
Bernie Innocentif12d5bb2018-08-31 14:09:46 +090042 int, int*);
Bernie Innocenti55864192018-08-30 04:05:20 +090043
Bernie Innocenti189eb502018-10-01 23:10:18 +090044typedef res_sendhookact (*res_send_rhook)(const struct sockaddr*, const uint8_t*, int, uint8_t*,
45 int, int*);
Bernie Innocenti55864192018-08-30 04:05:20 +090046
Bernie Innocentiee1b85b2018-09-25 14:23:19 +090047#define LIBNETD_RESOLV_PUBLIC extern "C" [[gnu::visibility("default")]]
48
Bernie Innocenti189eb502018-10-01 23:10:18 +090049#endif // NETD_RESOLV_PARAMS_H