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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
|
/*
* Unix SMB/CIFS implementation.
* threadpool implementation based on pthreads
* Copyright (C) Volker Lendecke 2009,2011
*
* This program 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 3 of the License, or
* (at your option) any later version.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "replace.h"
#include "system/filesys.h"
#include "system/threads.h"
#include "pthreadpool_tevent.h"
#include "pthreadpool.h"
#include "lib/util/tevent_unix.h"
#include "lib/util/dlinklist.h"
struct pthreadpool_tevent_job_state;
/*
* We need one pthreadpool_tevent_glue object per unique combination of tevent
* contexts and pthreadpool_tevent objects. Maintain a list of used tevent
* contexts in a pthreadpool_tevent.
*/
struct pthreadpool_tevent_glue {
struct pthreadpool_tevent_glue *prev, *next;
struct pthreadpool_tevent *pool; /* back-pointer to owning object. */
/* Tuple we are keeping track of in this list. */
struct tevent_context *ev;
struct tevent_threaded_context *tctx;
/* Pointer to link object owned by *ev. */
struct pthreadpool_tevent_glue_ev_link *ev_link;
};
/*
* The pthreadpool_tevent_glue_ev_link and its destructor ensure we remove the
* tevent context from our list of active event contexts if the event context
* is destroyed.
* This structure is talloc()'ed from the struct tevent_context *, and is a
* back-pointer allowing the related struct pthreadpool_tevent_glue object
* to be removed from the struct pthreadpool_tevent glue list if the owning
* tevent_context is talloc_free()'ed.
*/
struct pthreadpool_tevent_glue_ev_link {
struct pthreadpool_tevent_glue *glue;
};
struct pthreadpool_tevent {
struct pthreadpool *pool;
struct pthreadpool_tevent_glue *glue_list;
/*
* Control access to the glue_list
*/
pthread_mutex_t glue_mutex;
struct pthreadpool_tevent_job_state *jobs;
/*
* Control access to the jobs
*/
pthread_mutex_t jobs_mutex;
};
struct pthreadpool_tevent_job_state {
struct pthreadpool_tevent_job_state *prev, *next;
struct pthreadpool_tevent *pool;
struct tevent_context *ev;
struct tevent_immediate *im;
struct tevent_req *req;
void (*fn)(void *private_data);
void *private_data;
};
static int pthreadpool_tevent_destructor(struct pthreadpool_tevent *pool);
static int pthreadpool_tevent_job_signal(int jobid,
void (*job_fn)(void *private_data),
void *job_private_data,
void *private_data);
int pthreadpool_tevent_init(TALLOC_CTX *mem_ctx, unsigned max_threads,
struct pthreadpool_tevent **presult)
{
struct pthreadpool_tevent *pool;
int ret;
pool = talloc_zero(mem_ctx, struct pthreadpool_tevent);
if (pool == NULL) {
return ENOMEM;
}
ret = pthreadpool_init(max_threads, &pool->pool,
pthreadpool_tevent_job_signal, pool);
if (ret != 0) {
TALLOC_FREE(pool);
return ret;
}
ret = pthread_mutex_init(&pool->glue_mutex, NULL);
if (ret != 0) {
TALLOC_FREE(pool);
return ret;
}
ret = pthread_mutex_init(&pool->jobs_mutex, NULL);
if (ret != 0) {
pthread_mutex_destroy(&pool->glue_mutex);
TALLOC_FREE(pool);
return ret;
}
talloc_set_destructor(pool, pthreadpool_tevent_destructor);
*presult = pool;
return 0;
}
size_t pthreadpool_tevent_max_threads(struct pthreadpool_tevent *pool)
{
if (pool->pool == NULL) {
return 0;
}
return pthreadpool_max_threads(pool->pool);
}
size_t pthreadpool_tevent_queued_jobs(struct pthreadpool_tevent *pool)
{
if (pool->pool == NULL) {
return 0;
}
return pthreadpool_queued_jobs(pool->pool);
}
static int pthreadpool_tevent_destructor(struct pthreadpool_tevent *pool)
{
struct pthreadpool_tevent_job_state *state, *next;
struct pthreadpool_tevent_glue *glue = NULL;
int ret;
ret = pthreadpool_stop(pool->pool);
if (ret != 0) {
return ret;
}
ret = pthread_mutex_lock(&pool->jobs_mutex);
if (ret != 0 ) {
return ret;
}
for (state = pool->jobs; state != NULL; state = next) {
next = state->next;
DLIST_REMOVE(pool->jobs, state);
state->pool = NULL;
}
ret = pthread_mutex_unlock(&pool->jobs_mutex);
if (ret != 0 ) {
return ret;
}
ret = pthread_mutex_lock(&pool->glue_mutex);
if (ret != 0) {
return ret;
}
/*
* Delete all the registered
* tevent_context/tevent_threaded_context
* pairs.
*/
for (glue = pool->glue_list; glue != NULL; glue = pool->glue_list) {
/* The glue destructor removes it from the list */
TALLOC_FREE(glue);
}
pthread_mutex_unlock(&pool->glue_mutex);
pthread_mutex_destroy(&pool->jobs_mutex);
pthread_mutex_destroy(&pool->glue_mutex);
pool->glue_list = NULL;
ret = pthreadpool_destroy(pool->pool);
if (ret != 0) {
return ret;
}
pool->pool = NULL;
return 0;
}
/*
* glue destruction is only called with
* glue_mutex already locked either from
* a) pthreadpool_tevent_destructor or
* b) pthreadpool_tevent_glue_link_destructor
* pthreadpool_tevent_destructor accesses
* the glue_list while calling pthreadpool_tevent_glue_destructor
* which modifies the glue_list so it needs the lock held while
* doing that.
*/
static int pthreadpool_tevent_glue_destructor(
struct pthreadpool_tevent_glue *glue)
{
if (glue->pool->glue_list != NULL) {
DLIST_REMOVE(glue->pool->glue_list, glue);
}
/* Ensure the ev_link destructor knows we're gone */
glue->ev_link->glue = NULL;
TALLOC_FREE(glue->ev_link);
TALLOC_FREE(glue->tctx);
return 0;
}
/*
* Destructor called either explicitly from
* pthreadpool_tevent_glue_destructor(), or indirectly
* when owning tevent_context is destroyed.
*
* When called from pthreadpool_tevent_glue_destructor()
* ev_link->glue is already NULL, so this does nothing.
*
* When called from talloc_free() of the owning
* tevent_context we must ensure we also remove the
* linked glue object from the list inside
* struct pthreadpool_tevent.
*/
static int pthreadpool_tevent_glue_link_destructor(
struct pthreadpool_tevent_glue_ev_link *ev_link)
{
if (ev_link->glue) {
int ret;
/* save the mutex */
pthread_mutex_t *glue_mutex =
&ev_link->glue->pool->glue_mutex;
ret = pthread_mutex_lock(glue_mutex);
if (ret != 0) {
return ret;
}
TALLOC_FREE(ev_link->glue);
ret = pthread_mutex_unlock(glue_mutex);
if (ret != 0) {
return ret;
}
}
return 0;
}
static int pthreadpool_tevent_register_ev(struct pthreadpool_tevent *pool,
struct tevent_context *ev)
{
struct pthreadpool_tevent_glue *glue = NULL;
struct pthreadpool_tevent_glue_ev_link *ev_link = NULL;
int ret;
ret = pthread_mutex_lock(&pool->glue_mutex);
if (ret != 0) {
return ret;
}
/*
* See if this tevent_context was already registered by
* searching the glue object list. If so we have nothing
* to do here - we already have a tevent_context/tevent_threaded_context
* pair.
*/
for (glue = pool->glue_list; glue != NULL; glue = glue->next) {
if (glue->ev == ev) {
ret = pthread_mutex_unlock(&pool->glue_mutex);
if (ret != 0) {
return ret;
}
return 0;
}
}
ret = pthread_mutex_unlock(&pool->glue_mutex);
if (ret != 0) {
return ret;
}
/*
* Event context not yet registered - create a new glue
* object containing a tevent_context/tevent_threaded_context
* pair and put it on the list to remember this registration.
* We also need a link object to ensure the event context
* can't go away without us knowing about it.
*/
glue = talloc_zero(pool, struct pthreadpool_tevent_glue);
if (glue == NULL) {
return ENOMEM;
}
*glue = (struct pthreadpool_tevent_glue) {
.pool = pool,
.ev = ev,
};
talloc_set_destructor(glue, pthreadpool_tevent_glue_destructor);
/*
* Now allocate the link object to the event context. Note this
* is allocated OFF THE EVENT CONTEXT ITSELF, so if the event
* context is freed we are able to cleanup the glue object
* in the link object destructor.
*/
ev_link = talloc_zero(ev, struct pthreadpool_tevent_glue_ev_link);
if (ev_link == NULL) {
TALLOC_FREE(glue);
return ENOMEM;
}
ev_link->glue = glue;
talloc_set_destructor(ev_link, pthreadpool_tevent_glue_link_destructor);
glue->ev_link = ev_link;
#ifdef HAVE_PTHREAD
glue->tctx = tevent_threaded_context_create(glue, ev);
if (glue->tctx == NULL) {
TALLOC_FREE(ev_link);
return ENOMEM;
}
#endif
ret = pthread_mutex_lock(&pool->glue_mutex);
if (ret != 0) {
return ret;
}
DLIST_ADD(pool->glue_list, glue);
ret = pthread_mutex_unlock(&pool->glue_mutex);
if (ret != 0) {
return ret;
}
return 0;
}
static void pthreadpool_tevent_job_fn(void *private_data);
static void pthreadpool_tevent_job_done(struct tevent_context *ctx,
struct tevent_immediate *im,
void *private_data);
static int pthreadpool_tevent_job_state_destructor(
struct pthreadpool_tevent_job_state *state)
{
if (state->pool == NULL) {
return 0;
}
/*
* We should never be called with state->req == NULL,
* state->pool must be cleared before the 2nd talloc_free().
*/
if (state->req == NULL) {
abort();
}
/*
* We need to reparent to a long term context.
*/
(void)talloc_reparent(state->req, NULL, state);
state->req = NULL;
return -1;
}
struct tevent_req *pthreadpool_tevent_job_send(
TALLOC_CTX *mem_ctx, struct tevent_context *ev,
struct pthreadpool_tevent *pool,
void (*fn)(void *private_data), void *private_data)
{
struct tevent_req *req;
struct pthreadpool_tevent_job_state *state;
int ret;
req = tevent_req_create(mem_ctx, &state,
struct pthreadpool_tevent_job_state);
if (req == NULL) {
return NULL;
}
state->pool = pool;
state->ev = ev;
state->req = req;
state->fn = fn;
state->private_data = private_data;
if (pool == NULL) {
tevent_req_error(req, EINVAL);
return tevent_req_post(req, ev);
}
if (pool->pool == NULL) {
tevent_req_error(req, EINVAL);
return tevent_req_post(req, ev);
}
state->im = tevent_create_immediate(state);
if (tevent_req_nomem(state->im, req)) {
return tevent_req_post(req, ev);
}
ret = pthreadpool_tevent_register_ev(pool, ev);
if (tevent_req_error(req, ret)) {
return tevent_req_post(req, ev);
}
ret = pthreadpool_add_job(pool->pool, 0,
pthreadpool_tevent_job_fn,
state);
if (tevent_req_error(req, ret)) {
return tevent_req_post(req, ev);
}
/*
* Once the job is scheduled, we need to protect
* our memory.
*/
talloc_set_destructor(state, pthreadpool_tevent_job_state_destructor);
ret = pthread_mutex_lock(&pool->jobs_mutex);
if (tevent_req_error(req, ret)) {
return tevent_req_post(req, ev);
}
DLIST_ADD_END(pool->jobs, state);
ret = pthread_mutex_unlock(&pool->jobs_mutex);
if (tevent_req_error(req, ret)) {
return tevent_req_post(req, ev);
}
return req;
}
static void pthreadpool_tevent_job_fn(void *private_data)
{
struct pthreadpool_tevent_job_state *state = talloc_get_type_abort(
private_data, struct pthreadpool_tevent_job_state);
state->fn(state->private_data);
}
static int pthreadpool_tevent_job_signal(int jobid,
void (*job_fn)(void *private_data),
void *job_private_data,
void *private_data)
{
struct pthreadpool_tevent_job_state *state = talloc_get_type_abort(
job_private_data, struct pthreadpool_tevent_job_state);
struct tevent_threaded_context *tctx = NULL;
struct pthreadpool_tevent_glue *g = NULL;
int ret;
if (state->pool == NULL) {
/* The pthreadpool_tevent is already gone */
return 0;
}
#ifdef HAVE_PTHREAD
ret = pthread_mutex_lock(&state->pool->glue_mutex);
if (ret != 0) {
return ret;
}
for (g = state->pool->glue_list; g != NULL; g = g->next) {
if (g->ev == state->ev) {
tctx = g->tctx;
break;
}
}
ret = pthread_mutex_unlock(&state->pool->glue_mutex);
if (ret != 0) {
return ret;
}
if (tctx == NULL) {
abort();
}
#endif
if (tctx != NULL) {
/* with HAVE_PTHREAD */
tevent_threaded_schedule_immediate(tctx, state->im,
pthreadpool_tevent_job_done,
state);
} else {
/* without HAVE_PTHREAD */
tevent_schedule_immediate(state->im, state->ev,
pthreadpool_tevent_job_done,
state);
}
return 0;
}
static void pthreadpool_tevent_job_done(struct tevent_context *ctx,
struct tevent_immediate *im,
void *private_data)
{
struct pthreadpool_tevent_job_state *state = talloc_get_type_abort(
private_data, struct pthreadpool_tevent_job_state);
if (state->pool != NULL) {
int ret;
ret = pthread_mutex_lock(&state->pool->jobs_mutex);
if (tevent_req_error(state->req, ret)) {
return;
}
DLIST_REMOVE(state->pool->jobs, state);
ret = pthread_mutex_unlock(&state->pool->jobs_mutex);
state->pool = NULL;
if (tevent_req_error(state->req, ret)) {
return;
}
}
if (state->req == NULL) {
/*
* There was a talloc_free() state->req
* while the job was pending,
* which mean we're reparented on a longterm
* talloc context.
*
* We just cleanup here...
*/
talloc_free(state);
return;
}
tevent_req_done(state->req);
}
int pthreadpool_tevent_job_recv(struct tevent_req *req)
{
return tevent_req_simple_recv_unix(req);
}
|