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
|
/* Quagga Pthreads support -- header
* Copyright (C) 2009 Chris Hall (GMCH), Highwayman
*
* This file is part of GNU Zebra.
*
* GNU Zebra is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published
* by the Free Software Foundation; either version 2, or (at your
* option) any later version.
*
* GNU Zebra is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Zebra; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <zebra.h>
#include "qpnexus.h"
#include "memory.h"
#include "thread.h"
#include "sigevent.h"
/* prototypes */
static void* qpn_start(void* arg);
static void qpn_in_thread_init(qpn_nexus qpn);
/*==============================================================================
* Quagga Nexus Interface -- qpn_xxxx
*
*/
/* Initialise a nexus -- allocating it if required.
*
* If main_thread is set then no new thread will be created
* when qpn_exec() is called, instead the finite state machine will be
* run in the calling thread. The main thread will only block the
* message queue's signal. Non-main threads will block most signals.
*
* Returns the qpn_nexus.
*/
qpn_nexus
qpn_init_new(qpn_nexus qpn, int main_thread)
{
if (qpn == NULL)
qpn = XCALLOC(MTYPE_QPN_NEXUS, sizeof(struct qpn_nexus)) ;
else
memset(qpn, 0, sizeof(struct qpn_nexus)) ;
qpn->selection = qps_selection_init_new(qpn->selection);
qpn->pile = qtimer_pile_init_new(qpn->pile);
qpn->queue = mqueue_init_new(qpn->queue, mqt_signal_unicast);
qpn->main_thread = main_thread;
qpn->start = qpn_start;
return qpn;
}
/* free timers, selection, message queue and nexus
* return NULL
*/
qpn_nexus
qpn_free(qpn_nexus qpn)
{
qps_file qf;
qtimer qtr;
if (qpn == NULL)
return NULL;
/* timers and the pile */
if (qpn->pile != NULL)
{
while ((qtr = qtimer_pile_ream(qpn->pile, 1)))
qtimer_free(qtr);
}
/* files and selection */
if (qpn->selection != NULL)
{
while ((qf = qps_selection_ream(qpn->selection, 1)))
qps_file_free(qf);
}
if (qpn->queue != NULL)
qpn->queue = mqueue_reset(qpn->queue, 1);
if (qpn->mts != NULL)
qpn->mts = mqueue_thread_signal_reset(qpn->mts, 1);
XFREE(MTYPE_QPN_NEXUS, qpn) ;
return NULL;
}
/* If not main thread create new qpthread.
* Execute the state machine */
void
qpn_exec(qpn_nexus qpn)
{
if (qpn->main_thread)
{
/* Run the state machine in calling thread */
qpn->start(qpn);
}
else
{
/* create a qpthread and run the state machine in it */
qpt_thread_create(qpn->start, qpn, NULL) ;
}
}
/*==============================================================================
* Pthread routine
*
* Processes:
*
* 1) Main thread only -- signals.
*
* 2) High priority pending work -- event hooks.
*
* 3) Messages coming from other pthreads -- mqueue_queue.
*
* 4) All priority pending work -- event hooks.
*
* 5) I/O -- qpselect
*
* This deals with all active sockets for read/write/connect/accept.
*
* Each time a socket is readable, one message is read and dispatched.
* The pselect timeout is set to be when the next timer is due.
*
* 6) Timers -- qtimers
*
*/
static void*
qpn_start(void* arg)
{
qpn_nexus qpn = arg;
mqueue_block mqb;
int actions;
qtime_mono_t now;
qtime_mono_t max_wait;
int i;
/* now in our thread, complete initialisation */
qpn_in_thread_init(qpn);
while (!qpn->terminate)
{
now = qt_get_monotonic();
/* Signals are highest priority.
* only execute on the main thread */
if (qpn->main_thread)
quagga_sigevent_process ();
/* max time to wait in pselect */
max_wait = QTIME(MAX_PSELECT_TIMOUT);
/* event hooks, if any. High priority */
for (i = 0; i < NUM_EVENT_HOOK; ++i)
{
if (qpn->event_hook[i] != NULL)
{
/* first, second and third priority */
qtime_mono_t event_wait = qpn->event_hook[i](qpn_pri_third);
if (event_wait > 0 && event_wait < max_wait)
max_wait = event_wait;
}
}
/* drain the message queue, will be in waiting for signal state
* when it's empty */
for (;;)
{
mqb = mqueue_dequeue(qpn->queue, 1, qpn->mts) ;
if (mqb == NULL)
break;
mqb_dispatch(mqb, mqb_action);
}
/* Event hooks, if any. All priorities */
for (i = 0; i < NUM_EVENT_HOOK; ++i)
{
if (qpn->event_hook[i] != NULL)
{
/* first, second third and fourth priority */
qtime_mono_t event_wait = qpn->event_hook[i](qpn_pri_fourth);
if (event_wait > 0 && event_wait < max_wait)
max_wait = event_wait;
}
}
/* block for some input, output, signal or timeout */
actions = qps_pselect(qpn->selection,
qtimer_pile_top_time(qpn->pile, now + max_wait));
/* process I/O actions */
while (actions)
actions = qps_dispatch_next(qpn->selection) ;
mqueue_done_waiting(qpn->queue, qpn->mts);
/* process timers */
while (qtimer_pile_dispatch_next(qpn->pile, now))
{
}
}
/* last bit of code to run in this thread */
if (qpn->in_thread_final)
qpn->in_thread_final();
return NULL;
}
/* Now running in our thread, complete initialisation */
static void
qpn_in_thread_init(qpn_nexus qpn)
{
sigset_t newmask;
qpn->thread_id = qpt_thread_self();
if (qpn->main_thread)
{
/* Main thread, block the message queue's signal */
sigemptyset (&newmask);
sigaddset (&newmask, SIGMQUEUE);
}
else
{
/*
* Not main thread. Block most signals, but be careful not to
* defer SIGTRAP because doing so breaks gdb, at least on
* NetBSD 2.0. Avoid asking to block SIGKILL, just because
* we shouldn't be able to do so. Avoid blocking SIGFPE,
* SIGILL, SIGSEGV, SIGBUS as this is undefined by POSIX.
* Don't block SIGPIPE so that is gets ignored on this thread.
*/
sigfillset (&newmask);
sigdelset (&newmask, SIGTRAP);
sigdelset (&newmask, SIGKILL);
sigdelset (&newmask, SIGPIPE);
sigdelset (&newmask, SIGFPE);
sigdelset (&newmask, SIGILL);
sigdelset (&newmask, SIGSEGV);
sigdelset (&newmask, SIGBUS);
}
if (qpthreads_enabled)
qpt_thread_sigmask(SIG_BLOCK, &newmask, NULL);
else
{
if (sigprocmask(SIG_BLOCK, &newmask, NULL) != 0)
zabort_errno("sigprocmask failed") ;
}
/* Now we have thread_id and mask, prep for using message queue. */
if (qpn->queue != NULL)
qpn->mts = mqueue_thread_signal_init(qpn->mts, qpn->thread_id, SIGMQUEUE);
if (qpn->selection != NULL)
qps_set_signal(qpn->selection, SIGMQUEUE, newmask);
/* custom in-thread initialization */
if (qpn->in_thread_init != NULL)
qpn->in_thread_init();
}
/* Ask the thread to terminate itself quickly and cleanly */
void
qpn_terminate(qpn_nexus qpn)
{
qpn->terminate = 1;
/* wake up any pselect */
if (qpthreads_enabled)
qpt_thread_signal(qpn->thread_id, SIGMQUEUE);
}
|