]> git.sesse.net Git - vlc/blob - src/misc/pthread.c
pthread: fix semaphore error handling
[vlc] / src / misc / pthread.c
1 /*****************************************************************************
2  * pthread.c : pthread back-end for LibVLC
3  *****************************************************************************
4  * Copyright (C) 1999-2009 the VideoLAN team
5  *
6  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
7  *          Samuel Hocevar <sam@zoy.org>
8  *          Gildas Bazin <gbazin@netcourrier.com>
9  *          Clément Sténac
10  *          Rémi Denis-Courmont
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32
33 #include "libvlc.h"
34 #include <stdarg.h>
35 #include <assert.h>
36 #include <unistd.h> /* fsync() */
37 #include <signal.h>
38 #include <errno.h>
39
40 #include <sched.h>
41 #ifdef __linux__
42 # include <sys/syscall.h> /* SYS_gettid */
43 #endif
44
45 #ifdef HAVE_EXECINFO_H
46 # include <execinfo.h>
47 #endif
48
49 #ifdef __APPLE__
50 # include <sys/time.h> /* gettimeofday in vlc_cond_timedwait */
51 #endif
52
53 /**
54  * Print a backtrace to the standard error for debugging purpose.
55  */
56 void vlc_trace (const char *fn, const char *file, unsigned line)
57 {
58      fprintf (stderr, "at %s:%u in %s\n", file, line, fn);
59      fflush (stderr); /* needed before switch to low-level I/O */
60 #ifdef HAVE_BACKTRACE
61      void *stack[20];
62      int len = backtrace (stack, sizeof (stack) / sizeof (stack[0]));
63      backtrace_symbols_fd (stack, len, 2);
64 #endif
65      fsync (2);
66 }
67
68 static inline unsigned long vlc_threadid (void)
69 {
70 #if defined (__linux__)
71      /* glibc does not provide a call for this */
72      return syscall (SYS_gettid);
73
74 #else
75      union { pthread_t th; unsigned long int i; } v = { };
76      v.th = pthread_self ();
77      return v.i;
78
79 #endif
80 }
81
82 #ifndef NDEBUG
83 /*****************************************************************************
84  * vlc_thread_fatal: Report an error from the threading layer
85  *****************************************************************************
86  * This is mostly meant for debugging.
87  *****************************************************************************/
88 static void
89 vlc_thread_fatal (const char *action, int error,
90                   const char *function, const char *file, unsigned line)
91 {
92     int canc = vlc_savecancel ();
93     fprintf (stderr, "LibVLC fatal error %s (%d) in thread %lu ",
94              action, error, vlc_threadid ());
95     vlc_trace (function, file, line);
96
97     /* Sometimes strerror_r() crashes too, so make sure we print an error
98      * message before we invoke it */
99 #ifdef __GLIBC__
100     /* Avoid the strerror_r() prototype brain damage in glibc */
101     errno = error;
102     fprintf (stderr, " Error message: %m\n");
103 #else
104     char buf[1000];
105     const char *msg;
106
107     switch (strerror_r (error, buf, sizeof (buf)))
108     {
109         case 0:
110             msg = buf;
111             break;
112         case ERANGE: /* should never happen */
113             msg = "unknwon (too big to display)";
114             break;
115         default:
116             msg = "unknown (invalid error number)";
117             break;
118     }
119     fprintf (stderr, " Error message: %s\n", msg);
120 #endif
121     fflush (stderr);
122
123     vlc_restorecancel (canc);
124     abort ();
125 }
126
127 # define VLC_THREAD_ASSERT( action ) \
128     if (unlikely(val)) \
129         vlc_thread_fatal (action, val, __func__, __FILE__, __LINE__)
130 #else
131 # define VLC_THREAD_ASSERT( action ) ((void)val)
132 #endif
133
134 #if defined (__GLIBC__) && (__GLIBC_MINOR__ < 6)
135 /* This is not prototyped under glibc, though it exists. */
136 int pthread_mutexattr_setkind_np( pthread_mutexattr_t *attr, int kind );
137 #endif
138
139 /*****************************************************************************
140  * vlc_mutex_init: initialize a mutex
141  *****************************************************************************/
142 void vlc_mutex_init( vlc_mutex_t *p_mutex )
143 {
144     pthread_mutexattr_t attr;
145
146     if (unlikely(pthread_mutexattr_init (&attr)))
147         abort();
148 #ifdef NDEBUG
149     pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_NORMAL );
150 #else
151     /* Create error-checking mutex to detect problems more easily. */
152 # if defined (__GLIBC__) && (__GLIBC__ == 2) && (__GLIBC_MINOR__ < 6)
153     pthread_mutexattr_setkind_np( &attr, PTHREAD_MUTEX_ERRORCHECK_NP );
154 # else
155     pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_ERRORCHECK );
156 # endif
157 #endif
158     if (unlikely(pthread_mutex_init (p_mutex, &attr)))
159         abort();
160     pthread_mutexattr_destroy( &attr );
161 }
162
163 /*****************************************************************************
164  * vlc_mutex_init: initialize a recursive mutex (Do not use)
165  *****************************************************************************/
166 void vlc_mutex_init_recursive( vlc_mutex_t *p_mutex )
167 {
168     pthread_mutexattr_t attr;
169
170     if (unlikely(pthread_mutexattr_init (&attr)))
171         abort();
172 #if defined (__GLIBC__) && (__GLIBC__ == 2) && (__GLIBC_MINOR__ < 6)
173     pthread_mutexattr_setkind_np( &attr, PTHREAD_MUTEX_RECURSIVE_NP );
174 #else
175     pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE );
176 #endif
177     if (unlikely(pthread_mutex_init (p_mutex, &attr)))
178         abort();
179     pthread_mutexattr_destroy( &attr );
180 }
181
182
183 /**
184  * Destroys a mutex. The mutex must not be locked.
185  *
186  * @param p_mutex mutex to destroy
187  * @return always succeeds
188  */
189 void vlc_mutex_destroy (vlc_mutex_t *p_mutex)
190 {
191     int val = pthread_mutex_destroy( p_mutex );
192     VLC_THREAD_ASSERT ("destroying mutex");
193 }
194
195 #ifndef NDEBUG
196 # ifdef HAVE_VALGRIND_VALGRIND_H
197 #  include <valgrind/valgrind.h>
198 # else
199 #  define RUNNING_ON_VALGRIND (0)
200 # endif
201
202 void vlc_assert_locked (vlc_mutex_t *p_mutex)
203 {
204     if (RUNNING_ON_VALGRIND > 0)
205         return;
206     assert (pthread_mutex_lock (p_mutex) == EDEADLK);
207 }
208 #endif
209
210 /**
211  * Acquires a mutex. If needed, waits for any other thread to release it.
212  * Beware of deadlocks when locking multiple mutexes at the same time,
213  * or when using mutexes from callbacks.
214  * This function is not a cancellation-point.
215  *
216  * @param p_mutex mutex initialized with vlc_mutex_init() or
217  *                vlc_mutex_init_recursive()
218  */
219 void vlc_mutex_lock (vlc_mutex_t *p_mutex)
220 {
221     int val = pthread_mutex_lock( p_mutex );
222     VLC_THREAD_ASSERT ("locking mutex");
223 }
224
225 /**
226  * Acquires a mutex if and only if it is not currently held by another thread.
227  * This function never sleeps and can be used in delay-critical code paths.
228  * This function is not a cancellation-point.
229  *
230  * <b>Beware</b>: If this function fails, then the mutex is held... by another
231  * thread. The calling thread must deal with the error appropriately. That
232  * typically implies postponing the operations that would have required the
233  * mutex. If the thread cannot defer those operations, then it must use
234  * vlc_mutex_lock(). If in doubt, use vlc_mutex_lock() instead.
235  *
236  * @param p_mutex mutex initialized with vlc_mutex_init() or
237  *                vlc_mutex_init_recursive()
238  * @return 0 if the mutex could be acquired, an error code otherwise.
239  */
240 int vlc_mutex_trylock (vlc_mutex_t *p_mutex)
241 {
242     int val = pthread_mutex_trylock( p_mutex );
243
244     if (val != EBUSY)
245         VLC_THREAD_ASSERT ("locking mutex");
246     return val;
247 }
248
249 /**
250  * Releases a mutex (or crashes if the mutex is not locked by the caller).
251  * @param p_mutex mutex locked with vlc_mutex_lock().
252  */
253 void vlc_mutex_unlock (vlc_mutex_t *p_mutex)
254 {
255     int val = pthread_mutex_unlock( p_mutex );
256     VLC_THREAD_ASSERT ("unlocking mutex");
257 }
258
259 /*****************************************************************************
260  * vlc_cond_init: initialize a condition variable
261  *****************************************************************************/
262 void vlc_cond_init( vlc_cond_t *p_condvar )
263 {
264     pthread_condattr_t attr;
265
266     if (unlikely(pthread_condattr_init (&attr)))
267         abort ();
268 #if !defined (_POSIX_CLOCK_SELECTION)
269    /* Fairly outdated POSIX support (that was defined in 2001) */
270 # define _POSIX_CLOCK_SELECTION (-1)
271 #endif
272 #if (_POSIX_CLOCK_SELECTION >= 0)
273     /* NOTE: This must be the same clock as the one in mtime.c */
274     pthread_condattr_setclock (&attr, CLOCK_MONOTONIC);
275 #endif
276
277     if (unlikely(pthread_cond_init (p_condvar, &attr)))
278         abort ();
279     pthread_condattr_destroy (&attr);
280 }
281
282 /**
283  * Destroys a condition variable. No threads shall be waiting or signaling the
284  * condition.
285  * @param p_condvar condition variable to destroy
286  */
287 void vlc_cond_destroy (vlc_cond_t *p_condvar)
288 {
289     int val = pthread_cond_destroy( p_condvar );
290     VLC_THREAD_ASSERT ("destroying condition");
291 }
292
293 /**
294  * Wakes up one thread waiting on a condition variable, if any.
295  * @param p_condvar condition variable
296  */
297 void vlc_cond_signal (vlc_cond_t *p_condvar)
298 {
299     int val = pthread_cond_signal( p_condvar );
300     VLC_THREAD_ASSERT ("signaling condition variable");
301 }
302
303 /**
304  * Wakes up all threads (if any) waiting on a condition variable.
305  * @param p_cond condition variable
306  */
307 void vlc_cond_broadcast (vlc_cond_t *p_condvar)
308 {
309     pthread_cond_broadcast (p_condvar);
310 }
311
312 /**
313  * Waits for a condition variable. The calling thread will be suspended until
314  * another thread calls vlc_cond_signal() or vlc_cond_broadcast() on the same
315  * condition variable, the thread is cancelled with vlc_cancel(), or the
316  * system causes a "spurious" unsolicited wake-up.
317  *
318  * A mutex is needed to wait on a condition variable. It must <b>not</b> be
319  * a recursive mutex. Although it is possible to use the same mutex for
320  * multiple condition, it is not valid to use different mutexes for the same
321  * condition variable at the same time from different threads.
322  *
323  * In case of thread cancellation, the mutex is always locked before
324  * cancellation proceeds.
325  *
326  * The canonical way to use a condition variable to wait for event foobar is:
327  @code
328    vlc_mutex_lock (&lock);
329    mutex_cleanup_push (&lock); // release the mutex in case of cancellation
330
331    while (!foobar)
332        vlc_cond_wait (&wait, &lock);
333
334    --- foobar is now true, do something about it here --
335
336    vlc_cleanup_run (); // release the mutex
337   @endcode
338  *
339  * @param p_condvar condition variable to wait on
340  * @param p_mutex mutex which is unlocked while waiting,
341  *                then locked again when waking up.
342  * @param deadline <b>absolute</b> timeout
343  *
344  * @return 0 if the condition was signaled, an error code in case of timeout.
345  */
346 void vlc_cond_wait (vlc_cond_t *p_condvar, vlc_mutex_t *p_mutex)
347 {
348     int val = pthread_cond_wait( p_condvar, p_mutex );
349     VLC_THREAD_ASSERT ("waiting on condition");
350 }
351
352 /**
353  * Waits for a condition variable up to a certain date.
354  * This works like vlc_cond_wait(), except for the additional timeout.
355  *
356  * @param p_condvar condition variable to wait on
357  * @param p_mutex mutex which is unlocked while waiting,
358  *                then locked again when waking up.
359  * @param deadline <b>absolute</b> timeout
360  *
361  * @return 0 if the condition was signaled, an error code in case of timeout.
362  */
363 int vlc_cond_timedwait (vlc_cond_t *p_condvar, vlc_mutex_t *p_mutex,
364                         mtime_t deadline)
365 {
366 #if defined(__APPLE__) && !defined(__powerpc__) && !defined( __ppc__ ) && !defined( __ppc64__ )
367     /* mdate() is mac_absolute_time on OSX, which we must convert to do
368      * the same base than gettimeofday() which pthread_cond_timedwait
369      * relies on. */
370     mtime_t oldbase = mdate();
371     struct timeval tv;
372     gettimeofday(&tv, NULL);
373     mtime_t newbase = (mtime_t)tv.tv_sec * 1000000 + (mtime_t) tv.tv_usec;
374     deadline = deadline - oldbase + newbase;
375 #endif
376     lldiv_t d = lldiv( deadline, CLOCK_FREQ );
377     struct timespec ts = { d.quot, d.rem * (1000000000 / CLOCK_FREQ) };
378
379     int val = pthread_cond_timedwait (p_condvar, p_mutex, &ts);
380     if (val != ETIMEDOUT)
381         VLC_THREAD_ASSERT ("timed-waiting on condition");
382     return val;
383 }
384
385 /**
386  * Initializes a semaphore.
387  */
388 void vlc_sem_init (vlc_sem_t *sem, unsigned value)
389 {
390     if (unlikely(sem_init (sem, 0, value)))
391         abort ();
392 }
393
394 /**
395  * Destroys a semaphore.
396  */
397 void vlc_sem_destroy (vlc_sem_t *sem)
398 {
399     if (likely(sem_destroy (sem) == 0))
400         return;
401
402     int val = errno;
403     VLC_THREAD_ASSERT ("destroying semaphore");
404 }
405
406 /**
407  * Increments the value of a semaphore.
408  * @return 0 on success, EOVERFLOW in case of integer overflow
409  */
410 int vlc_sem_post (vlc_sem_t *sem)
411 {
412     if (likely(sem_post (sem) == 0))
413         return 0;
414
415     int val = errno;
416     if (unlikely(val != EOVERFLOW))
417         VLC_THREAD_ASSERT ("unlocking semaphore");
418     return val;
419 }
420
421 /**
422  * Atomically wait for the semaphore to become non-zero (if needed),
423  * then decrements it.
424  */
425 void vlc_sem_wait (vlc_sem_t *sem)
426 {
427     int val;
428
429     do
430         if (likely(sem_wait (sem) == 0))
431             return;
432     while ((val = errno) == EINTR);
433
434     VLC_THREAD_ASSERT ("locking semaphore");
435 }
436
437 /**
438  * Initializes a read/write lock.
439  */
440 void vlc_rwlock_init (vlc_rwlock_t *lock)
441 {
442     if (unlikely(pthread_rwlock_init (lock, NULL)))
443         abort ();
444 }
445
446 /**
447  * Destroys an initialized unused read/write lock.
448  */
449 void vlc_rwlock_destroy (vlc_rwlock_t *lock)
450 {
451     int val = pthread_rwlock_destroy (lock);
452     VLC_THREAD_ASSERT ("destroying R/W lock");
453 }
454
455 /**
456  * Acquires a read/write lock for reading. Recursion is allowed.
457  */
458 void vlc_rwlock_rdlock (vlc_rwlock_t *lock)
459 {
460     int val = pthread_rwlock_rdlock (lock);
461     VLC_THREAD_ASSERT ("acquiring R/W lock for reading");
462 }
463
464 /**
465  * Acquires a read/write lock for writing. Recursion is not allowed.
466  */
467 void vlc_rwlock_wrlock (vlc_rwlock_t *lock)
468 {
469     int val = pthread_rwlock_wrlock (lock);
470     VLC_THREAD_ASSERT ("acquiring R/W lock for writing");
471 }
472
473 /**
474  * Releases a read/write lock.
475  */
476 void vlc_rwlock_unlock (vlc_rwlock_t *lock)
477 {
478     int val = pthread_rwlock_unlock (lock);
479     VLC_THREAD_ASSERT ("releasing R/W lock");
480 }
481
482 /**
483  * Allocates a thread-specific variable.
484  * @param key where to store the thread-specific variable handle
485  * @param destr a destruction callback. It is called whenever a thread exits
486  * and the thread-specific variable has a non-NULL value.
487  * @return 0 on success, a system error code otherwise. This function can
488  * actually fail because there is a fixed limit on the number of
489  * thread-specific variable in a process on most systems.
490  */
491 int vlc_threadvar_create (vlc_threadvar_t *key, void (*destr) (void *))
492 {
493     return pthread_key_create (key, destr);
494 }
495
496 void vlc_threadvar_delete (vlc_threadvar_t *p_tls)
497 {
498     pthread_key_delete (*p_tls);
499 }
500
501 /**
502  * Sets a thread-specific variable.
503  * @param key thread-local variable key (created with vlc_threadvar_create())
504  * @param value new value for the variable for the calling thread
505  * @return 0 on success, a system error code otherwise.
506  */
507 int vlc_threadvar_set (vlc_threadvar_t key, void *value)
508 {
509     return pthread_setspecific (key, value);
510 }
511
512 /**
513  * Gets the value of a thread-local variable for the calling thread.
514  * This function cannot fail.
515  * @return the value associated with the given variable for the calling
516  * or NULL if there is no value.
517  */
518 void *vlc_threadvar_get (vlc_threadvar_t key)
519 {
520     return pthread_getspecific (key);
521 }
522
523 static bool rt_priorities = false;
524 static int rt_offset;
525
526 void vlc_threads_setup (libvlc_int_t *p_libvlc)
527 {
528     static vlc_mutex_t lock = VLC_STATIC_MUTEX;
529     static bool initialized = false;
530
531     vlc_mutex_lock (&lock);
532     /* Initializes real-time priorities before any thread is created,
533      * just once per process. */
534     if (!initialized)
535     {
536 #ifndef __APPLE__
537         if (config_GetInt (p_libvlc, "rt-priority"))
538 #endif
539         {
540             rt_offset = config_GetInt (p_libvlc, "rt-offset");
541             rt_priorities = true;
542         }
543         initialized = true;
544     }
545     vlc_mutex_unlock (&lock);
546 }
547
548 /**
549  * Creates and starts new thread.
550  *
551  * @param p_handle [OUT] pointer to write the handle of the created thread to
552  * @param entry entry point for the thread
553  * @param data data parameter given to the entry point
554  * @param priority thread priority value
555  * @return 0 on success, a standard error code on error.
556  */
557 int vlc_clone (vlc_thread_t *p_handle, void * (*entry) (void *), void *data,
558                int priority)
559 {
560     int ret;
561
562     pthread_attr_t attr;
563     pthread_attr_init (&attr);
564
565     /* Block the signals that signals interface plugin handles.
566      * If the LibVLC caller wants to handle some signals by itself, it should
567      * block these before whenever invoking LibVLC. And it must obviously not
568      * start the VLC signals interface plugin.
569      *
570      * LibVLC will normally ignore any interruption caused by an asynchronous
571      * signal during a system call. But there may well be some buggy cases
572      * where it fails to handle EINTR (bug reports welcome). Some underlying
573      * libraries might also not handle EINTR properly.
574      */
575     sigset_t oldset;
576     {
577         sigset_t set;
578         sigemptyset (&set);
579         sigdelset (&set, SIGHUP);
580         sigaddset (&set, SIGINT);
581         sigaddset (&set, SIGQUIT);
582         sigaddset (&set, SIGTERM);
583
584         sigaddset (&set, SIGPIPE); /* We don't want this one, really! */
585         pthread_sigmask (SIG_BLOCK, &set, &oldset);
586     }
587
588 #if defined (_POSIX_PRIORITY_SCHEDULING) && (_POSIX_PRIORITY_SCHEDULING >= 0) \
589  && defined (_POSIX_THREAD_PRIORITY_SCHEDULING) \
590  && (_POSIX_THREAD_PRIORITY_SCHEDULING >= 0)
591     if (rt_priorities)
592     {
593         struct sched_param sp = { .sched_priority = priority + rt_offset, };
594         int policy;
595
596         if (sp.sched_priority <= 0)
597             sp.sched_priority += sched_get_priority_max (policy = SCHED_OTHER);
598         else
599             sp.sched_priority += sched_get_priority_min (policy = SCHED_RR);
600
601         pthread_attr_setschedpolicy (&attr, policy);
602         pthread_attr_setschedparam (&attr, &sp);
603     }
604 #else
605     (void) priority;
606 #endif
607
608     /* The thread stack size.
609      * The lower the value, the less address space per thread, the highest
610      * maximum simultaneous threads per process. Too low values will cause
611      * stack overflows and weird crashes. Set with caution. Also keep in mind
612      * that 64-bits platforms consume more stack than 32-bits one.
613      *
614      * Thanks to on-demand paging, thread stack size only affects address space
615      * consumption. In terms of memory, threads only use what they need
616      * (rounded up to the page boundary).
617      *
618      * For example, on Linux i386, the default is 2 mega-bytes, which supports
619      * about 320 threads per processes. */
620 #define VLC_STACKSIZE (128 * sizeof (void *) * 1024)
621
622 #ifdef VLC_STACKSIZE
623     ret = pthread_attr_setstacksize (&attr, VLC_STACKSIZE);
624     assert (ret == 0); /* fails iif VLC_STACKSIZE is invalid */
625 #endif
626
627     ret = pthread_create (p_handle, &attr, entry, data);
628     pthread_sigmask (SIG_SETMASK, &oldset, NULL);
629     pthread_attr_destroy (&attr);
630     return ret;
631 }
632
633 /**
634  * Marks a thread as cancelled. Next time the target thread reaches a
635  * cancellation point (while not having disabled cancellation), it will
636  * run its cancellation cleanup handler, the thread variable destructors, and
637  * terminate. vlc_join() must be used afterward regardless of a thread being
638  * cancelled or not.
639  */
640 void vlc_cancel (vlc_thread_t thread_id)
641 {
642     pthread_cancel (thread_id);
643 }
644
645 /**
646  * Waits for a thread to complete (if needed), then destroys it.
647  * This is a cancellation point; in case of cancellation, the join does _not_
648  * occur.
649  * @warning
650  * A thread cannot join itself (normally VLC will abort if this is attempted).
651  * Also, a detached thread <b>cannot</b> be joined.
652  *
653  * @param handle thread handle
654  * @param p_result [OUT] pointer to write the thread return value or NULL
655  */
656 void vlc_join (vlc_thread_t handle, void **result)
657 {
658     int val = pthread_join (handle, result);
659     VLC_THREAD_ASSERT ("joining thread");
660 }
661
662 /**
663  * Detaches a thread. When the specified thread completes, it will be
664  * automatically destroyed (in particular, its stack will be reclaimed),
665  * instead of waiting for another thread to call vlc_join(). If the thread has
666  * already completed, it will be destroyed immediately.
667  *
668  * When a thread performs some work asynchronously and may complete much
669  * earlier than it can be joined, detaching the thread can save memory.
670  * However, care must be taken that any resources used by a detached thread
671  * remains valid until the thread completes. This will typically involve some
672  * kind of thread-safe signaling.
673  *
674  * A thread may detach itself.
675  *
676  * @param handle thread handle
677  */
678 void vlc_detach (vlc_thread_t handle)
679 {
680     int val = pthread_detach (handle);
681     VLC_THREAD_ASSERT ("detaching thread");
682 }
683
684 /**
685  * Save the current cancellation state (enabled or disabled), then disable
686  * cancellation for the calling thread.
687  * This function must be called before entering a piece of code that is not
688  * cancellation-safe, unless it can be proven that the calling thread will not
689  * be cancelled.
690  * @return Previous cancellation state (opaque value for vlc_restorecancel()).
691  */
692 int vlc_savecancel (void)
693 {
694     int state;
695     int val = pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, &state);
696
697     VLC_THREAD_ASSERT ("saving cancellation");
698     return state;
699 }
700
701 /**
702  * Restore the cancellation state for the calling thread.
703  * @param state previous state as returned by vlc_savecancel().
704  * @return Nothing, always succeeds.
705  */
706 void vlc_restorecancel (int state)
707 {
708 #ifndef NDEBUG
709     int oldstate, val;
710
711     val = pthread_setcancelstate (state, &oldstate);
712     /* This should fail if an invalid value for given for state */
713     VLC_THREAD_ASSERT ("restoring cancellation");
714
715     if (unlikely(oldstate != PTHREAD_CANCEL_DISABLE))
716          vlc_thread_fatal ("restoring cancellation while not disabled", EINVAL,
717                            __func__, __FILE__, __LINE__);
718 #else
719     pthread_setcancelstate (state, NULL);
720 #endif
721 }
722
723 /**
724  * Issues an explicit deferred cancellation point.
725  * This has no effect if thread cancellation is disabled.
726  * This can be called when there is a rather slow non-sleeping operation.
727  * This is also used to force a cancellation point in a function that would
728  * otherwise "not always" be a one (block_FifoGet() is an example).
729  */
730 void vlc_testcancel (void)
731 {
732     pthread_testcancel ();
733 }
734
735 void vlc_control_cancel (int cmd, ...)
736 {
737     (void) cmd;
738     assert (0);
739 }
740
741
742 struct vlc_timer
743 {
744     vlc_thread_t thread;
745     vlc_mutex_t  lock;
746     vlc_cond_t   wait;
747     void       (*func) (void *);
748     void        *data;
749     mtime_t      value, interval;
750     unsigned     users;
751     unsigned     overruns;
752 };
753
754 static void *vlc_timer_do (void *data)
755 {
756     struct vlc_timer *timer = data;
757
758     timer->func (timer->data);
759
760     vlc_mutex_lock (&timer->lock);
761     assert (timer->users > 0);
762     if (--timer->users == 0)
763         vlc_cond_signal (&timer->wait);
764     vlc_mutex_unlock (&timer->lock);
765     return NULL;
766 }
767
768 static void *vlc_timer_thread (void *data)
769 {
770     struct vlc_timer *timer = data;
771     mtime_t value, interval;
772
773     vlc_mutex_lock (&timer->lock);
774     value = timer->value;
775     interval = timer->interval;
776     vlc_mutex_unlock (&timer->lock);
777
778     for (;;)
779     {
780          vlc_thread_t th;
781
782          mwait (value);
783
784          vlc_mutex_lock (&timer->lock);
785          if (vlc_clone (&th, vlc_timer_do, timer, VLC_THREAD_PRIORITY_INPUT))
786              timer->overruns++;
787          else
788          {
789              vlc_detach (th);
790              timer->users++;
791          }
792          vlc_mutex_unlock (&timer->lock);
793
794          if (interval == 0)
795              return NULL;
796
797          value += interval;
798     }
799 }
800
801 /**
802  * Initializes an asynchronous timer.
803  * @warning Asynchronous timers are processed from an unspecified thread.
804  * Also, multiple occurences of an interval timer can run concurrently.
805  *
806  * @param id pointer to timer to be initialized
807  * @param func function that the timer will call
808  * @param data parameter for the timer function
809  * @return 0 on success, a system error code otherwise.
810  */
811 int vlc_timer_create (vlc_timer_t *id, void (*func) (void *), void *data)
812 {
813     struct vlc_timer *timer = malloc (sizeof (*timer));
814
815     if (unlikely(timer == NULL))
816         return ENOMEM;
817     vlc_mutex_init (&timer->lock);
818     vlc_cond_init (&timer->wait);
819     assert (func);
820     timer->func = func;
821     timer->data = data;
822     timer->value = 0;
823     timer->interval = 0;
824     timer->users = 0;
825     timer->overruns = 0;
826     *id = timer;
827     return 0;
828 }
829
830 /**
831  * Destroys an initialized timer. If needed, the timer is first disarmed.
832  * This function is undefined if the specified timer is not initialized.
833  *
834  * @warning This function <b>must</b> be called before the timer data can be
835  * freed and before the timer callback function can be unloaded.
836  *
837  * @param timer timer to destroy
838  */
839 void vlc_timer_destroy (vlc_timer_t timer)
840 {
841     vlc_timer_schedule (timer, false, 0, 0);
842     vlc_mutex_lock (&timer->lock);
843     while (timer->users != 0)
844         vlc_cond_wait (&timer->wait, &timer->lock);
845     vlc_mutex_unlock (&timer->lock);
846
847     vlc_cond_destroy (&timer->wait);
848     vlc_mutex_destroy (&timer->lock);
849     free (timer);
850 }
851
852 /**
853  * Arm or disarm an initialized timer.
854  * This functions overrides any previous call to itself.
855  *
856  * @note A timer can fire later than requested due to system scheduling
857  * limitations. An interval timer can fail to trigger sometimes, either because
858  * the system is busy or suspended, or because a previous iteration of the
859  * timer is still running. See also vlc_timer_getoverrun().
860  *
861  * @param timer initialized timer
862  * @param absolute the timer value origin is the same as mdate() if true,
863  *                 the timer value is relative to now if false.
864  * @param value zero to disarm the timer, otherwise the initial time to wait
865  *              before firing the timer.
866  * @param interval zero to fire the timer just once, otherwise the timer
867  *                 repetition interval.
868  */
869 void vlc_timer_schedule (vlc_timer_t timer, bool absolute,
870                          mtime_t value, mtime_t interval)
871 {
872     static vlc_mutex_t lock = VLC_STATIC_MUTEX;
873
874     vlc_mutex_lock (&lock);
875     vlc_mutex_lock (&timer->lock);
876     if (timer->value)
877     {
878         vlc_mutex_unlock (&timer->lock);
879         vlc_cancel (timer->thread);
880         vlc_join (timer->thread, NULL);
881         vlc_mutex_lock (&timer->lock);
882         timer->value = 0;
883     }
884     if ((value != 0)
885      && (vlc_clone (&timer->thread, vlc_timer_thread, timer,
886                     VLC_THREAD_PRIORITY_INPUT) == 0))
887     {
888         timer->value = (absolute ? 0 : mdate ()) + value;
889         timer->interval = interval;
890     }
891     vlc_mutex_unlock (&timer->lock);
892     vlc_mutex_unlock (&lock);
893 }
894
895 /**
896  * Fetch and reset the overrun counter for a timer.
897  * @param timer initialized timer
898  * @return the timer overrun counter, i.e. the number of times that the timer
899  * should have run but did not since the last actual run. If all is well, this
900  * is zero.
901  */
902 unsigned vlc_timer_getoverrun (vlc_timer_t timer)
903 {
904     unsigned ret;
905
906     vlc_mutex_lock (&timer->lock);
907     ret = timer->overruns;
908     timer->overruns = 0;
909     vlc_mutex_unlock (&timer->lock);
910     return ret;
911 }