2005-12-11 15:16:03 +03:00
|
|
|
/* $NetBSD: mach_task.h,v 1.15 2005/12/11 12:20:20 christos Exp $ */
|
2002-11-11 00:53:40 +03:00
|
|
|
|
|
|
|
/*-
|
2003-04-06 01:18:02 +04:00
|
|
|
* Copyright (c) 2002-2003 The NetBSD Foundation, Inc.
|
2002-11-11 00:53:40 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Emmanuel Dreyfus
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MACH_TASK_H_
|
|
|
|
#define _MACH_TASK_H_
|
|
|
|
|
2005-02-27 01:58:54 +03:00
|
|
|
/* task_get_special_port */
|
2002-11-11 00:53:40 +03:00
|
|
|
|
2002-12-15 03:40:24 +03:00
|
|
|
#define MACH_TASK_KERNEL_PORT 1
|
|
|
|
#define MACH_TASK_HOST_PORT 2
|
|
|
|
#define MACH_TASK_BOOTSTRAP_PORT 4
|
|
|
|
#define MACH_TASK_WIRED_LEDGER_PORT 5
|
|
|
|
#define MACH_TASK_PAGED_LEDGER_PORT 6
|
|
|
|
|
2002-11-11 00:53:40 +03:00
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t req_msgh;
|
|
|
|
mach_ndr_record_t req_ndr;
|
|
|
|
int req_which_port;
|
|
|
|
} mach_task_get_special_port_request_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t rep_msgh;
|
|
|
|
mach_msg_body_t rep_msgh_body;
|
|
|
|
mach_msg_port_descriptor_t rep_special_port;
|
|
|
|
mach_msg_trailer_t rep_trailer;
|
|
|
|
} mach_task_get_special_port_reply_t;
|
|
|
|
|
|
|
|
/* mach_ports_lookup */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t req_msgh;
|
|
|
|
} mach_ports_lookup_request_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t rep_msgh;
|
|
|
|
mach_msg_body_t rep_msgh_body;
|
|
|
|
mach_msg_ool_ports_descriptor_t rep_init_port_set;
|
|
|
|
mach_ndr_record_t rep_ndr;
|
|
|
|
mach_msg_type_number_t rep_init_port_set_count;
|
|
|
|
mach_msg_trailer_t rep_trailer;
|
|
|
|
} mach_ports_lookup_reply_t;
|
|
|
|
|
2002-12-12 03:29:23 +03:00
|
|
|
/* mach_set_special_port */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t req_msgh;
|
|
|
|
mach_msg_body_t req_msgh_body;
|
|
|
|
mach_msg_port_descriptor_t req_special_port;
|
|
|
|
mach_ndr_record_t req_ndr;
|
|
|
|
int req_which_port;
|
|
|
|
} mach_task_set_special_port_request_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t rep_msgh;
|
|
|
|
mach_ndr_record_t rep_ndr;
|
|
|
|
mach_kern_return_t rep_retval;
|
|
|
|
mach_msg_trailer_t rep_trailer;
|
|
|
|
} mach_task_set_special_port_reply_t;
|
|
|
|
|
2003-03-29 14:04:08 +03:00
|
|
|
/* task_threads */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t req_msgh;
|
|
|
|
} mach_task_threads_request_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t rep_msgh;
|
|
|
|
mach_msg_body_t rep_body;
|
|
|
|
mach_msg_ool_ports_descriptor_t rep_list;
|
|
|
|
mach_ndr_record_t rep_ndr;
|
|
|
|
mach_msg_type_number_t rep_count;
|
|
|
|
mach_msg_trailer_t rep_trailer;
|
|
|
|
} mach_task_threads_reply_t;
|
|
|
|
|
|
|
|
/* task_get_exception_ports */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t req_msgh;
|
|
|
|
mach_ndr_record_t req_ndr;
|
|
|
|
mach_exception_mask_t req_mask;
|
|
|
|
} mach_task_get_exception_ports_request_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t rep_msgh;
|
|
|
|
mach_msg_body_t rep_body;
|
|
|
|
mach_msg_port_descriptor_t rep_old_handler[32];
|
|
|
|
mach_ndr_record_t rep_ndr;
|
|
|
|
mach_msg_type_number_t rep_masks_count;
|
|
|
|
mach_exception_mask_t rep_masks[32];
|
|
|
|
mach_exception_behavior_t rep_old_behaviors[32];
|
|
|
|
mach_thread_state_flavor_t rep_old_flavors[32];
|
|
|
|
mach_msg_trailer_t rep_trailer;
|
|
|
|
} mach_task_get_exception_ports_reply_t;
|
|
|
|
|
|
|
|
/* task_set_exception_ports */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t req_msgh;
|
|
|
|
mach_msg_body_t req_body;
|
|
|
|
mach_msg_port_descriptor_t req_new_port;
|
|
|
|
mach_ndr_record_t req_ndr;
|
|
|
|
mach_exception_mask_t req_mask;
|
|
|
|
mach_exception_behavior_t req_behavior;
|
First work on Mach exceptions. Things that can turn into signals on UNIX
may turn into exceptions on Mach: a small message sent by the kernel to
the task that requested the exception.
On Darwin, when an exception is sent, no signal can be delivered.
TODO: more exceptions: arithmetic, bad instructions, emulation, s
software, and syscalls (plain and Mach). There is also RPC alert, but
I have no idea about what it is.
While we are there, remove some user ktrace in notification code, and add
a NODEF qualifier in mach_services.master: it will be used for notifications
and exceptions, where the kernel is always client and never server: we
don't want the message to be displayed as "unimplemented xxx" in kdump (thus
UNIMPL is not good), but we don't want to generate the server prototype
(therefore, STD is not good either). NODEF will declare it normally in the
name tables without creating the prototype.
2003-11-17 04:52:14 +03:00
|
|
|
mach_thread_state_flavor_t req_flavor;
|
2003-03-29 14:04:08 +03:00
|
|
|
} mach_task_set_exception_ports_request_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t rep_msgh;
|
|
|
|
mach_ndr_record_t rep_ndr;
|
|
|
|
mach_kern_return_t rep_retval;
|
|
|
|
mach_msg_trailer_t rep_trailer;
|
|
|
|
} mach_task_set_exception_ports_reply_t;
|
|
|
|
|
2003-04-06 01:18:02 +04:00
|
|
|
/* task_info */
|
|
|
|
|
|
|
|
#define MACH_TASK_BASIC_INFO 4
|
|
|
|
struct mach_task_basic_info {
|
|
|
|
mach_integer_t mtbi_suspend_count;
|
|
|
|
mach_vm_size_t mtbi_virtual_size;
|
|
|
|
mach_vm_size_t mtbi_resident_size;
|
|
|
|
mach_time_value_t mtbi_user_time;
|
|
|
|
mach_time_value_t mtbi_system_time;
|
|
|
|
mach_policy_t mtbi_policy;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MACH_TASK_EVENTS_INFO 2
|
|
|
|
struct mach_task_events_info {
|
|
|
|
mach_integer_t mtei_faults;
|
|
|
|
mach_integer_t mtei_pageins;
|
|
|
|
mach_integer_t mtei_cow_faults;
|
|
|
|
mach_integer_t mtei_message_sent;
|
|
|
|
mach_integer_t mtei_message_received;
|
|
|
|
mach_integer_t mtei_syscalls_mach;
|
|
|
|
mach_integer_t mtei_syscalls_unix;
|
|
|
|
mach_integer_t mtei_csw;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MACH_TASK_THREAD_TIMES_INFO 3
|
|
|
|
struct mach_task_thread_times_info {
|
|
|
|
mach_time_value_t mttti_user_time;
|
|
|
|
mach_time_value_t mttti_system_time;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t req_msgh;
|
|
|
|
mach_ndr_record_t req_ndr;
|
|
|
|
mach_task_flavor_t req_flavor;
|
|
|
|
mach_msg_type_number_t req_count;
|
|
|
|
} mach_task_info_request_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t rep_msgh;
|
|
|
|
mach_ndr_record_t rep_ndr;
|
|
|
|
mach_kern_return_t rep_retval;
|
|
|
|
mach_msg_type_number_t rep_count;
|
2003-11-13 16:40:39 +03:00
|
|
|
mach_integer_t rep_info[8];
|
2003-04-06 01:18:02 +04:00
|
|
|
mach_msg_trailer_t rep_trailer;
|
|
|
|
} mach_task_info_reply_t;
|
2003-03-29 14:04:08 +03:00
|
|
|
|
2003-04-06 21:58:49 +04:00
|
|
|
/* task_suspend */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t req_msgh;
|
|
|
|
} mach_task_suspend_request_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t rep_msgh;
|
|
|
|
mach_ndr_record_t rep_ndr;
|
|
|
|
mach_kern_return_t rep_retval;
|
|
|
|
mach_msg_trailer_t rep_trailer;
|
|
|
|
} mach_task_suspend_reply_t;
|
|
|
|
|
|
|
|
/* task_resume */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t req_msgh;
|
|
|
|
} mach_task_resume_request_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t rep_msgh;
|
|
|
|
mach_ndr_record_t rep_ndr;
|
|
|
|
mach_kern_return_t rep_retval;
|
|
|
|
mach_msg_trailer_t rep_trailer;
|
|
|
|
} mach_task_resume_reply_t;
|
|
|
|
|
2003-11-30 23:42:03 +03:00
|
|
|
/* task_terminate */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t req_msgh;
|
|
|
|
} mach_task_terminate_request_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
mach_msg_header_t rep_msgh;
|
|
|
|
mach_ndr_record_t rep_ndr;
|
|
|
|
mach_kern_return_t rep_retval;
|
|
|
|
mach_msg_trailer_t rep_trailer;
|
|
|
|
} mach_task_terminate_reply_t;
|
|
|
|
|
2002-11-11 00:53:40 +03:00
|
|
|
#endif /* _MACH_TASK_H_ */
|