mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-23 22:42:01 -07:00
Mps: protection for intel darwin. hopefully cross-platform.
Copied from Perforce Change: 161902 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
0c312472eb
commit
d70be295ee
4 changed files with 351 additions and 1 deletions
|
|
@ -226,6 +226,26 @@
|
|||
#define VMANPageALIGNMENT ((Align)4096)
|
||||
#define VMJunkBYTE ((unsigned char)0xA9)
|
||||
|
||||
/* Protection Configuration see <code/prot*.c>
|
||||
|
||||
For each architecture/OS that uses protix.c or protsgix.c, we need to
|
||||
define what signal number to use, and what si_code value to check.
|
||||
*/
|
||||
|
||||
#if defined(MPS_OS_O1) || defined(MPS_OS_SO)
|
||||
#define PROT_SIGNAL (SIGSEGV)
|
||||
#elif defined(MPS_OS_FR) || defined(MPS_OS_XC)
|
||||
#define PROT_SIGNAL (SIGBUS)
|
||||
#endif
|
||||
|
||||
#if defined(MPS_OS_XC)
|
||||
#define PROT_SIGINFO_GOOD(info) (1)
|
||||
#elif defined(MPS_OS_O1)
|
||||
#define PROT_SIGINFO_GOOD(info) ((info)->si_code == SEGV_ACCERR)
|
||||
#elif define(MPS_OS_FR)
|
||||
#define PROT_SIGINFO_GOOD(info) ((info)->si_code == BUS_PAGE_FAULT)
|
||||
#endif
|
||||
|
||||
|
||||
/* Tracer Configuration -- see <code/trace.c> */
|
||||
|
||||
|
|
|
|||
147
mps/code/protix.c
Normal file
147
mps/code/protix.c
Normal file
|
|
@ -0,0 +1,147 @@
|
|||
/* protix.c: PROTECTION FOR UNIX
|
||||
*
|
||||
* $Id$
|
||||
* Copyright (c) 2001,2007 Ravenbrook Limited. See end of file for license.
|
||||
*
|
||||
* Somewhat generic across different Unix systems. Shared between
|
||||
* Darwin (OS X), OSF/1 (DIGITAL UNIX), and FreeBSD.
|
||||
*
|
||||
* May not actually work on OSF/1 due to lack of available machines.
|
||||
*
|
||||
* This file does not contain a signal handler. That's in protsgix.c
|
||||
* (for FreeBSD and Darwin on Intel); in protxcpp.c (for Darwin on
|
||||
* PowerPC).
|
||||
*/
|
||||
|
||||
|
||||
/* open sesame magic, see standards(5) */
|
||||
#define _POSIX_C_SOURCE 199309L
|
||||
#define _XOPEN_SOURCE_EXTENDED 1
|
||||
|
||||
#include "mpm.h"
|
||||
|
||||
#if !defined(MPS_OS_O1) && !defined(MPS_OS_FR) && !defined(MPS_OS_XC)
|
||||
#error "protix.c is Unix-specific, currently for MPS_OS_O1 FR or XC"
|
||||
#endif
|
||||
#ifndef PROTECTION
|
||||
#error "protix.c implements protection, but PROTECTION is not set"
|
||||
#endif
|
||||
|
||||
#include <limits.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include <sys/mman.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
SRCID(protix, "$Id$");
|
||||
|
||||
/* ProtSet -- set protection
|
||||
*
|
||||
* This is just a thin veneer on top of mprotect(2).
|
||||
*/
|
||||
|
||||
void ProtSet(Addr base, Addr limit, AccessSet mode)
|
||||
{
|
||||
int flags;
|
||||
|
||||
AVER(sizeof(size_t) == sizeof(Addr));
|
||||
AVER(base < limit);
|
||||
AVER(base != 0);
|
||||
AVER(AddrOffset(base, limit) <= INT_MAX); /* should be redundant */
|
||||
|
||||
/* Convert between MPS AccessSet and UNIX PROT thingies.
|
||||
In this function, AccessREAD means protect against read accesses
|
||||
(disallow them). PROT_READ means allow read accesses.
|
||||
*/
|
||||
switch(mode) {
|
||||
case AccessWRITE | AccessREAD:
|
||||
case AccessREAD: /* forbids writes as well */
|
||||
flags = PROT_NONE;
|
||||
break;
|
||||
case AccessWRITE:
|
||||
flags = PROT_READ | PROT_EXEC;
|
||||
break;
|
||||
case AccessSetEMPTY:
|
||||
flags = PROT_READ | PROT_WRITE | PROT_EXEC;
|
||||
break;
|
||||
default:
|
||||
NOTREACHED;
|
||||
flags = PROT_NONE;
|
||||
}
|
||||
|
||||
if(mprotect((caddr_t)base, (size_t)AddrOffset(base, limit), flags) != 0)
|
||||
NOTREACHED;
|
||||
}
|
||||
|
||||
|
||||
/* ProtSync -- synchronize protection settings with hardware
|
||||
*
|
||||
* This does nothing under Solaris.
|
||||
*/
|
||||
|
||||
void ProtSync(Arena arena)
|
||||
{
|
||||
UNUSED(arena);
|
||||
NOOP;
|
||||
}
|
||||
|
||||
|
||||
/* ProtTramp -- protection trampoline
|
||||
*
|
||||
* The protection trampoline is trivial under Unix, as there is
|
||||
* nothing that needs to be done in the dynamic context of the mutator in
|
||||
* order to catch faults. (Contrast this with Win32 Structured Exception
|
||||
* Handling.)
|
||||
*/
|
||||
|
||||
void ProtTramp(void **resultReturn, void *(*f)(void *, size_t),
|
||||
void *p, size_t s)
|
||||
{
|
||||
AVER(resultReturn != NULL);
|
||||
AVER(FUNCHECK(f));
|
||||
/* Can't check p and s as they are interpreted by the client */
|
||||
|
||||
*resultReturn = (*f)(p, s);
|
||||
}
|
||||
|
||||
|
||||
/* C. COPYRIGHT AND LICENSE
|
||||
*
|
||||
* Copyright (C) 2001-2007 Ravenbrook Limited <http://www.ravenbrook.com/>.
|
||||
* All rights reserved. This is an open source license. Contact
|
||||
* Ravenbrook for commercial licensing options.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are
|
||||
* met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* 3. Redistributions in any form must be accompanied by information on how
|
||||
* to obtain complete source code for this software and any accompanying
|
||||
* software that uses this software. The source code must either be
|
||||
* included in the distribution or be available for no more than the cost
|
||||
* of distribution plus a nominal fee, and must be freely redistributable
|
||||
* under reasonable conditions. For an executable file, complete source
|
||||
* code means the source code for all modules it contains. It does not
|
||||
* include source code for modules or files that typically accompany the
|
||||
* major components of the operating system on which the executable file
|
||||
* runs.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||
* PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
||||
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
183
mps/code/protsgix.c
Normal file
183
mps/code/protsgix.c
Normal file
|
|
@ -0,0 +1,183 @@
|
|||
/* protsgix.c: PROTECTION (SIGNAL HANDLER) FOR UNIX
|
||||
*
|
||||
* $Id$
|
||||
* Copyright (c) 2001-2007 Ravenbrook Limited. See end of file for license.
|
||||
*
|
||||
* Would ordinarily be part of protix.c (as the code is common to more
|
||||
* than one Unix-like operating system), but PowerPC Darwin requires a
|
||||
* different implementation of this module.
|
||||
*
|
||||
* SOURCES
|
||||
*
|
||||
* .source.man: sigaction(2): FreeBSD System Calls Manual.
|
||||
*
|
||||
* .source.merge: A blend from primarily the FreeBSD version (protfri3.c)
|
||||
* and the OSF/1 (DIGITAL UNIX) version (proto1.c); influenced by other
|
||||
* Unix versions.
|
||||
*/
|
||||
|
||||
#include "mpm.h"
|
||||
|
||||
#if !defined(MPS_OS_XC) && !defined(MPS_OS_FR) && !defined(MPS_OS_O1)
|
||||
#error "protsgix.c is Unix-specific, currently for MPS_OS_O1 FR or XC"
|
||||
#endif
|
||||
#if defined(MPS_OS_XC) && defined(MPS_ARCH_PP)
|
||||
#error "protsgix.c does not work on Darwin on PowerPC. Use protxcpp.c"
|
||||
#endif
|
||||
#ifndef PROTECTION
|
||||
#error "protsgix.c implements protection, but PROTECTION is not set"
|
||||
#endif
|
||||
|
||||
#include <signal.h> /* for many functions */
|
||||
#include <sys/types.h> /* for getpid */
|
||||
#include <unistd.h> /* for getpid */
|
||||
|
||||
SRCID(protsgix, "$Id$");
|
||||
|
||||
|
||||
/* The previously-installed signal action, as returned by */
|
||||
/* sigaction(3). See ProtSetup. */
|
||||
|
||||
static struct sigaction sigNext;
|
||||
|
||||
/* sigHandle -- protection signal handler
|
||||
*
|
||||
* This is the signal handler installed by ProtSetup to deal with
|
||||
* protection faults. It is installed on the PROT_SIGNAL (a macro
|
||||
* defined according to the platform in config.h) signal. It
|
||||
* decodes the protection fault details from the signal context and
|
||||
* passes them to ArenaAccess, which attempts to handle the fault and
|
||||
* remove its cause. If the fault is handled, then the handler
|
||||
* returns and execution resumes. If it isn't handled, then
|
||||
* sigHandle does its best to pass the signal on to the previously
|
||||
* installed signal handler (sigNext); which it does by signalling
|
||||
* itself using kill(2).
|
||||
*
|
||||
* .sigh.args: The sigaction manual page .source.man documents three
|
||||
* different handler prototypes: ANSI C sa_handler, traditional BSD
|
||||
* sa_handler, and POSIX SA_SIGINFO sa_sigaction. The ANSI C
|
||||
* prototype isn't powerful enough for us (can't get addresses), and
|
||||
* the manual page deprecates the BSD sa_handler in favour of the
|
||||
* POSIX SA_SIGINFO sa_sigaction. In that prototype, the arguments
|
||||
* are: signal number, pointer to signal info structure, pointer to
|
||||
* signal context structure.
|
||||
*
|
||||
* .sigh.context: We use the PROT_SIGINFO_GOOD macro to (usually) check
|
||||
* the info->si_code. The macro is platform dependent and defined in
|
||||
* config.h. We assume that info->si_addr is the fault address. This
|
||||
* assumption turns out to fail for PowerPC Darwin (we use protxcpp.c
|
||||
* there).
|
||||
*
|
||||
* .sigh.mode: The fault type (read/write) does not appear to be
|
||||
* available to the signal handler (see mail archive).
|
||||
*/
|
||||
|
||||
static void sigHandle(int sig, siginfo_t *info, void *context) /* .sigh.args */
|
||||
{
|
||||
int e;
|
||||
/* sigset renamed to asigset due to clash with global on Darwin. */
|
||||
sigset_t asigset, oldset;
|
||||
struct sigaction sa;
|
||||
|
||||
AVER(sig == PROT_SIGNAL);
|
||||
|
||||
/* .sigh.context */
|
||||
if(PROT_SIGINFO_GOOD(info)) {
|
||||
AccessSet mode;
|
||||
Addr base, limit;
|
||||
|
||||
mode = AccessREAD | AccessWRITE; /* .sigh.mode */
|
||||
|
||||
/* We assume that the access is for one word at the address. */
|
||||
base = (Addr)info->si_addr; /* .sigh.context */
|
||||
limit = AddrAdd(base, (Size)sizeof(Addr));
|
||||
|
||||
/* Offer each protection structure the opportunity to handle the */
|
||||
/* exception. If it succeeds, then allow the mutator to continue. */
|
||||
if(ArenaAccess(base, mode, NULL))
|
||||
return;
|
||||
}
|
||||
|
||||
/* The exception was not handled by any known protection structure, */
|
||||
/* so throw it to the previously installed handler. */
|
||||
|
||||
e = sigaction(PROT_SIGNAL, &sigNext, &sa);
|
||||
AVER(e == 0);
|
||||
sigemptyset(&asigset);
|
||||
sigaddset(&asigset, PROT_SIGNAL);
|
||||
e = sigprocmask(SIG_UNBLOCK, &asigset, &oldset);
|
||||
AVER(e == 0);
|
||||
kill(getpid(), PROT_SIGNAL);
|
||||
e = sigprocmask(SIG_SETMASK, &oldset, NULL);
|
||||
AVER(e == 0);
|
||||
e = sigaction(PROT_SIGNAL, &sa, NULL);
|
||||
AVER(e == 0);
|
||||
}
|
||||
|
||||
|
||||
/* ProtSetup -- global protection setup
|
||||
*
|
||||
* Under Unix, the global setup involves installing a signal
|
||||
* handler on PROT_SIGNAL to catch and handle page faults (see
|
||||
* sigHandle). The previous handler is recorded so that it can be
|
||||
* reached from sigHandle if it fails to handle the fault.
|
||||
*
|
||||
* NOTE: There are problems with this approach:
|
||||
* 1. we can't honor the sa_flags for the previous handler,
|
||||
* 2. what if this thread is suspended just after calling signal(3)?
|
||||
* The sigNext variable will never be initialized! */
|
||||
|
||||
void ProtSetup(void)
|
||||
{
|
||||
struct sigaction sa;
|
||||
int result;
|
||||
|
||||
sa.sa_sigaction = sigHandle;
|
||||
sigemptyset(&sa.sa_mask);
|
||||
sa.sa_flags = SA_SIGINFO;
|
||||
|
||||
result = sigaction(PROT_SIGNAL, &sa, &sigNext);
|
||||
AVER(result == 0);
|
||||
}
|
||||
|
||||
|
||||
/* C. COPYRIGHT AND LICENSE
|
||||
*
|
||||
* Copyright (C) 2001-2007 Ravenbrook Limited <http://www.ravenbrook.com/>.
|
||||
* All rights reserved. This is an open source license. Contact
|
||||
* Ravenbrook for commercial licensing options.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are
|
||||
* met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* 3. Redistributions in any form must be accompanied by information on how
|
||||
* to obtain complete source code for this software and any accompanying
|
||||
* software that uses this software. The source code must either be
|
||||
* included in the distribution or be available for no more than the cost
|
||||
* of distribution plus a nominal fee, and must be freely redistributable
|
||||
* under reasonable conditions. For an executable file, complete source
|
||||
* code means the source code for all modules it contains. It does not
|
||||
* include source code for modules or files that typically accompany the
|
||||
* major components of the operating system on which the executable file
|
||||
* runs.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||
* PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
||||
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
PFM = xci3gc
|
||||
|
||||
MPMPF = lockan.c than.c vmxc.c \
|
||||
protan.c prmcan.c span.c ssixi3.c
|
||||
protix.c protsgix.c prmcan.c span.c ssixi3.c
|
||||
SWPF = than.c vmxc.c protsw.c prmcan.c ssan.c
|
||||
|
||||
LIBS =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue