2011-10-06 09:42:51 -06:00
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2010-01-13 18:50:02 -07:00
|
|
|
#include "runtime.h"
|
2011-12-16 13:33:58 -07:00
|
|
|
#include "arch_GOARCH.h"
|
|
|
|
#include "defs_GOOS_GOARCH.h"
|
|
|
|
#include "os_GOOS.h"
|
2010-01-13 18:50:02 -07:00
|
|
|
#include "malloc.h"
|
|
|
|
|
2011-06-07 22:50:10 -06:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
ENOMEM = 12,
|
2011-08-31 05:02:46 -06:00
|
|
|
_PAGE_SIZE = 4096,
|
2011-06-07 22:50:10 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
static int32
|
|
|
|
addrspace_free(void *v, uintptr n)
|
|
|
|
{
|
2011-08-31 05:02:46 -06:00
|
|
|
int32 errval;
|
|
|
|
uintptr chunk;
|
2011-06-07 22:50:10 -06:00
|
|
|
uintptr off;
|
2011-08-31 05:02:46 -06:00
|
|
|
static byte vec[4096];
|
2011-06-07 22:50:10 -06:00
|
|
|
|
2011-08-31 05:02:46 -06:00
|
|
|
for(off = 0; off < n; off += chunk) {
|
|
|
|
chunk = _PAGE_SIZE * sizeof vec;
|
|
|
|
if(chunk > (n - off))
|
|
|
|
chunk = n - off;
|
|
|
|
errval = runtime·mincore((int8*)v + off, chunk, vec);
|
2011-06-07 22:50:10 -06:00
|
|
|
// errval is 0 if success, or -(error_code) if error.
|
|
|
|
if (errval == 0 || errval != -ENOMEM)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-02-14 17:09:02 -07:00
|
|
|
static void *
|
|
|
|
mmap_fixed(byte *v, uintptr n, int32 prot, int32 flags, int32 fd, uint32 offset)
|
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
|
|
|
|
p = runtime·mmap(v, n, prot, flags, fd, offset);
|
|
|
|
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 > (void*)4096)
|
|
|
|
runtime·munmap(p, n);
|
|
|
|
p = runtime·mmap(v, n, prot, flags|MAP_FIXED, fd, offset);
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
2011-06-07 22:50:10 -06:00
|
|
|
|
2010-01-13 18:50:02 -07:00
|
|
|
void*
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·SysAlloc(uintptr n)
|
2010-01-13 18:50:02 -07:00
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
|
|
|
|
mstats.sys += n;
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
p = runtime·mmap(nil, n, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_ANON|MAP_PRIVATE, -1, 0);
|
2010-01-13 18:50:02 -07:00
|
|
|
if(p < (void*)4096) {
|
|
|
|
if(p == (void*)EACCES) {
|
2011-01-28 13:03:26 -07:00
|
|
|
runtime·printf("runtime: mmap: access denied\n");
|
|
|
|
runtime·printf("if you're running SELinux, enable execmem for this process.\n");
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·exit(2);
|
2010-01-13 18:50:02 -07:00
|
|
|
}
|
2011-01-28 13:03:26 -07:00
|
|
|
return nil;
|
2010-01-13 18:50:02 -07:00
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·SysUnused(void *v, uintptr n)
|
2010-01-13 18:50:02 -07:00
|
|
|
{
|
2011-12-12 14:33:13 -07:00
|
|
|
runtime·madvise(v, n, MADV_DONTNEED);
|
2010-01-13 18:50:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·SysFree(void *v, uintptr n)
|
2010-01-13 18:50:02 -07:00
|
|
|
{
|
2010-09-27 10:50:01 -06:00
|
|
|
mstats.sys -= n;
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
runtime·munmap(v, n);
|
2010-01-13 18:50:02 -07:00
|
|
|
}
|
|
|
|
|
2011-01-28 13:03:26 -07:00
|
|
|
void*
|
|
|
|
runtime·SysReserve(void *v, uintptr n)
|
|
|
|
{
|
2011-05-26 22:43:27 -06:00
|
|
|
void *p;
|
|
|
|
|
2011-02-09 12:38:33 -07:00
|
|
|
// On 64-bit, people with ulimit -v set complain if we reserve too
|
|
|
|
// much address space. Instead, assume that the reservation is okay
|
2012-02-08 12:39:16 -07:00
|
|
|
// if we can reserve at least 64K and check the assumption in SysMap.
|
|
|
|
// Only user-mode Linux (UML) rejects these requests.
|
|
|
|
if(sizeof(void*) == 8 && (uintptr)v >= 0xffffffffU) {
|
2012-02-14 17:09:02 -07:00
|
|
|
p = mmap_fixed(v, 64<<10, PROT_NONE, MAP_ANON|MAP_PRIVATE, -1, 0);
|
|
|
|
if (p != v)
|
2012-02-08 12:39:16 -07:00
|
|
|
return nil;
|
|
|
|
runtime·munmap(p, 64<<10);
|
2011-02-09 12:38:33 -07:00
|
|
|
return v;
|
2012-02-08 12:39:16 -07:00
|
|
|
}
|
2011-02-09 12:38:33 -07:00
|
|
|
|
2011-05-26 22:43:27 -06:00
|
|
|
p = runtime·mmap(v, n, PROT_NONE, MAP_ANON|MAP_PRIVATE, -1, 0);
|
2012-02-14 17:09:02 -07:00
|
|
|
if((uintptr)p < 4096 || -(uintptr)p < 4096)
|
2011-05-26 22:43:27 -06:00
|
|
|
return nil;
|
|
|
|
return p;
|
2011-01-28 13:03:26 -07:00
|
|
|
}
|
|
|
|
|
2010-09-28 18:30:01 -06:00
|
|
|
void
|
2011-01-28 13:03:26 -07:00
|
|
|
runtime·SysMap(void *v, uintptr n)
|
2010-09-28 18:30:01 -06:00
|
|
|
{
|
2011-01-28 13:03:26 -07:00
|
|
|
void *p;
|
|
|
|
|
|
|
|
mstats.sys += n;
|
2011-02-09 12:38:33 -07:00
|
|
|
|
|
|
|
// On 64-bit, we don't actually have v reserved, so tread carefully.
|
2012-02-08 12:39:16 -07:00
|
|
|
if(sizeof(void*) == 8 && (uintptr)v >= 0xffffffffU) {
|
2012-02-14 17:09:02 -07:00
|
|
|
p = mmap_fixed(v, n, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_ANON|MAP_PRIVATE, -1, 0);
|
2011-05-26 22:43:27 -06:00
|
|
|
if(p == (void*)ENOMEM)
|
|
|
|
runtime·throw("runtime: out of memory");
|
2011-02-09 12:38:33 -07:00
|
|
|
if(p != v) {
|
2011-03-23 09:34:03 -06:00
|
|
|
runtime·printf("runtime: address space conflict: map(%p) = %p\n", v, p);
|
2011-02-09 12:38:33 -07:00
|
|
|
runtime·throw("runtime: address space conflict");
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-01-28 13:03:26 -07:00
|
|
|
p = runtime·mmap(v, n, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_ANON|MAP_FIXED|MAP_PRIVATE, -1, 0);
|
2011-05-26 22:43:27 -06:00
|
|
|
if(p == (void*)ENOMEM)
|
2011-04-25 10:13:54 -06:00
|
|
|
runtime·throw("runtime: out of memory");
|
2011-01-28 13:03:26 -07:00
|
|
|
if(p != v)
|
|
|
|
runtime·throw("runtime: cannot map pages in arena address space");
|
2010-09-28 18:30:01 -06:00
|
|
|
}
|