2014-11-24 03:21:17 +00:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
use rt::util::report_overflow;
|
|
|
|
use core::prelude::*;
|
|
|
|
use ptr;
|
|
|
|
use mem;
|
|
|
|
use libc;
|
|
|
|
use libc::types::os::arch::extra::{LPVOID, DWORD, LONG, BOOL};
|
2014-12-07 02:34:37 +00:00
|
|
|
use sys_common::{stack, thread_info};
|
2014-11-24 03:21:17 +00:00
|
|
|
|
|
|
|
pub struct Handler {
|
|
|
|
_data: *mut libc::c_void
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Handler {
|
|
|
|
pub unsafe fn new() -> Handler {
|
|
|
|
make_handler()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Handler {
|
|
|
|
fn drop(&mut self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// get_task_info is called from an exception / signal handler.
|
|
|
|
// It returns the guard page of the current task or 0 if that
|
|
|
|
// guard page doesn't exist. None is returned if there's currently
|
|
|
|
// no local task.
|
2014-12-14 08:05:32 +00:00
|
|
|
unsafe fn get_task_guard_page() -> uint {
|
2014-12-07 02:34:37 +00:00
|
|
|
thread_info::stack_guard()
|
2014-11-24 03:21:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This is initialized in init() and only read from after
|
|
|
|
static mut PAGE_SIZE: uint = 0;
|
|
|
|
|
|
|
|
#[no_stack_check]
|
|
|
|
extern "system" fn vectored_handler(ExceptionInfo: *mut EXCEPTION_POINTERS) -> LONG {
|
|
|
|
unsafe {
|
|
|
|
let rec = &(*(*ExceptionInfo).ExceptionRecord);
|
|
|
|
let code = rec.ExceptionCode;
|
|
|
|
|
|
|
|
if code != EXCEPTION_STACK_OVERFLOW {
|
|
|
|
return EXCEPTION_CONTINUE_SEARCH;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We're calling into functions with stack checks,
|
|
|
|
// however stack checks by limit should be disabled on Windows
|
|
|
|
stack::record_sp_limit(0);
|
|
|
|
|
2014-12-14 08:05:32 +00:00
|
|
|
report_overflow();
|
2014-11-24 03:21:17 +00:00
|
|
|
|
|
|
|
EXCEPTION_CONTINUE_SEARCH
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe fn init() {
|
|
|
|
let mut info = mem::zeroed();
|
|
|
|
libc::GetSystemInfo(&mut info);
|
|
|
|
PAGE_SIZE = info.dwPageSize as uint;
|
|
|
|
|
|
|
|
if AddVectoredExceptionHandler(0, vectored_handler) == ptr::null_mut() {
|
|
|
|
panic!("failed to install exception handler");
|
|
|
|
}
|
|
|
|
|
|
|
|
mem::forget(make_handler());
|
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe fn cleanup() {
|
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe fn make_handler() -> Handler {
|
|
|
|
if SetThreadStackGuarantee(&mut 0x5000) == 0 {
|
|
|
|
panic!("failed to reserve stack space for exception handling");
|
|
|
|
}
|
|
|
|
|
|
|
|
Handler { _data: 0i as *mut libc::c_void }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct EXCEPTION_RECORD {
|
|
|
|
pub ExceptionCode: DWORD,
|
|
|
|
pub ExceptionFlags: DWORD,
|
|
|
|
pub ExceptionRecord: *mut EXCEPTION_RECORD,
|
|
|
|
pub ExceptionAddress: LPVOID,
|
|
|
|
pub NumberParameters: DWORD,
|
2015-01-01 04:40:24 +00:00
|
|
|
pub ExceptionInformation: [LPVOID; EXCEPTION_MAXIMUM_PARAMETERS]
|
2014-11-24 03:21:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct EXCEPTION_POINTERS {
|
|
|
|
pub ExceptionRecord: *mut EXCEPTION_RECORD,
|
|
|
|
pub ContextRecord: LPVOID
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type PVECTORED_EXCEPTION_HANDLER = extern "system"
|
|
|
|
fn(ExceptionInfo: *mut EXCEPTION_POINTERS) -> LONG;
|
|
|
|
|
|
|
|
pub type ULONG = libc::c_ulong;
|
|
|
|
|
|
|
|
const EXCEPTION_CONTINUE_SEARCH: LONG = 0;
|
|
|
|
const EXCEPTION_MAXIMUM_PARAMETERS: uint = 15;
|
|
|
|
const EXCEPTION_STACK_OVERFLOW: DWORD = 0xc00000fd;
|
|
|
|
|
|
|
|
extern "system" {
|
|
|
|
fn AddVectoredExceptionHandler(FirstHandler: ULONG,
|
|
|
|
VectoredHandler: PVECTORED_EXCEPTION_HANDLER)
|
|
|
|
-> LPVOID;
|
|
|
|
fn SetThreadStackGuarantee(StackSizeInBytes: *mut ULONG) -> BOOL;
|
|
|
|
}
|