libwebsockets
Lightweight C library for HTML5 websockets
class="ui-resizable-handle">
Loading...
Searching...
No Matches
lws-async-dns.h
Go to the documentation of this file.
1/*
2 * libwebsockets - small server side websockets and web server implementation
3 *
4 * Copyright (C) 2010 - 2019 Andy Green <andy@warmcat.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 * IN THE SOFTWARE.
23 */
24
25#if defined(LWS_WITH_UDP) && defined(LWS_WITH_NETWORK)
26
27typedef enum dns_query_type {
28 LWS_ADNS_RECORD_A = 0x01,
29 LWS_ADNS_RECORD_CNAME = 0x05,
30 LWS_ADNS_RECORD_SOA = 0x06,
31 LWS_ADNS_RECORD_MX = 0x0f,
32 LWS_ADNS_RECORD_TXT = 0x10,
33 LWS_ADNS_RECORD_AAAA = 0x1c,
34 LWS_ADNS_RECORD_DS = 0x2b,
35 LWS_ADNS_RECORD_RRSIG = 0x2e,
36 LWS_ADNS_RECORD_NSEC = 0x2f,
37 LWS_ADNS_RECORD_DNSKEY = 0x30,
38 LWS_ADNS_RECORD_NSEC3 = 0x32,
39 LWS_ADNS_RECORD_HTTPS = 0x41,
40} adns_query_type_t;
41
42typedef enum {
43 LADNS_RET_FAILED_WSI_CLOSED = -4,
44 LADNS_RET_NXDOMAIN = -3,
45 LADNS_RET_TIMEDOUT = -2,
46 LADNS_RET_FAILED = -1,
47 LADNS_RET_FOUND,
48 LADNS_RET_CONTINUING
49} lws_async_dns_retcode_t;
50
51typedef enum {
52 LWS_ADNS_DNSSEC_OFF = 0,
53 LWS_ADNS_DNSSEC_TOLERATE,
54 LWS_ADNS_DNSSEC_REQUIRE,
55} lws_async_dns_dnssec_mode_t;
56
57#define LWS_ADNS_DNSSEC_VALID (1 << 8)
58#define LWS_ADNS_DNSSEC_INVALID (1 << 9)
59
60#define LWS_ADNS_SYNTHETIC 0x10000 /* don't send, synthetic response will
61 * be injected for testing */
62#define LWS_ADNS_INDICATE_LACKS_DNSSEC 0x20000 /* tolerate missing DNSSEC on this specific lookup */
63#define LWS_ADNS_NOCACHE 0x40000 /* force network query, bypass cache */
64#define LWS_ADNS_WANT_DNSSEC 0x80000 /* Explicitly set DO bit in EDNS0 OPT record */
65#define LWS_ADNS_IGNORE_HOSTS_FILE 0x100000 /* Bypass checking /etc/hosts and force network DNS lookup */
66#define LADNS_NO_WSI_BUT_OK ((struct lws *)(intptr_t)0x1)
67
68struct addrinfo;
69
70typedef struct lws * (*lws_async_dns_cb_t)(struct lws *wsi, const char *ads,
71 const struct addrinfo *result, int n, void *opaque);
72
73struct lws_adns_q;
74struct lws_async_dns;
75struct lws_async_dns_server;
76
98LWS_VISIBLE LWS_EXTERN lws_async_dns_retcode_t
99lws_async_dns_query(struct lws_context *context, int tsi, const char *name,
100 adns_query_type_t qtype, lws_async_dns_cb_t cb,
101 struct lws *wsi, void *opaque, struct lws_adns_q **pq);
102
114lws_async_dns_freeaddrinfo(const struct addrinfo **ai);
115
129lws_async_dns_get_rr_cache(struct lws_context *context, const char *name,
130 adns_query_type_t qtype, uint16_t *paylen);
131
143lws_async_dns_get_alpn(struct lws_context *context, const char *name, const char *alpn);
144
156lws_async_dns_server_add(struct lws_context *cx, const lws_sockaddr46 *sa46);
157
170lws_async_dns_server_remove(struct lws_context *cx, const lws_sockaddr46 *sa46);
171
172/* only needed for testing */
173
175lws_adns_get_tid(struct lws_adns_q *q);
176LWS_VISIBLE LWS_EXTERN struct lws_async_dns *
177lws_adns_get_async_dns(struct lws_adns_q *q);
178
179LWS_VISIBLE LWS_EXTERN struct lws_async_dns_server *
180lws_adns_get_server(struct lws_adns_q *q);
181
183lws_adns_parse_udp(struct lws_async_dns *dns, const uint8_t *pkt, size_t len,
184 struct lws_async_dns_server *dsrv);
185
198lws_plat_asyncdns_get_server(struct lws_context *context, int n,
199 lws_sockaddr46 *sa46);
200
210lws_async_dns_server_reload(struct lws_context *context);
211
212
222lws_async_dns_dnssec_set_mode(struct lws_context *context, lws_async_dns_dnssec_mode_t mode);
223
224#endif
unsigned short uint16_t
#define LWS_EXTERN
unsigned char uint8_t
#define LWS_VISIBLE