mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 05:57:52 +00:00
create a view and all the goop associated with it.
This commit is contained in:
parent
070d058606
commit
bcb94f473f
@ -31,15 +31,92 @@
|
|||||||
|
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
|
|
||||||
|
static void
|
||||||
|
hexdump(char *msg, void *base, size_t len)
|
||||||
|
{
|
||||||
|
unsigned char *p;
|
||||||
|
unsigned int cnt;
|
||||||
|
|
||||||
|
p = base;
|
||||||
|
cnt = 0;
|
||||||
|
|
||||||
|
printf("*** %s (%u bytes @ %p)\n", msg, len, base);
|
||||||
|
|
||||||
|
while (cnt < len) {
|
||||||
|
if (cnt % 16 == 0)
|
||||||
|
printf("%p: ", p);
|
||||||
|
else if (cnt % 8 == 0)
|
||||||
|
printf(" |");
|
||||||
|
printf(" %02x", *p++);
|
||||||
|
cnt++;
|
||||||
|
|
||||||
|
if (cnt % 16 == 0)
|
||||||
|
printf("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cnt % 16 != 0)
|
||||||
|
printf("\n");
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
clientmgr_can_die(clientmgr_t *cm)
|
clientmgr_can_die(clientmgr_t *cm)
|
||||||
{
|
{
|
||||||
|
if ((cm->flags & CLIENTMGR_FLAG_SHUTTINGDOWN) == 0)
|
||||||
|
return;
|
||||||
|
|
||||||
if (ISC_LIST_HEAD(cm->running) != NULL)
|
if (ISC_LIST_HEAD(cm->running) != NULL)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
isc_task_detach(&cm->task);
|
isc_task_detach(&cm->task);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
process_request(client_t *client)
|
||||||
|
{
|
||||||
|
clientmgr_t *cm = client->clientmgr;
|
||||||
|
lwres_lwpacket_t pkt;
|
||||||
|
lwres_buffer_t b;
|
||||||
|
isc_result_t result;
|
||||||
|
|
||||||
|
hexdump("client request", client->buffer, client->length);
|
||||||
|
|
||||||
|
lwres_buffer_init(&b, client->buffer, client->length);
|
||||||
|
lwres_buffer_add(&b, client->length);
|
||||||
|
|
||||||
|
result = lwres_lwpacket_parseheader(&b, &pkt);
|
||||||
|
if (result != ISC_R_SUCCESS) {
|
||||||
|
printf("Invalid packet header received\n");
|
||||||
|
goto restart;
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("OPCODE %08x\n", pkt.opcode);
|
||||||
|
|
||||||
|
switch (pkt.opcode) {
|
||||||
|
case LWRES_OPCODE_GETADDRSBYNAME:
|
||||||
|
break;
|
||||||
|
case LWRES_OPCODE_GETNAMEBYADDR:
|
||||||
|
break;
|
||||||
|
case LWRES_OPCODE_NOOP:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
printf("Unknown opcode %08x\n", pkt.opcode);
|
||||||
|
goto restart;
|
||||||
|
}
|
||||||
|
|
||||||
|
goto restart; /* XXXMLG temporary */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We're working on something, so stay in the run queue.
|
||||||
|
*/
|
||||||
|
return;
|
||||||
|
|
||||||
|
restart:
|
||||||
|
client->isidle = ISC_TRUE;
|
||||||
|
ISC_LIST_UNLINK(cm->running, client, link);
|
||||||
|
ISC_LIST_APPEND(cm->idle, client, link);
|
||||||
|
client_start_recv(cm);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
client_recv(isc_task_t *task, isc_event_t *ev)
|
client_recv(isc_task_t *task, isc_event_t *ev)
|
||||||
{
|
{
|
||||||
@ -60,21 +137,21 @@ client_recv(isc_task_t *task, isc_event_t *ev)
|
|||||||
/*
|
/*
|
||||||
* Go idle.
|
* Go idle.
|
||||||
*/
|
*/
|
||||||
|
client->isidle = ISC_TRUE;
|
||||||
ISC_LIST_UNLINK(cm->running, client, link);
|
ISC_LIST_UNLINK(cm->running, client, link);
|
||||||
ISC_LIST_APPEND(cm->idle, client, link);
|
ISC_LIST_APPEND(cm->idle, client, link);
|
||||||
|
|
||||||
clientmgr_can_die(cm);
|
clientmgr_can_die(cm);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
client->length = dev->n;
|
||||||
* XXXMLG Nothing to do right now, just go idle.
|
|
||||||
*/
|
|
||||||
ISC_LIST_UNLINK(cm->running, client, link);
|
|
||||||
ISC_LIST_APPEND(cm->idle, client, link);
|
|
||||||
|
|
||||||
client_start_recv(cm);
|
client_start_recv(cm);
|
||||||
|
|
||||||
|
process_request(client);
|
||||||
|
|
||||||
isc_event_free(&ev);
|
isc_event_free(&ev);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -89,7 +166,12 @@ client_start_recv(clientmgr_t *cm)
|
|||||||
isc_region_t r;
|
isc_region_t r;
|
||||||
|
|
||||||
REQUIRE((cm->flags & CLIENTMGR_FLAG_SHUTTINGDOWN) == 0);
|
REQUIRE((cm->flags & CLIENTMGR_FLAG_SHUTTINGDOWN) == 0);
|
||||||
REQUIRE((cm->flags & CLIENTMGR_FLAG_RECVPENDING) == 0);
|
|
||||||
|
/*
|
||||||
|
* If a recv is already running, don't bother.
|
||||||
|
*/
|
||||||
|
if ((cm->flags & CLIENTMGR_FLAG_RECVPENDING) != 0)
|
||||||
|
return (ISC_R_SUCCESS);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If we have no idle slots, just return success.
|
* If we have no idle slots, just return success.
|
||||||
@ -97,6 +179,7 @@ client_start_recv(clientmgr_t *cm)
|
|||||||
client = ISC_LIST_HEAD(cm->idle);
|
client = ISC_LIST_HEAD(cm->idle);
|
||||||
if (client == NULL)
|
if (client == NULL)
|
||||||
return (ISC_R_SUCCESS);
|
return (ISC_R_SUCCESS);
|
||||||
|
INSIST(client->isidle);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Issue the recv. If it fails, return that it did.
|
* Issue the recv. If it fails, return that it did.
|
||||||
@ -117,6 +200,7 @@ client_start_recv(clientmgr_t *cm)
|
|||||||
* Remove the client from the idle list, and put it on the running
|
* Remove the client from the idle list, and put it on the running
|
||||||
* list.
|
* list.
|
||||||
*/
|
*/
|
||||||
|
client->isidle = ISC_FALSE;
|
||||||
ISC_LIST_UNLINK(cm->idle, client, link);
|
ISC_LIST_UNLINK(cm->idle, client, link);
|
||||||
ISC_LIST_APPEND(cm->running, client, link);
|
ISC_LIST_APPEND(cm->running, client, link);
|
||||||
|
|
||||||
|
@ -26,6 +26,12 @@
|
|||||||
#include <isc/socket.h>
|
#include <isc/socket.h>
|
||||||
#include <isc/task.h>
|
#include <isc/task.h>
|
||||||
|
|
||||||
|
#include <dns/adb.h>
|
||||||
|
#include <dns/cache.h>
|
||||||
|
#include <dns/db.h>
|
||||||
|
#include <dns/master.h>
|
||||||
|
#include <dns/name.h>
|
||||||
|
|
||||||
#define LWRD_EVENTCLASS ISC_EVENTCLASS(4242)
|
#define LWRD_EVENTCLASS ISC_EVENTCLASS(4242)
|
||||||
|
|
||||||
#define LWRD_SHUTDOWN (LWRD_EVENTCLASS + 0x0001)
|
#define LWRD_SHUTDOWN (LWRD_EVENTCLASS + 0x0001)
|
||||||
@ -37,6 +43,11 @@ struct client_s {
|
|||||||
isc_sockaddr_t sockaddr; /* where to reply */
|
isc_sockaddr_t sockaddr; /* where to reply */
|
||||||
clientmgr_t *clientmgr; /* our parent */
|
clientmgr_t *clientmgr; /* our parent */
|
||||||
unsigned char buffer[LWRES_RECVLENGTH]; /* receive buffer */
|
unsigned char buffer[LWRES_RECVLENGTH]; /* receive buffer */
|
||||||
|
isc_uint32_t length; /* length recv'd */
|
||||||
|
|
||||||
|
isc_boolean_t isidle;
|
||||||
|
|
||||||
|
dns_view_t *view;
|
||||||
|
|
||||||
ISC_LINK(client_t) link;
|
ISC_LINK(client_t) link;
|
||||||
};
|
};
|
||||||
|
@ -47,12 +47,151 @@
|
|||||||
clientmgr_t *cmgr;
|
clientmgr_t *cmgr;
|
||||||
unsigned int ntasks; /* number of tasks actually created */
|
unsigned int ntasks; /* number of tasks actually created */
|
||||||
|
|
||||||
|
dns_view_t *view;
|
||||||
|
dns_db_t *rootdb;
|
||||||
|
|
||||||
|
isc_taskmgr_t *taskmgr;
|
||||||
|
isc_socketmgr_t *sockmgr;
|
||||||
|
isc_timermgr_t *timermgr;
|
||||||
|
|
||||||
|
static char root_ns[] =
|
||||||
|
";\n"
|
||||||
|
"; Internet Root Nameservers\n"
|
||||||
|
";\n"
|
||||||
|
"; Thu Sep 23 17:57:37 PDT 1999\n"
|
||||||
|
";\n"
|
||||||
|
"$TTL 518400\n"
|
||||||
|
". 518400 IN NS F.ROOT-SERVERS.NET.\n"
|
||||||
|
". 518400 IN NS B.ROOT-SERVERS.NET.\n"
|
||||||
|
". 518400 IN NS J.ROOT-SERVERS.NET.\n"
|
||||||
|
". 518400 IN NS K.ROOT-SERVERS.NET.\n"
|
||||||
|
". 518400 IN NS L.ROOT-SERVERS.NET.\n"
|
||||||
|
". 518400 IN NS M.ROOT-SERVERS.NET.\n"
|
||||||
|
". 518400 IN NS I.ROOT-SERVERS.NET.\n"
|
||||||
|
". 518400 IN NS E.ROOT-SERVERS.NET.\n"
|
||||||
|
". 518400 IN NS D.ROOT-SERVERS.NET.\n"
|
||||||
|
". 518400 IN NS A.ROOT-SERVERS.NET.\n"
|
||||||
|
". 518400 IN NS H.ROOT-SERVERS.NET.\n"
|
||||||
|
". 518400 IN NS C.ROOT-SERVERS.NET.\n"
|
||||||
|
". 518400 IN NS G.ROOT-SERVERS.NET.\n"
|
||||||
|
"F.ROOT-SERVERS.NET. 3600000 IN A 192.5.5.241\n"
|
||||||
|
"B.ROOT-SERVERS.NET. 3600000 IN A 128.9.0.107\n"
|
||||||
|
"J.ROOT-SERVERS.NET. 3600000 IN A 198.41.0.10\n"
|
||||||
|
"K.ROOT-SERVERS.NET. 3600000 IN A 193.0.14.129\n"
|
||||||
|
"L.ROOT-SERVERS.NET. 3600000 IN A 198.32.64.12\n"
|
||||||
|
"M.ROOT-SERVERS.NET. 3600000 IN A 202.12.27.33\n"
|
||||||
|
"I.ROOT-SERVERS.NET. 3600000 IN A 192.36.148.17\n"
|
||||||
|
"E.ROOT-SERVERS.NET. 3600000 IN A 192.203.230.10\n"
|
||||||
|
"D.ROOT-SERVERS.NET. 3600000 IN A 128.8.10.90\n"
|
||||||
|
"A.ROOT-SERVERS.NET. 3600000 IN A 198.41.0.4\n"
|
||||||
|
"H.ROOT-SERVERS.NET. 3600000 IN A 128.63.2.53\n"
|
||||||
|
"C.ROOT-SERVERS.NET. 3600000 IN A 192.33.4.12\n"
|
||||||
|
"G.ROOT-SERVERS.NET. 3600000 IN A 192.112.36.4\n";
|
||||||
|
|
||||||
|
static isc_result_t
|
||||||
|
ns_rootns_init(isc_mem_t *mctx)
|
||||||
|
{
|
||||||
|
isc_result_t result, eresult;
|
||||||
|
isc_buffer_t source;
|
||||||
|
size_t len;
|
||||||
|
int soacount, nscount;
|
||||||
|
dns_rdatacallbacks_t callbacks;
|
||||||
|
|
||||||
|
rootdb = NULL;
|
||||||
|
result = dns_db_create(mctx, "rbt", dns_rootname, ISC_FALSE,
|
||||||
|
dns_rdataclass_in, 0, NULL, &rootdb);
|
||||||
|
if (result != ISC_R_SUCCESS)
|
||||||
|
return (result);
|
||||||
|
|
||||||
|
dns_rdatacallbacks_init(&callbacks);
|
||||||
|
|
||||||
|
len = strlen(root_ns);
|
||||||
|
isc_buffer_init(&source, root_ns, len, ISC_BUFFERTYPE_TEXT);
|
||||||
|
isc_buffer_add(&source, len);
|
||||||
|
|
||||||
|
result = dns_db_beginload(rootdb, &callbacks.add,
|
||||||
|
&callbacks.add_private);
|
||||||
|
if (result != ISC_R_SUCCESS)
|
||||||
|
return (result);
|
||||||
|
result = dns_master_loadbuffer(&source, &rootdb->origin,
|
||||||
|
&rootdb->origin,
|
||||||
|
rootdb->rdclass, ISC_FALSE,
|
||||||
|
&soacount, &nscount, &callbacks,
|
||||||
|
rootdb->mctx);
|
||||||
|
eresult = dns_db_endload(rootdb, &callbacks.add_private);
|
||||||
|
if (result == ISC_R_SUCCESS)
|
||||||
|
result = eresult;
|
||||||
|
if (result != ISC_R_SUCCESS)
|
||||||
|
goto db_detach;
|
||||||
|
|
||||||
|
return (DNS_R_SUCCESS);
|
||||||
|
|
||||||
|
db_detach:
|
||||||
|
dns_db_detach(&rootdb);
|
||||||
|
|
||||||
|
return (result);
|
||||||
|
}
|
||||||
|
|
||||||
|
static isc_result_t
|
||||||
|
create_view(isc_mem_t *mctx)
|
||||||
|
{
|
||||||
|
dns_cache_t *cache;
|
||||||
|
isc_result_t result;
|
||||||
|
|
||||||
|
view = NULL;
|
||||||
|
cache = NULL;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* View.
|
||||||
|
*/
|
||||||
|
result = dns_view_create(mctx, dns_rdataclass_in, "_default", &view);
|
||||||
|
if (result != ISC_R_SUCCESS)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Cache.
|
||||||
|
*/
|
||||||
|
result = dns_cache_create(mctx, taskmgr, timermgr, dns_rdataclass_in,
|
||||||
|
"rbt", 0, NULL, &cache);
|
||||||
|
if (result != ISC_R_SUCCESS)
|
||||||
|
goto out;
|
||||||
|
dns_view_setcache(view, cache);
|
||||||
|
dns_cache_detach(&cache);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Resolver.
|
||||||
|
*
|
||||||
|
* XXXMLG hardwired number of tasks.
|
||||||
|
*/
|
||||||
|
result = dns_view_createresolver(view, taskmgr, 16, sockmgr,
|
||||||
|
timermgr, NULL);
|
||||||
|
if (result != ISC_R_SUCCESS)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
result = ns_rootns_init(mctx);
|
||||||
|
if (result != ISC_R_SUCCESS)
|
||||||
|
goto out;
|
||||||
|
dns_view_sethints(view, rootdb);
|
||||||
|
|
||||||
|
dns_view_freeze(view);
|
||||||
|
|
||||||
|
dns_db_detach(&rootdb);
|
||||||
|
|
||||||
|
return (ISC_R_SUCCESS);
|
||||||
|
|
||||||
|
out:
|
||||||
|
if (view != NULL)
|
||||||
|
dns_view_detach(&view);
|
||||||
|
|
||||||
|
dns_db_detach(&rootdb);
|
||||||
|
|
||||||
|
return (result);
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
main(int argc, char **argv)
|
main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
isc_mem_t *mem;
|
isc_mem_t *mem;
|
||||||
isc_taskmgr_t *taskmgr;
|
|
||||||
isc_socketmgr_t *sockmgr;
|
|
||||||
isc_socket_t *sock;
|
isc_socket_t *sock;
|
||||||
isc_sockaddr_t localhost;
|
isc_sockaddr_t localhost;
|
||||||
struct in_addr lh_addr;
|
struct in_addr lh_addr;
|
||||||
@ -63,7 +202,10 @@ main(int argc, char **argv)
|
|||||||
UNUSED(argc);
|
UNUSED(argc);
|
||||||
UNUSED(argv);
|
UNUSED(argv);
|
||||||
|
|
||||||
isc_app_start();
|
dns_result_register();
|
||||||
|
|
||||||
|
result = isc_app_start();
|
||||||
|
INSIST(result == ISC_R_SUCCESS);
|
||||||
|
|
||||||
mem = NULL;
|
mem = NULL;
|
||||||
result = isc_mem_create(0, 0, &mem);
|
result = isc_mem_create(0, 0, &mem);
|
||||||
@ -86,6 +228,21 @@ main(int argc, char **argv)
|
|||||||
result = isc_socketmgr_create(mem, &sockmgr);
|
result = isc_socketmgr_create(mem, &sockmgr);
|
||||||
INSIST(result == ISC_R_SUCCESS);
|
INSIST(result == ISC_R_SUCCESS);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Create a timer manager.
|
||||||
|
*/
|
||||||
|
timermgr = NULL;
|
||||||
|
result = isc_timermgr_create(mem, &timermgr);
|
||||||
|
INSIST(result == ISC_R_SUCCESS);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Initialize the DNS bits. Start by loading our built-in
|
||||||
|
* root hints. This should come from a file, eventually.
|
||||||
|
* XXXMLG
|
||||||
|
*/
|
||||||
|
result = create_view(mem);
|
||||||
|
INSIST(result == ISC_R_SUCCESS);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We'll need a socket. It will be a UDP socket, and bound to
|
* We'll need a socket. It will be a UDP socket, and bound to
|
||||||
* 127.0.0.1 port LWRES_UDP_PORT.
|
* 127.0.0.1 port LWRES_UDP_PORT.
|
||||||
@ -135,6 +292,7 @@ main(int argc, char **argv)
|
|||||||
client[j].clientmgr = &cmgr[j];
|
client[j].clientmgr = &cmgr[j];
|
||||||
ISC_LINK_INIT(&client[j], link);
|
ISC_LINK_INIT(&client[j], link);
|
||||||
ISC_LIST_APPEND(cmgr[j].idle, &client[j], link);
|
ISC_LIST_APPEND(cmgr[j].idle, &client[j], link);
|
||||||
|
client[j].isidle = ISC_TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
INSIST(i > 0);
|
INSIST(i > 0);
|
||||||
@ -165,6 +323,11 @@ main(int argc, char **argv)
|
|||||||
printf("Sending shutdown events to task %p\n", cmgr[j].task);
|
printf("Sending shutdown events to task %p\n", cmgr[j].task);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Kill off the view.
|
||||||
|
*/
|
||||||
|
dns_view_detach(&view);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Wait for the tasks to all die.
|
* Wait for the tasks to all die.
|
||||||
*/
|
*/
|
||||||
@ -179,6 +342,8 @@ main(int argc, char **argv)
|
|||||||
isc_socket_detach(&sock);
|
isc_socket_detach(&sock);
|
||||||
isc_socketmgr_destroy(&sockmgr);
|
isc_socketmgr_destroy(&sockmgr);
|
||||||
|
|
||||||
|
isc_timermgr_destroy(&timermgr);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Free up memory allocated. This is somewhat magical. We allocated
|
* Free up memory allocated. This is somewhat magical. We allocated
|
||||||
* the client_t's in blocks, but the first task always has the
|
* the client_t's in blocks, but the first task always has the
|
||||||
@ -198,6 +363,11 @@ main(int argc, char **argv)
|
|||||||
isc_mem_put(mem, cmgr, sizeof(clientmgr_t) * NTASKS);
|
isc_mem_put(mem, cmgr, sizeof(clientmgr_t) * NTASKS);
|
||||||
cmgr = NULL;
|
cmgr = NULL;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Clean up hints database.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Kill the memory system.
|
* Kill the memory system.
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user