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@
26 * Mach Operating System
27 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
28 * All Rights Reserved.
30 * Permission to use, copy, modify and distribute this software and its
31 * documentation is hereby granted, provided that both the copyright
32 * notice and this permission notice appear in all copies of the
33 * software, derivative works or modified versions, and any portions
34 * thereof, and that both notices appear in supporting documentation.
36 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
37 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
38 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
40 * Carnegie Mellon requests users of this software to return to
42 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
43 * School of Computer Science
44 * Carnegie Mellon University
45 * Pittsburgh PA 15213-3890
47 * any improvements or extensions that they make and grant Carnegie Mellon
48 * the rights to redistribute these changes.
53 * File: ipc/ipc_object.h
57 * Definitions for IPC objects, for which tasks have capabilities.
60 #ifndef _IPC_IPC_OBJECT_H_
61 #define _IPC_IPC_OBJECT_H_
67 #include <mach/kern_return.h>
68 #include <mach/message.h>
69 #include <kern/lock.h>
70 #include <kern/macro_help.h>
71 #include <kern/zalloc.h>
72 #include <ipc/ipc_types.h>
74 typedef natural_t ipc_object_refs_t
; /* for ipc/ipc_object.h */
75 typedef natural_t ipc_object_bits_t
;
76 typedef natural_t ipc_object_type_t
;
79 * There is no lock in the ipc_object; it is in the enclosing kernel
80 * data structure (rpc_common_data) used by both ipc_port and ipc_pset.
81 * The ipc_object is used to both tag and reference count these two data
82 * structures, and (Noto Bene!) pointers to either of these or the
83 * ipc_object at the head of these are freely cast back and forth; hence
84 * the ipc_object MUST BE FIRST in the ipc_common_data.
86 * If the RPC implementation enabled user-mode code to use kernel-level
87 * data structures (as ours used to), this peculiar structuring would
88 * avoid having anything in user code depend on the kernel configuration
89 * (with which lock size varies).
92 ipc_object_refs_t io_references
;
93 ipc_object_bits_t io_bits
;
94 port_name_t io_receiver_name
;
96 usimple_lock_data_t io_lock_data
;
98 decl_mutex_data(, io_lock_data
)
103 * Legacy defines. Should use IPC_OBJECT_NULL, etc...
105 #define IO_NULL ((ipc_object_t) 0)
106 #define IO_DEAD ((ipc_object_t) -1)
107 #define IO_VALID(io) (((io) != IO_NULL) && ((io) != IO_DEAD))
110 * IPC steals the high-order bits from the kotype to use
111 * for its own purposes. This allows IPC to record facts
112 * about ports that aren't otherwise obvious from the
113 * existing port fields. In particular, IPC can optionally
114 * mark a port for no more senders detection. Any change
115 * to IO_BITS_PORT_INFO must be coordinated with bitfield
116 * definitions in ipc_port.h.
118 #define IO_BITS_PORT_INFO 0x0000f000 /* stupid port tricks */
119 #define IO_BITS_KOTYPE 0x00000fff /* used by the object */
120 #define IO_BITS_OTYPE 0x7fff0000 /* determines a zone */
121 #define IO_BITS_ACTIVE 0x80000000 /* is object alive? */
123 #define io_active(io) ((io)->io_bits & IO_BITS_ACTIVE)
125 #define io_otype(io) (((io)->io_bits & IO_BITS_OTYPE) >> 16)
126 #define io_kotype(io) ((io)->io_bits & IO_BITS_KOTYPE)
128 #define io_makebits(active, otype, kotype) \
129 (((active) ? IO_BITS_ACTIVE : 0) | ((otype) << 16) | (kotype))
132 * Object types: ports, port sets, kernel-loaded ports
135 #define IOT_PORT_SET 1
136 #define IOT_NUMBER 2 /* number of types used */
138 extern zone_t ipc_object_zones
[IOT_NUMBER
];
140 #define io_alloc(otype) \
141 ((ipc_object_t) zalloc(ipc_object_zones[(otype)]))
145 * Call the routine for io_free so that checking can be performed.
149 ipc_object_t object
);
151 #else /* MACH_ASSERT */
152 #define io_free(otype, io) \
153 zfree(ipc_object_zones[(otype)], (vm_offset_t) (io))
154 #endif /* MACH_ASSERT */
157 * Here we depend on the ipc_object being first within the ipc_common_data,
158 * which is first within the rpc_common_data, which in turn must be first
159 * within any kernel data structure needing to lock an ipc_object
160 * (ipc_port and ipc_pset).
164 #define io_lock_init(io) \
165 usimple_lock_init(&(io)-io_lock_data, ETAP_IPC_OBJECT)
166 #define io_lock(io) \
167 usimple_lock(&(io)->io_lock_data)
168 #define io_lock_try(io) \
169 usimple_lock_try(&(io)->io_lock_data)
170 #define io_unlock(io) \
171 usimple_unlock(&(io)->io_lock_data)
173 #else /* NCPUS == 1 */
175 #define io_lock_init(io) \
176 mutex_init(&(io)->io_lock_data, ETAP_IPC_OBJECT)
177 #define io_lock(io) \
178 mutex_lock(&(io)->io_lock_data)
179 #define io_lock_try(io) \
180 mutex_try(&(io)->io_lock_data)
181 #define io_unlock(io) \
182 mutex_unlock(&(io)->io_lock_data)
184 #endif /* NCPUS == 1 */
187 #define _VOLATILE_ volatile
188 #else /* NCPUS > 1 */
190 #endif /* NCPUS > 1 */
192 #define io_check_unlock(io) \
194 _VOLATILE_ ipc_object_refs_t _refs = (io)->io_references; \
198 io_free(io_otype(io), io); \
201 /* Sanity check the ref count. If it is 0, we may be doubly zfreeing.
202 * If it is larger than max int, it has been corrupted, probably by being
203 * modified into an address (this is architecture dependent, but it's
204 * safe to assume there cannot really be max int references).
206 * NOTE: The 0 test alone will not catch double zfreeing of ipc_port
207 * structs, because the io_references field is the first word of the struct,
208 * and zfree modifies that to point to the next free zone element.
210 #define IO_MAX_REFERENCES \
211 (unsigned)(~0 ^ (1 << (sizeof(int)*BYTE_SIZE - 1)))
213 #define io_reference(io) \
215 assert((io)->io_references < IO_MAX_REFERENCES); \
216 (io)->io_references++; \
219 #define io_release(io) \
221 assert((io)->io_references > 0 && \
222 (io)->io_references <= IO_MAX_REFERENCES); \
223 (io)->io_references--; \
227 * Exported interfaces
230 /* Take a reference to an object */
231 extern void ipc_object_reference(
232 ipc_object_t object
);
234 /* Release a reference to an object */
235 extern void ipc_object_release(
236 ipc_object_t object
);
238 /* Look up an object in a space */
239 extern kern_return_t
ipc_object_translate(
241 mach_port_name_t name
,
242 mach_port_right_t right
,
243 ipc_object_t
*objectp
);
245 /* Look up two objects in a space, locking them in the order described */
246 extern kern_return_t
ipc_object_translate_two(
248 mach_port_name_t name1
,
249 mach_port_right_t right1
,
250 ipc_object_t
*objectp1
,
251 mach_port_name_t name2
,
252 mach_port_right_t right2
,
253 ipc_object_t
*objectp2
);
255 /* Allocate a dead-name entry */
257 ipc_object_alloc_dead(
259 mach_port_name_t
*namep
);
261 /* Allocate a dead-name entry, with a specific name */
262 extern kern_return_t
ipc_object_alloc_dead_name(
264 mach_port_name_t name
);
266 /* Allocate an object */
267 extern kern_return_t
ipc_object_alloc(
269 ipc_object_type_t otype
,
270 mach_port_type_t type
,
271 mach_port_urefs_t urefs
,
272 mach_port_name_t
*namep
,
273 ipc_object_t
*objectp
);
275 /* Allocate an object, with a specific name */
276 extern kern_return_t
ipc_object_alloc_name(
278 ipc_object_type_t otype
,
279 mach_port_type_t type
,
280 mach_port_urefs_t urefs
,
281 mach_port_name_t name
,
282 ipc_object_t
*objectp
);
284 /* Convert a send type name to a received type name */
285 extern mach_msg_type_name_t
ipc_object_copyin_type(
286 mach_msg_type_name_t msgt_name
);
288 /* Copyin a capability from a space */
289 extern kern_return_t
ipc_object_copyin(
291 mach_port_name_t name
,
292 mach_msg_type_name_t msgt_name
,
293 ipc_object_t
*objectp
);
295 /* Copyin a naked capability from the kernel */
296 extern void ipc_object_copyin_from_kernel(
298 mach_msg_type_name_t msgt_name
);
300 /* Destroy a naked capability */
301 extern void ipc_object_destroy(
303 mach_msg_type_name_t msgt_name
);
305 /* Copyout a capability, placing it into a space */
306 extern kern_return_t
ipc_object_copyout(
309 mach_msg_type_name_t msgt_name
,
311 mach_port_name_t
*namep
);
313 /* Copyout a capability with a name, placing it into a space */
314 extern kern_return_t
ipc_object_copyout_name(
317 mach_msg_type_name_t msgt_name
,
319 mach_port_name_t name
);
321 /* Translate/consume the destination right of a message */
322 extern void ipc_object_copyout_dest(
325 mach_msg_type_name_t msgt_name
,
326 mach_port_name_t
*namep
);
328 /* Rename an entry in a space */
329 extern kern_return_t
ipc_object_rename(
331 mach_port_name_t oname
,
332 mach_port_name_t nname
);
335 /* Pretty-print an ipc object */
337 extern void ipc_object_print(
338 ipc_object_t object
);
340 #endif /* MACH_KDB */
342 #endif /* _IPC_IPC_OBJECT_H_ */