📄 base_trap.h
字号:
/* * base_trap.h * Modified for use in 15-410 at CMU * Zachary Anderson(zra) *//* * Copyright (c) 1994-1999 The University of Utah and the Flux Group. * All rights reserved. * * This file is part of the Flux OSKit. The OSKit is free software, also known * as "open source;" you can redistribute it and/or modify it under the terms * of the GNU General Public License (GPL), version 2, as published by the Free * Software Foundation (FSF). To explore alternate licensing terms, contact * the University of Utah at csl-dist@cs.utah.edu or +1-801-585-3271. * * The OSKit is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GPL for more details. You should have * received a copy of the GPL along with the OSKit; see the file COPYING. If * not, write to the FSF, 59 Temple Place #330, Boston, MA 02111-1307, USA. *//* * Mach Operating System * Copyright (c) 1991,1990,1989 Carnegie Mellon University. * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */#ifndef _BASE_TRAP_H_#define _BASE_TRAP_H_#ifndef ASSEMBLER/* * This structure corresponds to the state of user registers * as saved upon kernel trap/interrupt entry. * As always, it is only a default implementation; * a well-optimized kernel will probably want to override it * with something that allows better optimization. */struct trap_state{ /* Saved segment registers */ unsigned int gs; unsigned int fs; unsigned int es; unsigned int ds; /* PUSHA register state frame */ unsigned int edi; unsigned int esi; unsigned int ebp; unsigned int cr2; /* we save cr2 over esp for page faults */ unsigned int ebx; unsigned int edx; unsigned int ecx; unsigned int eax; /* Processor trap number, 0-31. */ unsigned int trapno; /* Error code pushed by the processor, 0 if none. */ unsigned int err; /* Processor state frame */ unsigned int eip; unsigned int cs; unsigned int eflags; unsigned int esp; unsigned int ss; /* Virtual 8086 segment registers */ unsigned int v86_es; unsigned int v86_ds; unsigned int v86_fs; unsigned int v86_gs;};/* * The actual trap_state frame pushed by the processor * varies in size depending on where the trap came from. */#define TR_KSIZE ((int)&((struct trap_state*)0)->esp)#define TR_USIZE ((int)&((struct trap_state*)0)->v86_es)#define TR_V86SIZE sizeof(struct trap_state)/* * This library routine initializes the trap vectors in the base IDT * to point to default trap handler entrypoints * which merely push the standard trap saved-state frame above * and call the default trap handler routine, 'trap_handler'. */extern void base_trap_init(void);/* * This gate initialization table is used by base_trap_init * to initialize the base IDT to the default trap entrypoint code, * which pushes the state frame described above * and calls the trap handler, below. */extern struct gate_init_entry base_trap_inittab[];/* * There are 32 trap vectors. At present 19-31 are Intel reserved, but * define trap vectors for them anyway since presumably they will be * defined to do something interesting at some point in the future. */#define BASE_TRAP_COUNT 32/* * In the base oskit environment, each trap can have an associated * trap handler in the following table. The default trap entrypoint * code checks this function pointer (after saving the trap_state * frame described by the structure above), and if non-null, calls the * C function it points to. The function can examine and modify the * provided trap_state as appropriate. If the trap handler function * returns zero, execution will be resumed or resterted with the final * trap_state; if the trap handler function returns nonzero, the trap * handler dumps the trap state to the console and panics. */extern int (*base_trap_handlers[])(struct trap_state *ts);/* * Default trap handler for unexpected traps, which simply calls * trap_dump_panic. */extern int base_trap_default_handler(struct trap_state *ts);/* * Trap handler for traps expected but known to be spurious and meaningless * (e.g. due to buggy hardware). It simply does nothing and returns. */extern int base_trap_ignore_handler(struct trap_state *ts);/* * This routine dumps the contents of the specified trap_state structure * to the console using printf. * It is normally called automatically from trap_dump_panic * when an unexpected trap occurs; * however, can be called at other times as well * (e.g., for debugging custom trap handlers). */void trap_dump(const struct trap_state *st);/* * This routine simply calls trap_dump to dump the trap state, * and then calls panic. * It is used by the default trap entrypoint code * when a trap occurs and there is no trap handler, * and by the UNEXPECTED_TRAP assembly language macro below. */void trap_dump_panic(const struct trap_state *st);/* * External entrypoint for modules that catch particular traps (like svm) * and want to turn them into delivered signals. */int oskit_sendsig(int signo, struct trap_state *ts);/* * Generic trap handler for converting any trap into a signal. Can * be called by external modules that do not know what to do with a * trap. Both entrypoints depend on the application C library having * called base_signal_init() to tell the kernel signal code that it * wants to receive signals. Otherwise, traps will continue to panic. */int sendsig_trap_handler(struct trap_state *ts);#else /* ASSEMBLER */#include <asm.h>/* * Simple assembly language macro that can be called from most anywhere * to dump a trap state frame at the top of the kernel stack and panic. */#define UNEXPECTED_TRAP \ movw %ss,%ax ;\ movw %ax,%ds ;\ movw %ax,%es ;\ movl %esp,%eax ;\ pushl %eax ;\ call EXT(trap_dump_panic) ;\#endif /* ASSEMBLER */#endif /* _BASE_TRAP_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -