blob: ffb1cac65a1216cd01f617ea6c9d67581bff223c [file] [log] [blame]
Baptiste Assmann325137d2015-04-13 23:40:55 +02001/*
2 * include/proto/dns.h
3 * This file provides functions related to DNS protocol
4 *
5 * Copyright (C) 2014 Baptiste Assmann <bedis9@gmail.com>
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef _PROTO_DNS_H
23#define _PROTO_DNS_H
24
25#include <types/dns.h>
26#include <types/proto_udp.h>
27
Willy Tarreau2100b492015-07-22 16:42:43 +020028char *dns_str_to_dn_label(const char *string, char *dn, int dn_len);
Baptiste Assmann325137d2015-04-13 23:40:55 +020029int dns_str_to_dn_label_len(const char *string);
30int dns_hostname_validation(const char *string, char **err);
31int dns_build_query(int query_id, int query_type, char *hostname_dn, int hostname_dn_len, char *buf, int bufsize);
32struct task *dns_process_resolve(struct task *t);
Baptiste Assmann5cd1b922017-02-02 22:44:15 +010033int dns_init_resolvers(int close_socket);
Baptiste Assmann325137d2015-04-13 23:40:55 +020034uint16_t dns_rnd16(void);
Baptiste Assmannc1ce5f32016-05-14 11:26:22 +020035int dns_validate_dns_response(unsigned char *resp, unsigned char *bufend, struct dns_response_packet *dns_p);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +020036int dns_get_ip_from_response(struct dns_response_packet *dns_p,
Baptiste Assmann42746372017-05-03 12:12:02 +020037 struct dns_options *dns_opts, void *currentip,
Thierry Fournierada34842016-02-17 21:25:09 +010038 short currentip_sin_family,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +020039 void **newip, short *newip_sin_family,
40 void *owner);
Baptiste Assmann325137d2015-04-13 23:40:55 +020041void dns_resolve_send(struct dgram_conn *dgram);
42void dns_resolve_recv(struct dgram_conn *dgram);
43int dns_send_query(struct dns_resolution *resolution);
44void dns_print_current_resolutions(struct dns_resolvers *resolvers);
45void dns_update_resolvers_timeout(struct dns_resolvers *resolvers);
46void dns_reset_resolution(struct dns_resolution *resolution);
47int dns_check_resolution_queue(struct dns_resolvers *resolvers);
Thiago Farinab1af23e2016-01-20 23:46:34 +010048unsigned short dns_response_get_query_id(unsigned char *resp);
Baptiste Assmann81ed1a02017-05-03 10:11:44 +020049struct dns_resolution *dns_alloc_resolution(void);
50void dns_free_resolution(struct dns_resolution *resolution);
Baptiste Assmann325137d2015-04-13 23:40:55 +020051
52#endif // _PROTO_DNS_H