Subversion Repositories HelenOS

Rev

Rev 2787 | Rev 3018 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2787 Rev 2799
1
/*
1
/*
2
 * Copyright (c) 2005 Ondrej Palkovsky
2
 * Copyright (c) 2005 Ondrej Palkovsky
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup genericinterrupt
29
/** @addtogroup genericinterrupt
30
 * @{
30
 * @{
31
 */
31
 */
32
/**
32
/**
33
 * @file
33
 * @file
34
 * @brief   Interrupt redirector.
34
 * @brief   Interrupt redirector.
35
 *
35
 *
36
 * This file provides means of registering interrupt handlers
36
 * This file provides means of registering interrupt handlers
37
 * by kernel functions and calling the handlers when interrupts
37
 * by kernel functions and calling the handlers when interrupts
38
 * occur.
38
 * occur.
39
 */
39
 */
40
 
40
 
41
#include <interrupt.h>
41
#include <interrupt.h>
42
#include <debug.h>
42
#include <debug.h>
43
#include <console/kconsole.h>
43
#include <console/kconsole.h>
44
#include <console/console.h>
44
#include <console/console.h>
45
#include <console/chardev.h>
45
#include <console/chardev.h>
46
#include <console/cmd.h>
46
#include <console/cmd.h>
47
#include <panic.h>
47
#include <panic.h>
48
#include <print.h>
48
#include <print.h>
49
#include <symtab.h>
49
#include <symtab.h>
50
#include <tdebug/tdebug.h>
-
 
51
 
50
 
52
static struct {
51
static struct {
53
    const char *name;
52
    const char *name;
54
    iroutine f;
53
    iroutine f;
55
} exc_table[IVT_ITEMS];
54
} exc_table[IVT_ITEMS];
56
 
55
 
57
SPINLOCK_INITIALIZE(exctbl_lock);
56
SPINLOCK_INITIALIZE(exctbl_lock);
58
 
57
 
59
/** Register exception handler
58
/** Register exception handler
60
 *
59
 *
61
 * @param n Exception number
60
 * @param n Exception number
62
 * @param name Description
61
 * @param name Description
63
 * @param f Exception handler
62
 * @param f Exception handler
64
 */
63
 */
65
iroutine exc_register(int n, const char *name, iroutine f)
64
iroutine exc_register(int n, const char *name, iroutine f)
66
{
65
{
67
    ASSERT(n < IVT_ITEMS);
66
    ASSERT(n < IVT_ITEMS);
68
   
67
   
69
    iroutine old;
68
    iroutine old;
70
   
69
   
71
    spinlock_lock(&exctbl_lock);
70
    spinlock_lock(&exctbl_lock);
72
 
71
 
73
    old = exc_table[n].f;
72
    old = exc_table[n].f;
74
    exc_table[n].f = f;
73
    exc_table[n].f = f;
75
    exc_table[n].name = name;
74
    exc_table[n].name = name;
76
 
75
 
77
    spinlock_unlock(&exctbl_lock); 
76
    spinlock_unlock(&exctbl_lock); 
78
 
77
 
79
    return old;
78
    return old;
80
}
79
}
81
 
80
 
82
/** Dispatch exception according to exception table
81
/** Dispatch exception according to exception table
83
 *
82
 *
84
 * Called directly from the assembler code.
83
 * Called directly from the assembler code.
85
 * CPU is interrupts_disable()'d.
84
 * CPU is interrupts_disable()'d.
86
 */
85
 */
87
void exc_dispatch(int n, istate_t *istate)
86
void exc_dispatch(int n, istate_t *istate)
88
{
87
{
89
    ASSERT(n < IVT_ITEMS);
88
    ASSERT(n < IVT_ITEMS);
90
 
-
 
91
    if (THREAD && istate_from_uspace(istate)) {
-
 
92
        /* Record userspace state */
-
 
93
        THREAD->tdebug.uspace_state = istate;
-
 
94
    }
89
   
95
 
-
 
96
    exc_table[n].f(n + IVT_FIRST, istate);
90
    exc_table[n].f(n + IVT_FIRST, istate);
97
 
-
 
98
    if (THREAD && istate_from_uspace(istate)) {
-
 
99
        /* Clear it again (mostly for dev. and debugging purposes) */
-
 
100
        THREAD->tdebug.uspace_state = NULL;
-
 
101
    }
-
 
102
 
-
 
103
    /* This is a safe place to exit exiting thread */
91
    /* This is a safe place to exit exiting thread */
104
    if (THREAD && THREAD->interrupted && istate_from_uspace(istate))
92
    if (THREAD && THREAD->interrupted && istate_from_uspace(istate))
105
        thread_exit();
93
        thread_exit();
106
}
94
}
107
 
95
 
108
/** Default 'null' exception handler */
96
/** Default 'null' exception handler */
109
static void exc_undef(int n, istate_t *istate)
97
static void exc_undef(int n, istate_t *istate)
110
{
98
{
111
    fault_if_from_uspace(istate, "Unhandled exception %d.", n);
99
    fault_if_from_uspace(istate, "Unhandled exception %d.", n);
112
    panic("Unhandled exception %d.", n);
100
    panic("Unhandled exception %d.", n);
113
}
101
}
114
 
102
 
115
/** kconsole cmd - print all exceptions */
103
/** kconsole cmd - print all exceptions */
116
static int exc_print_cmd(cmd_arg_t *argv)
104
static int exc_print_cmd(cmd_arg_t *argv)
117
{
105
{
118
#if (IVT_ITEMS > 0)
106
#if (IVT_ITEMS > 0)
119
    unsigned int i;
107
    unsigned int i;
120
    char *symbol;
108
    char *symbol;
121
 
109
 
122
    spinlock_lock(&exctbl_lock);
110
    spinlock_lock(&exctbl_lock);
123
   
111
   
124
    if (sizeof(void *) == 4) {
112
    if (sizeof(void *) == 4) {
125
        printf("Exc Description          Handler    Symbol\n");
113
        printf("Exc Description          Handler    Symbol\n");
126
        printf("--- -------------------- ---------- --------\n");
114
        printf("--- -------------------- ---------- --------\n");
127
    } else {
115
    } else {
128
        printf("Exc Description          Handler            Symbol\n");
116
        printf("Exc Description          Handler            Symbol\n");
129
        printf("--- -------------------- ------------------ --------\n");
117
        printf("--- -------------------- ------------------ --------\n");
130
    }
118
    }
131
   
119
   
132
    for (i = 0; i < IVT_ITEMS; i++) {
120
    for (i = 0; i < IVT_ITEMS; i++) {
133
        symbol = get_symtab_entry((unative_t) exc_table[i].f);
121
        symbol = get_symtab_entry((unative_t) exc_table[i].f);
134
        if (!symbol)
122
        if (!symbol)
135
            symbol = "not found";
123
            symbol = "not found";
136
       
124
       
137
        if (sizeof(void *) == 4)
125
        if (sizeof(void *) == 4)
138
            printf("%-3u %-20s %#10zx %s\n", i + IVT_FIRST, exc_table[i].name,
126
            printf("%-3u %-20s %#10zx %s\n", i + IVT_FIRST, exc_table[i].name,
139
                exc_table[i].f, symbol);
127
                exc_table[i].f, symbol);
140
        else
128
        else
141
            printf("%-3u %-20s %#18zx %s\n", i + IVT_FIRST, exc_table[i].name,
129
            printf("%-3u %-20s %#18zx %s\n", i + IVT_FIRST, exc_table[i].name,
142
                exc_table[i].f, symbol);
130
                exc_table[i].f, symbol);
143
       
131
       
144
        if (((i + 1) % 20) == 0) {
132
        if (((i + 1) % 20) == 0) {
145
            printf(" -- Press any key to continue -- ");
133
            printf(" -- Press any key to continue -- ");
146
            spinlock_unlock(&exctbl_lock);
134
            spinlock_unlock(&exctbl_lock);
147
            getc(stdin);
135
            getc(stdin);
148
            spinlock_lock(&exctbl_lock);
136
            spinlock_lock(&exctbl_lock);
149
            printf("\n");
137
            printf("\n");
150
        }
138
        }
151
    }
139
    }
152
   
140
   
153
    spinlock_unlock(&exctbl_lock);
141
    spinlock_unlock(&exctbl_lock);
154
#endif
142
#endif
155
   
143
   
156
    return 1;
144
    return 1;
157
}
145
}
158
 
146
 
159
static cmd_info_t exc_info = {
147
static cmd_info_t exc_info = {
160
    .name = "exc",
148
    .name = "exc",
161
    .description = "Print exception table.",
149
    .description = "Print exception table.",
162
    .func = exc_print_cmd,
150
    .func = exc_print_cmd,
163
    .help = NULL,
151
    .help = NULL,
164
    .argc = 0,
152
    .argc = 0,
165
    .argv = NULL
153
    .argv = NULL
166
};
154
};
167
 
155
 
168
/** Initialize generic exception handling support */
156
/** Initialize generic exception handling support */
169
void exc_init(void)
157
void exc_init(void)
170
{
158
{
171
    int i;
159
    int i;
172
 
160
 
173
    for (i=0;i < IVT_ITEMS; i++)
161
    for (i=0;i < IVT_ITEMS; i++)
174
        exc_register(i, "undef", (iroutine) exc_undef);
162
        exc_register(i, "undef", (iroutine) exc_undef);
175
 
163
 
176
    cmd_initialize(&exc_info);
164
    cmd_initialize(&exc_info);
177
    if (!cmd_register(&exc_info))
165
    if (!cmd_register(&exc_info))
178
        panic("could not register command %s\n", exc_info.name);
166
        panic("could not register command %s\n", exc_info.name);
179
}
167
}
180
 
168
 
181
/** @}
169
/** @}
182
 */
170
 */
183
 
171