Merge remote-tracking branch 'remotes/origin/cairocanvas' into windows
[ardour.git] / libs / pbd / debug_rt_alloc.c
1 /*
2     Copyright (C) 2011 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifdef DEBUG_RT_ALLOC
21
22 #define _GNU_SOURCE
23 #include <dlfcn.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26
27 #include "pbd/pthread_utils.h"
28
29 int (*pbd_alloc_allowed) () = 0;
30
31 /** Thread-local key whose value is set to 1 if malloc checking is disabled
32  *  for this thread, 0 otherwise.
33  */
34
35 static pthread_key_t disabled;
36
37 static pthread_once_t once;
38
39 static void
40 make_key (void)
41 {
42         (void) pthread_key_create (&disabled, NULL);
43 }
44
45 /** This is our malloc which overrides the system one */
46 void* malloc (size_t s)
47 {
48         static void * (*real_malloc) (size_t) = NULL;
49         if (!real_malloc) {
50                 /* find the system malloc */
51                 real_malloc = dlsym (RTLD_NEXT, "malloc");
52         }
53
54         (void) pthread_once (&once, make_key);
55
56         if (pthread_getspecific (disabled) == NULL && pbd_alloc_allowed && !pbd_alloc_allowed ()) {
57                 /* pbd_alloc_allowed says that this malloc is not permitted */
58                 abort ();
59         }
60
61         /* Pass through to the system malloc */
62         return real_malloc (s);
63 }
64
65 void
66 suspend_rt_malloc_checks ()
67 {
68         (void) pthread_once (&once, make_key);
69         pthread_setspecific (disabled, (void *) 1);
70 }
71
72 void
73 resume_rt_malloc_checks ()
74 {
75         (void) pthread_once (&once, make_key);
76         pthread_setspecific (disabled, (void *) 0);
77 }
78
79 #endif