| 1 | /*
|
|---|
| 2 | * Copyright (c) 2005 Ondrej Palkovsky
|
|---|
| 3 | * All rights reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 6 | * modification, are permitted provided that the following conditions
|
|---|
| 7 | * are met:
|
|---|
| 8 | *
|
|---|
| 9 | * - Redistributions of source code must retain the above copyright
|
|---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 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
|
|---|
| 15 | * derived from this software without specific prior written permission.
|
|---|
| 16 | *
|
|---|
| 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
|
|---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 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
|
|---|
| 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
|
|---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| 29 | /** @addtogroup genericinterrupt
|
|---|
| 30 | * @{
|
|---|
| 31 | */
|
|---|
| 32 | /**
|
|---|
| 33 | * @file
|
|---|
| 34 | * @brief Interrupt redirector.
|
|---|
| 35 | *
|
|---|
| 36 | * This file provides means of registering interrupt handlers
|
|---|
| 37 | * by kernel functions and calling the handlers when interrupts
|
|---|
| 38 | * occur.
|
|---|
| 39 | *
|
|---|
| 40 | */
|
|---|
| 41 |
|
|---|
| 42 | #include <interrupt.h>
|
|---|
| 43 | #include <debug.h>
|
|---|
| 44 | #include <console/kconsole.h>
|
|---|
| 45 | #include <console/console.h>
|
|---|
| 46 | #include <console/cmd.h>
|
|---|
| 47 | #include <ipc/event.h>
|
|---|
| 48 | #include <synch/mutex.h>
|
|---|
| 49 | #include <time/delay.h>
|
|---|
| 50 | #include <macros.h>
|
|---|
| 51 | #include <panic.h>
|
|---|
| 52 | #include <print.h>
|
|---|
| 53 | #include <symtab.h>
|
|---|
| 54 | #include <proc/thread.h>
|
|---|
| 55 | #include <arch/cycle.h>
|
|---|
| 56 | #include <str.h>
|
|---|
| 57 |
|
|---|
| 58 | exc_table_t exc_table[IVT_ITEMS];
|
|---|
| 59 | IRQ_SPINLOCK_INITIALIZE(exctbl_lock);
|
|---|
| 60 |
|
|---|
| 61 | /** Register exception handler
|
|---|
| 62 | *
|
|---|
| 63 | * @param n Exception number.
|
|---|
| 64 | * @param name Description.
|
|---|
| 65 | * @param hot Whether the exception is actually handled
|
|---|
| 66 | * in any meaningful way.
|
|---|
| 67 | * @param handler New exception handler.
|
|---|
| 68 | *
|
|---|
| 69 | * @return Previously registered exception handler.
|
|---|
| 70 | *
|
|---|
| 71 | */
|
|---|
| 72 | iroutine_t exc_register(unsigned int n, const char *name, bool hot,
|
|---|
| 73 | iroutine_t handler)
|
|---|
| 74 | {
|
|---|
| 75 | #if (IVT_ITEMS > 0)
|
|---|
| 76 | ASSERT(n < IVT_ITEMS);
|
|---|
| 77 | #endif
|
|---|
| 78 |
|
|---|
| 79 | irq_spinlock_lock(&exctbl_lock, true);
|
|---|
| 80 |
|
|---|
| 81 | iroutine_t old = exc_table[n].handler;
|
|---|
| 82 | exc_table[n].handler = handler;
|
|---|
| 83 | exc_table[n].name = name;
|
|---|
| 84 | exc_table[n].hot = hot;
|
|---|
| 85 | exc_table[n].cycles = 0;
|
|---|
| 86 | exc_table[n].count = 0;
|
|---|
| 87 |
|
|---|
| 88 | irq_spinlock_unlock(&exctbl_lock, true);
|
|---|
| 89 |
|
|---|
| 90 | return old;
|
|---|
| 91 | }
|
|---|
| 92 |
|
|---|
| 93 | /** Dispatch exception according to exception table
|
|---|
| 94 | *
|
|---|
| 95 | * Called directly from the assembler code.
|
|---|
| 96 | * CPU is interrupts_disable()'d.
|
|---|
| 97 | *
|
|---|
| 98 | */
|
|---|
| 99 | void exc_dispatch(unsigned int n, istate_t *istate)
|
|---|
| 100 | {
|
|---|
| 101 | #if (IVT_ITEMS > 0)
|
|---|
| 102 | ASSERT(n < IVT_ITEMS);
|
|---|
| 103 | #endif
|
|---|
| 104 |
|
|---|
| 105 | /* Account user cycles */
|
|---|
| 106 | if (THREAD) {
|
|---|
| 107 | irq_spinlock_lock(&THREAD->lock, false);
|
|---|
| 108 | thread_update_accounting(true);
|
|---|
| 109 | irq_spinlock_unlock(&THREAD->lock, false);
|
|---|
| 110 | }
|
|---|
| 111 |
|
|---|
| 112 | uint64_t begin_cycle = get_cycle();
|
|---|
| 113 |
|
|---|
| 114 | #ifdef CONFIG_UDEBUG
|
|---|
| 115 | if (THREAD)
|
|---|
| 116 | THREAD->udebug.uspace_state = istate;
|
|---|
| 117 | #endif
|
|---|
| 118 |
|
|---|
| 119 | exc_table[n].handler(n + IVT_FIRST, istate);
|
|---|
| 120 |
|
|---|
| 121 | #ifdef CONFIG_UDEBUG
|
|---|
| 122 | if (THREAD)
|
|---|
| 123 | THREAD->udebug.uspace_state = NULL;
|
|---|
| 124 | #endif
|
|---|
| 125 |
|
|---|
| 126 | /* This is a safe place to exit exiting thread */
|
|---|
| 127 | if ((THREAD) && (THREAD->interrupted) && (istate_from_uspace(istate)))
|
|---|
| 128 | thread_exit();
|
|---|
| 129 |
|
|---|
| 130 | /* Account exception handling */
|
|---|
| 131 | uint64_t end_cycle = get_cycle();
|
|---|
| 132 |
|
|---|
| 133 | exc_table[n].cycles += end_cycle - begin_cycle;
|
|---|
| 134 | exc_table[n].count++;
|
|---|
| 135 |
|
|---|
| 136 | /* Do not charge THREAD for exception cycles */
|
|---|
| 137 | if (THREAD) {
|
|---|
| 138 | irq_spinlock_lock(&THREAD->lock, false);
|
|---|
| 139 | THREAD->last_cycle = end_cycle;
|
|---|
| 140 | irq_spinlock_unlock(&THREAD->lock, false);
|
|---|
| 141 | }
|
|---|
| 142 | }
|
|---|
| 143 |
|
|---|
| 144 | /** Default 'null' exception handler
|
|---|
| 145 | *
|
|---|
| 146 | */
|
|---|
| 147 | static void exc_undef(unsigned int n, istate_t *istate)
|
|---|
| 148 | {
|
|---|
| 149 | fault_if_from_uspace(istate, "Unhandled exception %u.", n);
|
|---|
| 150 | panic("Unhandled exception %u.", n);
|
|---|
| 151 | }
|
|---|
| 152 |
|
|---|
| 153 | /** Terminate thread and task if exception came from userspace.
|
|---|
| 154 | *
|
|---|
| 155 | */
|
|---|
| 156 | void fault_if_from_uspace(istate_t *istate, const char *fmt, ...)
|
|---|
| 157 | {
|
|---|
| 158 | if (!istate_from_uspace(istate))
|
|---|
| 159 | return;
|
|---|
| 160 |
|
|---|
| 161 | printf("Task %s (%" PRIu64 ") killed due to an exception at "
|
|---|
| 162 | "program counter %p.\n", TASK->name, TASK->taskid,
|
|---|
| 163 | istate_get_pc(istate));
|
|---|
| 164 |
|
|---|
| 165 | stack_trace_istate(istate);
|
|---|
| 166 |
|
|---|
| 167 | printf("Kill message: ");
|
|---|
| 168 |
|
|---|
| 169 | va_list args;
|
|---|
| 170 | va_start(args, fmt);
|
|---|
| 171 | vprintf(fmt, args);
|
|---|
| 172 | va_end(args);
|
|---|
| 173 | printf("\n");
|
|---|
| 174 |
|
|---|
| 175 | /*
|
|---|
| 176 | * Userspace can subscribe for FAULT events to take action
|
|---|
| 177 | * whenever a thread faults. (E.g. take a dump, run a debugger).
|
|---|
| 178 | * The notification is always available, but unless Udebug is enabled,
|
|---|
| 179 | * that's all you get.
|
|---|
| 180 | */
|
|---|
| 181 | if (event_is_subscribed(EVENT_FAULT)) {
|
|---|
| 182 | /* Notify the subscriber that a fault occurred. */
|
|---|
| 183 | event_notify_3(EVENT_FAULT, LOWER32(TASK->taskid),
|
|---|
| 184 | UPPER32(TASK->taskid), (unative_t) THREAD);
|
|---|
| 185 |
|
|---|
| 186 | #ifdef CONFIG_UDEBUG
|
|---|
| 187 | /* Wait for a debugging session. */
|
|---|
| 188 | udebug_thread_fault();
|
|---|
| 189 | #endif
|
|---|
| 190 | }
|
|---|
| 191 |
|
|---|
| 192 | task_kill(TASK->taskid);
|
|---|
| 193 | thread_exit();
|
|---|
| 194 | }
|
|---|
| 195 |
|
|---|
| 196 | #ifdef CONFIG_KCONSOLE
|
|---|
| 197 |
|
|---|
| 198 | static char flag_buf[MAX_CMDLINE + 1];
|
|---|
| 199 |
|
|---|
| 200 | /** Print all exceptions
|
|---|
| 201 | *
|
|---|
| 202 | */
|
|---|
| 203 | static int cmd_exc_print(cmd_arg_t *argv)
|
|---|
| 204 | {
|
|---|
| 205 | bool excs_all;
|
|---|
| 206 |
|
|---|
| 207 | if (str_cmp(flag_buf, "-a") == 0)
|
|---|
| 208 | excs_all = true;
|
|---|
| 209 | else if (str_cmp(flag_buf, "") == 0)
|
|---|
| 210 | excs_all = false;
|
|---|
| 211 | else {
|
|---|
| 212 | printf("Unknown argument \"%s\".\n", flag_buf);
|
|---|
| 213 | return 1;
|
|---|
| 214 | }
|
|---|
| 215 |
|
|---|
| 216 | #if (IVT_ITEMS > 0)
|
|---|
| 217 | unsigned int i;
|
|---|
| 218 | unsigned int rows;
|
|---|
| 219 |
|
|---|
| 220 | irq_spinlock_lock(&exctbl_lock, true);
|
|---|
| 221 |
|
|---|
| 222 | #ifdef __32_BITS__
|
|---|
| 223 | printf("[exc ] [description ] [count ] [cycles ]"
|
|---|
| 224 | " [handler ] [symbol\n");
|
|---|
| 225 | rows = 1;
|
|---|
| 226 | #endif
|
|---|
| 227 |
|
|---|
| 228 | #ifdef __64_BITS__
|
|---|
| 229 | printf("[exc ] [description ] [count ] [cycles ]"
|
|---|
| 230 | " [handler ]\n");
|
|---|
| 231 | printf(" [symbol\n");
|
|---|
| 232 | rows = 2;
|
|---|
| 233 | #endif
|
|---|
| 234 |
|
|---|
| 235 | for (i = 0; i < IVT_ITEMS; i++) {
|
|---|
| 236 | if ((!excs_all) && (!exc_table[i].hot))
|
|---|
| 237 | continue;
|
|---|
| 238 |
|
|---|
| 239 | uint64_t count;
|
|---|
| 240 | char count_suffix;
|
|---|
| 241 |
|
|---|
| 242 | order_suffix(exc_table[i].count, &count, &count_suffix);
|
|---|
| 243 |
|
|---|
| 244 | uint64_t cycles;
|
|---|
| 245 | char cycles_suffix;
|
|---|
| 246 |
|
|---|
| 247 | order_suffix(exc_table[i].cycles, &cycles, &cycles_suffix);
|
|---|
| 248 |
|
|---|
| 249 | const char *symbol =
|
|---|
| 250 | symtab_fmt_name_lookup((unative_t) exc_table[i].handler);
|
|---|
| 251 |
|
|---|
| 252 | #ifdef __32_BITS__
|
|---|
| 253 | printf("%-8u %-20s %9" PRIu64 "%c %9" PRIu64 "%c %10p %s\n",
|
|---|
| 254 | i + IVT_FIRST, exc_table[i].name, count, count_suffix,
|
|---|
| 255 | cycles, cycles_suffix, exc_table[i].handler, symbol);
|
|---|
| 256 |
|
|---|
| 257 | PAGING(rows, 1, irq_spinlock_unlock(&exctbl_lock, true),
|
|---|
| 258 | irq_spinlock_lock(&exctbl_lock, true));
|
|---|
| 259 | #endif
|
|---|
| 260 |
|
|---|
| 261 | #ifdef __64_BITS__
|
|---|
| 262 | printf("%-8u %-20s %9" PRIu64 "%c %9" PRIu64 "%c %18p\n",
|
|---|
| 263 | i + IVT_FIRST, exc_table[i].name, count, count_suffix,
|
|---|
| 264 | cycles, cycles_suffix, exc_table[i].handler);
|
|---|
| 265 | printf(" %s\n", symbol);
|
|---|
| 266 |
|
|---|
| 267 | PAGING(rows, 2, irq_spinlock_unlock(&exctbl_lock, true),
|
|---|
| 268 | irq_spinlock_lock(&exctbl_lock, true));
|
|---|
| 269 | #endif
|
|---|
| 270 | }
|
|---|
| 271 |
|
|---|
| 272 | irq_spinlock_unlock(&exctbl_lock, true);
|
|---|
| 273 | #else /* (IVT_ITEMS > 0) */
|
|---|
| 274 |
|
|---|
| 275 | printf("No exception table%s.\n", excs_all ? " (showing all exceptions)" : "");
|
|---|
| 276 |
|
|---|
| 277 | #endif /* (IVT_ITEMS > 0) */
|
|---|
| 278 |
|
|---|
| 279 | return 1;
|
|---|
| 280 | }
|
|---|
| 281 |
|
|---|
| 282 | static cmd_arg_t exc_argv = {
|
|---|
| 283 | .type = ARG_TYPE_STRING_OPTIONAL,
|
|---|
| 284 | .buffer = flag_buf,
|
|---|
| 285 | .len = sizeof(flag_buf)
|
|---|
| 286 | };
|
|---|
| 287 |
|
|---|
| 288 | static cmd_info_t exc_info = {
|
|---|
| 289 | .name = "exc",
|
|---|
| 290 | .description = "Print exception table (use -a for all exceptions).",
|
|---|
| 291 | .func = cmd_exc_print,
|
|---|
| 292 | .help = NULL,
|
|---|
| 293 | .argc = 1,
|
|---|
| 294 | .argv = &exc_argv
|
|---|
| 295 | };
|
|---|
| 296 |
|
|---|
| 297 | #endif /* CONFIG_KCONSOLE */
|
|---|
| 298 |
|
|---|
| 299 | /** Initialize generic exception handling support
|
|---|
| 300 | *
|
|---|
| 301 | */
|
|---|
| 302 | void exc_init(void)
|
|---|
| 303 | {
|
|---|
| 304 | (void) exc_undef;
|
|---|
| 305 |
|
|---|
| 306 | #if (IVT_ITEMS > 0)
|
|---|
| 307 | unsigned int i;
|
|---|
| 308 |
|
|---|
| 309 | for (i = 0; i < IVT_ITEMS; i++)
|
|---|
| 310 | exc_register(i, "undef", false, (iroutine_t) exc_undef);
|
|---|
| 311 | #endif
|
|---|
| 312 |
|
|---|
| 313 | #ifdef CONFIG_KCONSOLE
|
|---|
| 314 | cmd_initialize(&exc_info);
|
|---|
| 315 | if (!cmd_register(&exc_info))
|
|---|
| 316 | printf("Cannot register command %s\n", exc_info.name);
|
|---|
| 317 | #endif
|
|---|
| 318 | }
|
|---|
| 319 |
|
|---|
| 320 | /** @}
|
|---|
| 321 | */
|
|---|