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
|
/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or 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 ISC DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL ISC 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.
*/
/*! \file */
#include <stddef.h>
#include <errno.h>
#include <signal.h>
#include <sys/time.h>
#include <time.h>
#include <isc/app.h>
#include <isc/event.h>
#include <string.h>
#include <isc/task.h>
#include <isc/util.h>
/*%
* For BIND9 internal applications built with threads, we use a single app
* context and let multiple worker, I/O, timer threads do actual jobs.
* For other cases (including BIND9 built without threads) an app context acts
* as an event loop dispatching various events.
*/
#include "../timer_p.h"
#include "../task_p.h"
#include "socket_p.h"
/*
* The application context of this module. This implementation actually
* doesn't use it. (This may change in the future).
*/
typedef struct isc_appctx {
isc_eventlist_t on_run;
int shutdown_requested;
int running;
/*!
* We assume that 'want_shutdown' can be read and written atomically.
*/
int want_shutdown;
isc_taskmgr_t *taskmgr;
isc_socketmgr_t *socketmgr;
isc_timermgr_t *timermgr;
} isc_appctx_t;
static isc_appctx_t isc_g_appctx;
static isc_result_t isc_app_ctxonrun(isc_appctx_t *ctx, isc_task_t *task,
isc_taskaction_t action, void *arg);
static isc_result_t
isc_app_ctxstart(isc_appctx_t *ctx) {
/*
* Start an ISC library application.
*/
ISC_LIST_INIT(ctx->on_run);
ctx->shutdown_requested = 0;
ctx->running = 0;
ctx->want_shutdown = 0;
if (signal(SIGPIPE, SIG_IGN) == SIG_ERR) {
UNEXPECTED_ERROR(__FILE__, __LINE__,
"isc_app_ctxstart() signal: %s",
strerror(errno));
return ISC_R_UNEXPECTED;
}
return ISC_R_SUCCESS;
}
isc_result_t
isc_app_start(void) {
/* The remaining members will be initialized in ctxstart() */
return (isc_app_ctxstart((isc_appctx_t *)&isc_g_appctx));
}
isc_result_t
isc_app_onrun(isc_task_t *task, isc_taskaction_t action,
void *arg)
{
return (isc_app_ctxonrun((isc_appctx_t *)&isc_g_appctx,
task, action, arg));
}
isc_result_t
isc_app_ctxonrun(isc_appctx_t *ctx, isc_task_t *task,
isc_taskaction_t action, void *arg)
{
isc_event_t *event;
isc_task_t *cloned_task = NULL;
isc_result_t result;
if (ctx->running) {
result = ISC_R_ALREADYRUNNING;
goto unlock;
}
/*
* Note that we store the task to which we're going to send the event
* in the event's "sender" field.
*/
isc_task_attach(task, &cloned_task);
event = isc_event_allocate(cloned_task, ISC_APPEVENT_SHUTDOWN,
action, arg, sizeof(*event));
if (event == NULL) {
isc_task_detach(&cloned_task);
result = ISC_R_NOMEMORY;
goto unlock;
}
ISC_LIST_APPEND(ctx->on_run, event, ev_link);
result = ISC_R_SUCCESS;
unlock:
return (result);
}
/*!
* Event loop for nonthreaded programs.
*/
static isc_result_t
evloop(isc_appctx_t *ctx) {
isc_result_t result;
while (!ctx->want_shutdown) {
int n;
struct timespec when, now, diff, zero ={0, 0};
struct timeval tv, *tvp;
isc_socketwait_t *swait;
int readytasks;
int call_timer_dispatch = 0;
readytasks = isc_taskmgr_ready(ctx->taskmgr);
if (readytasks) {
tv.tv_sec = 0;
tv.tv_usec = 0;
tvp = &tv;
call_timer_dispatch = 1;
} else {
result = isc_timermgr_nextevent(ctx->timermgr, &when);
if (result != ISC_R_SUCCESS)
tvp = NULL;
else {
clock_gettime(CLOCK_MONOTONIC, &now);
timespecsub(&when, &now, &diff);
if (timespeccmp(&diff, &zero, <=)) {
call_timer_dispatch = 1;
memset(&tv, 0, sizeof(tv));
} else
TIMESPEC_TO_TIMEVAL(&tv, &diff);
tvp = &tv;
}
}
swait = NULL;
n = isc_socketmgr_waitevents(ctx->socketmgr, tvp, &swait);
if (n == 0 || call_timer_dispatch) {
/*
* We call isc_timermgr_dispatch() only when
* necessary, in order to reduce overhead. If the
* select() call indicates a timeout, we need the
* dispatch. Even if not, if we set the 0-timeout
* for the select() call, we need to check the timer
* events. In the 'readytasks' case, there may be no
* timeout event actually, but there is no other way
* to reduce the overhead.
* Note that we do not have to worry about the case
* where a new timer is inserted during the select()
* call, since this loop only runs in the non-thread
* mode.
*/
isc_timermgr_dispatch(ctx->timermgr);
}
if (n > 0)
(void)isc_socketmgr_dispatch(ctx->socketmgr, swait);
(void)isc_taskmgr_dispatch(ctx->taskmgr);
}
return (ISC_R_SUCCESS);
}
static isc_result_t
isc_app_ctxrun(isc_appctx_t *ctx) {
int result;
isc_event_t *event, *next_event;
isc_task_t *task;
if (!ctx->running) {
ctx->running = 1;
/*
* Post any on-run events (in FIFO order).
*/
for (event = ISC_LIST_HEAD(ctx->on_run);
event != NULL;
event = next_event) {
next_event = ISC_LIST_NEXT(event, ev_link);
ISC_LIST_UNLINK(ctx->on_run, event, ev_link);
task = event->ev_sender;
event->ev_sender = NULL;
isc_task_sendanddetach(&task, &event);
}
}
(void) isc_taskmgr_dispatch(ctx->taskmgr);
result = evloop(ctx);
return (result);
}
isc_result_t
isc_app_run(void) {
return (isc_app_ctxrun((isc_appctx_t *)&isc_g_appctx));
}
static isc_result_t
isc_app_ctxshutdown(isc_appctx_t *ctx) {
int want_kill = 1;
REQUIRE(ctx->running);
if (ctx->shutdown_requested)
want_kill = 0;
else
ctx->shutdown_requested = 1;
if (want_kill) {
if (ctx != &isc_g_appctx)
/* BIND9 internal, but using multiple contexts */
ctx->want_shutdown = 1;
else {
ctx->want_shutdown = 1;
}
}
return (ISC_R_SUCCESS);
}
isc_result_t
isc_app_shutdown(void) {
return (isc_app_ctxshutdown((isc_appctx_t *)&isc_g_appctx));
}
|