mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-22 01:59:26 +00:00
The OpenSSL 1.x Engines support has been deprecated in the OpenSSL 3.x and is going to be removed. Remove the OpenSSL Engine support in favor of OpenSSL Providers.
305 lines
7.4 KiB
C
305 lines
7.4 KiB
C
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
* information regarding copyright ownership.
|
|
*/
|
|
|
|
#include <inttypes.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include <isc/base64.h>
|
|
#include <isc/commandline.h>
|
|
#include <isc/hash.h>
|
|
#include <isc/log.h>
|
|
#include <isc/loop.h>
|
|
#include <isc/managers.h>
|
|
#include <isc/mem.h>
|
|
#include <isc/net.h>
|
|
#include <isc/netmgr.h>
|
|
#include <isc/parseint.h>
|
|
#include <isc/result.h>
|
|
#include <isc/sockaddr.h>
|
|
#include <isc/util.h>
|
|
|
|
#include <dns/dispatch.h>
|
|
#include <dns/fixedname.h>
|
|
#include <dns/message.h>
|
|
#include <dns/name.h>
|
|
#include <dns/rdataset.h>
|
|
#include <dns/request.h>
|
|
#include <dns/result.h>
|
|
#include <dns/types.h>
|
|
#include <dns/view.h>
|
|
|
|
#define CHECK(str, x) \
|
|
{ \
|
|
if ((x) != ISC_R_SUCCESS) { \
|
|
fprintf(stderr, "I:%s: %s\n", (str), \
|
|
isc_result_totext(x)); \
|
|
exit(EXIT_FAILURE); \
|
|
} \
|
|
}
|
|
|
|
#define RUNCHECK(x) RUNTIME_CHECK((x) == ISC_R_SUCCESS)
|
|
|
|
#define PORT 5300
|
|
#define TIMEOUT 30
|
|
|
|
static isc_mem_t *mctx = NULL;
|
|
static dns_requestmgr_t *requestmgr = NULL;
|
|
static isc_loopmgr_t *loopmgr = NULL;
|
|
static bool have_src = false;
|
|
static isc_sockaddr_t srcaddr;
|
|
static isc_sockaddr_t dstaddr;
|
|
static int onfly;
|
|
|
|
static void
|
|
recvresponse(void *arg) {
|
|
isc_result_t result;
|
|
dns_request_t *request = (dns_request_t *)arg;
|
|
dns_message_t *query = dns_request_getarg(request);
|
|
dns_message_t *response = NULL;
|
|
isc_buffer_t outbuf;
|
|
char output[1024];
|
|
|
|
result = dns_request_getresult(request);
|
|
if (result != ISC_R_SUCCESS) {
|
|
fprintf(stderr, "I:request event result: %s\n",
|
|
isc_result_totext(result));
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
dns_message_create(mctx, NULL, NULL, DNS_MESSAGE_INTENTPARSE,
|
|
&response);
|
|
|
|
result = dns_request_getresponse(request, response,
|
|
DNS_MESSAGEPARSE_PRESERVEORDER);
|
|
CHECK("dns_request_getresponse", result);
|
|
|
|
if (response->rcode != dns_rcode_noerror) {
|
|
result = dns_result_fromrcode(response->rcode);
|
|
fprintf(stderr, "I:response rcode: %s\n",
|
|
isc_result_totext(result));
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
if (response->counts[DNS_SECTION_ANSWER] != 1U) {
|
|
fprintf(stderr, "I:response answer count (%u!=1)\n",
|
|
response->counts[DNS_SECTION_ANSWER]);
|
|
}
|
|
|
|
isc_buffer_init(&outbuf, output, sizeof(output));
|
|
result = dns_message_sectiontotext(
|
|
response, DNS_SECTION_ANSWER, &dns_master_style_simple,
|
|
DNS_MESSAGETEXTFLAG_NOCOMMENTS, &outbuf);
|
|
CHECK("dns_message_sectiontotext", result);
|
|
printf("%.*s", (int)isc_buffer_usedlength(&outbuf),
|
|
(char *)isc_buffer_base(&outbuf));
|
|
fflush(stdout);
|
|
|
|
dns_message_detach(&query);
|
|
dns_message_detach(&response);
|
|
dns_request_destroy(&request);
|
|
|
|
if (--onfly == 0) {
|
|
isc_loopmgr_shutdown(loopmgr);
|
|
}
|
|
return;
|
|
}
|
|
|
|
static isc_result_t
|
|
sendquery(void) {
|
|
dns_request_t *request = NULL;
|
|
dns_message_t *message = NULL;
|
|
dns_name_t *qname = NULL;
|
|
dns_rdataset_t *qrdataset = NULL;
|
|
isc_result_t result;
|
|
dns_fixedname_t queryname;
|
|
isc_buffer_t buf;
|
|
static char host[256];
|
|
int c;
|
|
|
|
c = scanf("%255s", host);
|
|
if (c == EOF) {
|
|
return (ISC_R_NOMORE);
|
|
}
|
|
|
|
onfly++;
|
|
|
|
dns_fixedname_init(&queryname);
|
|
isc_buffer_init(&buf, host, strlen(host));
|
|
isc_buffer_add(&buf, strlen(host));
|
|
result = dns_name_fromtext(dns_fixedname_name(&queryname), &buf,
|
|
dns_rootname, 0, NULL);
|
|
CHECK("dns_name_fromtext", result);
|
|
|
|
dns_message_create(mctx, NULL, NULL, DNS_MESSAGE_INTENTRENDER,
|
|
&message);
|
|
|
|
message->opcode = dns_opcode_query;
|
|
message->flags |= DNS_MESSAGEFLAG_RD;
|
|
message->rdclass = dns_rdataclass_in;
|
|
message->id = (unsigned short)(random() & 0xFFFF);
|
|
|
|
dns_message_gettempname(message, &qname);
|
|
|
|
dns_message_gettemprdataset(message, &qrdataset);
|
|
|
|
dns_name_clone(dns_fixedname_name(&queryname), qname);
|
|
dns_rdataset_makequestion(qrdataset, dns_rdataclass_in,
|
|
dns_rdatatype_a);
|
|
ISC_LIST_APPEND(qname->list, qrdataset, link);
|
|
dns_message_addname(message, qname, DNS_SECTION_QUESTION);
|
|
|
|
result = dns_request_create(
|
|
requestmgr, message, have_src ? &srcaddr : NULL, &dstaddr, NULL,
|
|
NULL, DNS_REQUESTOPT_TCP, NULL, TIMEOUT, 0, 0,
|
|
isc_loop_main(loopmgr), recvresponse, message, &request);
|
|
CHECK("dns_request_create", result);
|
|
|
|
return (ISC_R_SUCCESS);
|
|
}
|
|
|
|
static void
|
|
sendqueries(void *arg) {
|
|
isc_result_t result;
|
|
|
|
UNUSED(arg);
|
|
|
|
do {
|
|
result = sendquery();
|
|
} while (result == ISC_R_SUCCESS);
|
|
|
|
if (onfly == 0) {
|
|
isc_loopmgr_shutdown(loopmgr);
|
|
}
|
|
return;
|
|
}
|
|
|
|
static void
|
|
teardown_view(void *arg) {
|
|
dns_view_t *view = arg;
|
|
dns_view_detach(&view);
|
|
}
|
|
|
|
static void
|
|
teardown_requestmgr(void *arg) {
|
|
dns_requestmgr_t *mgr = arg;
|
|
|
|
dns_requestmgr_shutdown(mgr);
|
|
dns_requestmgr_detach(&mgr);
|
|
}
|
|
|
|
static void
|
|
teardown_dispatchv4(void *arg) {
|
|
dns_dispatch_t *dispatchv4 = arg;
|
|
dns_dispatch_detach(&dispatchv4);
|
|
}
|
|
|
|
static void
|
|
teardown_dispatchmgr(void *arg) {
|
|
dns_dispatchmgr_t *dispatchmgr = arg;
|
|
dns_dispatchmgr_detach(&dispatchmgr);
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv[]) {
|
|
isc_sockaddr_t bind_any;
|
|
struct in_addr inaddr;
|
|
isc_result_t result;
|
|
isc_log_t *lctx = NULL;
|
|
isc_logconfig_t *lcfg = NULL;
|
|
isc_nm_t *netmgr = NULL;
|
|
dns_dispatchmgr_t *dispatchmgr = NULL;
|
|
dns_dispatch_t *dispatchv4 = NULL;
|
|
dns_view_t *view = NULL;
|
|
uint16_t port = PORT;
|
|
int c;
|
|
|
|
isc_commandline_errprint = false;
|
|
while ((c = isc_commandline_parse(argc, argv, "p:r:")) != -1) {
|
|
switch (c) {
|
|
case 'p':
|
|
result = isc_parse_uint16(&port,
|
|
isc_commandline_argument, 10);
|
|
if (result != ISC_R_SUCCESS) {
|
|
fprintf(stderr, "bad port '%s'\n",
|
|
isc_commandline_argument);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
break;
|
|
case 'r':
|
|
fprintf(stderr, "The -r option has been deprecated.\n");
|
|
break;
|
|
case '?':
|
|
fprintf(stderr, "%s: invalid argument '%c'", argv[0],
|
|
c);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
argc -= isc_commandline_index;
|
|
argv += isc_commandline_index;
|
|
POST(argv);
|
|
|
|
if (argc > 0) {
|
|
have_src = true;
|
|
}
|
|
|
|
isc_sockaddr_any(&bind_any);
|
|
|
|
result = ISC_R_FAILURE;
|
|
if (inet_pton(AF_INET, "10.53.0.7", &inaddr) != 1) {
|
|
CHECK("inet_pton", result);
|
|
}
|
|
isc_sockaddr_fromin(&srcaddr, &inaddr, 0);
|
|
|
|
result = ISC_R_FAILURE;
|
|
if (inet_pton(AF_INET, "10.53.0.4", &inaddr) != 1) {
|
|
CHECK("inet_pton", result);
|
|
}
|
|
isc_sockaddr_fromin(&dstaddr, &inaddr, port);
|
|
|
|
isc_managers_create(&mctx, 1, &loopmgr, &netmgr);
|
|
|
|
isc_log_create(mctx, &lctx, &lcfg);
|
|
|
|
RUNCHECK(dst_lib_init(mctx));
|
|
|
|
RUNCHECK(dns_dispatchmgr_create(mctx, loopmgr, netmgr, &dispatchmgr));
|
|
|
|
RUNCHECK(dns_dispatch_createudp(
|
|
dispatchmgr, have_src ? &srcaddr : &bind_any, &dispatchv4));
|
|
RUNCHECK(dns_requestmgr_create(mctx, loopmgr, dispatchmgr, dispatchv4,
|
|
NULL, &requestmgr));
|
|
|
|
RUNCHECK(dns_view_create(mctx, NULL, 0, "_test", &view));
|
|
|
|
isc_loopmgr_setup(loopmgr, sendqueries, NULL);
|
|
isc_loopmgr_teardown(loopmgr, teardown_view, view);
|
|
isc_loopmgr_teardown(loopmgr, teardown_requestmgr, requestmgr);
|
|
isc_loopmgr_teardown(loopmgr, teardown_dispatchv4, dispatchv4);
|
|
isc_loopmgr_teardown(loopmgr, teardown_dispatchmgr, dispatchmgr);
|
|
|
|
isc_loopmgr_run(loopmgr);
|
|
|
|
dst_lib_destroy();
|
|
|
|
isc_log_destroy(&lctx);
|
|
|
|
isc_managers_destroy(&mctx, &loopmgr, &netmgr);
|
|
|
|
return (0);
|
|
}
|