2012-01-17 15:18:39 +01:00
|
|
|
/* Defining _XOPEN_SOURCE hides the declaration of madvise() on Solaris <
|
|
|
|
11 and the MADV_DONTNEED definition on IRIX 6.5. */
|
|
|
|
#undef _XOPEN_SOURCE
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
#include <errno.h>
|
2011-04-05 02:02:15 +02:00
|
|
|
#include <unistd.h>
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
#include "runtime.h"
|
2011-10-27 01:57:58 +02:00
|
|
|
#include "arch.h"
|
2010-12-03 05:34:57 +01:00
|
|
|
#include "malloc.h"
|
|
|
|
|
2011-01-29 08:16:20 +01:00
|
|
|
#ifndef MAP_ANON
|
|
|
|
#ifdef MAP_ANONYMOUS
|
|
|
|
#define MAP_ANON MAP_ANONYMOUS
|
|
|
|
#else
|
|
|
|
#define USE_DEV_ZERO
|
|
|
|
#define MAP_ANON 0
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2013-02-15 19:55:09 +01:00
|
|
|
#ifndef MAP_NORESERVE
|
|
|
|
#define MAP_NORESERVE 0
|
|
|
|
#endif
|
|
|
|
|
2011-01-29 08:16:20 +01:00
|
|
|
#ifdef USE_DEV_ZERO
|
|
|
|
static int dev_zero = -1;
|
|
|
|
#endif
|
|
|
|
|
2014-07-19 10:53:52 +02:00
|
|
|
static int32
|
2011-04-05 02:02:15 +02:00
|
|
|
addrspace_free(void *v __attribute__ ((unused)), uintptr n __attribute__ ((unused)))
|
|
|
|
{
|
|
|
|
#ifdef HAVE_MINCORE
|
|
|
|
size_t page_size = getpagesize();
|
2014-07-19 10:53:52 +02:00
|
|
|
int32 errval;
|
|
|
|
uintptr chunk;
|
|
|
|
uintptr off;
|
|
|
|
|
|
|
|
// NOTE: vec must be just 1 byte long here.
|
|
|
|
// Mincore returns ENOMEM if any of the pages are unmapped,
|
|
|
|
// but we want to know that all of the pages are unmapped.
|
|
|
|
// To make these the same, we can only ask about one page
|
|
|
|
// at a time. See golang.org/issue/7476.
|
|
|
|
static byte vec[1];
|
2011-04-05 02:02:15 +02:00
|
|
|
|
|
|
|
errno = 0;
|
2014-07-19 10:53:52 +02:00
|
|
|
for(off = 0; off < n; off += chunk) {
|
|
|
|
chunk = page_size * sizeof vec;
|
|
|
|
if(chunk > (n - off))
|
|
|
|
chunk = n - off;
|
2014-08-04 19:54:09 +02:00
|
|
|
errval = mincore((char*)v + off, chunk, (void*)vec);
|
2014-07-19 10:53:52 +02:00
|
|
|
// ENOMEM means unmapped, which is what we want.
|
|
|
|
// Anything else we assume means the pages are mapped.
|
|
|
|
if(errval == 0 || errno != ENOMEM)
|
2011-04-05 02:02:15 +02:00
|
|
|
return 0;
|
2014-07-19 10:53:52 +02:00
|
|
|
}
|
2011-04-05 02:02:15 +02:00
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-03-02 17:38:43 +01:00
|
|
|
static void *
|
|
|
|
mmap_fixed(byte *v, uintptr n, int32 prot, int32 flags, int32 fd, uint32 offset)
|
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
|
2012-03-02 21:48:21 +01:00
|
|
|
p = runtime_mmap((void *)v, n, prot, flags, fd, offset);
|
2012-03-02 17:38:43 +01:00
|
|
|
if(p != v && addrspace_free(v, n)) {
|
|
|
|
// On some systems, mmap ignores v without
|
|
|
|
// MAP_FIXED, so retry if the address space is free.
|
|
|
|
if(p != MAP_FAILED)
|
|
|
|
runtime_munmap(p, n);
|
2012-03-02 21:48:21 +01:00
|
|
|
p = runtime_mmap((void *)v, n, prot, flags|MAP_FIXED, fd, offset);
|
2012-03-02 17:38:43 +01:00
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
void*
|
2013-11-06 20:49:01 +01:00
|
|
|
runtime_SysAlloc(uintptr n, uint64 *stat)
|
2010-12-03 05:34:57 +01:00
|
|
|
{
|
|
|
|
void *p;
|
2011-01-29 08:16:20 +01:00
|
|
|
int fd = -1;
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-01-29 08:16:20 +01:00
|
|
|
#ifdef USE_DEV_ZERO
|
|
|
|
if (dev_zero == -1) {
|
|
|
|
dev_zero = open("/dev/zero", O_RDONLY);
|
|
|
|
if (dev_zero < 0) {
|
2011-12-21 23:24:47 +01:00
|
|
|
runtime_printf("open /dev/zero: errno=%d\n", errno);
|
2011-01-29 08:16:20 +01:00
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fd = dev_zero;
|
|
|
|
#endif
|
|
|
|
|
2013-07-16 08:54:42 +02:00
|
|
|
p = runtime_mmap(nil, n, PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, fd, 0);
|
2010-12-03 05:34:57 +01:00
|
|
|
if (p == MAP_FAILED) {
|
|
|
|
if(errno == EACCES) {
|
2011-12-21 23:24:47 +01:00
|
|
|
runtime_printf("runtime: mmap: access denied\n");
|
|
|
|
runtime_printf("if you're running SELinux, enable execmem for this process.\n");
|
2011-03-17 00:05:44 +01:00
|
|
|
exit(2);
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
2013-01-29 21:52:43 +01:00
|
|
|
if(errno == EAGAIN) {
|
|
|
|
runtime_printf("runtime: mmap: too much locked memory (check 'ulimit -l').\n");
|
|
|
|
runtime_exit(2);
|
|
|
|
}
|
2011-03-17 00:05:44 +01:00
|
|
|
return nil;
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
2013-11-06 20:49:01 +01:00
|
|
|
runtime_xadd64(stat, n);
|
2010-12-03 05:34:57 +01:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-01-17 15:18:39 +01:00
|
|
|
runtime_SysUnused(void *v __attribute__ ((unused)), uintptr n __attribute__ ((unused)))
|
2010-12-03 05:34:57 +01:00
|
|
|
{
|
2012-01-12 02:31:45 +01:00
|
|
|
#ifdef MADV_DONTNEED
|
|
|
|
runtime_madvise(v, n, MADV_DONTNEED);
|
|
|
|
#endif
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-11-06 20:49:01 +01:00
|
|
|
runtime_SysUsed(void *v, uintptr n)
|
|
|
|
{
|
|
|
|
USED(v);
|
|
|
|
USED(n);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
runtime_SysFree(void *v, uintptr n, uint64 *stat)
|
2010-12-03 05:34:57 +01:00
|
|
|
{
|
2013-11-06 20:49:01 +01:00
|
|
|
runtime_xadd64(stat, -(uint64)n);
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime_munmap(v, n);
|
|
|
|
}
|
|
|
|
|
2014-07-19 10:53:52 +02:00
|
|
|
void
|
|
|
|
runtime_SysFault(void *v, uintptr n)
|
|
|
|
{
|
|
|
|
int fd = -1;
|
|
|
|
|
|
|
|
#ifdef USE_DEV_ZERO
|
|
|
|
if (dev_zero == -1) {
|
|
|
|
dev_zero = open("/dev/zero", O_RDONLY);
|
|
|
|
if (dev_zero < 0) {
|
|
|
|
runtime_printf("open /dev/zero: errno=%d\n", errno);
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fd = dev_zero;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
runtime_mmap(v, n, PROT_NONE, MAP_ANON|MAP_PRIVATE|MAP_FIXED, fd, 0);
|
|
|
|
}
|
|
|
|
|
2011-03-17 00:05:44 +01:00
|
|
|
void*
|
2014-07-19 10:53:52 +02:00
|
|
|
runtime_SysReserve(void *v, uintptr n, bool *reserved)
|
2011-03-17 00:05:44 +01:00
|
|
|
{
|
|
|
|
int fd = -1;
|
2011-11-01 05:55:15 +01:00
|
|
|
void *p;
|
2011-03-17 00:05:44 +01:00
|
|
|
|
|
|
|
#ifdef USE_DEV_ZERO
|
|
|
|
if (dev_zero == -1) {
|
|
|
|
dev_zero = open("/dev/zero", O_RDONLY);
|
|
|
|
if (dev_zero < 0) {
|
2011-12-21 23:24:47 +01:00
|
|
|
runtime_printf("open /dev/zero: errno=%d\n", errno);
|
2011-03-17 00:05:44 +01:00
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fd = dev_zero;
|
|
|
|
#endif
|
|
|
|
|
2012-03-02 17:38:43 +01:00
|
|
|
// On 64-bit, people with ulimit -v set complain if we reserve too
|
|
|
|
// much address space. Instead, assume that the reservation is okay
|
|
|
|
// if we can reserve at least 64K and check the assumption in SysMap.
|
|
|
|
// Only user-mode Linux (UML) rejects these requests.
|
2014-07-19 10:53:52 +02:00
|
|
|
if(sizeof(void*) == 8 && (n >> 16) > 1LLU<<16) {
|
2012-03-02 17:38:43 +01:00
|
|
|
p = mmap_fixed(v, 64<<10, PROT_NONE, MAP_ANON|MAP_PRIVATE, fd, 0);
|
2013-11-06 20:49:01 +01:00
|
|
|
if (p != v) {
|
|
|
|
runtime_munmap(p, 64<<10);
|
2012-03-02 17:38:43 +01:00
|
|
|
return nil;
|
2013-11-06 20:49:01 +01:00
|
|
|
}
|
2012-03-02 17:38:43 +01:00
|
|
|
runtime_munmap(p, 64<<10);
|
2014-07-19 10:53:52 +02:00
|
|
|
*reserved = false;
|
2012-03-02 17:38:43 +01:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2013-02-15 19:55:09 +01:00
|
|
|
// Use the MAP_NORESERVE mmap() flag here because typically most of
|
|
|
|
// this reservation will never be used. It does not make sense
|
|
|
|
// reserve a huge amount of unneeded swap space. This is important on
|
|
|
|
// systems which do not overcommit memory by default.
|
|
|
|
p = runtime_mmap(v, n, PROT_NONE, MAP_ANON|MAP_PRIVATE|MAP_NORESERVE, fd, 0);
|
2012-03-02 17:38:43 +01:00
|
|
|
if(p == MAP_FAILED)
|
2011-11-01 05:55:15 +01:00
|
|
|
return nil;
|
2014-07-19 10:53:52 +02:00
|
|
|
*reserved = true;
|
2011-11-01 05:55:15 +01:00
|
|
|
return p;
|
2011-03-17 00:05:44 +01:00
|
|
|
}
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
void
|
2014-07-19 10:53:52 +02:00
|
|
|
runtime_SysMap(void *v, uintptr n, bool reserved, uint64 *stat)
|
2010-12-03 05:34:57 +01:00
|
|
|
{
|
2011-03-17 00:05:44 +01:00
|
|
|
void *p;
|
|
|
|
int fd = -1;
|
|
|
|
|
2013-11-06 20:49:01 +01:00
|
|
|
runtime_xadd64(stat, n);
|
2011-03-17 00:05:44 +01:00
|
|
|
|
|
|
|
#ifdef USE_DEV_ZERO
|
|
|
|
if (dev_zero == -1) {
|
|
|
|
dev_zero = open("/dev/zero", O_RDONLY);
|
|
|
|
if (dev_zero < 0) {
|
2011-12-21 23:24:47 +01:00
|
|
|
runtime_printf("open /dev/zero: errno=%d\n", errno);
|
2011-03-17 00:05:44 +01:00
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fd = dev_zero;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// On 64-bit, we don't actually have v reserved, so tread carefully.
|
2014-07-19 10:53:52 +02:00
|
|
|
if(!reserved) {
|
2013-07-16 08:54:42 +02:00
|
|
|
p = mmap_fixed(v, n, PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, fd, 0);
|
2012-03-02 17:38:43 +01:00
|
|
|
if(p == MAP_FAILED && errno == ENOMEM)
|
|
|
|
runtime_throw("runtime: out of memory");
|
2011-03-17 00:05:44 +01:00
|
|
|
if(p != v) {
|
|
|
|
runtime_printf("runtime: address space conflict: map(%p) = %p\n", v, p);
|
|
|
|
runtime_throw("runtime: address space conflict");
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-16 08:54:42 +02:00
|
|
|
p = runtime_mmap(v, n, PROT_READ|PROT_WRITE, MAP_ANON|MAP_FIXED|MAP_PRIVATE, fd, 0);
|
|
|
|
if(p == MAP_FAILED && errno == ENOMEM)
|
|
|
|
runtime_throw("runtime: out of memory");
|
2011-03-17 00:05:44 +01:00
|
|
|
if(p != v)
|
|
|
|
runtime_throw("runtime: cannot map pages in arena address space");
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|