2020-01-01 00:14:33 +00:00
|
|
|
/* Copyright (C) 1991-2020 Free Software Foundation, Inc.
|
1997-05-26 23:01:17 +00:00
|
|
|
This file is part of the GNU C Library.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1997-05-26 23:01:17 +00:00
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1997-05-26 23:01:17 +00:00
|
|
|
The GNU C Library 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
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <hurd.h>
|
|
|
|
#include <hurd/resource.h>
|
|
|
|
#include <cthreads.h> /* For `struct mutex'. */
|
|
|
|
|
|
|
|
|
1995-12-03 10:00:22 +00:00
|
|
|
/* Initial maximum size of the data segment (this is arbitrary). */
|
|
|
|
#define DATA_SIZE (128 * 1024 * 1024)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
/* Up to the page including this address is allocated from the kernel.
|
|
|
|
This address is the data resource limit. */
|
|
|
|
vm_address_t _hurd_data_end;
|
|
|
|
|
|
|
|
/* Up to this address is actually available to the user.
|
|
|
|
Pages beyond the one containing this address allow no access. */
|
1996-06-20 21:32:45 +00:00
|
|
|
vm_address_t _hurd_brk = 0;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1996-06-17 22:41:47 +00:00
|
|
|
/* This name is used by the Linux crtbeginS.o for reasons you don't even
|
|
|
|
want to think about it. It's just easier to provide some definition for
|
|
|
|
it than even to explain the braindamage involved. */
|
1996-06-20 21:32:45 +00:00
|
|
|
weak_alias (_hurd_brk, ___brk_addr)
|
1996-06-17 22:41:47 +00:00
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
struct mutex _hurd_brk_lock;
|
|
|
|
|
|
|
|
extern int __data_start, _end;
|
1999-07-11 17:16:47 +00:00
|
|
|
weak_extern (__data_start)
|
|
|
|
static vm_address_t static_data_start;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Set the end of the process's data space to INADDR.
|
|
|
|
Return 0 if successful, -1 if not. */
|
|
|
|
int
|
1997-05-26 23:01:17 +00:00
|
|
|
__brk (void *inaddr)
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
HURD_CRITICAL_BEGIN;
|
|
|
|
__mutex_lock (&_hurd_brk_lock);
|
|
|
|
ret = _hurd_set_brk ((vm_address_t) inaddr);
|
|
|
|
__mutex_unlock (&_hurd_brk_lock);
|
|
|
|
HURD_CRITICAL_END;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
weak_alias (__brk, brk)
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
_hurd_set_brk (vm_address_t addr)
|
|
|
|
{
|
2012-05-10 22:31:37 +00:00
|
|
|
error_t err = 0;
|
1995-02-18 01:27:10 +00:00
|
|
|
vm_address_t pagend = round_page (addr);
|
|
|
|
vm_address_t pagebrk = round_page (_hurd_brk);
|
|
|
|
long int rlimit;
|
|
|
|
|
|
|
|
if (pagend <= pagebrk)
|
|
|
|
{
|
|
|
|
if (pagend < pagebrk)
|
1999-09-19 20:40:43 +00:00
|
|
|
{
|
|
|
|
/* XXX wish this were atomic... */
|
|
|
|
/* First deallocate the memory to release its backing space. */
|
|
|
|
__vm_deallocate (__mach_task_self (), pagend, pagebrk - pagend);
|
|
|
|
/* Now reallocate it with no access allowed. */
|
|
|
|
err = __vm_map (__mach_task_self (),
|
2000-07-23 21:18:46 +00:00
|
|
|
&pagend, pagebrk - pagend,
|
1999-09-19 20:40:43 +00:00
|
|
|
0, 0, MACH_PORT_NULL, 0, 0,
|
|
|
|
0, VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE,
|
|
|
|
VM_INHERIT_COPY);
|
|
|
|
/* XXX what if error? */
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
_hurd_brk = addr;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
__mutex_lock (&_hurd_rlimit_lock);
|
|
|
|
rlimit = _hurd_rlimits[RLIMIT_DATA].rlim_cur;
|
|
|
|
__mutex_unlock (&_hurd_rlimit_lock);
|
|
|
|
|
1999-07-11 17:16:47 +00:00
|
|
|
if (addr - static_data_start > rlimit)
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
|
|
|
/* Need to increase the resource limit. */
|
|
|
|
errno = ENOMEM;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
1995-12-03 10:00:22 +00:00
|
|
|
if (pagend > _hurd_data_end)
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
2012-05-10 22:31:37 +00:00
|
|
|
vm_address_t alloc_start = _hurd_data_end;
|
|
|
|
|
1995-12-03 10:00:22 +00:00
|
|
|
/* We didn't allocate enough space! Hopefully we can get some more! */
|
2012-05-10 22:31:37 +00:00
|
|
|
|
|
|
|
if (_hurd_data_end > pagebrk)
|
|
|
|
/* First finish allocation. */
|
|
|
|
err = __vm_protect (__mach_task_self (), pagebrk,
|
|
|
|
alloc_start - pagebrk, 0,
|
|
|
|
VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
|
|
|
|
if (! err)
|
|
|
|
_hurd_brk = alloc_start;
|
|
|
|
|
|
|
|
if (! err)
|
|
|
|
err = __vm_allocate (__mach_task_self (), &alloc_start,
|
|
|
|
pagend - alloc_start, 0);
|
|
|
|
|
1995-12-03 10:00:22 +00:00
|
|
|
if (! err)
|
|
|
|
_hurd_data_end = pagend;
|
1995-02-18 01:27:10 +00:00
|
|
|
}
|
1995-12-03 10:00:22 +00:00
|
|
|
else
|
|
|
|
/* Make the memory accessible. */
|
|
|
|
err = __vm_protect (__mach_task_self (), pagebrk, pagend - pagebrk,
|
|
|
|
0, VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
return __hurd_fail (err);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
_hurd_brk = addr;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
init_brk (void)
|
|
|
|
{
|
|
|
|
vm_address_t pagend;
|
|
|
|
|
|
|
|
__mutex_init (&_hurd_brk_lock);
|
|
|
|
|
1999-07-11 17:16:47 +00:00
|
|
|
static_data_start = (vm_address_t) (&__data_start ?: &_end);
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
/* If _hurd_brk is already set, don't change it. The assumption is that
|
|
|
|
it was set in a previous run before something like Emacs's unexec was
|
|
|
|
called and dumped all the data up to the break at that point. */
|
|
|
|
if (_hurd_brk == 0)
|
|
|
|
_hurd_brk = (vm_address_t) &_end;
|
|
|
|
|
|
|
|
pagend = round_page (_hurd_brk);
|
|
|
|
|
1999-07-11 17:16:47 +00:00
|
|
|
_hurd_data_end = round_page (static_data_start + DATA_SIZE);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
if (pagend < _hurd_data_end)
|
|
|
|
{
|
|
|
|
/* We use vm_map to allocate and change permissions atomically. */
|
|
|
|
if (__vm_map (__mach_task_self (), &pagend, _hurd_data_end - pagend,
|
|
|
|
0, 0, MACH_PORT_NULL, 0, 0,
|
|
|
|
0, VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE,
|
|
|
|
VM_INHERIT_COPY))
|
|
|
|
/* Couldn't allocate the memory. The break will be very short. */
|
|
|
|
_hurd_data_end = pagend;
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) &init_brk; /* Avoid ``defined but not used'' warning. */
|
|
|
|
}
|
|
|
|
text_set_element (_hurd_preinit_hook, init_brk);
|