2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Mach Operating System
24 * Copyright (c) 1987 Carnegie-Mellon University
25 * All rights reserved. The CMU software License Agreement specifies
26 * the terms and conditions for use and redistribution.
30 *********************************************************************
32 **********************************************************************
35 #include <sys/param.h>
37 #include <mach/boolean.h>
38 #include <mach/exception.h>
39 #include <mach/kern_return.h>
40 #include <mach/message.h>
41 #include <mach/port.h>
42 #include <mach/mig_errors.h>
43 #include <kern/task.h>
44 #include <kern/thread.h>
45 #include <kern/sched_prim.h>
46 #include <kern/thread_act.h>
47 #include <kern/kalloc.h>
51 #include <sys/systm.h>
52 #include <sys/ux_exception.h>
55 * Unix exception handler.
58 static void ux_exception();
60 decl_simple_lock_data(static, ux_handler_init_lock
)
61 mach_port_name_t ux_exception_port
;
62 static task_t ux_handler_self
;
68 task_t self
= current_task();
69 mach_port_name_t exc_port_name
;
70 mach_port_name_t exc_set_name
;
72 (void) thread_funnel_set(kernel_flock
, TRUE
);
74 /* self->kernel_vm_space = TRUE; */
75 ux_handler_self
= self
;
79 * Allocate a port set that we will receive on.
81 if (mach_port_allocate(get_task_ipcspace(ux_handler_self
), MACH_PORT_RIGHT_PORT_SET
, &exc_set_name
) != MACH_MSG_SUCCESS
)
82 panic("ux_handler: port_set_allocate failed");
85 * Allocate an exception port and use object_copyin to
86 * translate it to the global name. Put it into the set.
88 if (mach_port_allocate(get_task_ipcspace(ux_handler_self
), MACH_PORT_RIGHT_RECEIVE
, &exc_port_name
) != MACH_MSG_SUCCESS
)
89 panic("ux_handler: port_allocate failed");
90 if (mach_port_move_member(get_task_ipcspace(ux_handler_self
),
91 exc_port_name
, exc_set_name
) != MACH_MSG_SUCCESS
)
92 panic("ux_handler: port_set_add failed");
94 if (ipc_object_copyin(get_task_ipcspace(self
), exc_port_name
,
95 MACH_MSG_TYPE_MAKE_SEND
,
96 (void *) &ux_exception_port
) != MACH_MSG_SUCCESS
)
97 panic("ux_handler: object_copyin(ux_exception_port) failed");
99 thread_wakeup(&ux_exception_port
);
101 /* Message handling loop. */
105 mach_msg_header_t Head
;
107 kern_return_t RetCode
;
110 mach_msg_header_t Head
;
111 /* start of the kernel processed data */
112 mach_msg_body_t msgh_body
;
113 mach_msg_port_descriptor_t thread
;
114 mach_msg_port_descriptor_t task
;
115 /* end of the kernel processed data */
117 exception_type_t exception
;
118 mach_msg_type_number_t codeCnt
;
119 exception_data_t code
;
120 /* some times RCV_TO_LARGE probs */
123 mach_port_name_t reply_port
;
124 kern_return_t result
;
126 exc_msg
.Head
.msgh_local_port
= (mach_port_t
)exc_set_name
;
127 exc_msg
.Head
.msgh_size
= sizeof (exc_msg
);
129 result
= mach_msg_receive(&exc_msg
.Head
);
131 result
= mach_msg_receive(&exc_msg
.Head
, MACH_RCV_MSG
,
132 sizeof (exc_msg
), exc_set_name
,
133 MACH_MSG_TIMEOUT_NONE
, MACH_PORT_NULL
,
136 if (result
== MACH_MSG_SUCCESS
) {
137 reply_port
= (mach_port_name_t
)exc_msg
.Head
.msgh_remote_port
;
139 if (exc_server(&exc_msg
.Head
, &rep_msg
.Head
))
140 (void) mach_msg_send(&rep_msg
.Head
, MACH_SEND_MSG
,
141 sizeof (rep_msg
),MACH_MSG_TIMEOUT_NONE
,MACH_PORT_NULL
);
143 if (reply_port
!= MACH_PORT_NULL
)
144 (void) mach_port_deallocate(get_task_ipcspace(ux_handler_self
), reply_port
);
146 else if (result
== MACH_RCV_TOO_LARGE
)
147 /* ignore oversized messages */;
149 panic("exception_handler");
151 thread_funnel_set(kernel_flock
, FALSE
);
155 ux_handler_init(void)
159 simple_lock_init(&ux_handler_init_lock
);
160 ux_exception_port
= MACH_PORT_NULL
;
161 if (kernel_task_create(kernel_task
,
162 0, 0, &handler_task
) != MACH_MSG_SUCCESS
) {
163 panic("Failed to created ux handler task\n");
165 (void) kernel_thread(handler_task
, ux_handler
);
166 simple_lock(&ux_handler_init_lock
);
167 if (ux_exception_port
== MACH_PORT_NULL
) {
168 simple_unlock(&ux_handler_init_lock
);
169 assert_wait(&ux_exception_port
, THREAD_UNINT
);
170 thread_block(THREAD_CONTINUE_NULL
);
173 simple_unlock(&ux_handler_init_lock
);
177 catch_exception_raise(
178 mach_port_name_t exception_port
,
179 mach_port_name_t thread_name
,
180 mach_port_name_t task_name
,
182 exception_data_t code
,
183 mach_msg_type_number_t codecnt
186 task_t self
= current_task();
188 ipc_port_t thread_port
;
189 ipc_port_t task_port
;
190 kern_return_t result
= MACH_MSG_SUCCESS
;
196 * Convert local thread name to global port.
198 if (MACH_PORT_VALID(thread_name
) &&
199 (ipc_object_copyin(get_task_ipcspace(self
), thread_name
,
200 MACH_MSG_TYPE_PORT_SEND
,
201 (void *) &thread_port
) == MACH_MSG_SUCCESS
)) {
202 if (IPC_PORT_VALID(thread_port
)) {
203 th_act
= (thread_act_t
)convert_port_to_act(thread_port
);
204 ipc_port_release(thread_port
);
206 th_act
= THR_ACT_NULL
;
212 if (th_act
!= THR_ACT_NULL
) {
215 * Convert exception to unix signal and code.
217 ut
= get_bsdthread_info(th_act
);
218 ux_exception(exception
, code
[0], code
[1],
225 threadsignal(th_act
, signal
, ucode
);
227 act_deallocate(th_act
);
230 result
= KERN_INVALID_ARGUMENT
;
233 result
= KERN_INVALID_ARGUMENT
;
236 * Delete our send rights to the task and thread ports.
238 (void)mach_port_deallocate(get_task_ipcspace(ux_handler_self
), task_name
);
239 (void)mach_port_deallocate(get_task_ipcspace(ux_handler_self
),thread_name
);
244 catch_exception_raise_state(mach_port_name_t exception_port
, int exception
, exception_data_t code
, mach_msg_type_number_t codeCnt
, int flavor
, thread_state_t old_state
, int old_stateCnt
, thread_state_t new_state
, int new_stateCnt
)
246 return(KERN_INVALID_ARGUMENT
);
249 catch_exception_raise_state_identity(mach_port_name_t exception_port
, mach_port_t thread
, mach_port_t task
, int exception
, exception_data_t code
, mach_msg_type_number_t codeCnt
, int flavor
, thread_state_t old_state
, int old_stateCnt
, thread_state_t new_state
, int new_stateCnt
)
251 return(KERN_INVALID_ARGUMENT
);
254 boolean_t
machine_exception();
257 * ux_exception translates a mach exception, code and subcode to
258 * a signal and u.u_code. Calls machine_exception (machine dependent)
259 * to attempt translation first.
272 * Try machine-dependent translation first.
274 if (machine_exception(exception
, code
, subcode
, ux_signal
, ux_code
))
280 if (code
== KERN_INVALID_ADDRESS
)
281 *ux_signal
= SIGSEGV
;
286 case EXC_BAD_INSTRUCTION
:
301 case EXC_UNIX_BAD_SYSCALL
:
304 case EXC_UNIX_BAD_PIPE
:
305 *ux_signal
= SIGPIPE
;
308 *ux_signal
= SIGABRT
;
310 case EXC_SOFT_SIGNAL
:
311 *ux_signal
= SIGKILL
;
317 *ux_signal
= SIGTRAP
;