s3:vfs_commit: fix build
[Samba.git] / source3 / lib / pthreadpool / pthreadpool.c
blob7538fb79955fb4ff379bda4647705747fe61be96
1 /*
2 * Unix SMB/CIFS implementation.
3 * thread pool implementation
4 * Copyright (C) Volker Lendecke 2009
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include <errno.h>
21 #include <stdio.h>
22 #include <unistd.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <pthread.h>
26 #include <signal.h>
27 #include <assert.h>
28 #include <fcntl.h>
29 #include <sys/time.h>
31 #include "pthreadpool.h"
32 #include "lib/util/dlinklist.h"
34 struct pthreadpool_job {
35 struct pthreadpool_job *next;
36 int id;
37 void (*fn)(void *private_data);
38 void *private_data;
41 struct pthreadpool {
43 * List pthreadpools for fork safety
45 struct pthreadpool *prev, *next;
48 * Control access to this struct
50 pthread_mutex_t mutex;
53 * Threads waiting for work do so here
55 pthread_cond_t condvar;
58 * List of work jobs
60 struct pthreadpool_job *jobs, *last_job;
63 * pipe for signalling
65 int sig_pipe[2];
68 * indicator to worker threads that they should shut down
70 int shutdown;
73 * maximum number of threads
75 int max_threads;
78 * Number of threads
80 int num_threads;
83 * Number of idle threads
85 int num_idle;
88 * An array of threads that require joining.
90 int num_exited;
91 pthread_t *exited; /* We alloc more */
94 static pthread_mutex_t pthreadpools_mutex = PTHREAD_MUTEX_INITIALIZER;
95 static struct pthreadpool *pthreadpools = NULL;
96 static pthread_once_t pthreadpool_atfork_initialized = PTHREAD_ONCE_INIT;
98 static void pthreadpool_prep_atfork(void);
101 * Initialize a thread pool
104 int pthreadpool_init(unsigned max_threads, struct pthreadpool **presult)
106 struct pthreadpool *pool;
107 int ret;
109 pool = (struct pthreadpool *)malloc(sizeof(struct pthreadpool));
110 if (pool == NULL) {
111 return ENOMEM;
114 ret = pipe(pool->sig_pipe);
115 if (ret == -1) {
116 int err = errno;
117 free(pool);
118 return err;
121 ret = pthread_mutex_init(&pool->mutex, NULL);
122 if (ret != 0) {
123 close(pool->sig_pipe[0]);
124 close(pool->sig_pipe[1]);
125 free(pool);
126 return ret;
129 ret = pthread_cond_init(&pool->condvar, NULL);
130 if (ret != 0) {
131 pthread_mutex_destroy(&pool->mutex);
132 close(pool->sig_pipe[0]);
133 close(pool->sig_pipe[1]);
134 free(pool);
135 return ret;
138 pool->shutdown = 0;
139 pool->jobs = pool->last_job = NULL;
140 pool->num_threads = 0;
141 pool->num_exited = 0;
142 pool->exited = NULL;
143 pool->max_threads = max_threads;
144 pool->num_idle = 0;
146 ret = pthread_mutex_lock(&pthreadpools_mutex);
147 if (ret != 0) {
148 pthread_cond_destroy(&pool->condvar);
149 pthread_mutex_destroy(&pool->mutex);
150 close(pool->sig_pipe[0]);
151 close(pool->sig_pipe[1]);
152 free(pool);
153 return ret;
155 DLIST_ADD(pthreadpools, pool);
157 ret = pthread_mutex_unlock(&pthreadpools_mutex);
158 assert(ret == 0);
160 pthread_once(&pthreadpool_atfork_initialized, pthreadpool_prep_atfork);
162 *presult = pool;
164 return 0;
167 static void pthreadpool_prepare(void)
169 int ret;
170 struct pthreadpool *pool;
172 ret = pthread_mutex_lock(&pthreadpools_mutex);
173 assert(ret == 0);
175 pool = pthreadpools;
177 while (pool != NULL) {
178 ret = pthread_mutex_lock(&pool->mutex);
179 assert(ret == 0);
180 pool = pool->next;
184 static void pthreadpool_parent(void)
186 int ret;
187 struct pthreadpool *pool;
189 pool = DLIST_TAIL(pthreadpools);
191 while (1) {
192 ret = pthread_mutex_unlock(&pool->mutex);
193 assert(ret == 0);
195 if (pool == pthreadpools) {
196 break;
198 pool = pool->prev;
201 ret = pthread_mutex_unlock(&pthreadpools_mutex);
202 assert(ret == 0);
205 static void pthreadpool_child(void)
207 int ret;
208 struct pthreadpool *pool;
210 pool = DLIST_TAIL(pthreadpools);
212 while (1) {
213 close(pool->sig_pipe[0]);
214 close(pool->sig_pipe[1]);
216 ret = pipe(pool->sig_pipe);
217 assert(ret == 0);
219 pool->num_threads = 0;
221 pool->num_exited = 0;
222 free(pool->exited);
223 pool->exited = NULL;
225 pool->num_idle = 0;
227 while (pool->jobs != NULL) {
228 struct pthreadpool_job *job;
229 job = pool->jobs;
230 pool->jobs = job->next;
231 free(job);
233 pool->last_job = NULL;
235 ret = pthread_mutex_unlock(&pool->mutex);
236 assert(ret == 0);
238 if (pool == pthreadpools) {
239 break;
241 pool = pool->prev;
244 ret = pthread_mutex_unlock(&pthreadpools_mutex);
245 assert(ret == 0);
248 static void pthreadpool_prep_atfork(void)
250 pthread_atfork(pthreadpool_prepare, pthreadpool_parent,
251 pthreadpool_child);
255 * Return the file descriptor which becomes readable when a job has
256 * finished
259 int pthreadpool_signal_fd(struct pthreadpool *pool)
261 return pool->sig_pipe[0];
265 * Do a pthread_join() on all children that have exited, pool->mutex must be
266 * locked
268 static void pthreadpool_join_children(struct pthreadpool *pool)
270 int i;
272 for (i=0; i<pool->num_exited; i++) {
273 pthread_join(pool->exited[i], NULL);
275 pool->num_exited = 0;
278 * Deliberately not free and NULL pool->exited. That will be
279 * re-used by realloc later.
284 * Fetch a finished job number from the signal pipe
287 int pthreadpool_finished_job(struct pthreadpool *pool)
289 int result;
290 ssize_t nread;
292 nread = -1;
293 errno = EINTR;
295 while ((nread == -1) && (errno == EINTR)) {
296 nread = read(pool->sig_pipe[0], &result, sizeof(int));
298 if (nread == -1) {
299 return errno;
301 if (nread != sizeof(int)) {
302 return EINVAL;
304 return result;
308 * Destroy a thread pool, finishing all threads working for it
311 int pthreadpool_destroy(struct pthreadpool *pool)
313 int ret, ret1;
315 ret = pthread_mutex_lock(&pool->mutex);
316 if (ret != 0) {
317 return ret;
320 if ((pool->jobs != NULL) || pool->shutdown) {
321 ret = pthread_mutex_unlock(&pool->mutex);
322 assert(ret == 0);
323 return EBUSY;
326 if (pool->num_threads > 0) {
328 * We have active threads, tell them to finish, wait for that.
331 pool->shutdown = 1;
333 if (pool->num_idle > 0) {
335 * Wake the idle threads. They will find pool->quit to
336 * be set and exit themselves
338 ret = pthread_cond_broadcast(&pool->condvar);
339 if (ret != 0) {
340 pthread_mutex_unlock(&pool->mutex);
341 return ret;
345 while ((pool->num_threads > 0) || (pool->num_exited > 0)) {
347 if (pool->num_exited > 0) {
348 pthreadpool_join_children(pool);
349 continue;
352 * A thread that shuts down will also signal
353 * pool->condvar
355 ret = pthread_cond_wait(&pool->condvar, &pool->mutex);
356 if (ret != 0) {
357 pthread_mutex_unlock(&pool->mutex);
358 return ret;
363 ret = pthread_mutex_unlock(&pool->mutex);
364 if (ret != 0) {
365 return ret;
367 ret = pthread_mutex_destroy(&pool->mutex);
368 ret1 = pthread_cond_destroy(&pool->condvar);
370 if (ret != 0) {
371 return ret;
373 if (ret1 != 0) {
374 return ret1;
377 ret = pthread_mutex_lock(&pthreadpools_mutex);
378 if (ret != 0) {
379 return ret;
381 DLIST_REMOVE(pthreadpools, pool);
382 ret = pthread_mutex_unlock(&pthreadpools_mutex);
383 assert(ret == 0);
385 close(pool->sig_pipe[0]);
386 pool->sig_pipe[0] = -1;
388 close(pool->sig_pipe[1]);
389 pool->sig_pipe[1] = -1;
391 free(pool->exited);
392 free(pool);
394 return 0;
398 * Prepare for pthread_exit(), pool->mutex must be locked
400 static void pthreadpool_server_exit(struct pthreadpool *pool)
402 pthread_t *exited;
404 pool->num_threads -= 1;
406 exited = (pthread_t *)realloc(
407 pool->exited, sizeof(pthread_t *) * (pool->num_exited + 1));
409 if (exited == NULL) {
410 /* lost a thread status */
411 return;
413 pool->exited = exited;
415 pool->exited[pool->num_exited] = pthread_self();
416 pool->num_exited += 1;
419 static void *pthreadpool_server(void *arg)
421 struct pthreadpool *pool = (struct pthreadpool *)arg;
422 int res;
424 res = pthread_mutex_lock(&pool->mutex);
425 if (res != 0) {
426 return NULL;
429 while (1) {
430 struct timeval tv;
431 struct timespec ts;
432 struct pthreadpool_job *job;
435 * idle-wait at most 1 second. If nothing happens in that
436 * time, exit this thread.
439 gettimeofday(&tv, NULL);
440 ts.tv_sec = tv.tv_sec + 1;
441 ts.tv_nsec = tv.tv_usec*1000;
443 while ((pool->jobs == NULL) && (pool->shutdown == 0)) {
445 pool->num_idle += 1;
446 res = pthread_cond_timedwait(
447 &pool->condvar, &pool->mutex, &ts);
448 pool->num_idle -= 1;
450 if (res == ETIMEDOUT) {
452 if (pool->jobs == NULL) {
454 * we timed out and still no work for
455 * us. Exit.
457 pthreadpool_server_exit(pool);
458 pthread_mutex_unlock(&pool->mutex);
459 return NULL;
462 break;
464 assert(res == 0);
467 job = pool->jobs;
469 if (job != NULL) {
470 ssize_t written;
473 * Ok, there's work for us to do, remove the job from
474 * the pthreadpool list
476 pool->jobs = job->next;
477 if (pool->last_job == job) {
478 pool->last_job = NULL;
482 * Do the work with the mutex unlocked
485 res = pthread_mutex_unlock(&pool->mutex);
486 assert(res == 0);
488 job->fn(job->private_data);
490 written = write(pool->sig_pipe[1], &job->id,
491 sizeof(int));
493 free(job);
495 res = pthread_mutex_lock(&pool->mutex);
496 assert(res == 0);
498 if (written != sizeof(int)) {
499 pthreadpool_server_exit(pool);
500 pthread_mutex_unlock(&pool->mutex);
501 return NULL;
505 if ((pool->jobs == NULL) && (pool->shutdown != 0)) {
507 * No more work to do and we're asked to shut down, so
508 * exit
510 pthreadpool_server_exit(pool);
512 if (pool->num_threads == 0) {
514 * Ping the main thread waiting for all of us
515 * workers to have quit.
517 pthread_cond_broadcast(&pool->condvar);
520 pthread_mutex_unlock(&pool->mutex);
521 return NULL;
526 int pthreadpool_add_job(struct pthreadpool *pool, int job_id,
527 void (*fn)(void *private_data), void *private_data)
529 struct pthreadpool_job *job;
530 pthread_t thread_id;
531 int res;
532 sigset_t mask, omask;
534 job = (struct pthreadpool_job *)malloc(sizeof(struct pthreadpool_job));
535 if (job == NULL) {
536 return ENOMEM;
539 job->fn = fn;
540 job->private_data = private_data;
541 job->id = job_id;
542 job->next = NULL;
544 res = pthread_mutex_lock(&pool->mutex);
545 if (res != 0) {
546 free(job);
547 return res;
550 if (pool->shutdown) {
552 * Protect against the pool being shut down while
553 * trying to add a job
555 res = pthread_mutex_unlock(&pool->mutex);
556 assert(res == 0);
557 free(job);
558 return EINVAL;
562 * Just some cleanup under the mutex
564 pthreadpool_join_children(pool);
567 * Add job to the end of the queue
569 if (pool->jobs == NULL) {
570 pool->jobs = job;
572 else {
573 pool->last_job->next = job;
575 pool->last_job = job;
577 if (pool->num_idle > 0) {
579 * We have idle threads, wake one.
581 res = pthread_cond_signal(&pool->condvar);
582 pthread_mutex_unlock(&pool->mutex);
583 return res;
586 if ((pool->max_threads != 0) &&
587 (pool->num_threads >= pool->max_threads)) {
589 * No more new threads, we just queue the request
591 pthread_mutex_unlock(&pool->mutex);
592 return 0;
596 * Create a new worker thread. It should not receive any signals.
599 sigfillset(&mask);
601 res = pthread_sigmask(SIG_BLOCK, &mask, &omask);
602 if (res != 0) {
603 pthread_mutex_unlock(&pool->mutex);
604 return res;
607 res = pthread_create(&thread_id, NULL, pthreadpool_server,
608 (void *)pool);
609 if (res == 0) {
610 pool->num_threads += 1;
613 assert(pthread_sigmask(SIG_SETMASK, &omask, NULL) == 0);
615 pthread_mutex_unlock(&pool->mutex);
616 return res;