1 /* Copyright (C) 2012-2018 Free Software Foundation, Inc.
3 This file is part of GCC.
5 GCC is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3, or (at your option)
10 GCC is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 Under Section 7 of GPL version 3, you are granted additional
16 permissions described in the GCC Runtime Library Exception, version
17 3.1, as published by the Free Software Foundation.
19 You should have received a copy of the GNU General Public License and
20 a copy of the GCC Runtime Library Exception along with this program;
21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
22 <http://www.gnu.org/licenses/>. */
24 /* This file is part of the vtable verification runtime library. It
25 contains our memory allocation and deallocation routines, which we
26 use in order to keep track of the pages in memory in which our sets
27 of valid vtable pointes are stored. (We need to know the pages so
28 we can set the protections on them appropriately). For more
29 information about the vtable verification feature, see the comments
30 in vtv_rts.cc. We use the existing obstack implementation in our
31 memory allocation scheme. */
35 #if defined (__CYGWIN__) || defined (__MINGW32__)
40 #include <sys/types.h>
45 #include "vtv_utils.h"
46 #include "vtv_malloc.h"
49 /* The following variables are used only for debugging and performance tuning
50 purposes. Therefore they do not need to be "protected". They cannot be used
51 to attack the vtable verification system and if they become corrupted it will
52 not affect the correctness or security of any of the rest of the vtable
53 verification feature. */
55 unsigned int num_calls_to_mprotect
= 0;
56 unsigned int num_pages_protected
= 0;
57 unsigned int long long mprotect_cycles
= 0;
59 /* Put the following variables in our ".vtable_map_vars" section so
60 that they are protected. They are explicitly unprotected and
61 protected again by calls to __vtv_unprotect and __vtv_protect */
63 static struct obstack vtv_obstack VTV_PROTECTED_VAR
;
64 static void *current_chunk VTV_PROTECTED_VAR
= 0;
65 static size_t current_chunk_size VTV_PROTECTED_VAR
= 0;
66 static int malloc_initialized VTV_PROTECTED_VAR
= 0;
68 #if defined (__CYGWIN__) || defined (__MINGW32__)
69 //sysconf(_SC_PAGE_SIZE) port
70 long sysconf_SC_PAGE_SIZE()
74 long pageSize
= (long)si
.dwPageSize
;
76 //return 4096; // standard usermode 32bit pagesize in bytes // FIXME
80 /* The function goes through and counts all the pages we have allocated
81 so far. It returns the page count. */
84 __vtv_count_mmapped_pages (void)
87 struct _obstack_chunk
* ci
= (struct _obstack_chunk
*) current_chunk
;
97 /* This function goes through all of the pages we have allocated so
98 far and calls mprotect to change the protections on the pages,
99 according to the value of PROTECTION_FLAG. */
102 change_protections_on_data_chunks (int protection_flag
)
104 struct _obstack_chunk
*ci
;
105 ci
= (struct _obstack_chunk
*) current_chunk
;
109 /* Initial set up for mprotect call.*/
110 struct _obstack_chunk
*protect_start
= ci
;
113 unsigned int num_pages_in_chunk
;
115 unsigned long long start
, end
;
119 /* As long as the next 'chunk' is adjacent to the current one,
120 keep going down the list. */
123 chunk_size
= (ci
->limit
- (char *) ci
);
124 total_size
= (ci
->limit
- (char *) protect_start
);
125 num_pages_in_chunk
= chunk_size
/ VTV_PAGE_SIZE
;
126 if (chunk_size
% VTV_PAGE_SIZE
> 0)
127 num_pages_in_chunk
++;
128 next_page
= (char *) ci
+ (num_pages_in_chunk
* VTV_PAGE_SIZE
);
130 } while (ci
&& (char *) ci
== next_page
);
132 VTV_DEBUG_ASSERT (((unsigned long) protect_start
& (VTV_PAGE_SIZE
- 1))
135 /* Protect the contiguous chunks so far. */
137 result
= mprotect (protect_start
, total_size
, protection_flag
);
139 mprotect_cycles
+= end
- start
;
142 num_calls_to_mprotect
++;
143 num_pages_protected
+= (total_size
+ VTV_PAGE_SIZE
- 1)/ VTV_PAGE_SIZE
;
147 __vtv_malloc_dump_stats ();
151 /* This function makes all of our allocated pages read-only. */
154 __vtv_malloc_protect (void)
156 change_protections_on_data_chunks (PROT_READ
);
159 /* This function makes all of our allocated pages read-write. */
162 __vtv_malloc_unprotect (void)
164 change_protections_on_data_chunks (PROT_READ
| PROT_WRITE
);
167 /* Allocates a SIZE-sized chunk of memory that is aligned to a page
168 boundary. The amount of memory requested (SIZE) must be a multiple
169 of the page size. Note: We must use mmap to allocate the memory;
170 using malloc here will cause problems. */
173 obstack_chunk_alloc (size_t size
)
175 /* Increase size to the next multiple of VTV_PAGE_SIZE. */
176 size
= (size
+ (VTV_PAGE_SIZE
- 1)) & (~(VTV_PAGE_SIZE
- 1));
177 VTV_DEBUG_ASSERT ((size
& (VTV_PAGE_SIZE
- 1)) == 0);
180 #if defined (__CYGWIN__) || defined (__MINGW32__)
181 if ((allocated
= VirtualAlloc(NULL
, size
, MEM_RESERVE
|MEM_COMMIT
,
182 PAGE_READWRITE
)) == 0)
184 if ((allocated
= mmap (NULL
, size
, PROT_READ
| PROT_WRITE
,
185 MAP_PRIVATE
| MAP_ANONYMOUS
, -1, 0)) == 0)
189 VTV_DEBUG_ASSERT (((unsigned long) allocated
& (VTV_PAGE_SIZE
- 1)) == 0);
191 current_chunk
= allocated
;
192 current_chunk_size
= size
;
197 obstack_chunk_free (void *)
199 /* Do nothing. For our purposes there should be very little
203 /* This function sets up and initializes the obstack pieces for our
204 memory allocation scheme. */
207 __vtv_malloc_init (void)
209 /* Make sure we only execute the main body of this function ONCE. */
210 if (malloc_initialized
)
213 #if defined (__CYGWIN__) || defined (__MINGW32__)
214 if (VTV_PAGE_SIZE
!= sysconf_SC_PAGE_SIZE())
216 if (VTV_PAGE_SIZE
!= sysconf (_SC_PAGE_SIZE
))
220 /* We guarantee that the obstack alloc failed handler will never be
221 called because in case the allocation of the chunk fails, it will
223 obstack_alloc_failed_handler
= NULL
;
225 obstack_specify_allocation (&vtv_obstack
, VTV_PAGE_SIZE
, sizeof (long),
226 obstack_chunk_alloc
, obstack_chunk_free
);
227 malloc_initialized
= 1;
230 /* This is our external interface for the memory allocation. SIZE is
231 the requested number of bytes to be allocated/ */
234 __vtv_malloc (size_t size
)
236 return obstack_alloc (&vtv_obstack
, size
);
240 /* This is our external interface for memory deallocation. */
245 /* Do nothing. We dont care about recovering unneded memory at this
250 /* This is a debugging function tat collects statistics about our
251 memory allocation. */
253 __vtv_malloc_stats (void)
256 struct _obstack_chunk
* ci
= (struct _obstack_chunk
*) current_chunk
;
263 "__vtv_malloc_stats:\n Page Size = %lu bytes\n "
264 "Number of pages = %d\n", static_cast<unsigned long>(VTV_PAGE_SIZE
),
268 /* This is a debugging function. It writes out our memory allocation
269 statistics to a log file. */
272 __vtv_malloc_dump_stats (void)
277 fd
= __vtv_open_log ("vtv_mem_protection.log");
282 struct _obstack_chunk
* ci
= (struct _obstack_chunk
*) current_chunk
;
289 __vtv_add_to_log (fd
, "__vtv_malloc_protect protected=%d pages\n", count
);