1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
/*
* MIG IPC functions
* Copyright (C) 2008 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program 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
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Author: Barry deFreese.
*/
/*
* MIG IPC functions.
*
*/
#ifndef _IPC_MIG_H_
#define _IPC_MIG_H_
#include <mach/std_types.h>
#include <device/device_types.h>
#include <ipc/ipc_thread.h>
/*
* Routine: mach_msg_send_from_kernel
* Purpose:
* Send a message from the kernel.
*
* This is used by the client side of KernelUser interfaces
* to implement SimpleRoutines. Currently, this includes
* device_reply and memory_object messages.
* Conditions:
* Nothing locked.
* Returns:
* MACH_MSG_SUCCESS Sent the message.
* MACH_SEND_INVALID_DATA Bad destination port.
*/
extern mach_msg_return_t mach_msg_send_from_kernel(
mach_msg_header_t *msg,
mach_msg_size_t send_size);
/*
* Routine: mach_msg_abort_rpc
* Purpose:
* Destroy the thread's ith_rpc_reply port.
* This will interrupt a mach_msg_rpc_from_kernel
* with a MACH_RCV_PORT_DIED return code.
* Conditions:
* Nothing locked.
*/
extern void mach_msg_abort_rpc (ipc_thread_t);
extern mach_msg_return_t mach_msg_rpc_from_kernel(
const mach_msg_header_t *msg,
mach_msg_size_t send_size,
mach_msg_size_t reply_size);
extern kern_return_t syscall_vm_map(
mach_port_name_t target_map,
rpc_vm_offset_t *address,
rpc_vm_size_t size,
rpc_vm_offset_t mask,
boolean_t anywhere,
mach_port_name_t memory_object,
rpc_vm_offset_t offset,
boolean_t copy,
vm_prot_t cur_protection,
vm_prot_t max_protection,
vm_inherit_t inheritance);
extern kern_return_t syscall_vm_allocate(
mach_port_name_t target_map,
rpc_vm_offset_t *address,
rpc_vm_size_t size,
boolean_t anywhere);
extern kern_return_t syscall_vm_deallocate(
mach_port_name_t target_map,
rpc_vm_offset_t start,
rpc_vm_size_t size);
extern kern_return_t syscall_task_create(
mach_port_name_t parent_task,
boolean_t inherit_memory,
mach_port_name_t *child_task);
extern kern_return_t syscall_task_terminate(mach_port_name_t task);
extern kern_return_t syscall_task_suspend(mach_port_name_t task);
extern kern_return_t syscall_task_set_special_port(
mach_port_name_t task,
int which_port,
mach_port_name_t port_name);
extern kern_return_t syscall_mach_port_allocate(
mach_port_name_t task,
mach_port_right_t right,
mach_port_name_t *namep);
extern kern_return_t syscall_mach_port_deallocate(
mach_port_name_t task,
mach_port_name_t name);
extern kern_return_t syscall_mach_port_insert_right(
mach_port_name_t task,
mach_port_name_t name,
mach_port_name_t right,
mach_msg_type_name_t rightType);
extern kern_return_t syscall_mach_port_allocate_name(
mach_port_name_t task,
mach_port_right_t right,
mach_port_name_t name);
extern kern_return_t syscall_thread_depress_abort(mach_port_name_t thread);
extern kern_return_t thread_set_self_state(
int flavor,
thread_state_t new_state,
natural_t new_state_count);
extern io_return_t syscall_device_write_request(
mach_port_name_t device_name,
mach_port_name_t reply_name,
dev_mode_t mode,
rpc_recnum_t recnum,
rpc_vm_offset_t data,
rpc_vm_size_t data_count);
io_return_t syscall_device_writev_request(
mach_port_name_t device_name,
mach_port_name_t reply_name,
dev_mode_t mode,
rpc_recnum_t recnum,
rpc_io_buf_vec_t *iovec,
rpc_vm_size_t iocount);
#endif /* _IPC_MIG_H_ */
|