Handle page faults within the virtual kernel process itself (what would be
[dragonfly.git] / sys / platform / vkernel / i386 / exception.c
1
2 /*
3  * Copyright (c) 2006 The DragonFly Project.  All rights reserved.
4  * 
5  * This code is derived from software contributed to The DragonFly Project
6  * by Matthew Dillon <dillon@backplane.com>
7  * 
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  * 3. Neither the name of The DragonFly Project nor the names of its
19  *    contributors may be used to endorse or promote products derived
20  *    from this software without specific, prior written permission.
21  * 
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
26  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  * 
35  * $DragonFly: src/sys/platform/vkernel/i386/exception.c,v 1.1 2007/01/07 05:45:04 dillon Exp $
36  */
37
38 #include <sys/types.h>
39 #include <sys/systm.h>
40 #include <sys/kernel.h>
41 #include <machine/trap.h>
42 #include <machine/md_var.h>
43
44 #include <signal.h>
45
46 static void exc_segfault(int signo, siginfo_t *info, void *ctx);
47
48 void
49 init_exceptions(void)
50 {
51         struct sigaction sa;
52
53         bzero(&sa, sizeof(sa));
54         sa.sa_sigaction = exc_segfault;
55         sa.sa_flags |= SA_SIGINFO;
56         sigemptyset(&sa.sa_mask);
57         sigaction(SIGSEGV, &sa, NULL);
58 }
59
60 /*
61  * This function handles a segmentation fault.  
62  *
63  * XXX We assume that trapframe is a subset of ucontext.  It is as of
64  *     this writing.
65  */
66 static void
67 exc_segfault(int signo, siginfo_t *info, void *ctxp)
68 {
69         ucontext_t *ctx = ctxp;
70         int trapno;
71
72         printf("CAUGHT SEGFAULT EIP %08x ERR %08x TRAPNO %d\n",
73                 ctx->uc_mcontext.mc_eip,
74                 ctx->uc_mcontext.mc_err,
75                 ctx->uc_mcontext.mc_trapno);
76         kern_trap((struct trapframe *)&ctx->uc_mcontext.mc_fs);
77         splz();
78 }
79