1999-03-06 03:55:54 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1999 Internet Software Consortium.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
|
|
|
|
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
|
|
|
|
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
|
|
|
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
1999-01-28 05:52:20 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <isc/assertions.h>
|
|
|
|
#include <isc/error.h>
|
|
|
|
#include <isc/mem.h>
|
|
|
|
#include <isc/task.h>
|
|
|
|
#include <isc/thread.h>
|
|
|
|
#include <isc/result.h>
|
|
|
|
#include <isc/socket.h>
|
|
|
|
#include <isc/timer.h>
|
|
|
|
|
|
|
|
#include <dns/types.h>
|
|
|
|
#include <dns/result.h>
|
|
|
|
#include <dns/name.h>
|
|
|
|
#include <dns/rdata.h>
|
|
|
|
#include <dns/rdatalist.h>
|
|
|
|
#include <dns/rdataset.h>
|
|
|
|
#include <dns/compress.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
|
|
#define LOCK(lp) \
|
|
|
|
RUNTIME_CHECK(isc_mutex_lock((lp)) == ISC_R_SUCCESS)
|
|
|
|
#define UNLOCK(lp) \
|
|
|
|
RUNTIME_CHECK(isc_mutex_unlock((lp)) == ISC_R_SUCCESS)
|
|
|
|
|
|
|
|
#include "tcpclient.h"
|
|
|
|
|
|
|
|
static tcp_cctx_t *tcp_cctx_allocate(isc_mem_t *mctx);
|
|
|
|
static void tcp_cctx_free(tcp_cctx_t *ctx);
|
|
|
|
|
|
|
|
static void tcp_send(isc_task_t *task, isc_event_t *event);
|
|
|
|
static void tcp_recv_len(isc_task_t *task, isc_event_t *event);
|
|
|
|
static void tcp_recv_req(isc_task_t *task, isc_event_t *event);
|
|
|
|
static void tcp_accept(isc_task_t *task, isc_event_t *event);
|
1999-05-21 05:10:44 +00:00
|
|
|
static void tcp_listener_free(tcp_listener_t **lp);
|
1999-01-28 05:52:20 +00:00
|
|
|
|
|
|
|
static tcp_cctx_t *
|
|
|
|
tcp_cctx_allocate(isc_mem_t *mctx)
|
|
|
|
{
|
|
|
|
tcp_cctx_t *ctx;
|
|
|
|
|
|
|
|
ctx = isc_mem_get(mctx, sizeof(tcp_cctx_t));
|
|
|
|
if (ctx == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
ctx->buf = NULL;
|
|
|
|
ctx->buflen = 0;
|
|
|
|
ctx->slot = 0;
|
|
|
|
ctx->mctx = mctx;
|
|
|
|
ctx->csock = NULL;
|
|
|
|
|
|
|
|
ctx->count = 0; /* XXX */
|
|
|
|
|
|
|
|
return (ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tcp_cctx_free(tcp_cctx_t *ctx)
|
|
|
|
{
|
|
|
|
if (ctx->buf != NULL)
|
|
|
|
isc_mem_put(ctx->mctx, ctx->buf, ctx->buflen);
|
|
|
|
ctx->buf = NULL;
|
|
|
|
isc_mem_put(ctx->mctx, ctx, sizeof(tcp_cctx_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tcp_restart(isc_task_t *task, tcp_cctx_t *ctx)
|
|
|
|
{
|
1999-01-31 12:31:31 +00:00
|
|
|
#ifdef NOISY
|
1999-01-28 05:52:20 +00:00
|
|
|
printf("Restarting listen on %u\n", ctx->slot);
|
1999-01-31 12:31:31 +00:00
|
|
|
#endif
|
1999-01-28 05:52:20 +00:00
|
|
|
|
|
|
|
if (ctx->buf != NULL)
|
|
|
|
isc_mem_put(ctx->mctx, ctx->buf, ctx->buflen);
|
|
|
|
ctx->buf = NULL;
|
|
|
|
ctx->buflen = 0;
|
|
|
|
|
|
|
|
if (ctx->csock != NULL)
|
|
|
|
isc_socket_detach(&ctx->csock);
|
|
|
|
|
|
|
|
RUNTIME_CHECK(isc_socket_accept(ctx->parent->sock, task,
|
|
|
|
tcp_accept, ctx)
|
|
|
|
== ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
isc_mem_stats(ctx->mctx, stdout);
|
|
|
|
}
|
|
|
|
|
1999-05-21 05:10:44 +00:00
|
|
|
/*
|
|
|
|
* A worker task is shutting down, presumably because the
|
|
|
|
* socket has been shut down.
|
|
|
|
*/
|
1999-01-28 05:52:20 +00:00
|
|
|
static void
|
|
|
|
tcp_shutdown(isc_task_t *task, isc_event_t *event)
|
|
|
|
{
|
|
|
|
tcp_cctx_t *ctx;
|
|
|
|
tcp_listener_t *l;
|
1999-05-21 05:10:44 +00:00
|
|
|
isc_boolean_t free_listener = ISC_FALSE;
|
1999-01-28 05:52:20 +00:00
|
|
|
|
|
|
|
ctx = (tcp_cctx_t *)(event->arg);
|
|
|
|
l = ctx->parent;
|
|
|
|
|
|
|
|
LOCK(&l->lock);
|
|
|
|
|
|
|
|
REQUIRE(l->nwactive > 0);
|
|
|
|
|
|
|
|
/*
|
1999-05-21 05:10:44 +00:00
|
|
|
* Remove our task from the list of tasks that the listener
|
1999-01-28 05:52:20 +00:00
|
|
|
* maintains by setting things to NULL, then freeing the
|
|
|
|
* pointers we maintain.
|
|
|
|
*/
|
|
|
|
INSIST(l->tasks[ctx->slot] == task);
|
|
|
|
l->tasks[ctx->slot] = NULL;
|
|
|
|
l->ctxs[ctx->slot] = NULL;
|
|
|
|
|
|
|
|
l->nwactive--;
|
|
|
|
|
1999-05-21 05:10:44 +00:00
|
|
|
if (l->nwactive == 0)
|
|
|
|
free_listener = ISC_TRUE;
|
|
|
|
|
1999-01-28 05:52:20 +00:00
|
|
|
UNLOCK(&l->lock);
|
|
|
|
|
1999-01-31 12:31:31 +00:00
|
|
|
#ifdef NOISY
|
1999-01-28 05:52:20 +00:00
|
|
|
printf("Final shutdown slot %u\n", ctx->slot);
|
1999-01-31 12:31:31 +00:00
|
|
|
#endif
|
1999-05-21 05:10:44 +00:00
|
|
|
|
|
|
|
/* This is where the pointers are freed. */
|
1999-01-28 05:52:20 +00:00
|
|
|
tcp_cctx_free(ctx);
|
1999-05-21 05:10:44 +00:00
|
|
|
isc_task_detach(&task);
|
1999-01-28 05:52:20 +00:00
|
|
|
|
|
|
|
isc_event_free(&event);
|
1999-05-21 05:10:44 +00:00
|
|
|
|
|
|
|
if (free_listener)
|
|
|
|
tcp_listener_free(&l);
|
1999-01-28 05:52:20 +00:00
|
|
|
}
|
|
|
|
|
1999-05-21 05:10:44 +00:00
|
|
|
/*
|
|
|
|
* We have received the 2-byte length prefix (or a socket shutdown
|
|
|
|
* request).
|
|
|
|
*/
|
1999-01-28 05:52:20 +00:00
|
|
|
static void
|
|
|
|
tcp_recv_len(isc_task_t *task, isc_event_t *event)
|
|
|
|
{
|
|
|
|
isc_socket_t *sock;
|
|
|
|
isc_socketevent_t *dev;
|
|
|
|
tcp_cctx_t *ctx;
|
|
|
|
isc_region_t region;
|
|
|
|
|
|
|
|
sock = event->sender;
|
|
|
|
dev = (isc_socketevent_t *)event;
|
|
|
|
ctx = (tcp_cctx_t *)(event->arg);
|
|
|
|
|
1999-01-31 12:31:31 +00:00
|
|
|
#ifdef NOISY
|
1999-01-28 05:52:20 +00:00
|
|
|
printf("len Task %u (sock %p, base %p, length %d, n %d, result %d)\n",
|
|
|
|
ctx->slot, sock,
|
|
|
|
dev->region.base, dev->region.length,
|
|
|
|
dev->n, dev->result);
|
|
|
|
printf("\tFrom: %s port %d\n",
|
|
|
|
inet_ntoa(dev->address.type.sin.sin_addr),
|
|
|
|
ntohs(dev->address.type.sin.sin_port));
|
1999-01-31 12:31:31 +00:00
|
|
|
#endif
|
1999-01-28 05:52:20 +00:00
|
|
|
|
|
|
|
if (dev->result == ISC_R_CANCELED) {
|
|
|
|
isc_task_shutdown(task);
|
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (dev->result != ISC_R_SUCCESS) {
|
|
|
|
tcp_restart(task, ctx);
|
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate the space needed to complete this request.
|
|
|
|
*/
|
|
|
|
ctx->buflen = ntohs(ctx->buflen);
|
|
|
|
ctx->buf = isc_mem_get(ctx->mctx, ctx->buflen);
|
|
|
|
if (ctx->buf == NULL) {
|
|
|
|
printf("Out of memory!\n");
|
|
|
|
tcp_restart(task, ctx);
|
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
region.base = ctx->buf;
|
|
|
|
region.length = ctx->buflen;
|
|
|
|
|
1999-07-28 21:30:37 +00:00
|
|
|
isc_socket_recv(sock, ®ion, 0,
|
1999-01-28 05:52:20 +00:00
|
|
|
task, tcp_recv_req, event->arg);
|
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
}
|
|
|
|
|
1999-05-21 05:10:44 +00:00
|
|
|
/*
|
|
|
|
* We have received the actual request data.
|
|
|
|
*/
|
1999-01-28 05:52:20 +00:00
|
|
|
static void
|
|
|
|
tcp_recv_req(isc_task_t *task, isc_event_t *event)
|
|
|
|
{
|
|
|
|
isc_socket_t *sock;
|
|
|
|
isc_socketevent_t *dev;
|
|
|
|
tcp_cctx_t *ctx;
|
|
|
|
isc_region_t region;
|
1999-01-29 06:18:43 +00:00
|
|
|
unsigned char *cp;
|
|
|
|
isc_uint16_t len;
|
|
|
|
dns_result_t result;
|
1999-01-28 05:52:20 +00:00
|
|
|
|
|
|
|
sock = event->sender;
|
|
|
|
dev = (isc_socketevent_t *)event;
|
|
|
|
ctx = (tcp_cctx_t *)(event->arg);
|
|
|
|
|
1999-01-31 12:31:31 +00:00
|
|
|
#ifdef NOISY
|
1999-01-28 05:52:20 +00:00
|
|
|
printf("req Task %u (sock %p, base %p, length %d, n %d, result %d)\n",
|
|
|
|
ctx->slot, sock,
|
|
|
|
dev->region.base, dev->region.length,
|
|
|
|
dev->n, dev->result);
|
|
|
|
printf("\tFrom: %s port %d\n",
|
|
|
|
inet_ntoa(dev->address.type.sin.sin_addr),
|
|
|
|
ntohs(dev->address.type.sin.sin_port));
|
1999-01-31 12:31:31 +00:00
|
|
|
#endif
|
1999-01-28 05:52:20 +00:00
|
|
|
|
|
|
|
if (dev->result == ISC_R_CANCELED) {
|
|
|
|
isc_task_shutdown(task);
|
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (dev->result != ISC_R_SUCCESS) {
|
|
|
|
tcp_restart(task, ctx);
|
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1999-01-29 06:18:43 +00:00
|
|
|
* Call the dispatch() function to actually process this packet.
|
|
|
|
* If it returns ISC_R_SUCCESS, we have a packet to transmit.
|
|
|
|
* do so. If it returns anything else, drop this connection.
|
1999-01-28 05:52:20 +00:00
|
|
|
*/
|
1999-01-29 06:18:43 +00:00
|
|
|
region.base = ctx->buf;
|
|
|
|
region.length = dev->n;
|
|
|
|
result = ctx->parent->dispatch(ctx->mctx, ®ion, 2);
|
1999-01-31 12:31:31 +00:00
|
|
|
|
|
|
|
if (ctx->buf != region.base) { /* clean up request */
|
|
|
|
isc_mem_put(ctx->mctx, ctx->buf, ctx->buflen);
|
|
|
|
ctx->buf = NULL;
|
|
|
|
}
|
1999-01-28 05:52:20 +00:00
|
|
|
|
|
|
|
/*
|
1999-01-29 06:18:43 +00:00
|
|
|
* Failure. Close TCP client.
|
1999-01-28 05:52:20 +00:00
|
|
|
*/
|
1999-01-29 06:18:43 +00:00
|
|
|
if (result != DNS_R_SUCCESS) {
|
|
|
|
tcp_restart(task, ctx);
|
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Success. Send the packet, after filling in the length at the
|
|
|
|
* front of the packet.
|
|
|
|
*/
|
|
|
|
len = region.length - 2;
|
|
|
|
cp = region.base;
|
|
|
|
*cp++ = (len & 0xff00) >> 8;
|
|
|
|
*cp++ = (len & 0x00ff);
|
|
|
|
|
|
|
|
isc_socket_send(sock, ®ion, task, tcp_send, ctx);
|
1999-01-28 05:52:20 +00:00
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tcp_accept(isc_task_t *task, isc_event_t *event)
|
|
|
|
{
|
|
|
|
isc_region_t region;
|
|
|
|
isc_socket_newconnev_t *dev;
|
|
|
|
isc_socket_t *sock;
|
|
|
|
tcp_cctx_t *ctx;
|
|
|
|
|
|
|
|
sock = event->sender;
|
|
|
|
dev = (isc_socket_newconnev_t *)event;
|
|
|
|
ctx = (tcp_cctx_t *)(event->arg);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we get an error, close the socket. This routine will actually
|
|
|
|
* close the socket and restart a listen on the parent socket for
|
|
|
|
* this task. If, however, the result is that the I/O was canceled,
|
|
|
|
* we are being asked to shut down. Do so.
|
|
|
|
*/
|
|
|
|
if (dev->result == ISC_R_CANCELED) {
|
|
|
|
isc_task_shutdown(task);
|
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (dev->result != ISC_R_SUCCESS) {
|
|
|
|
tcp_restart(task, ctx);
|
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->csock = dev->newsocket;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* New connection. Start the read. In this case, the first read
|
|
|
|
* goes into the length field.
|
|
|
|
*/
|
|
|
|
region.length = 2;
|
|
|
|
region.base = (unsigned char *)&ctx->buflen;
|
|
|
|
|
1999-07-28 21:30:37 +00:00
|
|
|
RUNTIME_CHECK(isc_socket_recv(ctx->csock, ®ion, 0, task,
|
1999-01-28 05:52:20 +00:00
|
|
|
tcp_recv_len, ctx)
|
|
|
|
== ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tcp_send(isc_task_t *task, isc_event_t *event)
|
|
|
|
{
|
|
|
|
isc_socket_t *sock;
|
|
|
|
isc_socketevent_t *dev;
|
1999-01-29 06:18:43 +00:00
|
|
|
tcp_cctx_t *ctx;
|
|
|
|
isc_region_t region;
|
1999-01-28 05:52:20 +00:00
|
|
|
|
|
|
|
sock = event->sender;
|
|
|
|
dev = (isc_socketevent_t *)event;
|
1999-01-29 06:18:43 +00:00
|
|
|
ctx = (tcp_cctx_t *)(event->arg);
|
1999-01-28 05:52:20 +00:00
|
|
|
|
1999-01-31 12:31:31 +00:00
|
|
|
#ifdef NOISY
|
1999-01-29 06:18:43 +00:00
|
|
|
printf("tcp_send: task %u\n\t(base %p, length %d, n %d, result %d)\n",
|
|
|
|
ctx->slot, dev->region.base, dev->region.length,
|
1999-01-28 05:52:20 +00:00
|
|
|
dev->n, dev->result);
|
1999-01-31 12:31:31 +00:00
|
|
|
#endif
|
1999-01-28 05:52:20 +00:00
|
|
|
|
1999-01-29 06:18:43 +00:00
|
|
|
/*
|
|
|
|
* release memory regardless of outcome.
|
|
|
|
*/
|
|
|
|
isc_mem_put(ctx->mctx, dev->region.base, dev->region.length);
|
|
|
|
|
|
|
|
if (dev->result == ISC_R_CANCELED) {
|
|
|
|
isc_task_shutdown(task);
|
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (dev->result != ISC_R_SUCCESS) {
|
|
|
|
tcp_restart(task, ctx);
|
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Queue up another receive.
|
|
|
|
*/
|
|
|
|
region.base = (unsigned char *)&ctx->buflen;
|
|
|
|
region.length = 2;
|
1999-07-28 21:30:37 +00:00
|
|
|
isc_socket_recv(sock, ®ion, 0, task, tcp_recv_len, ctx);
|
1999-01-28 05:52:20 +00:00
|
|
|
|
|
|
|
isc_event_free(&event);
|
|
|
|
}
|
|
|
|
|
|
|
|
tcp_listener_t *
|
|
|
|
tcp_listener_allocate(isc_mem_t *mctx, u_int nwmax)
|
|
|
|
{
|
|
|
|
tcp_listener_t *l;
|
|
|
|
|
|
|
|
l = isc_mem_get(mctx, sizeof(tcp_listener_t));
|
|
|
|
if (l == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
if (isc_mutex_init(&l->lock) != ISC_R_SUCCESS) {
|
|
|
|
isc_mem_put(mctx, l, sizeof(tcp_listener_t));
|
|
|
|
|
|
|
|
UNEXPECTED_ERROR(__FILE__, __LINE__,
|
|
|
|
"isc_mutex_init() failed");
|
|
|
|
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
l->tasks = isc_mem_get(mctx, sizeof(isc_task_t *) * nwmax);
|
|
|
|
RUNTIME_CHECK(l->tasks != NULL); /* XXX should be non-fatal? */
|
|
|
|
l->ctxs = isc_mem_get(mctx, sizeof(tcp_cctx_t *) * nwmax);
|
|
|
|
RUNTIME_CHECK(l->ctxs != NULL); /* XXX should be non-fatal? */
|
|
|
|
|
1999-02-01 20:37:40 +00:00
|
|
|
l->sock = NULL;
|
|
|
|
l->nwstart = 0;
|
|
|
|
l->nwkeep = 0;
|
|
|
|
l->nwmax = nwmax;
|
1999-01-28 05:52:20 +00:00
|
|
|
l->mctx = mctx;
|
1999-02-01 20:37:40 +00:00
|
|
|
l->dispatch = NULL;
|
|
|
|
l->nwactive = 0;
|
1999-01-28 05:52:20 +00:00
|
|
|
|
|
|
|
return (l);
|
|
|
|
}
|
|
|
|
|
1999-05-21 05:10:44 +00:00
|
|
|
static void
|
|
|
|
tcp_listener_free(tcp_listener_t **lp)
|
|
|
|
{
|
|
|
|
tcp_listener_t *l = *lp;
|
|
|
|
isc_mem_put(l->mctx, l->ctxs, sizeof(tcp_cctx_t *) * l->nwmax);
|
|
|
|
isc_mem_put(l->mctx, l->tasks, sizeof(isc_task_t *) * l->nwmax);
|
|
|
|
isc_mutex_destroy(&l->lock);
|
|
|
|
isc_mem_put(l->mctx, l, sizeof(tcp_listener_t));
|
|
|
|
*lp = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-01-28 05:52:20 +00:00
|
|
|
isc_result_t
|
|
|
|
tcp_listener_start(tcp_listener_t *l,
|
|
|
|
isc_socket_t *sock, isc_taskmgr_t *tmgr,
|
1999-01-29 06:18:43 +00:00
|
|
|
u_int nwstart, u_int nwkeep, u_int nwtimeout,
|
|
|
|
dns_result_t (*dispatch)(isc_mem_t *, isc_region_t *,
|
|
|
|
unsigned int))
|
1999-01-28 05:52:20 +00:00
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
|
1999-02-01 20:47:58 +00:00
|
|
|
(void)nwkeep; /* Make compiler happy. */
|
|
|
|
(void)nwtimeout; /* Make compiler happy. */
|
|
|
|
|
1999-01-28 05:52:20 +00:00
|
|
|
LOCK(&l->lock);
|
|
|
|
INSIST(l->nwactive == 0);
|
1999-01-29 06:18:43 +00:00
|
|
|
INSIST(dispatch != NULL);
|
1999-01-28 05:52:20 +00:00
|
|
|
|
1999-01-29 06:18:43 +00:00
|
|
|
l->dispatch = dispatch;
|
1999-01-28 05:52:20 +00:00
|
|
|
l->sock = sock;
|
|
|
|
RUNTIME_CHECK(isc_socket_listen(sock, 0) == ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
for (i = 0 ; i < nwstart ; i++) {
|
|
|
|
l->tasks[i] = NULL;
|
|
|
|
RUNTIME_CHECK(isc_task_create(tmgr, NULL, 0, &l->tasks[i])
|
|
|
|
== ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
l->ctxs[i] = tcp_cctx_allocate(l->mctx);
|
|
|
|
RUNTIME_CHECK(l->ctxs[i] != NULL);
|
|
|
|
|
|
|
|
l->ctxs[i]->parent = l;
|
|
|
|
l->ctxs[i]->slot = i;
|
|
|
|
|
|
|
|
RUNTIME_CHECK(isc_task_onshutdown(l->tasks[i], tcp_shutdown,
|
|
|
|
l->ctxs[i])
|
|
|
|
== ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
RUNTIME_CHECK(isc_socket_accept(sock, l->tasks[i],
|
|
|
|
tcp_accept, l->ctxs[i])
|
|
|
|
== ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
l->nwactive++;
|
|
|
|
}
|
|
|
|
|
|
|
|
UNLOCK(&l->lock);
|
|
|
|
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|