2 * Copyright (c) 2002,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@
23 * @OSF_FREE_COPYRIGHT@
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_port.c
57 * Functions to manipulate IPC ports.
62 #include <zone_debug.h>
63 #include <mach_assert.h>
65 #include <mach/port.h>
66 #include <mach/kern_return.h>
67 #include <kern/lock.h>
68 #include <kern/ipc_kobject.h>
69 #include <kern/thread.h>
70 #include <kern/misc_protos.h>
71 #include <kern/wait_queue.h>
72 #include <ipc/ipc_entry.h>
73 #include <ipc/ipc_space.h>
74 #include <ipc/ipc_object.h>
75 #include <ipc/ipc_port.h>
76 #include <ipc/ipc_pset.h>
77 #include <ipc/ipc_kmsg.h>
78 #include <ipc/ipc_mqueue.h>
79 #include <ipc/ipc_notify.h>
80 #include <ipc/ipc_print.h>
81 #include <ipc/ipc_table.h>
84 #include <machine/db_machdep.h>
85 #include <ddb/db_command.h>
86 #include <ddb/db_expr.h>
91 decl_mutex_data(, ipc_port_multiple_lock_data
)
92 decl_mutex_data(, ipc_port_timestamp_lock_data
)
93 ipc_port_timestamp_t ipc_port_timestamp_data
;
96 void ipc_port_init_debug(
98 #endif /* MACH_ASSERT */
100 #if MACH_KDB && ZONE_DEBUG
102 void print_type_ports(unsigned, unsigned);
103 void print_ports(void);
104 #endif /* MACH_KDB && ZONE_DEBUG */
107 * Routine: ipc_port_timestamp
109 * Retrieve a timestamp value.
113 ipc_port_timestamp(void)
115 ipc_port_timestamp_t timestamp
;
117 ipc_port_timestamp_lock();
118 timestamp
= ipc_port_timestamp_data
++;
119 ipc_port_timestamp_unlock();
125 * Routine: ipc_port_dnrequest
127 * Try to allocate a dead-name request slot.
128 * If successful, returns the request index.
129 * Otherwise returns zero.
131 * The port is locked and active.
133 * KERN_SUCCESS A request index was found.
134 * KERN_NO_SPACE No index allocated.
140 mach_port_name_t name
,
142 ipc_port_request_index_t
*indexp
)
144 ipc_port_request_t ipr
, table
;
145 ipc_port_request_index_t index
;
147 assert(ip_active(port
));
148 assert(name
!= MACH_PORT_NULL
);
149 assert(soright
!= IP_NULL
);
151 table
= port
->ip_dnrequests
;
152 if (table
== IPR_NULL
)
153 return KERN_NO_SPACE
;
155 index
= table
->ipr_next
;
157 return KERN_NO_SPACE
;
160 assert(ipr
->ipr_name
== MACH_PORT_NULL
);
162 table
->ipr_next
= ipr
->ipr_next
;
163 ipr
->ipr_name
= name
;
164 ipr
->ipr_soright
= soright
;
171 * Routine: ipc_port_dngrow
173 * Grow a port's table of dead-name requests.
175 * The port must be locked and active.
176 * Nothing else locked; will allocate memory.
177 * Upon return the port is unlocked.
179 * KERN_SUCCESS Grew the table.
180 * KERN_SUCCESS Somebody else grew the table.
181 * KERN_SUCCESS The port died.
182 * KERN_RESOURCE_SHORTAGE Couldn't allocate new table.
183 * KERN_NO_SPACE Couldn't grow to desired size
191 ipc_table_size_t its
;
192 ipc_port_request_t otable
, ntable
;
194 assert(ip_active(port
));
196 otable
= port
->ip_dnrequests
;
197 if (otable
== IPR_NULL
)
198 its
= &ipc_table_dnrequests
[0];
200 its
= otable
->ipr_size
+ 1;
202 if (target_size
!= ITS_SIZE_NONE
) {
203 if ((otable
!= IPR_NULL
) &&
204 (target_size
<= otable
->ipr_size
->its_size
)) {
208 while ((its
->its_size
) && (its
->its_size
< target_size
)) {
211 if (its
->its_size
== 0) {
213 return KERN_NO_SPACE
;
220 if ((its
->its_size
== 0) ||
221 ((ntable
= it_dnrequests_alloc(its
)) == IPR_NULL
)) {
222 ipc_port_release(port
);
223 return KERN_RESOURCE_SHORTAGE
;
230 * Check that port is still active and that nobody else
231 * has slipped in and grown the table on us. Note that
232 * just checking port->ip_dnrequests == otable isn't
233 * sufficient; must check ipr_size.
236 if (ip_active(port
) &&
237 (port
->ip_dnrequests
== otable
) &&
238 ((otable
== IPR_NULL
) || (otable
->ipr_size
+1 == its
))) {
239 ipc_table_size_t oits
;
240 ipc_table_elems_t osize
, nsize
;
241 ipc_port_request_index_t free
, i
;
243 /* copy old table to new table */
245 if (otable
!= IPR_NULL
) {
246 oits
= otable
->ipr_size
;
247 osize
= oits
->its_size
;
248 free
= otable
->ipr_next
;
250 (void) memcpy((void *)(ntable
+ 1),
251 (const void *)(otable
+ 1),
252 (osize
- 1) * sizeof(struct ipc_port_request
));
258 nsize
= its
->its_size
;
259 assert(nsize
> osize
);
261 /* add new elements to the new table's free list */
263 for (i
= osize
; i
< nsize
; i
++) {
264 ipc_port_request_t ipr
= &ntable
[i
];
266 ipr
->ipr_name
= MACH_PORT_NULL
;
267 ipr
->ipr_next
= free
;
271 ntable
->ipr_next
= free
;
272 ntable
->ipr_size
= its
;
273 port
->ip_dnrequests
= ntable
;
276 if (otable
!= IPR_NULL
) {
277 it_dnrequests_free(oits
, otable
);
280 ip_check_unlock(port
);
281 it_dnrequests_free(its
, ntable
);
288 * Routine: ipc_port_dncancel
290 * Cancel a dead-name request and return the send-once right.
292 * The port must locked and active.
298 mach_port_name_t name
,
299 ipc_port_request_index_t index
)
301 ipc_port_request_t ipr
, table
;
302 ipc_port_t dnrequest
;
304 assert(ip_active(port
));
305 assert(name
!= MACH_PORT_NULL
);
308 table
= port
->ip_dnrequests
;
309 assert(table
!= IPR_NULL
);
312 dnrequest
= ipr
->ipr_soright
;
313 assert(ipr
->ipr_name
== name
);
315 /* return ipr to the free list inside the table */
317 ipr
->ipr_name
= MACH_PORT_NULL
;
318 ipr
->ipr_next
= table
->ipr_next
;
319 table
->ipr_next
= index
;
325 * Routine: ipc_port_pdrequest
327 * Make a port-deleted request, returning the
328 * previously registered send-once right.
329 * Just cancels the previous request if notify is IP_NULL.
331 * The port is locked and active. It is unlocked.
332 * Consumes a ref for notify (if non-null), and
333 * returns previous with a ref (if non-null).
340 ipc_port_t
*previousp
)
344 assert(ip_active(port
));
346 previous
= port
->ip_pdrequest
;
347 port
->ip_pdrequest
= notify
;
350 *previousp
= previous
;
354 * Routine: ipc_port_nsrequest
356 * Make a no-senders request, returning the
357 * previously registered send-once right.
358 * Just cancels the previous request if notify is IP_NULL.
360 * The port is locked and active. It is unlocked.
361 * Consumes a ref for notify (if non-null), and
362 * returns previous with a ref (if non-null).
368 mach_port_mscount_t sync
,
370 ipc_port_t
*previousp
)
373 mach_port_mscount_t mscount
;
375 assert(ip_active(port
));
377 previous
= port
->ip_nsrequest
;
378 mscount
= port
->ip_mscount
;
380 if ((port
->ip_srights
== 0) && (sync
<= mscount
) &&
381 (notify
!= IP_NULL
)) {
382 port
->ip_nsrequest
= IP_NULL
;
384 ipc_notify_no_senders(notify
, mscount
);
386 port
->ip_nsrequest
= notify
;
390 *previousp
= previous
;
395 * Routine: ipc_port_clear_receiver
397 * Prepares a receive right for transmission/destruction.
399 * The port is locked and active.
403 ipc_port_clear_receiver(
408 assert(ip_active(port
));
411 * pull ourselves from any sets.
413 if (port
->ip_pset_count
!= 0) {
414 ipc_pset_remove_from_all(port
);
415 assert(port
->ip_pset_count
== 0);
419 * Send anyone waiting on the port's queue directly away.
420 * Also clear the mscount and seqno.
423 imq_lock(&port
->ip_messages
);
424 ipc_mqueue_changed(&port
->ip_messages
);
425 ipc_port_set_mscount(port
, 0);
426 port
->ip_messages
.imq_seqno
= 0;
427 imq_unlock(&port
->ip_messages
);
432 * Routine: ipc_port_init
434 * Initializes a newly-allocated port.
435 * Doesn't touch the ip_object fields.
442 mach_port_name_t name
)
444 /* port->ip_kobject doesn't have to be initialized */
446 port
->ip_receiver
= space
;
447 port
->ip_receiver_name
= name
;
449 port
->ip_mscount
= 0;
450 port
->ip_srights
= 0;
451 port
->ip_sorights
= 0;
453 port
->ip_nsrequest
= IP_NULL
;
454 port
->ip_pdrequest
= IP_NULL
;
455 port
->ip_dnrequests
= IPR_NULL
;
457 port
->ip_pset_count
= 0;
458 port
->ip_premsg
= IKM_NULL
;
461 ipc_port_init_debug(port
);
462 #endif /* MACH_ASSERT */
464 ipc_mqueue_init(&port
->ip_messages
, FALSE
/* set */);
468 * Routine: ipc_port_alloc
472 * Nothing locked. If successful, the port is returned
473 * locked. (The caller doesn't have a reference.)
475 * KERN_SUCCESS The port is allocated.
476 * KERN_INVALID_TASK The space is dead.
477 * KERN_NO_SPACE No room for an entry in the space.
478 * KERN_RESOURCE_SHORTAGE Couldn't allocate memory.
484 mach_port_name_t
*namep
,
488 mach_port_name_t name
;
491 kr
= ipc_object_alloc(space
, IOT_PORT
,
492 MACH_PORT_TYPE_RECEIVE
, 0,
493 &name
, (ipc_object_t
*) &port
);
494 if (kr
!= KERN_SUCCESS
)
499 ipc_port_init(port
, space
, name
);
501 if (task_is_classic(current_task())) {
502 IP_SET_CLASSIC(port
);
512 * Routine: ipc_port_alloc_name
514 * Allocate a port, with a specific name.
516 * Nothing locked. If successful, the port is returned
517 * locked. (The caller doesn't have a reference.)
519 * KERN_SUCCESS The port is allocated.
520 * KERN_INVALID_TASK The space is dead.
521 * KERN_NAME_EXISTS The name already denotes a right.
522 * KERN_RESOURCE_SHORTAGE Couldn't allocate memory.
528 mach_port_name_t name
,
534 kr
= ipc_object_alloc_name(space
, IOT_PORT
,
535 MACH_PORT_TYPE_RECEIVE
, 0,
536 name
, (ipc_object_t
*) &port
);
537 if (kr
!= KERN_SUCCESS
)
542 ipc_port_init(port
, space
, name
);
544 if (task_is_classic(current_task())) {
545 IP_SET_CLASSIC(port
);
554 * Generate dead name notifications. Called from ipc_port_destroy.
555 * Port is unlocked but still has reference(s);
556 * dnrequests was taken from port while the port
557 * was locked but the port now has port->ip_dnrequests set to IPR_NULL.
562 ipc_port_request_t dnrequests
)
564 ipc_table_size_t its
= dnrequests
->ipr_size
;
565 ipc_table_elems_t size
= its
->its_size
;
566 ipc_port_request_index_t index
;
568 for (index
= 1; index
< size
; index
++) {
569 ipc_port_request_t ipr
= &dnrequests
[index
];
570 mach_port_name_t name
= ipr
->ipr_name
;
573 if (name
== MACH_PORT_NULL
)
576 soright
= ipr
->ipr_soright
;
577 assert(soright
!= IP_NULL
);
579 ipc_notify_dead_name(soright
, name
);
582 it_dnrequests_free(its
, dnrequests
);
586 * Routine: ipc_port_destroy
588 * Destroys a port. Cleans up queued messages.
590 * If the port has a backup, it doesn't get destroyed,
591 * but is sent in a port-destroyed notification to the backup.
593 * The port is locked and alive; nothing else locked.
594 * The caller has a reference, which is consumed.
595 * Afterwards, the port is unlocked and dead.
602 ipc_port_t pdrequest
, nsrequest
;
604 ipc_kmsg_queue_t kmqueue
;
606 ipc_port_request_t dnrequests
;
608 assert(ip_active(port
));
609 /* port->ip_receiver_name is garbage */
610 /* port->ip_receiver/port->ip_destination is garbage */
611 assert(port
->ip_pset_count
== 0);
612 assert(port
->ip_mscount
== 0);
614 /* first check for a backup port */
616 pdrequest
= port
->ip_pdrequest
;
617 if (pdrequest
!= IP_NULL
) {
618 /* we assume the ref for pdrequest */
619 port
->ip_pdrequest
= IP_NULL
;
621 /* make port be in limbo */
622 port
->ip_receiver_name
= MACH_PORT_NULL
;
623 port
->ip_destination
= IP_NULL
;
626 /* consumes our refs for port and pdrequest */
627 ipc_notify_port_destroyed(pdrequest
, port
);
631 /* once port is dead, we don't need to keep it locked */
633 port
->ip_object
.io_bits
&= ~IO_BITS_ACTIVE
;
634 port
->ip_timestamp
= ipc_port_timestamp();
637 dnrequests
= port
->ip_dnrequests
;
638 port
->ip_dnrequests
= IPR_NULL
;
641 * If the port has a preallocated message buffer and that buffer
642 * is not inuse, free it. If it has an inuse one, then the kmsg
643 * free will detect that we freed the association and it can free it
644 * like a normal buffer.
646 if (IP_PREALLOC(port
)) {
647 kmsg
= port
->ip_premsg
;
648 assert(kmsg
!= IKM_NULL
);
649 IP_CLEAR_PREALLOC(port
, kmsg
);
650 if (!ikm_prealloc_inuse(kmsg
))
655 /* throw away no-senders request */
657 nsrequest
= port
->ip_nsrequest
;
658 if (nsrequest
!= IP_NULL
)
659 ipc_notify_send_once(nsrequest
); /* consumes ref */
661 /* destroy any queued messages */
662 mqueue
= &port
->ip_messages
;
663 ipc_mqueue_destroy(mqueue
);
665 /* generate dead-name notifications */
666 if (dnrequests
!= IPR_NULL
) {
667 ipc_port_dnnotify(port
, dnrequests
);
670 ipc_kobject_destroy(port
);
672 ipc_port_release(port
); /* consume caller's ref */
676 * Routine: ipc_port_check_circularity
678 * Check if queueing "port" in a message for "dest"
679 * would create a circular group of ports and messages.
681 * If no circularity (FALSE returned), then "port"
682 * is changed from "in limbo" to "in transit".
684 * That is, we want to set port->ip_destination == dest,
685 * but guaranteeing that this doesn't create a circle
686 * port->ip_destination->ip_destination->... == port
688 * No ports locked. References held for "port" and "dest".
692 ipc_port_check_circularity(
698 assert(port
!= IP_NULL
);
699 assert(dest
!= IP_NULL
);
706 * First try a quick check that can run in parallel.
707 * No circularity if dest is not in transit.
711 if (ip_lock_try(dest
)) {
712 if (!ip_active(dest
) ||
713 (dest
->ip_receiver_name
!= MACH_PORT_NULL
) ||
714 (dest
->ip_destination
== IP_NULL
))
717 /* dest is in transit; further checking necessary */
723 ipc_port_multiple_lock(); /* massive serialization */
726 * Search for the end of the chain (a port not in transit),
727 * acquiring locks along the way.
733 if (!ip_active(base
) ||
734 (base
->ip_receiver_name
!= MACH_PORT_NULL
) ||
735 (base
->ip_destination
== IP_NULL
))
738 base
= base
->ip_destination
;
741 /* all ports in chain from dest to base, inclusive, are locked */
744 /* circularity detected! */
746 ipc_port_multiple_unlock();
748 /* port (== base) is in limbo */
750 assert(ip_active(port
));
751 assert(port
->ip_receiver_name
== MACH_PORT_NULL
);
752 assert(port
->ip_destination
== IP_NULL
);
754 while (dest
!= IP_NULL
) {
757 /* dest is in transit or in limbo */
759 assert(ip_active(dest
));
760 assert(dest
->ip_receiver_name
== MACH_PORT_NULL
);
762 next
= dest
->ip_destination
;
771 * The guarantee: lock port while the entire chain is locked.
772 * Once port is locked, we can take a reference to dest,
773 * add port to the chain, and unlock everything.
777 ipc_port_multiple_unlock();
781 /* port is in limbo */
783 assert(ip_active(port
));
784 assert(port
->ip_receiver_name
== MACH_PORT_NULL
);
785 assert(port
->ip_destination
== IP_NULL
);
788 port
->ip_destination
= dest
;
790 /* now unlock chain */
792 while (port
!= base
) {
795 /* port is in transit */
797 assert(ip_active(port
));
798 assert(port
->ip_receiver_name
== MACH_PORT_NULL
);
799 assert(port
->ip_destination
!= IP_NULL
);
801 next
= port
->ip_destination
;
806 /* base is not in transit */
808 assert(!ip_active(base
) ||
809 (base
->ip_receiver_name
!= MACH_PORT_NULL
) ||
810 (base
->ip_destination
== IP_NULL
));
817 * Routine: ipc_port_lookup_notify
819 * Make a send-once notify port from a receive right.
820 * Returns IP_NULL if name doesn't denote a receive right.
822 * The space must be locked (read or write) and active.
823 * Being the active space, we can rely on thread server_id
824 * context to give us the proper server level sub-order
829 ipc_port_lookup_notify(
831 mach_port_name_t name
)
836 assert(space
->is_active
);
838 entry
= ipc_entry_lookup(space
, name
);
839 if (entry
== IE_NULL
)
841 if ((entry
->ie_bits
& MACH_PORT_TYPE_RECEIVE
) == 0)
844 port
= (ipc_port_t
) entry
->ie_object
;
845 assert(port
!= IP_NULL
);
848 assert(ip_active(port
));
849 assert(port
->ip_receiver_name
== name
);
850 assert(port
->ip_receiver
== space
);
860 * Routine: ipc_port_make_send_locked
862 * Make a naked send right from a receive right.
865 * port locked and active.
868 ipc_port_make_send_locked(
871 assert(ip_active(port
));
880 * Routine: ipc_port_make_send
882 * Make a naked send right from a receive right.
894 if (ip_active(port
)) {
906 * Routine: ipc_port_copy_send
908 * Make a naked send right from another naked send right.
911 * dead port -> IP_DEAD
912 * live port -> port + ref
914 * Nothing locked except possibly a space.
927 if (ip_active(port
)) {
928 assert(port
->ip_srights
> 0);
941 * Routine: ipc_port_copyout_send
943 * Copyout a naked send right (possibly null/dead),
944 * or if that fails, destroy the right.
950 ipc_port_copyout_send(
954 mach_port_name_t name
;
956 if (IP_VALID(sright
)) {
959 kr
= ipc_object_copyout(space
, (ipc_object_t
) sright
,
960 MACH_MSG_TYPE_PORT_SEND
, TRUE
, &name
);
961 if (kr
!= KERN_SUCCESS
) {
962 ipc_port_release_send(sright
);
964 if (kr
== KERN_INVALID_CAPABILITY
)
965 name
= MACH_PORT_DEAD
;
967 name
= MACH_PORT_NULL
;
970 name
= (mach_port_name_t
) sright
;
976 * Routine: ipc_port_release_send
978 * Release a (valid) naked send right.
979 * Consumes a ref for the port.
985 ipc_port_release_send(
988 ipc_port_t nsrequest
= IP_NULL
;
989 mach_port_mscount_t mscount
;
991 assert(IP_VALID(port
));
996 if (!ip_active(port
)) {
997 ip_check_unlock(port
);
1001 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
);
1011 * Check that there are no other locks taken, because
1012 * [norma_]ipc_notify_no_senders routines may block.
1014 check_simple_locks();
1020 * Routine: ipc_port_make_sonce
1022 * Make a naked send-once right from a receive right.
1024 * The port is not locked but it is active.
1028 ipc_port_make_sonce(
1031 assert(IP_VALID(port
));
1034 assert(ip_active(port
));
1035 port
->ip_sorights
++;
1043 * Routine: ipc_port_release_sonce
1045 * Release a naked send-once right.
1046 * Consumes a ref for the port.
1048 * In normal situations, this is never used.
1049 * Send-once rights are only consumed when
1050 * a message (possibly a send-once notification)
1053 * Nothing locked except possibly a space.
1057 ipc_port_release_sonce(
1060 assert(IP_VALID(port
));
1064 assert(port
->ip_sorights
> 0);
1066 port
->ip_sorights
--;
1070 if (!ip_active(port
)) {
1071 ip_check_unlock(port
);
1079 * Routine: ipc_port_release_receive
1081 * Release a naked (in limbo or in transit) receive right.
1082 * Consumes a ref for the port; destroys the port.
1088 ipc_port_release_receive(
1093 assert(IP_VALID(port
));
1096 assert(ip_active(port
));
1097 assert(port
->ip_receiver_name
== MACH_PORT_NULL
);
1098 dest
= port
->ip_destination
;
1100 ipc_port_destroy(port
); /* consumes ref, unlocks */
1102 if (dest
!= IP_NULL
)
1103 ipc_port_release(dest
);
1107 * Routine: ipc_port_alloc_special
1109 * Allocate a port in a special space.
1110 * The new port is returned with one ref.
1111 * If unsuccessful, IP_NULL is returned.
1117 ipc_port_alloc_special(
1122 port
= (ipc_port_t
) io_alloc(IOT_PORT
);
1123 if (port
== IP_NULL
)
1126 bzero((char *)port
, sizeof(*port
));
1127 io_lock_init(&port
->ip_object
);
1128 port
->ip_references
= 1;
1129 port
->ip_object
.io_bits
= io_makebits(TRUE
, IOT_PORT
, 0);
1131 ipc_port_init(port
, space
, 1);
1137 * Routine: ipc_port_dealloc_special
1139 * Deallocate a port in a special space.
1140 * Consumes one ref for the port.
1146 ipc_port_dealloc_special(
1151 assert(ip_active(port
));
1152 // assert(port->ip_receiver_name != MACH_PORT_NULL);
1153 assert(port
->ip_receiver
== space
);
1156 * We clear ip_receiver_name and ip_receiver to simplify
1157 * the ipc_space_kernel check in ipc_mqueue_send.
1160 port
->ip_receiver_name
= MACH_PORT_NULL
;
1161 port
->ip_receiver
= IS_NULL
;
1163 /* relevant part of ipc_port_clear_receiver */
1164 ipc_port_set_mscount(port
, 0);
1165 port
->ip_messages
.imq_seqno
= 0;
1167 ipc_port_destroy(port
);
1173 * Keep a list of all allocated ports.
1174 * Allocation is intercepted via ipc_port_init;
1175 * deallocation is intercepted via io_free.
1177 queue_head_t port_alloc_queue
;
1178 decl_mutex_data(,port_alloc_queue_lock
)
1180 unsigned long port_count
= 0;
1181 unsigned long port_count_warning
= 20000;
1182 unsigned long port_timestamp
= 0;
1184 void db_port_stack_trace(
1189 unsigned int verbose
,
1190 unsigned int display
,
1191 unsigned int ref_search
,
1192 unsigned int ref_target
);
1195 * Initialize global state needed for run-time
1199 ipc_port_debug_init(void)
1201 queue_init(&port_alloc_queue
);
1202 mutex_init(&port_alloc_queue_lock
, ETAP_IPC_PORT_ALLOCQ
);
1207 * Initialize all of the debugging state in a port.
1208 * Insert the port into a global list of all allocated ports.
1211 ipc_port_init_debug(
1216 port
->ip_thread
= (unsigned long) current_thread();
1217 port
->ip_timetrack
= port_timestamp
++;
1218 for (i
= 0; i
< IP_CALLSTACK_MAX
; ++i
)
1219 port
->ip_callstack
[i
] = 0;
1220 for (i
= 0; i
< IP_NSPARES
; ++i
)
1221 port
->ip_spares
[i
] = 0;
1224 * Machine-dependent routine to fill in an
1225 * array with up to IP_CALLSTACK_MAX levels
1226 * of return pc information.
1228 machine_callstack(&port
->ip_callstack
[0], IP_CALLSTACK_MAX
);
1231 mutex_lock(&port_alloc_queue_lock
);
1233 if (port_count_warning
> 0 && port_count
>= port_count_warning
)
1234 assert(port_count
< port_count_warning
);
1235 queue_enter(&port_alloc_queue
, port
, ipc_port_t
, ip_port_links
);
1236 mutex_unlock(&port_alloc_queue_lock
);
1242 * Remove a port from the queue of allocated ports.
1243 * This routine should be invoked JUST prior to
1244 * deallocating the actual memory occupied by the port.
1247 ipc_port_track_dealloc(
1251 mutex_lock(&port_alloc_queue_lock
);
1252 assert(port_count
> 0);
1254 queue_remove(&port_alloc_queue
, port
, ipc_port_t
, ip_port_links
);
1255 mutex_unlock(&port_alloc_queue_lock
);
1259 #endif /* MACH_ASSERT */
1264 #include <ddb/db_output.h>
1265 #include <ddb/db_print.h>
1267 #define printf kdbprintf
1268 extern int db_indent
;
1271 db_port_queue_print(
1275 * ipc_entry_print - pretty-print an ipc_entry
1277 static void ipc_entry_print(struct ipc_entry
*, char *); /* forward */
1279 static void ipc_entry_print(struct ipc_entry
*iep
, char *tag
)
1281 ipc_entry_bits_t bits
= iep
->ie_bits
;
1283 iprintf("%s @", tag
);
1284 printf(" 0x%x, bits=%x object=%x\n", iep
, bits
, iep
->ie_object
);
1286 iprintf("urefs=%x ", IE_BITS_UREFS(bits
));
1287 printf("type=%x gen=%x\n", IE_BITS_TYPE(bits
), IE_BITS_GEN(bits
));
1292 * Routine: ipc_port_print
1294 * Pretty-print a port for kdb.
1296 int ipc_port_print_long
= 0; /* set for more detail */
1301 boolean_t have_addr
,
1305 extern int db_indent
;
1311 int i
, needs_db_indent
, items_printed
;
1312 #endif /* MACH_ASSERT */
1314 if (db_option(modif
, 'l') || db_option(modif
, 'v'))
1317 printf("port 0x%x\n", port
);
1321 ipc_object_print(&port
->ip_object
);
1323 if (ipc_port_print_long
) {
1327 if (!ip_active(port
)) {
1328 iprintf("timestamp=0x%x", port
->ip_timestamp
);
1329 } else if (port
->ip_receiver_name
== MACH_PORT_NULL
) {
1330 iprintf("destination=0x%x (", port
->ip_destination
);
1331 if (port
->ip_destination
!= MACH_PORT_NULL
&&
1332 (task
= db_task_from_space(port
->ip_destination
->
1333 ip_receiver
, &task_id
)))
1334 printf("task%d at 0x%x", task_id
, task
);
1339 iprintf("receiver=0x%x (", port
->ip_receiver
);
1340 if (port
->ip_receiver
== ipc_space_kernel
)
1342 else if (port
->ip_receiver
== ipc_space_reply
)
1344 else if (port
->ip_receiver
== default_pager_space
)
1345 printf("default_pager");
1346 else if (task
= db_task_from_space(port
->ip_receiver
, &task_id
))
1347 printf("task%d at 0x%x", task_id
, task
);
1352 printf(", receiver_name=0x%x\n", port
->ip_receiver_name
);
1354 iprintf("mscount=%d", port
->ip_mscount
);
1355 printf(", srights=%d", port
->ip_srights
);
1356 printf(", sorights=%d\n", port
->ip_sorights
);
1358 iprintf("nsrequest=0x%x", port
->ip_nsrequest
);
1359 printf(", pdrequest=0x%x", port
->ip_pdrequest
);
1360 printf(", dnrequests=0x%x\n", port
->ip_dnrequests
);
1362 iprintf("pset_count=0x%x", port
->ip_pset_count
);
1363 printf(", seqno=%d", port
->ip_messages
.imq_seqno
);
1364 printf(", msgcount=%d", port
->ip_messages
.imq_msgcount
);
1365 printf(", qlimit=%d\n", port
->ip_messages
.imq_qlimit
);
1367 iprintf("kmsgs=0x%x", port
->ip_messages
.imq_messages
.ikmq_base
);
1368 printf(", rcvrs queue=0x%x", port
->ip_messages
.imq_wait_queue
);
1369 printf(", kobj=0x%x\n", port
->ip_kobject
);
1371 iprintf("premsg=0x%x", port
->ip_premsg
);
1374 /* don't bother printing callstack or queue links */
1375 iprintf("ip_thread=0x%x, ip_timetrack=0x%x\n",
1376 port
->ip_thread
, port
->ip_timetrack
);
1378 needs_db_indent
= 1;
1379 for (i
= 0; i
< IP_NSPARES
; ++i
) {
1380 if (port
->ip_spares
[i
] != 0) {
1381 if (needs_db_indent
) {
1383 needs_db_indent
= 0;
1385 printf("%sip_spares[%d] = %d",
1386 items_printed
? ", " : "", i
,
1387 port
->ip_spares
[i
]);
1388 if (++items_printed
>= 4) {
1389 needs_db_indent
= 1;
1395 #endif /* MACH_ASSERT */
1398 iprintf("kmsg queue contents:\n");
1400 nmsgs
= db_port_queue_print(port
);
1402 iprintf("...total kmsgs: %d\n", nmsgs
);
1411 mach_port_name_t name
)
1416 if (task
== TASK_NULL
) {
1417 db_printf("port_name_to_data: task is null\n");
1420 if ((space
= task
->itk_space
) == 0) {
1421 db_printf("port_name_to_data: task->itk_space is null\n");
1424 if (!space
->is_active
) {
1425 db_printf("port_name_to_data: task->itk_space not active\n");
1428 if ((entry
= ipc_entry_lookup(space
, name
)) == 0) {
1429 db_printf("port_name_to_data: lookup yields zero\n");
1432 return ((ipc_port_t
)entry
->ie_object
);
1437 print_type_ports(type
, dead
)
1445 for (port
= (ipc_port_t
)first_element(ipc_object_zones
[IOT_PORT
]);
1447 port
= (ipc_port_t
)next_element(ipc_object_zones
[IOT_PORT
],
1449 if (ip_kotype(port
) == type
&&
1450 (!dead
|| !ip_active(port
))) {
1452 printf("0x%x\t", port
);
1454 printf("0x%x\n", port
);
1464 int total_port_count
;
1465 int space_null_count
;
1466 int space_kernel_count
;
1467 int space_reply_count
;
1468 int space_pager_count
;
1469 int space_other_count
;
1474 } port_types
[IKOT_MAX_TYPE
];
1476 total_port_count
= 0;
1478 bzero((char *)&port_types
[0], sizeof(port_types
));
1479 space_null_count
= 0;
1480 space_kernel_count
= 0;
1481 space_reply_count
= 0;
1482 space_pager_count
= 0;
1483 space_other_count
= 0;
1485 for (port
= (ipc_port_t
)first_element(ipc_object_zones
[IOT_PORT
]);
1487 port
= (ipc_port_t
)next_element(ipc_object_zones
[IOT_PORT
],
1488 (vm_offset_t
)port
)) {
1490 if (ip_kotype(port
) >= IKOT_MAX_TYPE
) {
1491 port_types
[IKOT_UNKNOWN
].total_count
++;
1492 if (!io_active(&port
->ip_object
))
1493 port_types
[IKOT_UNKNOWN
].dead_count
++;
1495 port_types
[ip_kotype(port
)].total_count
++;
1496 if (!io_active(&port
->ip_object
))
1497 port_types
[ip_kotype(port
)].dead_count
++;
1500 if (!port
->ip_receiver
)
1502 else if (port
->ip_receiver
== ipc_space_kernel
)
1503 space_kernel_count
++;
1504 else if (port
->ip_receiver
== ipc_space_reply
)
1505 space_reply_count
++;
1506 else if (port
->ip_receiver
== default_pager_space
)
1507 space_pager_count
++;
1509 space_other_count
++;
1511 printf("\n%7d total ports\n\n", total_port_count
);
1513 #define PRINT_ONE_PORT_TYPE(name) \
1514 printf("%7d %s", port_types[IKOT_##name].total_count, # name); \
1515 if (port_types[IKOT_##name].dead_count) \
1516 printf(" (%d dead ports)", port_types[IKOT_##name].dead_count);\
1519 PRINT_ONE_PORT_TYPE(NONE
);
1520 PRINT_ONE_PORT_TYPE(THREAD
);
1521 PRINT_ONE_PORT_TYPE(TASK
);
1522 PRINT_ONE_PORT_TYPE(HOST
);
1523 PRINT_ONE_PORT_TYPE(HOST_PRIV
);
1524 PRINT_ONE_PORT_TYPE(PROCESSOR
);
1525 PRINT_ONE_PORT_TYPE(PSET
);
1526 PRINT_ONE_PORT_TYPE(PSET_NAME
);
1527 PRINT_ONE_PORT_TYPE(PAGING_REQUEST
);
1528 PRINT_ONE_PORT_TYPE(MEMORY_OBJECT
);
1529 PRINT_ONE_PORT_TYPE(MIG
);
1530 PRINT_ONE_PORT_TYPE(XMM_PAGER
);
1531 PRINT_ONE_PORT_TYPE(XMM_KERNEL
);
1532 PRINT_ONE_PORT_TYPE(XMM_REPLY
);
1533 PRINT_ONE_PORT_TYPE(CLOCK
);
1534 PRINT_ONE_PORT_TYPE(CLOCK_CTRL
);
1535 PRINT_ONE_PORT_TYPE(MASTER_DEVICE
);
1536 PRINT_ONE_PORT_TYPE(UNKNOWN
);
1537 printf("\nipc_space:\n\n");
1538 printf("NULL KERNEL REPLY PAGER OTHER\n");
1539 printf("%d %d %d %d %d\n",
1548 #endif /* ZONE_DEBUG */
1552 * Print out all the kmsgs in a queue. Aggregate kmsgs with
1553 * identical message ids into a single entry. Count up the
1554 * amount of inline and out-of-line data consumed by each
1559 #define KMSG_MATCH_FIELD(kmsg) ((unsigned int) kmsg->ikm_header.msgh_id)
1560 #define DKQP_LONG(kmsg) FALSE
1561 char *dkqp_long_format
= "(%3d) <%10d> 0x%x %10d %10d\n";
1562 char *dkqp_format
= "(%3d) <%10d> 0x%x %10d %10d\n";
1565 db_kmsg_queue_print(
1568 db_kmsg_queue_print(
1571 ipc_kmsg_t ikmsg
, first_kmsg
;
1572 register int icount
;
1573 mach_msg_id_t cur_id
;
1574 unsigned int inline_total
, ool_total
;
1577 iprintf("Count msgh_id kmsg addr inline bytes ool bytes\n");
1578 inline_total
= ool_total
= (vm_size_t
) 0;
1579 cur_id
= KMSG_MATCH_FIELD(kmsg
);
1580 for (icount
= 0, nmsgs
= 0, first_kmsg
= ikmsg
= kmsg
;
1581 kmsg
!= IKM_NULL
&& (kmsg
!= first_kmsg
|| nmsgs
== 0);
1582 kmsg
= kmsg
->ikm_next
) {
1584 if (!(KMSG_MATCH_FIELD(kmsg
) == cur_id
)) {
1585 iprintf(DKQP_LONG(kmsg
) ? dkqp_long_format
:dkqp_format
,
1586 icount
, cur_id
, ikmsg
, inline_total
,ool_total
);
1587 cur_id
= KMSG_MATCH_FIELD(kmsg
);
1590 inline_total
= ool_total
= 0;
1594 if (DKQP_LONG(kmsg
))
1595 inline_total
+= kmsg
->ikm_size
;
1597 inline_total
+= kmsg
->ikm_header
.msgh_size
;
1599 iprintf(DKQP_LONG(kmsg
) ? dkqp_long_format
: dkqp_format
,
1600 icount
, cur_id
, ikmsg
, inline_total
, ool_total
);
1606 * Process all of the messages on a port - prints out the
1607 * number of occurences of each message type, and the first
1608 * kmsg with a particular msgh_id.
1611 db_port_queue_print(
1616 if (ipc_kmsg_queue_empty(&port
->ip_messages
.imq_messages
))
1618 kmsg
= ipc_kmsg_queue_first(&port
->ip_messages
.imq_messages
);
1619 return db_kmsg_queue_print(kmsg
);
1624 #include <ddb/db_sym.h>
1625 #include <ddb/db_access.h>
1627 #define FUNC_NULL ((void (*)) 0)
1628 #define MAX_REFS 5 /* bins for tracking ref counts */
1631 * Translate port's cache of call stack pointers
1632 * into symbolic names.
1635 db_port_stack_trace(
1640 for (i
= 0; i
< IP_CALLSTACK_MAX
; ++i
) {
1641 iprintf("[%d] 0x%x\t", i
, port
->ip_callstack
[i
]);
1642 if (port
->ip_callstack
[i
] != 0 &&
1643 DB_VALID_KERN_ADDR(port
->ip_callstack
[i
]))
1644 db_printsym(port
->ip_callstack
[i
], DB_STGY_PROC
);
1650 typedef struct port_item
{
1652 unsigned long count
;
1656 #define ITEM_MAX 400
1657 typedef struct port_track
{
1660 unsigned long warning
;
1661 port_item items
[ITEM_MAX
];
1664 port_track port_callers
; /* match against calling addresses */
1665 port_track port_threads
; /* match against allocating threads */
1666 port_track port_spaces
; /* match against ipc spaces */
1668 void port_track_init(
1673 unsigned long item
);
1674 void port_track_sort(
1675 port_track
*trackp
);
1676 void port_track_print(
1678 void (*func
)(port_item
*));
1679 void port_callers_print(
1689 trackp
->max
= trackp
->warning
= 0;
1690 trackp
->name
= name
;
1691 for (i
= trackp
->items
; i
< trackp
->items
+ ITEM_MAX
; ++i
)
1692 i
->item
= i
->count
= 0;
1701 port_item
*limit
, *i
;
1703 limit
= trackp
->items
+ trackp
->max
;
1704 for (i
= trackp
->items
; i
< limit
; ++i
)
1705 if (i
->item
== item
) {
1709 if (trackp
->max
>= ITEM_MAX
) {
1710 if (trackp
->warning
++ == 0)
1711 iprintf("%s: no room\n", trackp
->name
);
1721 * Simple (and slow) bubble sort.
1727 port_item
*limit
, *p
;
1731 limit
= trackp
->items
+ trackp
->max
- 1;
1734 for (p
= trackp
->items
; p
< limit
- 1; ++p
) {
1735 if (p
->count
< (p
+1)->count
) {
1742 } while (unsorted
== TRUE
);
1749 void (*func
)(port_item
*))
1751 port_item
*limit
, *p
;
1753 limit
= trackp
->items
+ trackp
->max
;
1754 iprintf("%s:\n", trackp
->name
);
1755 for (p
= trackp
->items
; p
< limit
; ++p
) {
1756 if (func
!= FUNC_NULL
)
1759 iprintf("0x%x\t%8d\n", p
->item
, p
->count
);
1768 iprintf("0x%x\t%8d\t", p
->item
, p
->count
);
1769 db_printsym(p
->item
, DB_STGY_PROC
);
1775 * Show all ports with a given reference count.
1781 db_port_walk(1, 1, 1, refs
);
1786 * Examine all currently allocated ports.
1788 * verbose display suspicious ports
1789 * display print out each port encountered
1790 * ref_search restrict examination to ports with
1791 * a specified reference count
1792 * ref_target reference count for ref_search
1796 unsigned int verbose
,
1797 unsigned int display
,
1798 unsigned int ref_search
,
1799 unsigned int ref_target
)
1802 unsigned int ref_overflow
, refs
, i
, ref_inactive_overflow
;
1803 unsigned int no_receiver
, no_match
;
1804 unsigned int ref_counts
[MAX_REFS
];
1805 unsigned int inactive
[MAX_REFS
];
1806 unsigned int ipc_ports
= 0;
1807 unsigned int proxies
= 0, principals
= 0;
1809 iprintf("Allocated port count is %d\n", port_count
);
1810 no_receiver
= no_match
= ref_overflow
= 0;
1811 ref_inactive_overflow
= 0;
1812 for (i
= 0; i
< MAX_REFS
; ++i
) {
1816 port_track_init(&port_callers
, "port callers");
1817 port_track_init(&port_threads
, "port threads");
1818 port_track_init(&port_spaces
, "port spaces");
1820 iprintf("Walking ports of ref_count=%d.\n", ref_target
);
1822 iprintf("Walking all ports.\n");
1824 queue_iterate(&port_alloc_queue
, port
, ipc_port_t
, ip_port_links
) {
1827 port_type
= " IPC port";
1828 if (ip_active(port
))
1831 refs
= port
->ip_references
;
1832 if (ref_search
&& refs
!= ref_target
)
1835 if (refs
>= MAX_REFS
) {
1836 if (ip_active(port
))
1839 ++ref_inactive_overflow
;
1841 if (refs
== 0 && verbose
)
1842 iprintf("%s 0x%x has ref count of zero!\n",
1844 if (ip_active(port
))
1849 port_item_add(&port_threads
, (unsigned long) port
->ip_thread
);
1850 for (i
= 0; i
< IP_CALLSTACK_MAX
; ++i
) {
1851 if (port
->ip_callstack
[i
] != 0 &&
1852 DB_VALID_KERN_ADDR(port
->ip_callstack
[i
]))
1853 port_item_add(&port_callers
,
1854 port
->ip_callstack
[i
]);
1856 if (!ip_active(port
)) {
1858 iprintf("%s 0x%x, inactive, refcnt %d\n",
1859 port_type
, port
, refs
);
1863 if (port
->ip_receiver_name
== MACH_PORT_NULL
) {
1864 iprintf("%s 0x%x, no receiver, refcnt %d\n",
1869 if (port
->ip_receiver
== ipc_space_kernel
||
1870 port
->ip_receiver
== ipc_space_reply
||
1871 ipc_entry_lookup(port
->ip_receiver
,
1872 port
->ip_receiver_name
)
1874 port_item_add(&port_spaces
,
1875 (unsigned long)port
->ip_receiver
);
1877 iprintf( "%s 0x%x time 0x%x ref_cnt %d\n",
1879 port
->ip_timetrack
, refs
);
1883 iprintf("%s 0x%x, rcvr 0x%x, name 0x%x, ref %d, no match\n",
1884 port_type
, port
, port
->ip_receiver
,
1885 port
->ip_receiver_name
, refs
);
1888 iprintf("Active port type summary:\n");
1889 iprintf("\tlocal IPC %6d\n", ipc_ports
);
1890 iprintf("summary:\tcallers %d threads %d spaces %d\n",
1891 port_callers
.max
, port_threads
.max
, port_spaces
.max
);
1893 iprintf("\tref_counts:\n");
1894 for (i
= 0; i
< MAX_REFS
; ++i
)
1895 iprintf("\t ref_counts[%d] = %d\n", i
, ref_counts
[i
]);
1897 iprintf("\t%d ports w/o receivers, %d w/o matches\n",
1898 no_receiver
, no_match
);
1900 iprintf("\tinactives:");
1901 if ( ref_inactive_overflow
|| inactive
[0] || inactive
[1] ||
1902 inactive
[2] || inactive
[3] || inactive
[4] )
1903 printf(" [0]=%d [1]=%d [2]=%d [3]=%d [4]=%d [5+]=%d\n",
1904 inactive
[0], inactive
[1], inactive
[2],
1905 inactive
[3], inactive
[4], ref_inactive_overflow
);
1907 printf(" No inactive ports.\n");
1909 port_track_sort(&port_spaces
);
1910 port_track_print(&port_spaces
, FUNC_NULL
);
1911 port_track_sort(&port_threads
);
1912 port_track_print(&port_threads
, FUNC_NULL
);
1913 port_track_sort(&port_callers
);
1914 port_track_print(&port_callers
, port_callers_print
);
1919 #endif /* MACH_ASSERT */
1921 #endif /* MACH_KDB */