1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
/*
* Copyright (c) 2009, 2010 Wayne Meissner
* All rights reserved.
*
* This file is part of ruby-ffi.
*
* This code is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License version 3 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* version 3 for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with this work. If not, see <http://www.gnu.org/licenses/>.
*/
#include <sys/param.h>
#include <sys/types.h>
#ifndef _WIN32
# include <sys/mman.h>
#endif
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#ifndef _WIN32
# include <unistd.h>
#else
# define _WINSOCKAPI_
# include <windows.h>
#endif
#include <errno.h>
#include <ruby.h>
#include <ffi.h>
#include "rbffi.h"
#include "compat.h"
#include "Function.h"
#include "Types.h"
#include "Type.h"
#include "LastError.h"
#include "Call.h"
#include "ClosurePool.h"
#ifndef roundup
# define roundup(x, y) ((((x)+((y)-1))/(y))*(y))
#endif
#ifdef _WIN32
typedef char* caddr_t;
#endif
typedef struct Memory {
void* code;
void* data;
struct Memory* next;
} Memory;
struct ClosurePool_ {
void* ctx;
int closureSize;
bool (*prep)(void* ctx, void *code, Closure* closure, char* errbuf, size_t errbufsize);
struct Memory* blocks; /* Keeps track of all the allocated memory for this pool */
Closure* list;
long refcnt;
};
static long pageSize;
static void* allocatePage(void);
static bool freePage(void *);
static bool protectPage(void *);
ClosurePool*
rbffi_ClosurePool_New(int closureSize,
bool (*prep)(void* ctx, void *code, Closure* closure, char* errbuf, size_t errbufsize),
void* ctx)
{
ClosurePool* pool;
pool = xcalloc(1, sizeof(*pool));
pool->closureSize = closureSize;
pool->ctx = ctx;
pool->prep = prep;
pool->refcnt = 1;
return pool;
}
void
cleanup_closure_pool(ClosurePool* pool)
{
Memory* memory;
for (memory = pool->blocks; memory != NULL; ) {
Memory* next = memory->next;
freePage(memory->code);
free(memory->data);
free(memory);
memory = next;
}
xfree(pool);
}
void
rbffi_ClosurePool_Free(ClosurePool* pool)
{
if (pool != NULL) {
long refcnt = --(pool->refcnt);
if (refcnt == 0) {
cleanup_closure_pool(pool);
}
}
}
Closure*
rbffi_Closure_Alloc(ClosurePool* pool)
{
Closure *list = NULL;
Memory* block = NULL;
caddr_t code = NULL;
char errmsg[256];
int nclosures;
long trampolineSize;
int i;
if (pool->list != NULL) {
Closure* closure = pool->list;
pool->list = pool->list->next;
pool->refcnt++;
return closure;
}
trampolineSize = roundup(pool->closureSize, 8);
nclosures = (int) (pageSize / trampolineSize);
block = calloc(1, sizeof(*block));
list = calloc(nclosures, sizeof(*list));
code = allocatePage();
if (block == NULL || list == NULL || code == NULL) {
snprintf(errmsg, sizeof(errmsg), "failed to allocate a page. errno=%d (%s)", errno, strerror(errno));
goto error;
}
for (i = 0; i < nclosures; ++i) {
Closure* closure = &list[i];
closure->next = &list[i + 1];
closure->pool = pool;
closure->code = (code + (i * trampolineSize));
if (!(*pool->prep)(pool->ctx, closure->code, closure, errmsg, sizeof(errmsg))) {
goto error;
}
}
if (!protectPage(code)) {
goto error;
}
/* Track the allocated page + Closure memory area */
block->data = list;
block->code = code;
block->next = pool->blocks;
pool->blocks = block;
/* Thread the new block onto the free list, apart from the first one. */
list[nclosures - 1].next = pool->list;
pool->list = list->next;
pool->refcnt++;
/* Use the first one as the new handle */
return list;
error:
free(block);
free(list);
if (code != NULL) {
freePage(code);
}
rb_raise(rb_eRuntimeError, "%s", errmsg);
return NULL;
}
void
rbffi_Closure_Free(Closure* closure)
{
if (closure != NULL) {
ClosurePool* pool = closure->pool;
long refcnt;
// Just push it on the front of the free list
closure->next = pool->list;
pool->list = closure;
refcnt = --(pool->refcnt);
if (refcnt == 0) {
cleanup_closure_pool(pool);
}
}
}
void*
rbffi_Closure_CodeAddress(Closure* handle)
{
return handle->code;
}
static long
getPageSize()
{
#if defined(_WIN32) || defined(__WIN32__)
SYSTEM_INFO si;
GetSystemInfo(&si);
return si.dwPageSize;
#else
return sysconf(_SC_PAGESIZE);
#endif
}
static void*
allocatePage(void)
{
#if defined(_WIN32) || defined(__WIN32__)
return VirtualAlloc(NULL, pageSize, MEM_COMMIT | MEM_RESERVE, PAGE_READWRITE);
#else
caddr_t page = mmap(NULL, pageSize, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0);
return (page != (caddr_t) -1) ? page : NULL;
#endif
}
static bool
freePage(void *addr)
{
#if defined(_WIN32) || defined(__WIN32__)
return VirtualFree(addr, 0, MEM_RELEASE);
#else
return munmap(addr, pageSize) == 0;
#endif
}
static bool
protectPage(void* page)
{
#if defined(_WIN32) || defined(__WIN32__)
DWORD oldProtect;
return VirtualProtect(page, pageSize, PAGE_EXECUTE_READ, &oldProtect);
#else
return mprotect(page, pageSize, PROT_READ | PROT_EXEC) == 0;
#endif
}
void
rbffi_ClosurePool_Init(VALUE module)
{
pageSize = getPageSize();
}
|