1 /* mmap.c -- Memory allocation with mmap.
2 Copyright (C) 2012-2014 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor, Google.
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are
9 (1) Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer.
12 (2) Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in
14 the documentation and/or other materials provided with the
17 (3) The name of the author may not be used to
18 endorse or promote products derived from this software without
19 specific prior written permission.
21 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
25 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
30 IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 POSSIBILITY OF SUCH DAMAGE. */
39 #include <sys/types.h>
42 #include "backtrace.h"
45 /* Memory allocation on systems that provide anonymous mmap. This
46 permits the backtrace functions to be invoked from a signal
47 handler, assuming that mmap is async-signal safe. */
50 #define MAP_ANONYMOUS MAP_ANON
53 /* A list of free memory blocks. */
55 struct backtrace_freelist_struct
58 struct backtrace_freelist_struct
*next
;
59 /* Size of this block, including this structure. */
63 /* Free memory allocated by backtrace_alloc. */
66 backtrace_free_locked (struct backtrace_state
*state
, void *addr
, size_t size
)
68 /* Just leak small blocks. We don't have to be perfect. */
69 if (size
>= sizeof (struct backtrace_freelist_struct
))
71 struct backtrace_freelist_struct
*p
;
73 p
= (struct backtrace_freelist_struct
*) addr
;
74 p
->next
= state
->freelist
;
80 /* Allocate memory like malloc. */
83 backtrace_alloc (struct backtrace_state
*state
,
84 size_t size
, backtrace_error_callback error_callback
,
89 struct backtrace_freelist_struct
**pp
;
96 /* If we can acquire the lock, then see if there is space on the
97 free list. If we can't acquire the lock, drop straight into
98 using mmap. __sync_lock_test_and_set returns the old state of
99 the lock, so we have acquired it if it returns 0. */
101 if (!state
->threaded
)
104 locked
= __sync_lock_test_and_set (&state
->lock_alloc
, 1) == 0;
108 for (pp
= &state
->freelist
; *pp
!= NULL
; pp
= &(*pp
)->next
)
110 if ((*pp
)->size
>= size
)
112 struct backtrace_freelist_struct
*p
;
117 /* Round for alignment; we assume that no type we care about
118 is more than 8 bytes. */
119 size
= (size
+ 7) & ~ (size_t) 7;
121 backtrace_free_locked (state
, (char *) p
+ size
,
131 __sync_lock_release (&state
->lock_alloc
);
136 /* Allocate a new page. */
138 pagesize
= getpagesize ();
139 asksize
= (size
+ pagesize
- 1) & ~ (pagesize
- 1);
140 page
= mmap (NULL
, asksize
, PROT_READ
| PROT_WRITE
,
141 MAP_PRIVATE
| MAP_ANONYMOUS
, -1, 0);
143 error_callback (data
, "mmap", errno
);
146 size
= (size
+ 7) & ~ (size_t) 7;
148 backtrace_free (state
, (char *) page
+ size
, asksize
- size
,
149 error_callback
, data
);
158 /* Free memory allocated by backtrace_alloc. */
161 backtrace_free (struct backtrace_state
*state
, void *addr
, size_t size
,
162 backtrace_error_callback error_callback ATTRIBUTE_UNUSED
,
163 void *data ATTRIBUTE_UNUSED
)
167 /* If we can acquire the lock, add the new space to the free list.
168 If we can't acquire the lock, just leak the memory.
169 __sync_lock_test_and_set returns the old state of the lock, so we
170 have acquired it if it returns 0. */
172 if (!state
->threaded
)
175 locked
= __sync_lock_test_and_set (&state
->lock_alloc
, 1) == 0;
179 backtrace_free_locked (state
, addr
, size
);
182 __sync_lock_release (&state
->lock_alloc
);
186 /* Grow VEC by SIZE bytes. */
189 backtrace_vector_grow (struct backtrace_state
*state
,size_t size
,
190 backtrace_error_callback error_callback
,
191 void *data
, struct backtrace_vector
*vec
)
201 pagesize
= getpagesize ();
202 alc
= vec
->size
+ size
;
205 else if (alc
< pagesize
)
212 alc
= (alc
+ pagesize
- 1) & ~ (pagesize
- 1);
213 base
= backtrace_alloc (state
, alc
, error_callback
, data
);
216 if (vec
->base
!= NULL
)
218 memcpy (base
, vec
->base
, vec
->size
);
219 backtrace_free (state
, vec
->base
, vec
->alc
, error_callback
, data
);
222 vec
->alc
= alc
- vec
->size
;
225 ret
= (char *) vec
->base
+ vec
->size
;
231 /* Finish the current allocation on VEC. */
234 backtrace_vector_finish (
235 struct backtrace_state
*state ATTRIBUTE_UNUSED
,
236 struct backtrace_vector
*vec
,
237 backtrace_error_callback error_callback ATTRIBUTE_UNUSED
,
238 void *data ATTRIBUTE_UNUSED
)
243 vec
->base
= (char *) vec
->base
+ vec
->size
;
248 /* Release any extra space allocated for VEC. */
251 backtrace_vector_release (struct backtrace_state
*state
,
252 struct backtrace_vector
*vec
,
253 backtrace_error_callback error_callback
,
260 /* Make sure that the block that we free is aligned on an 8-byte
264 aligned
= (size
+ 7) & ~ (size_t) 7;
265 alc
-= aligned
- size
;
267 backtrace_free (state
, (char *) vec
->base
+ aligned
, alc
,
268 error_callback
, data
);