Add bt_common_abort() and use it instead of abort() directly
[babeltrace.git] / src / compat / mman.c
... / ...
CommitLineData
1/*
2 * compat/compat_mman.h
3 *
4 * Copyright (C) 2013 JP Ikaheimonen <jp_ikaheimonen@mentor.com>
5 * 2016 Michael Jeanson <mjeanson@efficios.com>
6 *
7 * These sources are based on ftp://g.oswego.edu/pub/misc/malloc.c
8 * file by Doug Lea, released to the public domain.
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
29#define BT_LOG_OUTPUT_LEVEL (mapping->log_level)
30#define BT_LOG_TAG "COMPAT/MMAN"
31#include "logging/log.h"
32
33#include "common/macros.h"
34#include "common/common.h"
35
36#ifdef __APPLE__
37/*
38 * On macOS, we need a dummy symbol so that the linker won't
39 * complain of an empty table of contents.
40 */
41BT_HIDDEN
42int bt_mman_dummy_symbol;
43#endif /* __APPLE__ */
44
45#ifdef __MINGW32__
46
47#include <errno.h>
48#include <glib.h>
49#include <io.h>
50#include <pthread.h>
51#include <stdlib.h>
52#include <windows.h>
53
54#include "compat/mman.h"
55
56struct mmap_mapping {
57 int log_level;
58
59 /* The duplicated handle. */
60 HANDLE file_handle;
61 /* Handle returned by CreateFileMapping. */
62 HANDLE map_handle;
63};
64
65static
66GHashTable *mmap_mappings = NULL;
67
68/*
69 * This mutex protects the hashtable of memory mappings.
70 */
71static pthread_mutex_t mmap_mutex = PTHREAD_MUTEX_INITIALIZER;
72
73static
74struct mmap_mapping *mapping_create(int log_level)
75{
76 struct mmap_mapping *mapping;
77
78 mapping = malloc(sizeof(struct mmap_mapping));
79 if (mapping) {
80 mapping->file_handle = NULL;
81 mapping->map_handle = NULL;
82 mapping->log_level = log_level;
83 }
84
85 return mapping;
86}
87
88static
89void mapping_clean(struct mmap_mapping *mapping)
90{
91 if (mapping) {
92 if (!CloseHandle(mapping->map_handle)) {
93 BT_LOGF_STR("Failed to close mmap map_handle.");
94 bt_common_abort();
95 }
96 if (!CloseHandle(mapping->file_handle)) {
97 BT_LOGF_STR("Failed to close mmap file_handle.");
98 bt_common_abort();
99 }
100 free(mapping);
101 mapping = NULL;
102 }
103}
104
105static
106void addr_clean(void *addr)
107{
108 /* Cleanup of handles should never fail. */
109 if (!UnmapViewOfFile(addr)) {
110 /*
111 * FIXME: We don't have access to the mapping's log
112 * level here, so force a FATAL level.
113 */
114 BT_LOG_WRITE_CUR_LVL(BT_LOG_FATAL, BT_LOG_FATAL, BT_LOG_TAG,
115 "Failed to unmap mmap mapping.");
116 bt_common_abort();
117 }
118}
119
120static
121void mmap_lock(int log_level)
122{
123 if (pthread_mutex_lock(&mmap_mutex)) {
124 BT_LOG_WRITE_CUR_LVL(BT_LOG_FATAL, log_level, BT_LOG_TAG, "Failed to acquire mmap_mutex.");
125 bt_common_abort();
126 }
127}
128
129static
130void mmap_unlock(int log_level)
131{
132 if (pthread_mutex_unlock(&mmap_mutex)) {
133 BT_LOG_WRITE_CUR_LVL(BT_LOG_FATAL, log_level, BT_LOG_TAG, "Failed to release mmap_mutex.");
134 bt_common_abort();
135 }
136}
137
138/*
139 * Convert mmap memory protection flags to CreateFileMapping page protection
140 * flag and MapViewOfFile desired access flag.
141 */
142static
143DWORD map_prot_flags(int prot, DWORD *dwDesiredAccess)
144{
145 if (prot & PROT_READ) {
146 if (prot & PROT_WRITE) {
147 *dwDesiredAccess = FILE_MAP_WRITE;
148 if (prot & PROT_EXEC) {
149 return PAGE_EXECUTE_READWRITE;
150 }
151 return PAGE_READWRITE;
152 }
153 if (prot & PROT_EXEC) {
154 *dwDesiredAccess = FILE_MAP_EXECUTE;
155 return PAGE_EXECUTE_READ;
156 }
157 *dwDesiredAccess = FILE_MAP_READ;
158 return PAGE_READONLY;
159 }
160 if (prot & PROT_WRITE) {
161 *dwDesiredAccess = FILE_MAP_COPY;
162 return PAGE_WRITECOPY;
163 }
164 if (prot & PROT_EXEC) {
165 *dwDesiredAccess = FILE_MAP_EXECUTE;
166 return PAGE_EXECUTE_READ;
167 }
168
169 /* Mapping failed. */
170 *dwDesiredAccess = 0;
171 return 0;
172}
173
174BT_HIDDEN
175void *bt_mmap(void *addr, size_t length, int prot, int flags, int fd,
176 off_t offset, int log_level)
177{
178 struct mmap_mapping *mapping = NULL;
179 void *mapping_addr;
180 DWORD dwDesiredAccess;
181 DWORD flProtect;
182 HANDLE handle;
183
184 /* Check for a valid fd. */
185 if (fd == -1) {
186 _set_errno(EBADF);
187 goto error;
188 }
189
190 /* We don't support this at the moment. */
191 if (flags == MAP_FIXED) {
192 _set_errno(ENOTSUP);
193 goto error;
194 }
195
196 /* Map mmap flags to those of the Windows API. */
197 flProtect = map_prot_flags(prot, &dwDesiredAccess);
198 if (flProtect == 0) {
199 _set_errno(EINVAL);
200 goto error;
201 }
202
203 /* Allocate the mapping struct. */
204 mapping = mapping_create(log_level);
205 if (!mapping) {
206 BT_LOG_WRITE_CUR_LVL(BT_LOG_ERROR, log_level, BT_LOG_TAG,
207 "Failed to allocate mmap mapping.");
208 _set_errno(ENOMEM);
209 goto error;
210 }
211
212 /* Get a handle from the fd. */
213 handle = (HANDLE) _get_osfhandle(fd);
214
215 /* Duplicate the handle and store it in 'mapping.file_handle'. */
216 if (!DuplicateHandle(GetCurrentProcess(), handle, GetCurrentProcess(),
217 &mapping->file_handle, 0, FALSE,
218 DUPLICATE_SAME_ACCESS)) {
219 _set_errno(ENOMEM);
220 goto error;
221 }
222
223 /*
224 * Create a file mapping object with a maximum size
225 * of 'offset' + 'length'.
226 */
227 mapping->map_handle = CreateFileMapping(mapping->file_handle, NULL,
228 flProtect, 0, offset + length, NULL);
229 if (mapping->map_handle == 0) {
230 _set_errno(EACCES);
231 goto error;
232 }
233
234 /* Map the requested block starting at 'offset' for 'length' bytes. */
235 mapping_addr = MapViewOfFile(mapping->map_handle, dwDesiredAccess, 0,
236 offset, length);
237 if (mapping_addr == 0) {
238 DWORD dwLastErr = GetLastError();
239 if (dwLastErr == ERROR_MAPPED_ALIGNMENT) {
240 _set_errno(EINVAL);
241 } else {
242 _set_errno(EACCES);
243 }
244 goto error;
245 }
246
247 mmap_lock(log_level);
248
249 /* If we have never done any mappings, allocate the hashtable. */
250 if (!mmap_mappings) {
251 mmap_mappings = g_hash_table_new_full(g_direct_hash,
252 g_direct_equal, (GDestroyNotify) addr_clean,
253 (GDestroyNotify) mapping_clean);
254 if (!mmap_mappings) {
255 BT_LOGE_STR("Failed to allocate mmap hashtable.");
256 _set_errno(ENOMEM);
257 goto error_mutex_unlock;
258 }
259 }
260
261 /* Add the new mapping to the hashtable. */
262 g_hash_table_insert(mmap_mappings, mapping_addr, mapping);
263
264 mmap_unlock(log_level);
265
266 return mapping_addr;
267
268error_mutex_unlock:
269 mmap_unlock(log_level);
270error:
271 mapping_clean(mapping);
272 return MAP_FAILED;
273}
274
275BT_HIDDEN
276int bt_munmap(void *addr, size_t length)
277{
278 int ret = 0;
279 struct mmap_mapping *mapping = addr;
280 int log_level;
281
282 BT_ASSERT(mapping);
283 log_level = mapping->log_level;
284 mmap_lock(log_level);
285
286 /* Check if the mapping exists in the hashtable. */
287 if (!g_hash_table_lookup(mmap_mappings, addr)) {
288 _set_errno(EINVAL);
289 ret = -1;
290 goto end;
291 }
292
293 /* Remove it. */
294 if (!g_hash_table_remove(mmap_mappings, addr)) {
295 BT_LOGF_STR("Failed to remove mapping from hashtable.");
296 bt_common_abort();
297 }
298
299end:
300 mmap_unlock(log_level);
301 return ret;
302}
303
304BT_HIDDEN
305size_t bt_mmap_get_offset_align_size(int log_level)
306{
307 SYSTEM_INFO sysinfo;
308
309 GetNativeSystemInfo(&sysinfo);
310 BT_LOG_WRITE_CUR_LVL(BT_LOG_DEBUG, log_level, BT_LOG_TAG,
311 "Allocator granularity is %lu.",
312 sysinfo.dwAllocationGranularity);
313
314 return sysinfo.dwAllocationGranularity;
315}
316
317#endif
This page took 0.024289 seconds and 4 git commands to generate.