2 * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
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
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
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.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
34 * All Rights Reserved.
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.
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.
46 * Carnegie Mellon requests users of this software to return to
48 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
49 * School of Computer Science
50 * Carnegie Mellon University
51 * Pittsburgh PA 15213-3890
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
57 * NOTICE: This file was modified by McAfee Research in 2004 to introduce
58 * support for mandatory and extensible security protections. This notice
59 * is included in support of clause 2.2 (b) of the Apple Public License,
61 * Copyright (c) 2005-2006 SPARTA, Inc.
66 * File: ipc/ipc_object.c
70 * Functions to manipulate IPC objects.
75 #include <mach/mach_types.h>
76 #include <mach/boolean.h>
77 #include <mach/kern_return.h>
78 #include <mach/port.h>
79 #include <mach/message.h>
81 #include <kern/kern_types.h>
82 #include <kern/misc_protos.h>
83 #include <kern/ipc_kobject.h>
85 #include <ipc/ipc_types.h>
86 #include <ipc/ipc_importance.h>
88 #include <ipc/ipc_space.h>
89 #include <ipc/ipc_entry.h>
90 #include <ipc/ipc_object.h>
91 #include <ipc/ipc_hash.h>
92 #include <ipc/ipc_right.h>
93 #include <ipc/ipc_notify.h>
94 #include <ipc/ipc_port.h>
95 #include <ipc/ipc_pset.h>
97 #include <security/mac_mach_internal.h>
99 zone_t ipc_object_zones
[IOT_NUMBER
];
102 * Routine: ipc_object_reference
104 * Take a reference to an object.
108 ipc_object_reference(
111 io_reference(object
);
115 * Routine: ipc_object_release
117 * Release a reference to an object.
128 * Routine: ipc_object_translate
130 * Look up an object in a space.
132 * Nothing locked before. If successful, the object
133 * is returned locked. The caller doesn't get a ref.
135 * KERN_SUCCESS Object returned locked.
136 * KERN_INVALID_TASK The space is dead.
137 * KERN_INVALID_NAME The name doesn't denote a right.
138 * KERN_INVALID_RIGHT Name doesn't denote the correct right.
142 ipc_object_translate(
144 mach_port_name_t name
,
145 mach_port_right_t right
,
146 ipc_object_t
*objectp
)
152 kr
= ipc_right_lookup_read(space
, name
, &entry
);
153 if (kr
!= KERN_SUCCESS
)
155 /* space is read-locked and active */
157 if ((entry
->ie_bits
& MACH_PORT_TYPE(right
)) == MACH_PORT_TYPE_NONE
) {
158 is_read_unlock(space
);
159 return KERN_INVALID_RIGHT
;
162 object
= entry
->ie_object
;
163 assert(object
!= IO_NULL
);
166 is_read_unlock(space
);
173 * Routine: ipc_object_translate_two
175 * Look up two objects in a space.
177 * Nothing locked before. If successful, the objects
178 * are returned locked. The caller doesn't get a ref.
180 * KERN_SUCCESS Objects returned locked.
181 * KERN_INVALID_TASK The space is dead.
182 * KERN_INVALID_NAME A name doesn't denote a right.
183 * KERN_INVALID_RIGHT A name doesn't denote the correct right.
187 ipc_object_translate_two(
189 mach_port_name_t name1
,
190 mach_port_right_t right1
,
191 ipc_object_t
*objectp1
,
192 mach_port_name_t name2
,
193 mach_port_right_t right2
,
194 ipc_object_t
*objectp2
)
201 kr
= ipc_right_lookup_two_read(space
, name1
, &entry1
, name2
, &entry2
);
202 if (kr
!= KERN_SUCCESS
)
204 /* space is read-locked and active */
206 if ((entry1
->ie_bits
& MACH_PORT_TYPE(right1
)) == MACH_PORT_TYPE_NONE
) {
207 is_read_unlock(space
);
208 return KERN_INVALID_RIGHT
;
211 if ((entry2
->ie_bits
& MACH_PORT_TYPE(right2
)) == MACH_PORT_TYPE_NONE
) {
212 is_read_unlock(space
);
213 return KERN_INVALID_RIGHT
;
216 object
= entry1
->ie_object
;
217 assert(object
!= IO_NULL
);
221 object
= entry2
->ie_object
;
222 assert(object
!= IO_NULL
);
226 is_read_unlock(space
);
231 * Routine: ipc_object_alloc_dead
233 * Allocate a dead-name entry.
237 * KERN_SUCCESS The dead name is allocated.
238 * KERN_INVALID_TASK The space is dead.
239 * KERN_NO_SPACE No room for an entry in the space.
240 * KERN_RESOURCE_SHORTAGE Couldn't allocate memory.
244 ipc_object_alloc_dead(
246 mach_port_name_t
*namep
)
251 kr
= ipc_entry_alloc(space
, namep
, &entry
);
252 if (kr
!= KERN_SUCCESS
)
254 /* space is write-locked */
256 /* null object, MACH_PORT_TYPE_DEAD_NAME, 1 uref */
258 assert(entry
->ie_object
== IO_NULL
);
259 entry
->ie_bits
|= MACH_PORT_TYPE_DEAD_NAME
| 1;
260 ipc_entry_modified(space
, *namep
, entry
);
261 is_write_unlock(space
);
266 * Routine: ipc_object_alloc_dead_name
268 * Allocate a dead-name entry, with a specific name.
272 * KERN_SUCCESS The dead name is allocated.
273 * KERN_INVALID_TASK The space is dead.
274 * KERN_NAME_EXISTS The name already denotes a right.
275 * KERN_RESOURCE_SHORTAGE Couldn't allocate memory.
279 ipc_object_alloc_dead_name(
281 mach_port_name_t name
)
286 kr
= ipc_entry_alloc_name(space
, name
, &entry
);
287 if (kr
!= KERN_SUCCESS
)
289 /* space is write-locked */
291 if (ipc_right_inuse(space
, name
, entry
))
292 return KERN_NAME_EXISTS
;
294 /* null object, MACH_PORT_TYPE_DEAD_NAME, 1 uref */
296 assert(entry
->ie_object
== IO_NULL
);
297 entry
->ie_bits
|= MACH_PORT_TYPE_DEAD_NAME
| 1;
298 ipc_entry_modified(space
, name
, entry
);
299 is_write_unlock(space
);
304 * Routine: ipc_object_alloc
306 * Allocate an object.
308 * Nothing locked. If successful, the object is returned locked.
309 * The space is write locked on successful return.
310 * The caller doesn't get a reference for the object.
312 * KERN_SUCCESS The object is allocated.
313 * KERN_INVALID_TASK The space is dead.
314 * KERN_NO_SPACE No room for an entry in the space.
315 * KERN_RESOURCE_SHORTAGE Couldn't allocate memory.
321 ipc_object_type_t otype
,
322 mach_port_type_t type
,
323 mach_port_urefs_t urefs
,
324 mach_port_name_t
*namep
,
325 ipc_object_t
*objectp
)
331 assert(otype
< IOT_NUMBER
);
332 assert((type
& MACH_PORT_TYPE_ALL_RIGHTS
) == type
);
333 assert(type
!= MACH_PORT_TYPE_NONE
);
334 assert(urefs
<= MACH_PORT_UREFS_MAX
);
336 object
= io_alloc(otype
);
337 if (object
== IO_NULL
)
338 return KERN_RESOURCE_SHORTAGE
;
340 if (otype
== IOT_PORT
) {
341 ipc_port_t port
= (ipc_port_t
)object
;
343 bzero((char *)port
, sizeof(*port
));
344 } else if (otype
== IOT_PORT_SET
) {
345 ipc_pset_t pset
= (ipc_pset_t
)object
;
347 bzero((char *)pset
, sizeof(*pset
));
350 io_lock_init(object
);
351 *namep
= CAST_MACH_PORT_TO_NAME(object
);
352 kr
= ipc_entry_alloc(space
, namep
, &entry
);
353 if (kr
!= KERN_SUCCESS
) {
354 io_free(otype
, object
);
357 /* space is write-locked */
359 entry
->ie_bits
|= type
| urefs
;
360 entry
->ie_object
= object
;
361 ipc_entry_modified(space
, *namep
, entry
);
365 object
->io_references
= 1; /* for entry, not caller */
366 object
->io_bits
= io_makebits(TRUE
, otype
, 0);
373 * Routine: ipc_object_alloc_name
375 * Allocate an object, with a specific name.
377 * Nothing locked. If successful, the object is returned locked.
378 * The caller doesn't get a reference for the object.
380 * KERN_SUCCESS The object is allocated.
381 * KERN_INVALID_TASK The space is dead.
382 * KERN_NAME_EXISTS The name already denotes a right.
383 * KERN_RESOURCE_SHORTAGE Couldn't allocate memory.
387 ipc_object_alloc_name(
389 ipc_object_type_t otype
,
390 mach_port_type_t type
,
391 mach_port_urefs_t urefs
,
392 mach_port_name_t name
,
393 ipc_object_t
*objectp
)
399 assert(otype
< IOT_NUMBER
);
400 assert((type
& MACH_PORT_TYPE_ALL_RIGHTS
) == type
);
401 assert(type
!= MACH_PORT_TYPE_NONE
);
402 assert(urefs
<= MACH_PORT_UREFS_MAX
);
404 object
= io_alloc(otype
);
405 if (object
== IO_NULL
)
406 return KERN_RESOURCE_SHORTAGE
;
408 if (otype
== IOT_PORT
) {
409 ipc_port_t port
= (ipc_port_t
)object
;
411 bzero((char *)port
, sizeof(*port
));
412 } else if (otype
== IOT_PORT_SET
) {
413 ipc_pset_t pset
= (ipc_pset_t
)object
;
415 bzero((char *)pset
, sizeof(*pset
));
418 io_lock_init(object
);
419 kr
= ipc_entry_alloc_name(space
, name
, &entry
);
420 if (kr
!= KERN_SUCCESS
) {
421 io_free(otype
, object
);
424 /* space is write-locked */
426 if (ipc_right_inuse(space
, name
, entry
)) {
427 io_free(otype
, object
);
428 return KERN_NAME_EXISTS
;
431 entry
->ie_bits
|= type
| urefs
;
432 entry
->ie_object
= object
;
433 ipc_entry_modified(space
, name
, entry
);
436 is_write_unlock(space
);
438 object
->io_references
= 1; /* for entry, not caller */
439 object
->io_bits
= io_makebits(TRUE
, otype
, 0);
446 * Routine: ipc_object_copyin_type
448 * Convert a send type name to a received type name.
452 ipc_object_copyin_type(
453 mach_msg_type_name_t msgt_name
)
457 case MACH_MSG_TYPE_MOVE_RECEIVE
:
458 return MACH_MSG_TYPE_PORT_RECEIVE
;
460 case MACH_MSG_TYPE_MOVE_SEND_ONCE
:
461 case MACH_MSG_TYPE_MAKE_SEND_ONCE
:
462 return MACH_MSG_TYPE_PORT_SEND_ONCE
;
464 case MACH_MSG_TYPE_MOVE_SEND
:
465 case MACH_MSG_TYPE_MAKE_SEND
:
466 case MACH_MSG_TYPE_COPY_SEND
:
467 return MACH_MSG_TYPE_PORT_SEND
;
469 case MACH_MSG_TYPE_DISPOSE_RECEIVE
:
470 case MACH_MSG_TYPE_DISPOSE_SEND
:
471 case MACH_MSG_TYPE_DISPOSE_SEND_ONCE
:
474 return MACH_MSG_TYPE_PORT_NONE
;
479 * Routine: ipc_object_copyin
481 * Copyin a capability from a space.
482 * If successful, the caller gets a ref
483 * for the resulting object, unless it is IO_DEAD.
487 * KERN_SUCCESS Acquired an object, possibly IO_DEAD.
488 * KERN_INVALID_TASK The space is dead.
489 * KERN_INVALID_NAME Name doesn't exist in space.
490 * KERN_INVALID_RIGHT Name doesn't denote correct right.
496 mach_port_name_t name
,
497 mach_msg_type_name_t msgt_name
,
498 ipc_object_t
*objectp
)
502 ipc_port_t release_port
;
504 queue_head_t links_data
;
505 queue_t links
= &links_data
;
506 wait_queue_link_t wql
;
508 #if IMPORTANCE_INHERITANCE
515 * Could first try a read lock when doing
516 * MACH_MSG_TYPE_COPY_SEND, MACH_MSG_TYPE_MAKE_SEND,
517 * and MACH_MSG_TYPE_MAKE_SEND_ONCE.
520 kr
= ipc_right_lookup_write(space
, name
, &entry
);
521 if (kr
!= KERN_SUCCESS
)
523 /* space is write-locked and active */
525 release_port
= IP_NULL
;
526 kr
= ipc_right_copyin(space
, name
, entry
,
530 #if IMPORTANCE_INHERITANCE
532 #endif /* IMPORTANCE_INHERITANCE */
534 if (IE_BITS_TYPE(entry
->ie_bits
) == MACH_PORT_TYPE_NONE
)
535 ipc_entry_dealloc(space
, name
, entry
);
536 is_write_unlock(space
);
538 while(!queue_empty(links
)) {
539 wql
= (wait_queue_link_t
) dequeue(links
);
540 wait_queue_link_free(wql
);
543 #if IMPORTANCE_INHERITANCE
544 if (0 < assertcnt
&& ipc_importance_task_is_any_receiver_type(current_task()->task_imp_base
)) {
545 ipc_importance_task_drop_internal_assertion(current_task()->task_imp_base
, assertcnt
);
547 #endif /* IMPORTANCE_INHERITANCE */
549 if (release_port
!= IP_NULL
)
550 ip_release(release_port
);
552 if ((kr
== KERN_SUCCESS
) && (soright
!= IP_NULL
))
553 ipc_notify_port_deleted(soright
, name
);
559 * Routine: ipc_object_copyin_from_kernel
561 * Copyin a naked capability from the kernel.
563 * MACH_MSG_TYPE_MOVE_RECEIVE
564 * The receiver must be ipc_space_kernel
565 * or the receive right must already be in limbo.
566 * Consumes the naked receive right.
567 * MACH_MSG_TYPE_COPY_SEND
568 * A naked send right must be supplied.
569 * The port gains a reference, and a send right
570 * if the port is still active.
571 * MACH_MSG_TYPE_MAKE_SEND
572 * The receiver must be ipc_space_kernel.
573 * The port gains a reference and a send right.
574 * MACH_MSG_TYPE_MOVE_SEND
575 * Consumes a naked send right.
576 * MACH_MSG_TYPE_MAKE_SEND_ONCE
577 * The port gains a reference and a send-once right.
578 * Receiver also be the caller of device subsystem,
580 * MACH_MSG_TYPE_MOVE_SEND_ONCE
581 * Consumes a naked send-once right.
587 ipc_object_copyin_from_kernel(
589 mach_msg_type_name_t msgt_name
)
591 assert(IO_VALID(object
));
594 case MACH_MSG_TYPE_MOVE_RECEIVE
: {
595 ipc_port_t port
= (ipc_port_t
) object
;
598 assert(ip_active(port
));
599 if (port
->ip_destination
!= IP_NULL
) {
600 assert(port
->ip_receiver
== ipc_space_kernel
);
602 /* relevant part of ipc_port_clear_receiver */
603 ipc_port_set_mscount(port
, 0);
605 port
->ip_receiver_name
= MACH_PORT_NULL
;
606 port
->ip_destination
= IP_NULL
;
612 case MACH_MSG_TYPE_COPY_SEND
: {
613 ipc_port_t port
= (ipc_port_t
) object
;
616 if (ip_active(port
)) {
617 assert(port
->ip_srights
> 0);
625 case MACH_MSG_TYPE_MAKE_SEND
: {
626 ipc_port_t port
= (ipc_port_t
) object
;
629 if (ip_active(port
)) {
630 assert(port
->ip_receiver_name
!= MACH_PORT_NULL
);
631 assert(port
->ip_receiver
== ipc_space_kernel
);
641 case MACH_MSG_TYPE_MOVE_SEND
: {
642 /* move naked send right into the message */
643 assert(((ipc_port_t
)object
)->ip_srights
);
647 case MACH_MSG_TYPE_MAKE_SEND_ONCE
: {
648 ipc_port_t port
= (ipc_port_t
) object
;
651 if (ip_active(port
)) {
652 assert(port
->ip_receiver_name
!= MACH_PORT_NULL
);
660 case MACH_MSG_TYPE_MOVE_SEND_ONCE
: {
661 /* move naked send-once right into the message */
662 assert(((ipc_port_t
)object
)->ip_sorights
);
667 panic("ipc_object_copyin_from_kernel: strange rights");
672 * Routine: ipc_object_destroy
674 * Destroys a naked capability.
675 * Consumes a ref for the object.
677 * A receive right should be in limbo or in transit.
685 mach_msg_type_name_t msgt_name
)
687 assert(IO_VALID(object
));
688 assert(io_otype(object
) == IOT_PORT
);
691 case MACH_MSG_TYPE_PORT_SEND
:
692 ipc_port_release_send((ipc_port_t
) object
);
695 case MACH_MSG_TYPE_PORT_SEND_ONCE
:
696 ipc_notify_send_once((ipc_port_t
) object
);
699 case MACH_MSG_TYPE_PORT_RECEIVE
:
700 ipc_port_release_receive((ipc_port_t
) object
);
704 panic("ipc_object_destroy: strange rights");
709 * Routine: ipc_object_destroy_dest
711 * Destroys a naked capability for the destination of
712 * of a message. Consumes a ref for the object.
719 ipc_object_destroy_dest(
721 mach_msg_type_name_t msgt_name
)
723 assert(IO_VALID(object
));
724 assert(io_otype(object
) == IOT_PORT
);
727 case MACH_MSG_TYPE_PORT_SEND
:
728 ipc_port_release_send((ipc_port_t
) object
);
731 case MACH_MSG_TYPE_PORT_SEND_ONCE
:
732 if (io_active(object
) &&
733 !ip_full_kernel((ipc_port_t
) object
))
734 ipc_notify_send_once((ipc_port_t
) object
);
736 ipc_port_release_sonce((ipc_port_t
) object
);
740 panic("ipc_object_destroy_dest: strange rights");
745 * Routine: ipc_object_copyout
747 * Copyout a capability, placing it into a space.
748 * If successful, consumes a ref for the object.
752 * KERN_SUCCESS Copied out object, consumed ref.
753 * KERN_INVALID_TASK The space is dead.
754 * KERN_INVALID_CAPABILITY The object is dead.
755 * KERN_NO_SPACE No room in space for another right.
756 * KERN_RESOURCE_SHORTAGE No memory available.
757 * KERN_UREFS_OVERFLOW Urefs limit exceeded
758 * and overflow wasn't specified.
765 mach_msg_type_name_t msgt_name
,
767 mach_port_name_t
*namep
)
769 mach_port_name_t name
;
773 assert(IO_VALID(object
));
774 assert(io_otype(object
) == IOT_PORT
);
776 is_write_lock(space
);
779 if (!is_active(space
)) {
780 is_write_unlock(space
);
781 return KERN_INVALID_TASK
;
784 if ((msgt_name
!= MACH_MSG_TYPE_PORT_SEND_ONCE
) &&
785 ipc_right_reverse(space
, object
, &name
, &entry
)) {
786 /* object is locked and active */
788 assert(entry
->ie_bits
& MACH_PORT_TYPE_SEND_RECEIVE
);
792 name
= CAST_MACH_PORT_TO_NAME(object
);
793 kr
= ipc_entry_get(space
, &name
, &entry
);
794 if (kr
!= KERN_SUCCESS
) {
795 /* unlocks/locks space, so must start again */
797 kr
= ipc_entry_grow_table(space
, ITS_SIZE_NONE
);
798 if (kr
!= KERN_SUCCESS
)
799 return kr
; /* space is unlocked */
804 assert(IE_BITS_TYPE(entry
->ie_bits
) == MACH_PORT_TYPE_NONE
);
805 assert(entry
->ie_object
== IO_NULL
);
808 if (!io_active(object
)) {
810 ipc_entry_dealloc(space
, name
, entry
);
811 is_write_unlock(space
);
812 return KERN_INVALID_CAPABILITY
;
815 entry
->ie_object
= object
;
819 /* space is write-locked and active, object is locked and active */
821 kr
= ipc_right_copyout(space
, name
, entry
,
822 msgt_name
, overflow
, object
);
824 /* object is unlocked */
825 is_write_unlock(space
);
827 if (kr
== KERN_SUCCESS
)
833 * Routine: ipc_object_copyout_name
835 * Copyout a capability, placing it into a space.
836 * The specified name is used for the capability.
837 * If successful, consumes a ref for the object.
841 * KERN_SUCCESS Copied out object, consumed ref.
842 * KERN_INVALID_TASK The space is dead.
843 * KERN_INVALID_CAPABILITY The object is dead.
844 * KERN_RESOURCE_SHORTAGE No memory available.
845 * KERN_UREFS_OVERFLOW Urefs limit exceeded
846 * and overflow wasn't specified.
847 * KERN_RIGHT_EXISTS Space has rights under another name.
848 * KERN_NAME_EXISTS Name is already used.
852 ipc_object_copyout_name(
855 mach_msg_type_name_t msgt_name
,
857 mach_port_name_t name
)
859 mach_port_name_t oname
;
864 #if IMPORTANCE_INHERITANCE
866 ipc_importance_task_t task_imp
= IIT_NULL
;
867 #endif /* IMPORTANCE_INHERITANCE */
869 assert(IO_VALID(object
));
870 assert(io_otype(object
) == IOT_PORT
);
872 kr
= ipc_entry_alloc_name(space
, name
, &entry
);
873 if (kr
!= KERN_SUCCESS
)
875 /* space is write-locked and active */
877 if ((msgt_name
!= MACH_MSG_TYPE_PORT_SEND_ONCE
) &&
878 ipc_right_reverse(space
, object
, &oname
, &oentry
)) {
879 /* object is locked and active */
884 if (IE_BITS_TYPE(entry
->ie_bits
) == MACH_PORT_TYPE_NONE
)
885 ipc_entry_dealloc(space
, name
, entry
);
887 is_write_unlock(space
);
888 return KERN_RIGHT_EXISTS
;
891 assert(entry
== oentry
);
892 assert(entry
->ie_bits
& MACH_PORT_TYPE_SEND_RECEIVE
);
894 if (ipc_right_inuse(space
, name
, entry
))
895 return KERN_NAME_EXISTS
;
897 assert(IE_BITS_TYPE(entry
->ie_bits
) == MACH_PORT_TYPE_NONE
);
898 assert(entry
->ie_object
== IO_NULL
);
901 if (!io_active(object
)) {
903 ipc_entry_dealloc(space
, name
, entry
);
904 is_write_unlock(space
);
905 return KERN_INVALID_CAPABILITY
;
908 entry
->ie_object
= object
;
911 /* space is write-locked and active, object is locked and active */
913 #if IMPORTANCE_INHERITANCE
915 * We are slamming a receive right into the space, without
916 * first having been enqueued on a port destined there. So,
917 * we have to arrange to boost the task appropriately if this
918 * port has assertions (and the task wants them).
920 if (msgt_name
== MACH_MSG_TYPE_PORT_RECEIVE
) {
921 ipc_port_t port
= (ipc_port_t
)object
;
923 if (space
->is_task
!= TASK_NULL
) {
924 task_imp
= space
->is_task
->task_imp_base
;
925 if (ipc_importance_task_is_any_receiver_type(task_imp
)) {
926 assertcnt
= port
->ip_impcount
;
927 ipc_importance_task_reference(task_imp
);
931 /* take port out of limbo */
932 assert(port
->ip_tempowner
!= 0);
933 port
->ip_tempowner
= 0;
936 #endif /* IMPORTANCE_INHERITANCE */
938 kr
= ipc_right_copyout(space
, name
, entry
,
939 msgt_name
, overflow
, object
);
941 /* object is unlocked */
942 is_write_unlock(space
);
944 #if IMPORTANCE_INHERITANCE
946 * Add the assertions to the task that we captured before
948 if (task_imp
!= IIT_NULL
) {
949 ipc_importance_task_hold_internal_assertion(task_imp
, assertcnt
);
950 ipc_importance_task_release(task_imp
);
952 #endif /* IMPORTANCE_INHERITANCE */
958 * Routine: ipc_object_copyout_dest
960 * Translates/consumes the destination right of a message.
961 * This is unlike normal copyout because the right is consumed
962 * in a funny way instead of being given to the receiving space.
963 * The receiver gets his name for the port, if he has receive
964 * rights, otherwise MACH_PORT_NULL.
966 * The object is locked and active. Nothing else locked.
967 * The object is unlocked and loses a reference.
971 ipc_object_copyout_dest(
974 mach_msg_type_name_t msgt_name
,
975 mach_port_name_t
*namep
)
977 mach_port_name_t name
;
979 assert(IO_VALID(object
));
980 assert(io_active(object
));
985 * If the space is the receiver/owner of the object,
986 * then we quietly consume the right and return
987 * the space's name for the object. Otherwise
988 * we destroy the right and return MACH_PORT_NULL.
992 case MACH_MSG_TYPE_PORT_SEND
: {
993 ipc_port_t port
= (ipc_port_t
) object
;
994 ipc_port_t nsrequest
= IP_NULL
;
995 mach_port_mscount_t mscount
;
997 if (port
->ip_receiver
== space
)
998 name
= port
->ip_receiver_name
;
1000 name
= MACH_PORT_NULL
;
1002 assert(port
->ip_srights
> 0);
1003 if (--port
->ip_srights
== 0 &&
1004 port
->ip_nsrequest
!= IP_NULL
) {
1005 nsrequest
= port
->ip_nsrequest
;
1006 port
->ip_nsrequest
= IP_NULL
;
1007 mscount
= port
->ip_mscount
;
1009 ipc_notify_no_senders(nsrequest
, mscount
);
1015 case MACH_MSG_TYPE_PORT_SEND_ONCE
: {
1016 ipc_port_t port
= (ipc_port_t
) object
;
1018 assert(port
->ip_sorights
> 0);
1020 if (port
->ip_receiver
== space
) {
1021 /* quietly consume the send-once right */
1023 port
->ip_sorights
--;
1024 name
= port
->ip_receiver_name
;
1028 * A very bizarre case. The message
1029 * was received, but before this copyout
1030 * happened the space lost receive rights.
1031 * We can't quietly consume the soright
1032 * out from underneath some other task,
1033 * so generate a send-once notification.
1036 ip_reference(port
); /* restore ref */
1039 ipc_notify_send_once(port
);
1040 name
= MACH_PORT_NULL
;
1047 panic("ipc_object_copyout_dest: strange rights");
1048 name
= MACH_PORT_DEAD
;
1055 * Routine: ipc_object_rename
1057 * Rename an entry in a space.
1061 * KERN_SUCCESS Renamed the entry.
1062 * KERN_INVALID_TASK The space was dead.
1063 * KERN_INVALID_NAME oname didn't denote an entry.
1064 * KERN_NAME_EXISTS nname already denoted an entry.
1065 * KERN_RESOURCE_SHORTAGE Couldn't allocate new entry.
1071 mach_port_name_t oname
,
1072 mach_port_name_t nname
)
1074 ipc_entry_t oentry
, nentry
;
1077 kr
= ipc_entry_alloc_name(space
, nname
, &nentry
);
1078 if (kr
!= KERN_SUCCESS
)
1081 /* space is write-locked and active */
1083 if (ipc_right_inuse(space
, nname
, nentry
)) {
1084 /* space is unlocked */
1085 return KERN_NAME_EXISTS
;
1088 /* don't let ipc_entry_lookup see the uninitialized new entry */
1090 if ((oname
== nname
) ||
1091 ((oentry
= ipc_entry_lookup(space
, oname
)) == IE_NULL
)) {
1092 ipc_entry_dealloc(space
, nname
, nentry
);
1093 is_write_unlock(space
);
1094 return KERN_INVALID_NAME
;
1097 kr
= ipc_right_rename(space
, oname
, oentry
, nname
, nentry
);
1098 /* space is unlocked */
1103 * Check whether the object is a port if so, free it. But
1104 * keep track of that fact.
1109 ipc_object_t object
)
1113 if (otype
== IOT_PORT
) {
1114 port
= (ipc_port_t
) object
;
1115 ipc_port_finalize(port
);
1117 io_lock_destroy(object
);
1118 zfree(ipc_object_zones
[otype
], object
);