1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
|
/*
* lws-api-test-async-dns
*
* Written in 2019 by Andy Green <andy@warmcat.com>
*
* This file is made available under the Creative Commons CC0 1.0
* Universal Public Domain Dedication.
*
* This api test confirms various kinds of async dns apis
*/
#include <libwebsockets.h>
#include <signal.h>
static int interrupted, dtest, ok, fail, _exp = 26;
struct lws_context *context;
/*
* These are used to test the apis to parse and print ipv4 / ipv6 literal
* address strings for various cases.
*
* Expected error cases are not used to test the ip data -> string api.
*/
static const struct ipparser_tests {
const char *test;
int rlen;
const char *emit_test;
int emit_len;
uint8_t b[16];
} ipt[] = {
{ "2001:db8:85a3:0:0:8a2e:370:7334", 16,
"2001:db8:85a3::8a2e:370:7334", 28,
{ 0x20, 0x01, 0x0d, 0xb8, 0x85, 0xa3, 0x00, 0x00,
0x00, 0x00, 0x8a, 0x2e, 0x03, 0x70, 0x73, 0x34 } },
{ "2001:db8:85a3::8a2e:370:7334", 16,
"2001:db8:85a3::8a2e:370:7334", 28,
{ 0x20, 0x01, 0x0d, 0xb8, 0x85, 0xa3, 0x00, 0x00,
0x00, 0x00, 0x8a, 0x2e, 0x03, 0x70, 0x73, 0x34 } },
{ "::1", 16, "::1", 3,
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 } },
{ "::", 16, "::", 2,
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
{ "::ffff:192.0.2.128", 16, "::ffff:192.0.2.128", 18,
{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0xff, 0xff, 0xc0, 0x00, 0x02, 0x80 } },
{ "cats", -1, "", 0,
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 } },
{ "onevalid.bogus.warmcat.com", -1, "", 0,
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 } },
{ "1.cat.dog.com", -1, "", 0,
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 } },
{ ":::1", -8, "", 0,
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 } },
{ "0:0::0:1", 16, "::1", 3,
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 } },
{ "1.2.3.4", 4, "1.2.3.4", 7, { 1, 2, 3, 4 } },
};
static const struct async_dns_tests {
const char *dns_name;
int recordtype;
int addrlen;
uint8_t ads[16];
} adt[] = {
{ "warmcat.com", LWS_ADNS_RECORD_A, 4,
{ 46, 105, 127, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, } },
{ "libwebsockets.org", LWS_ADNS_RECORD_A, 4,
{ 46, 105, 127, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, } },
{ "doesntexist", LWS_ADNS_RECORD_A, 0,
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, } },
{ "localhost", LWS_ADNS_RECORD_A, 4,
{ 127, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, } },
{ "ipv4only.warmcat.com", LWS_ADNS_RECORD_A, 4,
{ 46, 105, 127, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, } },
{ "onevalid.bogus.warmcat.com", LWS_ADNS_RECORD_A, 4,
{ 46, 105, 127, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, } },
#if defined(LWS_WITH_IPV6)
{ "warmcat.com", LWS_ADNS_RECORD_AAAA, 16, /* check ipv6 */
{ 0x20, 0x01, 0x41, 0xd0, 0x00, 0x02, 0xee, 0x93,
0, 0, 0, 0, 0, 0, 0, 1, } },
{ "ipv6only.warmcat.com", LWS_ADNS_RECORD_AAAA, 16, /* check ipv6 */
{ 0x20, 0x01, 0x41, 0xd0, 0x00, 0x02, 0xee, 0x93,
0, 0, 0, 0, 0, 0, 0, 1, } },
#endif
};
static lws_sorted_usec_list_t sul;
struct lws *
cb1(struct lws *wsi_unused, const char *ads, const struct addrinfo *a, int n,
void *opaque);
static void
next_test_cb(lws_sorted_usec_list_t *sul)
{
int m;
lwsl_notice("%s: querying %s\n", __func__, adt[dtest].dns_name);
m = lws_async_dns_query(context, 0,
adt[dtest].dns_name,
(adns_query_type_t)adt[dtest].recordtype, cb1, NULL,
context);
if (m != LADNS_RET_CONTINUING && m != LADNS_RET_FOUND && m != LADNS_RET_FAILED_WSI_CLOSED) {
lwsl_err("%s: adns 1: %s failed: %d\n", __func__, adt[dtest].dns_name, m);
interrupted = 1;
}
}
struct lws *
cb1(struct lws *wsi_unused, const char *ads, const struct addrinfo *a, int n,
void *opaque)
{
const struct addrinfo *ac = a;
int ctr = 0, alen;
uint8_t *addr;
char buf[64];
dtest++;
if (!ac)
lwsl_warn("%s: no results\n", __func__);
/* dump the results */
while (ac) {
if (ac->ai_family == AF_INET) {
addr = (uint8_t *)&(((struct sockaddr_in *)
ac->ai_addr)->sin_addr.s_addr);
alen = 4;
} else {
addr = (uint8_t *)&(((struct sockaddr_in6 *)
ac->ai_addr)->sin6_addr.s6_addr);
alen = 16;
}
strcpy(buf, "unknown");
lws_write_numeric_address(addr, alen, buf, sizeof(buf));
lwsl_warn("%s: %d: %s %d %s\n", __func__, ctr++, ads, alen, buf);
ac = ac->ai_next;
}
ac = a;
while (ac) {
if (ac->ai_family == AF_INET) {
addr = (uint8_t *)&(((struct sockaddr_in *)
ac->ai_addr)->sin_addr.s_addr);
alen = 4;
} else {
#if defined(LWS_WITH_IPV6)
addr = (uint8_t *)&(((struct sockaddr_in6 *)
ac->ai_addr)->sin6_addr.s6_addr);
alen = 16;
#else
goto again;
#endif
}
if (alen == adt[dtest - 1].addrlen &&
!memcmp(adt[dtest - 1].ads, addr, (unsigned int)alen)) {
ok++;
goto next;
}
#if !defined(LWS_WITH_IPV6)
again:
#endif
ac = ac->ai_next;
}
/* testing for NXDOMAIN? */
if (!a && !adt[dtest - 1].addrlen) {
ok++;
goto next;
}
lwsl_err("%s: dns test %d: no match\n", __func__, dtest);
fail++;
next:
lws_async_dns_freeaddrinfo(&a);
if (dtest == (int)LWS_ARRAY_SIZE(adt))
interrupted = 1;
else
lws_sul_schedule(context, 0, &sul, next_test_cb, 1);
return NULL;
}
static lws_sorted_usec_list_t sul_l;
struct lws *
cb_loop(struct lws *wsi_unused, const char *ads, const struct addrinfo *a, int n,
void *opaque)
{
if (!a) {
lwsl_err("%s: no results\n", __func__);
return NULL;
}
lwsl_notice("%s: addrinfo %p\n", __func__, a);\
lws_async_dns_freeaddrinfo(&a);
return NULL;
}
static void
sul_retry_l(struct lws_sorted_usec_list *sul)
{
int m;
lwsl_user("%s: starting new query\n", __func__);
m = lws_async_dns_query(context, 0, "warmcat.com",
(adns_query_type_t)LWS_ADNS_RECORD_A,
cb_loop, NULL, context);
switch (m) {
case LADNS_RET_FAILED_WSI_CLOSED:
lwsl_warn("%s: LADNS_RET_FAILED_WSI_CLOSED "
"(== from cache / success in this test)\n", __func__);
break;
case LADNS_RET_NXDOMAIN:
lwsl_warn("%s: LADNS_RET_NXDOMAIN\n", __func__);
break;
case LADNS_RET_TIMEDOUT:
lwsl_warn("%s: LADNS_RET_TIMEDOUT\n", __func__);
break;
case LADNS_RET_FAILED:
lwsl_warn("%s: LADNS_RET_FAILED\n", __func__);
break;
case LADNS_RET_FOUND:
lwsl_warn("%s: LADNS_RET_FOUND\n", __func__);
break;
case LADNS_RET_CONTINUING:
lwsl_warn("%s: LADNS_RET_CONTINUING\n", __func__);
break;
}
lws_sul_schedule(context, 0, &sul_l, sul_retry_l, 5 * LWS_US_PER_SEC);
}
void sigint_handler(int sig)
{
interrupted = 1;
}
int
main(int argc, const char **argv)
{
int n = 1, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE;
struct lws_context_creation_info info;
const char *p;
/* the normal lws init */
signal(SIGINT, sigint_handler);
if ((p = lws_cmdline_option(argc, argv, "-d")))
logs = atoi(p);
lws_set_log_level(logs, NULL);
lwsl_user("LWS API selftest: Async DNS\n");
memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
info.port = CONTEXT_PORT_NO_LISTEN;
info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT;
context = lws_create_context(&info);
if (!context) {
lwsl_err("lws init failed\n");
return 1;
}
if (lws_cmdline_option(argc, argv, "-l")) {
lws_sul_schedule(context, 0, &sul_l, sul_retry_l, LWS_US_PER_SEC);
goto evloop;
}
/* ip address parser tests */
for (n = 0; n < (int)LWS_ARRAY_SIZE(ipt); n++) {
uint8_t u[16];
int m = lws_parse_numeric_address(ipt[n].test, u, sizeof(u));
if (m != ipt[n].rlen) {
lwsl_err("%s: fail %s ret %d\n",
__func__, ipt[n].test, m);
fail++;
continue;
}
if (m > 0) {
if (memcmp(ipt[n].b, u, (unsigned int)m)) {
lwsl_err("%s: fail %s compare\n", __func__,
ipt[n].test);
lwsl_hexdump_notice(u, (unsigned int)m);
fail++;
continue;
}
}
ok++;
}
/* ip address formatter tests */
for (n = 0; n < (int)LWS_ARRAY_SIZE(ipt); n++) {
char buf[64];
int m;
/* don't attempt to reverse the ones that are meant to fail */
if (ipt[n].rlen < 0)
continue;
m = lws_write_numeric_address(ipt[n].b, ipt[n].rlen, buf,
sizeof(buf));
if (m != ipt[n].emit_len) {
lwsl_err("%s: fail %s ret %d\n",
__func__, ipt[n].emit_test, m);
fail++;
continue;
}
if (m > 0) {
if (strcmp(ipt[n].emit_test, buf)) {
lwsl_err("%s: fail %s compare\n", __func__,
ipt[n].test);
lwsl_hexdump_notice(buf, (unsigned int)m);
fail++;
continue;
}
}
ok++;
}
#if !defined(LWS_WITH_IPV6)
_exp -= 2;
#endif
/* kick off the async dns tests */
lws_sul_schedule(context, 0, &sul, next_test_cb, 1);
evloop:
/* the usual lws event loop */
n = 1;
while (n >= 0 && !interrupted)
n = lws_service(context, 0);
lws_context_destroy(context);
if (fail || ok != _exp)
lwsl_user("Completed: PASS: %d / %d, FAIL: %d\n", ok, _exp,
fail);
else
lwsl_user("Completed: ALL PASS: %d / %d\n", ok, _exp);
return !(ok == _exp && !fail);
}
|