]> git.saurik.com Git - apple/xnu.git/blame - osfmk/ipc/ipc_right.h
xnu-7195.101.1.tar.gz
[apple/xnu.git] / osfmk / ipc / ipc_right.h
CommitLineData
1c79356b
A
1/*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
0a7de745 5 *
2d21ac55
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
0a7de745 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
0a7de745 17 *
2d21ac55
A
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
0a7de745 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28/*
29 * @OSF_COPYRIGHT@
30 */
0a7de745 31/*
1c79356b
A
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
34 * All Rights Reserved.
0a7de745 35 *
1c79356b
A
36 * Permission to use, copy, modify and distribute this software and its
37 * documentation is hereby granted, provided that both the copyright
38 * notice and this permission notice appear in all copies of the
39 * software, derivative works or modified versions, and any portions
40 * thereof, and that both notices appear in supporting documentation.
0a7de745 41 *
1c79356b
A
42 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
43 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
44 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
0a7de745 45 *
1c79356b 46 * Carnegie Mellon requests users of this software to return to
0a7de745 47 *
1c79356b
A
48 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
49 * School of Computer Science
50 * Carnegie Mellon University
51 * Pittsburgh PA 15213-3890
0a7de745 52 *
1c79356b
A
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
55 */
56/*
57 */
58/*
59 * File: ipc/ipc_right.h
60 * Author: Rich Draves
61 * Date: 1989
62 *
63 * Declarations of functions to manipulate IPC capabilities.
64 */
65
0a7de745
A
66#ifndef _IPC_IPC_RIGHT_H_
67#define _IPC_IPC_RIGHT_H_
1c79356b
A
68
69#include <mach/boolean.h>
70#include <mach/kern_return.h>
71#include <ipc/ipc_port.h>
72#include <ipc/ipc_entry.h>
73
0a7de745
A
74#define ipc_right_lookup_read ipc_right_lookup_write
75#define ipc_right_lookup_two_read ipc_right_lookup_two_write
76
1c79356b
A
77/* Find an entry in a space, given the name */
78extern kern_return_t ipc_right_lookup_write(
0a7de745
A
79 ipc_space_t space,
80 mach_port_name_t name,
81 ipc_entry_t *entryp);
1c79356b
A
82
83/* Find two entries in a space, given two names */
84extern kern_return_t ipc_right_lookup_two_write(
0a7de745
A
85 ipc_space_t space,
86 mach_port_name_t name1,
87 ipc_entry_t *entryp1,
88 mach_port_name_t name2,
89 ipc_entry_t *entryp2);
1c79356b
A
90
91/* Translate (space, object) -> (name, entry) */
c3c9b80d 92extern bool ipc_right_reverse(
0a7de745
A
93 ipc_space_t space,
94 ipc_object_t object,
95 mach_port_name_t *namep,
96 ipc_entry_t *entryp);
1c79356b 97
6d2010ae
A
98/* Make a notification request, returning the previous send-once right */
99extern kern_return_t ipc_right_request_alloc(
0a7de745
A
100 ipc_space_t space,
101 mach_port_name_t name,
102 boolean_t immediate,
103 boolean_t send_possible,
104 ipc_port_t notify,
105 ipc_port_t *previousp);
1c79356b 106
6d2010ae
A
107/* Cancel a notification request and return the send-once right */
108extern ipc_port_t ipc_right_request_cancel(
0a7de745
A
109 ipc_space_t space,
110 ipc_port_t port,
111 mach_port_name_t name,
112 ipc_entry_t entry);
1c79356b 113
0a7de745
A
114#define ipc_right_request_cancel_macro(space, port, name, entry) \
115 ((entry->ie_request == IE_REQ_NONE) ? IP_NULL : \
116 ipc_right_request_cancel((space), (port), (name), (entry)))
1c79356b
A
117
118/* Check if an entry is being used */
c3c9b80d 119extern bool ipc_right_inuse(
0a7de745 120 ipc_entry_t entry);
1c79356b
A
121
122/* Check if the port has died */
123extern boolean_t ipc_right_check(
0a7de745
A
124 ipc_space_t space,
125 ipc_port_t port,
126 mach_port_name_t name,
127 ipc_entry_t entry,
c3c9b80d 128 ipc_object_copyin_flags_t flags);
1c79356b
A
129
130/* Clean up an entry in a dead space */
316670eb 131extern void ipc_right_terminate(
0a7de745
A
132 ipc_space_t space,
133 mach_port_name_t name,
134 ipc_entry_t entry);
1c79356b
A
135
136/* Destroy an entry in a space */
137extern kern_return_t ipc_right_destroy(
0a7de745
A
138 ipc_space_t space,
139 mach_port_name_t name,
140 ipc_entry_t entry,
141 boolean_t check_guard,
142 uint64_t guard);
1c79356b
A
143
144/* Release a send/send-once/dead-name user reference */
145extern kern_return_t ipc_right_dealloc(
0a7de745
A
146 ipc_space_t space,
147 mach_port_name_t name,
148 ipc_entry_t entry);
1c79356b
A
149
150/* Modify the user-reference count for a right */
151extern kern_return_t ipc_right_delta(
0a7de745
A
152 ipc_space_t space,
153 mach_port_name_t name,
154 ipc_entry_t entry,
155 mach_port_right_t right,
156 mach_port_delta_t delta);
1c79356b 157
39236c6e
A
158/* Destroy a receive right; Modify ref count for send rights */
159extern kern_return_t ipc_right_destruct(
0a7de745
A
160 ipc_space_t space,
161 mach_port_name_t name,
162 ipc_entry_t entry,
163 mach_port_delta_t srdelta,
164 uint64_t guard);
39236c6e 165
1c79356b
A
166/* Retrieve information about a right */
167extern kern_return_t ipc_right_info(
0a7de745
A
168 ipc_space_t space,
169 mach_port_name_t name,
170 ipc_entry_t entry,
171 mach_port_type_t *typep,
172 mach_port_urefs_t *urefsp);
1c79356b 173
cb323159
A
174/* Check if a subsequent ipc_right_copyin of the reply port will succeed */
175extern boolean_t ipc_right_copyin_check_reply(
176 ipc_space_t space,
177 mach_port_name_t reply_name,
178 ipc_entry_t reply_entry,
179 mach_msg_type_name_t reply_type);
1c79356b
A
180
181/* Copyin a capability from a space */
182extern kern_return_t ipc_right_copyin(
cb323159
A
183 ipc_space_t space,
184 mach_port_name_t name,
185 ipc_entry_t entry,
186 mach_msg_type_name_t msgt_name,
c3c9b80d 187 ipc_object_copyin_flags_t flags,
cb323159
A
188 ipc_object_t *objectp,
189 ipc_port_t *sorightp,
190 ipc_port_t *releasep,
191 int *assertcntp,
192 mach_port_context_t context,
193 mach_msg_guard_flags_t *guard_flags);
1c79356b 194
fe8ab488 195/* Copyin a pair of dispositions from a space */
1c79356b 196extern kern_return_t ipc_right_copyin_two(
cb323159
A
197 ipc_space_t space,
198 mach_port_name_t name,
199 ipc_entry_t entry,
200 mach_msg_type_name_t msgt_one,
201 mach_msg_type_name_t msgt_two,
202 ipc_object_t *objectp,
203 ipc_port_t *sorightp,
204 ipc_port_t *releasep);
1c79356b
A
205
206/* Copyout a capability to a space */
207extern kern_return_t ipc_right_copyout(
0a7de745
A
208 ipc_space_t space,
209 mach_port_name_t name,
210 ipc_entry_t entry,
211 mach_msg_type_name_t msgt_name,
c3c9b80d 212 ipc_object_copyout_flags_t flags,
cb323159
A
213 mach_port_context_t *context,
214 mach_msg_guard_flags_t *guard_flags,
0a7de745 215 ipc_object_t object);
1c79356b 216
0a7de745 217#endif /* _IPC_IPC_RIGHT_H_ */