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
);
508 * Routine: ipc_port_alloc_name
510 * Allocate a port, with a specific name.
512 * Nothing locked. If successful, the port is returned
513 * locked. (The caller doesn't have a reference.)
515 * KERN_SUCCESS The port is allocated.
516 * KERN_INVALID_TASK The space is dead.
517 * KERN_NAME_EXISTS The name already denotes a right.
518 * KERN_RESOURCE_SHORTAGE Couldn't allocate memory.
524 mach_port_name_t name
,
530 kr
= ipc_object_alloc_name(space
, IOT_PORT
,
531 MACH_PORT_TYPE_RECEIVE
, 0,
532 name
, (ipc_object_t
*) &port
);
533 if (kr
!= KERN_SUCCESS
)
538 ipc_port_init(port
, space
, name
);
546 * Generate dead name notifications. Called from ipc_port_destroy.
547 * Port is unlocked but still has reference(s);
548 * dnrequests was taken from port while the port
549 * was locked but the port now has port->ip_dnrequests set to IPR_NULL.
554 ipc_port_request_t dnrequests
)
556 ipc_table_size_t its
= dnrequests
->ipr_size
;
557 ipc_table_elems_t size
= its
->its_size
;
558 ipc_port_request_index_t index
;
560 for (index
= 1; index
< size
; index
++) {
561 ipc_port_request_t ipr
= &dnrequests
[index
];
562 mach_port_name_t name
= ipr
->ipr_name
;
565 if (name
== MACH_PORT_NULL
)
568 soright
= ipr
->ipr_soright
;
569 assert(soright
!= IP_NULL
);
571 ipc_notify_dead_name(soright
, name
);
574 it_dnrequests_free(its
, dnrequests
);
578 * Routine: ipc_port_destroy
580 * Destroys a port. Cleans up queued messages.
582 * If the port has a backup, it doesn't get destroyed,
583 * but is sent in a port-destroyed notification to the backup.
585 * The port is locked and alive; nothing else locked.
586 * The caller has a reference, which is consumed.
587 * Afterwards, the port is unlocked and dead.
594 ipc_port_t pdrequest
, nsrequest
;
596 ipc_kmsg_queue_t kmqueue
;
598 ipc_port_request_t dnrequests
;
600 assert(ip_active(port
));
601 /* port->ip_receiver_name is garbage */
602 /* port->ip_receiver/port->ip_destination is garbage */
603 assert(port
->ip_pset_count
== 0);
604 assert(port
->ip_mscount
== 0);
606 /* first check for a backup port */
608 pdrequest
= port
->ip_pdrequest
;
609 if (pdrequest
!= IP_NULL
) {
610 /* we assume the ref for pdrequest */
611 port
->ip_pdrequest
= IP_NULL
;
613 /* make port be in limbo */
614 port
->ip_receiver_name
= MACH_PORT_NULL
;
615 port
->ip_destination
= IP_NULL
;
618 if (!ipc_port_check_circularity(port
, pdrequest
)) {
619 /* consumes our refs for port and pdrequest */
620 ipc_notify_port_destroyed(pdrequest
, port
);
623 /* consume pdrequest and destroy port */
624 ipc_port_release_sonce(pdrequest
);
628 assert(ip_active(port
));
629 assert(port
->ip_pset_count
== 0);
630 assert(port
->ip_mscount
== 0);
631 assert(port
->ip_pdrequest
== IP_NULL
);
632 assert(port
->ip_receiver_name
== MACH_PORT_NULL
);
633 assert(port
->ip_destination
== IP_NULL
);
635 /* fall through and destroy the port */
638 /* once port is dead, we don't need to keep it locked */
640 port
->ip_object
.io_bits
&= ~IO_BITS_ACTIVE
;
641 port
->ip_timestamp
= ipc_port_timestamp();
644 dnrequests
= port
->ip_dnrequests
;
645 port
->ip_dnrequests
= IPR_NULL
;
648 * If the port has a preallocated message buffer and that buffer
649 * is not inuse, free it. If it has an inuse one, then the kmsg
650 * free will detect that we freed the association and it can free it
651 * like a normal buffer.
653 if (IP_PREALLOC(port
)) {
654 kmsg
= port
->ip_premsg
;
655 assert(kmsg
!= IKM_NULL
);
656 IP_CLEAR_PREALLOC(port
, kmsg
);
657 if (!ikm_prealloc_inuse(kmsg
))
662 /* throw away no-senders request */
664 nsrequest
= port
->ip_nsrequest
;
665 if (nsrequest
!= IP_NULL
)
666 ipc_notify_send_once(nsrequest
); /* consumes ref */
668 /* destroy any queued messages */
669 mqueue
= &port
->ip_messages
;
670 ipc_mqueue_destroy(mqueue
);
672 /* generate dead-name notifications */
673 if (dnrequests
!= IPR_NULL
) {
674 ipc_port_dnnotify(port
, dnrequests
);
677 ipc_kobject_destroy(port
);
679 ipc_port_release(port
); /* consume caller's ref */
683 * Routine: ipc_port_check_circularity
685 * Check if queueing "port" in a message for "dest"
686 * would create a circular group of ports and messages.
688 * If no circularity (FALSE returned), then "port"
689 * is changed from "in limbo" to "in transit".
691 * That is, we want to set port->ip_destination == dest,
692 * but guaranteeing that this doesn't create a circle
693 * port->ip_destination->ip_destination->... == port
695 * No ports locked. References held for "port" and "dest".
699 ipc_port_check_circularity(
705 assert(port
!= IP_NULL
);
706 assert(dest
!= IP_NULL
);
713 * First try a quick check that can run in parallel.
714 * No circularity if dest is not in transit.
718 if (ip_lock_try(dest
)) {
719 if (!ip_active(dest
) ||
720 (dest
->ip_receiver_name
!= MACH_PORT_NULL
) ||
721 (dest
->ip_destination
== IP_NULL
))
724 /* dest is in transit; further checking necessary */
730 ipc_port_multiple_lock(); /* massive serialization */
733 * Search for the end of the chain (a port not in transit),
734 * acquiring locks along the way.
740 if (!ip_active(base
) ||
741 (base
->ip_receiver_name
!= MACH_PORT_NULL
) ||
742 (base
->ip_destination
== IP_NULL
))
745 base
= base
->ip_destination
;
748 /* all ports in chain from dest to base, inclusive, are locked */
751 /* circularity detected! */
753 ipc_port_multiple_unlock();
755 /* port (== base) is in limbo */
757 assert(ip_active(port
));
758 assert(port
->ip_receiver_name
== MACH_PORT_NULL
);
759 assert(port
->ip_destination
== IP_NULL
);
761 while (dest
!= IP_NULL
) {
764 /* dest is in transit or in limbo */
766 assert(ip_active(dest
));
767 assert(dest
->ip_receiver_name
== MACH_PORT_NULL
);
769 next
= dest
->ip_destination
;
778 * The guarantee: lock port while the entire chain is locked.
779 * Once port is locked, we can take a reference to dest,
780 * add port to the chain, and unlock everything.
784 ipc_port_multiple_unlock();
788 /* port is in limbo */
790 assert(ip_active(port
));
791 assert(port
->ip_receiver_name
== MACH_PORT_NULL
);
792 assert(port
->ip_destination
== IP_NULL
);
795 port
->ip_destination
= dest
;
797 /* now unlock chain */
799 while (port
!= base
) {
802 /* port is in transit */
804 assert(ip_active(port
));
805 assert(port
->ip_receiver_name
== MACH_PORT_NULL
);
806 assert(port
->ip_destination
!= IP_NULL
);
808 next
= port
->ip_destination
;
813 /* base is not in transit */
815 assert(!ip_active(base
) ||
816 (base
->ip_receiver_name
!= MACH_PORT_NULL
) ||
817 (base
->ip_destination
== IP_NULL
));
824 * Routine: ipc_port_lookup_notify
826 * Make a send-once notify port from a receive right.
827 * Returns IP_NULL if name doesn't denote a receive right.
829 * The space must be locked (read or write) and active.
830 * Being the active space, we can rely on thread server_id
831 * context to give us the proper server level sub-order
836 ipc_port_lookup_notify(
838 mach_port_name_t name
)
843 assert(space
->is_active
);
845 entry
= ipc_entry_lookup(space
, name
);
846 if (entry
== IE_NULL
)
848 if ((entry
->ie_bits
& MACH_PORT_TYPE_RECEIVE
) == 0)
851 port
= (ipc_port_t
) entry
->ie_object
;
852 assert(port
!= IP_NULL
);
855 assert(ip_active(port
));
856 assert(port
->ip_receiver_name
== name
);
857 assert(port
->ip_receiver
== space
);
867 * Routine: ipc_port_make_send_locked
869 * Make a naked send right from a receive right.
872 * port locked and active.
875 ipc_port_make_send_locked(
878 assert(ip_active(port
));
887 * Routine: ipc_port_make_send
889 * Make a naked send right from a receive right.
901 if (ip_active(port
)) {
913 * Routine: ipc_port_copy_send
915 * Make a naked send right from another naked send right.
918 * dead port -> IP_DEAD
919 * live port -> port + ref
921 * Nothing locked except possibly a space.
934 if (ip_active(port
)) {
935 assert(port
->ip_srights
> 0);
948 * Routine: ipc_port_copyout_send
950 * Copyout a naked send right (possibly null/dead),
951 * or if that fails, destroy the right.
957 ipc_port_copyout_send(
961 mach_port_name_t name
;
963 if (IP_VALID(sright
)) {
966 kr
= ipc_object_copyout(space
, (ipc_object_t
) sright
,
967 MACH_MSG_TYPE_PORT_SEND
, TRUE
, &name
);
968 if (kr
!= KERN_SUCCESS
) {
969 ipc_port_release_send(sright
);
971 if (kr
== KERN_INVALID_CAPABILITY
)
972 name
= MACH_PORT_DEAD
;
974 name
= MACH_PORT_NULL
;
977 name
= (mach_port_name_t
) sright
;
983 * Routine: ipc_port_release_send
985 * Release a (valid) naked send right.
986 * Consumes a ref for the port.
992 ipc_port_release_send(
995 ipc_port_t nsrequest
= IP_NULL
;
996 mach_port_mscount_t mscount
;
998 assert(IP_VALID(port
));
1003 if (!ip_active(port
)) {
1004 ip_check_unlock(port
);
1008 assert(port
->ip_srights
> 0);
1010 if (--port
->ip_srights
== 0 &&
1011 port
->ip_nsrequest
!= IP_NULL
) {
1012 nsrequest
= port
->ip_nsrequest
;
1013 port
->ip_nsrequest
= IP_NULL
;
1014 mscount
= port
->ip_mscount
;
1016 ipc_notify_no_senders(nsrequest
, mscount
);
1018 * Check that there are no other locks taken, because
1019 * [norma_]ipc_notify_no_senders routines may block.
1021 check_simple_locks();
1027 * Routine: ipc_port_make_sonce
1029 * Make a naked send-once right from a receive right.
1031 * The port is not locked but it is active.
1035 ipc_port_make_sonce(
1038 assert(IP_VALID(port
));
1041 assert(ip_active(port
));
1042 port
->ip_sorights
++;
1050 * Routine: ipc_port_release_sonce
1052 * Release a naked send-once right.
1053 * Consumes a ref for the port.
1055 * In normal situations, this is never used.
1056 * Send-once rights are only consumed when
1057 * a message (possibly a send-once notification)
1060 * Nothing locked except possibly a space.
1064 ipc_port_release_sonce(
1067 assert(IP_VALID(port
));
1071 assert(port
->ip_sorights
> 0);
1073 port
->ip_sorights
--;
1077 if (!ip_active(port
)) {
1078 ip_check_unlock(port
);
1086 * Routine: ipc_port_release_receive
1088 * Release a naked (in limbo or in transit) receive right.
1089 * Consumes a ref for the port; destroys the port.
1095 ipc_port_release_receive(
1100 assert(IP_VALID(port
));
1103 assert(ip_active(port
));
1104 assert(port
->ip_receiver_name
== MACH_PORT_NULL
);
1105 dest
= port
->ip_destination
;
1107 ipc_port_destroy(port
); /* consumes ref, unlocks */
1109 if (dest
!= IP_NULL
)
1110 ipc_port_release(dest
);
1114 * Routine: ipc_port_alloc_special
1116 * Allocate a port in a special space.
1117 * The new port is returned with one ref.
1118 * If unsuccessful, IP_NULL is returned.
1124 ipc_port_alloc_special(
1129 port
= (ipc_port_t
) io_alloc(IOT_PORT
);
1130 if (port
== IP_NULL
)
1133 bzero((char *)port
, sizeof(*port
));
1134 io_lock_init(&port
->ip_object
);
1135 port
->ip_references
= 1;
1136 port
->ip_object
.io_bits
= io_makebits(TRUE
, IOT_PORT
, 0);
1138 ipc_port_init(port
, space
, 1);
1144 * Routine: ipc_port_dealloc_special
1146 * Deallocate a port in a special space.
1147 * Consumes one ref for the port.
1153 ipc_port_dealloc_special(
1158 assert(ip_active(port
));
1159 assert(port
->ip_receiver_name
!= MACH_PORT_NULL
);
1160 assert(port
->ip_receiver
== space
);
1163 * We clear ip_receiver_name and ip_receiver to simplify
1164 * the ipc_space_kernel check in ipc_mqueue_send.
1167 port
->ip_receiver_name
= MACH_PORT_NULL
;
1168 port
->ip_receiver
= IS_NULL
;
1170 /* relevant part of ipc_port_clear_receiver */
1171 ipc_port_set_mscount(port
, 0);
1172 port
->ip_messages
.imq_seqno
= 0;
1174 ipc_port_destroy(port
);
1180 * Keep a list of all allocated ports.
1181 * Allocation is intercepted via ipc_port_init;
1182 * deallocation is intercepted via io_free.
1184 queue_head_t port_alloc_queue
;
1185 decl_mutex_data(,port_alloc_queue_lock
)
1187 unsigned long port_count
= 0;
1188 unsigned long port_count_warning
= 20000;
1189 unsigned long port_timestamp
= 0;
1191 void db_port_stack_trace(
1196 unsigned int verbose
,
1197 unsigned int display
,
1198 unsigned int ref_search
,
1199 unsigned int ref_target
);
1202 * Initialize global state needed for run-time
1206 ipc_port_debug_init(void)
1208 queue_init(&port_alloc_queue
);
1209 mutex_init(&port_alloc_queue_lock
, ETAP_IPC_PORT_ALLOCQ
);
1214 * Initialize all of the debugging state in a port.
1215 * Insert the port into a global list of all allocated ports.
1218 ipc_port_init_debug(
1223 port
->ip_thread
= (unsigned long) current_thread();
1224 port
->ip_timetrack
= port_timestamp
++;
1225 for (i
= 0; i
< IP_CALLSTACK_MAX
; ++i
)
1226 port
->ip_callstack
[i
] = 0;
1227 for (i
= 0; i
< IP_NSPARES
; ++i
)
1228 port
->ip_spares
[i
] = 0;
1231 * Machine-dependent routine to fill in an
1232 * array with up to IP_CALLSTACK_MAX levels
1233 * of return pc information.
1235 machine_callstack(&port
->ip_callstack
[0], IP_CALLSTACK_MAX
);
1238 mutex_lock(&port_alloc_queue_lock
);
1240 if (port_count_warning
> 0 && port_count
>= port_count_warning
)
1241 assert(port_count
< port_count_warning
);
1242 queue_enter(&port_alloc_queue
, port
, ipc_port_t
, ip_port_links
);
1243 mutex_unlock(&port_alloc_queue_lock
);
1249 * Remove a port from the queue of allocated ports.
1250 * This routine should be invoked JUST prior to
1251 * deallocating the actual memory occupied by the port.
1254 ipc_port_track_dealloc(
1258 mutex_lock(&port_alloc_queue_lock
);
1259 assert(port_count
> 0);
1261 queue_remove(&port_alloc_queue
, port
, ipc_port_t
, ip_port_links
);
1262 mutex_unlock(&port_alloc_queue_lock
);
1266 #endif /* MACH_ASSERT */
1271 #include <ddb/db_output.h>
1272 #include <ddb/db_print.h>
1274 #define printf kdbprintf
1275 extern int db_indent
;
1278 db_port_queue_print(
1282 * ipc_entry_print - pretty-print an ipc_entry
1284 static void ipc_entry_print(struct ipc_entry
*, char *); /* forward */
1286 static void ipc_entry_print(struct ipc_entry
*iep
, char *tag
)
1288 ipc_entry_bits_t bits
= iep
->ie_bits
;
1290 iprintf("%s @", tag
);
1291 printf(" 0x%x, bits=%x object=%x\n", iep
, bits
, iep
->ie_object
);
1293 iprintf("urefs=%x ", IE_BITS_UREFS(bits
));
1294 printf("type=%x gen=%x\n", IE_BITS_TYPE(bits
), IE_BITS_GEN(bits
));
1299 * Routine: ipc_port_print
1301 * Pretty-print a port for kdb.
1303 int ipc_port_print_long
= 0; /* set for more detail */
1308 boolean_t have_addr
,
1312 extern int db_indent
;
1318 int i
, needs_db_indent
, items_printed
;
1319 #endif /* MACH_ASSERT */
1321 if (db_option(modif
, 'l') || db_option(modif
, 'v'))
1324 printf("port 0x%x\n", port
);
1328 ipc_object_print(&port
->ip_object
);
1330 if (ipc_port_print_long
) {
1334 if (!ip_active(port
)) {
1335 iprintf("timestamp=0x%x", port
->ip_timestamp
);
1336 } else if (port
->ip_receiver_name
== MACH_PORT_NULL
) {
1337 iprintf("destination=0x%x (", port
->ip_destination
);
1338 if (port
->ip_destination
!= MACH_PORT_NULL
&&
1339 (task
= db_task_from_space(port
->ip_destination
->
1340 ip_receiver
, &task_id
)))
1341 printf("task%d at 0x%x", task_id
, task
);
1346 iprintf("receiver=0x%x (", port
->ip_receiver
);
1347 if (port
->ip_receiver
== ipc_space_kernel
)
1349 else if (port
->ip_receiver
== ipc_space_reply
)
1351 else if (port
->ip_receiver
== default_pager_space
)
1352 printf("default_pager");
1353 else if (task
= db_task_from_space(port
->ip_receiver
, &task_id
))
1354 printf("task%d at 0x%x", task_id
, task
);
1359 printf(", receiver_name=0x%x\n", port
->ip_receiver_name
);
1361 iprintf("mscount=%d", port
->ip_mscount
);
1362 printf(", srights=%d", port
->ip_srights
);
1363 printf(", sorights=%d\n", port
->ip_sorights
);
1365 iprintf("nsrequest=0x%x", port
->ip_nsrequest
);
1366 printf(", pdrequest=0x%x", port
->ip_pdrequest
);
1367 printf(", dnrequests=0x%x\n", port
->ip_dnrequests
);
1369 iprintf("pset_count=0x%x", port
->ip_pset_count
);
1370 printf(", seqno=%d", port
->ip_messages
.imq_seqno
);
1371 printf(", msgcount=%d", port
->ip_messages
.imq_msgcount
);
1372 printf(", qlimit=%d\n", port
->ip_messages
.imq_qlimit
);
1374 iprintf("kmsgs=0x%x", port
->ip_messages
.imq_messages
.ikmq_base
);
1375 printf(", rcvrs queue=0x%x", port
->ip_messages
.imq_wait_queue
);
1376 printf(", kobj=0x%x\n", port
->ip_kobject
);
1378 iprintf("premsg=0x%x", port
->ip_premsg
);
1381 /* don't bother printing callstack or queue links */
1382 iprintf("ip_thread=0x%x, ip_timetrack=0x%x\n",
1383 port
->ip_thread
, port
->ip_timetrack
);
1385 needs_db_indent
= 1;
1386 for (i
= 0; i
< IP_NSPARES
; ++i
) {
1387 if (port
->ip_spares
[i
] != 0) {
1388 if (needs_db_indent
) {
1390 needs_db_indent
= 0;
1392 printf("%sip_spares[%d] = %d",
1393 items_printed
? ", " : "", i
,
1394 port
->ip_spares
[i
]);
1395 if (++items_printed
>= 4) {
1396 needs_db_indent
= 1;
1402 #endif /* MACH_ASSERT */
1405 iprintf("kmsg queue contents:\n");
1407 nmsgs
= db_port_queue_print(port
);
1409 iprintf("...total kmsgs: %d\n", nmsgs
);
1418 mach_port_name_t name
)
1423 if (task
== TASK_NULL
) {
1424 db_printf("port_name_to_data: task is null\n");
1427 if ((space
= task
->itk_space
) == 0) {
1428 db_printf("port_name_to_data: task->itk_space is null\n");
1431 if (!space
->is_active
) {
1432 db_printf("port_name_to_data: task->itk_space not active\n");
1435 if ((entry
= ipc_entry_lookup(space
, name
)) == 0) {
1436 db_printf("port_name_to_data: lookup yields zero\n");
1439 return ((ipc_port_t
)entry
->ie_object
);
1444 print_type_ports(type
, dead
)
1452 for (port
= (ipc_port_t
)first_element(ipc_object_zones
[IOT_PORT
]);
1454 port
= (ipc_port_t
)next_element(ipc_object_zones
[IOT_PORT
],
1456 if (ip_kotype(port
) == type
&&
1457 (!dead
|| !ip_active(port
))) {
1459 printf("0x%x\t", port
);
1461 printf("0x%x\n", port
);
1471 int total_port_count
;
1472 int space_null_count
;
1473 int space_kernel_count
;
1474 int space_reply_count
;
1475 int space_pager_count
;
1476 int space_other_count
;
1481 } port_types
[IKOT_MAX_TYPE
];
1483 total_port_count
= 0;
1485 bzero((char *)&port_types
[0], sizeof(port_types
));
1486 space_null_count
= 0;
1487 space_kernel_count
= 0;
1488 space_reply_count
= 0;
1489 space_pager_count
= 0;
1490 space_other_count
= 0;
1492 for (port
= (ipc_port_t
)first_element(ipc_object_zones
[IOT_PORT
]);
1494 port
= (ipc_port_t
)next_element(ipc_object_zones
[IOT_PORT
],
1495 (vm_offset_t
)port
)) {
1497 if (ip_kotype(port
) >= IKOT_MAX_TYPE
) {
1498 port_types
[IKOT_UNKNOWN
].total_count
++;
1499 if (!io_active(&port
->ip_object
))
1500 port_types
[IKOT_UNKNOWN
].dead_count
++;
1502 port_types
[ip_kotype(port
)].total_count
++;
1503 if (!io_active(&port
->ip_object
))
1504 port_types
[ip_kotype(port
)].dead_count
++;
1507 if (!port
->ip_receiver
)
1509 else if (port
->ip_receiver
== ipc_space_kernel
)
1510 space_kernel_count
++;
1511 else if (port
->ip_receiver
== ipc_space_reply
)
1512 space_reply_count
++;
1513 else if (port
->ip_receiver
== default_pager_space
)
1514 space_pager_count
++;
1516 space_other_count
++;
1518 printf("\n%7d total ports\n\n", total_port_count
);
1520 #define PRINT_ONE_PORT_TYPE(name) \
1521 printf("%7d %s", port_types[IKOT_##name].total_count, # name); \
1522 if (port_types[IKOT_##name].dead_count) \
1523 printf(" (%d dead ports)", port_types[IKOT_##name].dead_count);\
1526 PRINT_ONE_PORT_TYPE(NONE
);
1527 PRINT_ONE_PORT_TYPE(THREAD
);
1528 PRINT_ONE_PORT_TYPE(TASK
);
1529 PRINT_ONE_PORT_TYPE(HOST
);
1530 PRINT_ONE_PORT_TYPE(HOST_PRIV
);
1531 PRINT_ONE_PORT_TYPE(PROCESSOR
);
1532 PRINT_ONE_PORT_TYPE(PSET
);
1533 PRINT_ONE_PORT_TYPE(PSET_NAME
);
1534 PRINT_ONE_PORT_TYPE(PAGING_REQUEST
);
1535 PRINT_ONE_PORT_TYPE(MEMORY_OBJECT
);
1536 PRINT_ONE_PORT_TYPE(MIG
);
1537 PRINT_ONE_PORT_TYPE(XMM_PAGER
);
1538 PRINT_ONE_PORT_TYPE(XMM_KERNEL
);
1539 PRINT_ONE_PORT_TYPE(XMM_REPLY
);
1540 PRINT_ONE_PORT_TYPE(CLOCK
);
1541 PRINT_ONE_PORT_TYPE(CLOCK_CTRL
);
1542 PRINT_ONE_PORT_TYPE(MASTER_DEVICE
);
1543 PRINT_ONE_PORT_TYPE(UNKNOWN
);
1544 printf("\nipc_space:\n\n");
1545 printf("NULL KERNEL REPLY PAGER OTHER\n");
1546 printf("%d %d %d %d %d\n",
1555 #endif /* ZONE_DEBUG */
1559 * Print out all the kmsgs in a queue. Aggregate kmsgs with
1560 * identical message ids into a single entry. Count up the
1561 * amount of inline and out-of-line data consumed by each
1566 #define KMSG_MATCH_FIELD(kmsg) ((unsigned int) kmsg->ikm_header.msgh_id)
1567 #define DKQP_LONG(kmsg) FALSE
1568 char *dkqp_long_format
= "(%3d) <%10d> 0x%x %10d %10d\n";
1569 char *dkqp_format
= "(%3d) <%10d> 0x%x %10d %10d\n";
1572 db_kmsg_queue_print(
1575 db_kmsg_queue_print(
1578 ipc_kmsg_t ikmsg
, first_kmsg
;
1579 register int icount
;
1580 mach_msg_id_t cur_id
;
1581 unsigned int inline_total
, ool_total
;
1584 iprintf("Count msgh_id kmsg addr inline bytes ool bytes\n");
1585 inline_total
= ool_total
= (vm_size_t
) 0;
1586 cur_id
= KMSG_MATCH_FIELD(kmsg
);
1587 for (icount
= 0, nmsgs
= 0, first_kmsg
= ikmsg
= kmsg
;
1588 kmsg
!= IKM_NULL
&& (kmsg
!= first_kmsg
|| nmsgs
== 0);
1589 kmsg
= kmsg
->ikm_next
) {
1591 if (!(KMSG_MATCH_FIELD(kmsg
) == cur_id
)) {
1592 iprintf(DKQP_LONG(kmsg
) ? dkqp_long_format
:dkqp_format
,
1593 icount
, cur_id
, ikmsg
, inline_total
,ool_total
);
1594 cur_id
= KMSG_MATCH_FIELD(kmsg
);
1597 inline_total
= ool_total
= 0;
1601 if (DKQP_LONG(kmsg
))
1602 inline_total
+= kmsg
->ikm_size
;
1604 inline_total
+= kmsg
->ikm_header
.msgh_size
;
1606 iprintf(DKQP_LONG(kmsg
) ? dkqp_long_format
: dkqp_format
,
1607 icount
, cur_id
, ikmsg
, inline_total
, ool_total
);
1613 * Process all of the messages on a port - prints out the
1614 * number of occurences of each message type, and the first
1615 * kmsg with a particular msgh_id.
1618 db_port_queue_print(
1623 if (ipc_kmsg_queue_empty(&port
->ip_messages
.imq_messages
))
1625 kmsg
= ipc_kmsg_queue_first(&port
->ip_messages
.imq_messages
);
1626 return db_kmsg_queue_print(kmsg
);
1631 #include <ddb/db_sym.h>
1632 #include <ddb/db_access.h>
1634 #define FUNC_NULL ((void (*)) 0)
1635 #define MAX_REFS 5 /* bins for tracking ref counts */
1638 * Translate port's cache of call stack pointers
1639 * into symbolic names.
1642 db_port_stack_trace(
1647 for (i
= 0; i
< IP_CALLSTACK_MAX
; ++i
) {
1648 iprintf("[%d] 0x%x\t", i
, port
->ip_callstack
[i
]);
1649 if (port
->ip_callstack
[i
] != 0 &&
1650 DB_VALID_KERN_ADDR(port
->ip_callstack
[i
]))
1651 db_printsym(port
->ip_callstack
[i
], DB_STGY_PROC
);
1657 typedef struct port_item
{
1659 unsigned long count
;
1663 #define ITEM_MAX 400
1664 typedef struct port_track
{
1667 unsigned long warning
;
1668 port_item items
[ITEM_MAX
];
1671 port_track port_callers
; /* match against calling addresses */
1672 port_track port_threads
; /* match against allocating threads */
1673 port_track port_spaces
; /* match against ipc spaces */
1675 void port_track_init(
1680 unsigned long item
);
1681 void port_track_sort(
1682 port_track
*trackp
);
1683 void port_track_print(
1685 void (*func
)(port_item
*));
1686 void port_callers_print(
1696 trackp
->max
= trackp
->warning
= 0;
1697 trackp
->name
= name
;
1698 for (i
= trackp
->items
; i
< trackp
->items
+ ITEM_MAX
; ++i
)
1699 i
->item
= i
->count
= 0;
1708 port_item
*limit
, *i
;
1710 limit
= trackp
->items
+ trackp
->max
;
1711 for (i
= trackp
->items
; i
< limit
; ++i
)
1712 if (i
->item
== item
) {
1716 if (trackp
->max
>= ITEM_MAX
) {
1717 if (trackp
->warning
++ == 0)
1718 iprintf("%s: no room\n", trackp
->name
);
1728 * Simple (and slow) bubble sort.
1734 port_item
*limit
, *p
;
1738 limit
= trackp
->items
+ trackp
->max
- 1;
1741 for (p
= trackp
->items
; p
< limit
- 1; ++p
) {
1742 if (p
->count
< (p
+1)->count
) {
1749 } while (unsorted
== TRUE
);
1756 void (*func
)(port_item
*))
1758 port_item
*limit
, *p
;
1760 limit
= trackp
->items
+ trackp
->max
;
1761 iprintf("%s:\n", trackp
->name
);
1762 for (p
= trackp
->items
; p
< limit
; ++p
) {
1763 if (func
!= FUNC_NULL
)
1766 iprintf("0x%x\t%8d\n", p
->item
, p
->count
);
1775 iprintf("0x%x\t%8d\t", p
->item
, p
->count
);
1776 db_printsym(p
->item
, DB_STGY_PROC
);
1782 * Show all ports with a given reference count.
1788 db_port_walk(1, 1, 1, refs
);
1793 * Examine all currently allocated ports.
1795 * verbose display suspicious ports
1796 * display print out each port encountered
1797 * ref_search restrict examination to ports with
1798 * a specified reference count
1799 * ref_target reference count for ref_search
1803 unsigned int verbose
,
1804 unsigned int display
,
1805 unsigned int ref_search
,
1806 unsigned int ref_target
)
1809 unsigned int ref_overflow
, refs
, i
, ref_inactive_overflow
;
1810 unsigned int no_receiver
, no_match
;
1811 unsigned int ref_counts
[MAX_REFS
];
1812 unsigned int inactive
[MAX_REFS
];
1813 unsigned int ipc_ports
= 0;
1814 unsigned int proxies
= 0, principals
= 0;
1816 iprintf("Allocated port count is %d\n", port_count
);
1817 no_receiver
= no_match
= ref_overflow
= 0;
1818 ref_inactive_overflow
= 0;
1819 for (i
= 0; i
< MAX_REFS
; ++i
) {
1823 port_track_init(&port_callers
, "port callers");
1824 port_track_init(&port_threads
, "port threads");
1825 port_track_init(&port_spaces
, "port spaces");
1827 iprintf("Walking ports of ref_count=%d.\n", ref_target
);
1829 iprintf("Walking all ports.\n");
1831 queue_iterate(&port_alloc_queue
, port
, ipc_port_t
, ip_port_links
) {
1834 port_type
= " IPC port";
1835 if (ip_active(port
))
1838 refs
= port
->ip_references
;
1839 if (ref_search
&& refs
!= ref_target
)
1842 if (refs
>= MAX_REFS
) {
1843 if (ip_active(port
))
1846 ++ref_inactive_overflow
;
1848 if (refs
== 0 && verbose
)
1849 iprintf("%s 0x%x has ref count of zero!\n",
1851 if (ip_active(port
))
1856 port_item_add(&port_threads
, (unsigned long) port
->ip_thread
);
1857 for (i
= 0; i
< IP_CALLSTACK_MAX
; ++i
) {
1858 if (port
->ip_callstack
[i
] != 0 &&
1859 DB_VALID_KERN_ADDR(port
->ip_callstack
[i
]))
1860 port_item_add(&port_callers
,
1861 port
->ip_callstack
[i
]);
1863 if (!ip_active(port
)) {
1865 iprintf("%s 0x%x, inactive, refcnt %d\n",
1866 port_type
, port
, refs
);
1870 if (port
->ip_receiver_name
== MACH_PORT_NULL
) {
1871 iprintf("%s 0x%x, no receiver, refcnt %d\n",
1876 if (port
->ip_receiver
== ipc_space_kernel
||
1877 port
->ip_receiver
== ipc_space_reply
||
1878 ipc_entry_lookup(port
->ip_receiver
,
1879 port
->ip_receiver_name
)
1881 port_item_add(&port_spaces
,
1882 (unsigned long)port
->ip_receiver
);
1884 iprintf( "%s 0x%x time 0x%x ref_cnt %d\n",
1886 port
->ip_timetrack
, refs
);
1890 iprintf("%s 0x%x, rcvr 0x%x, name 0x%x, ref %d, no match\n",
1891 port_type
, port
, port
->ip_receiver
,
1892 port
->ip_receiver_name
, refs
);
1895 iprintf("Active port type summary:\n");
1896 iprintf("\tlocal IPC %6d\n", ipc_ports
);
1897 iprintf("summary:\tcallers %d threads %d spaces %d\n",
1898 port_callers
.max
, port_threads
.max
, port_spaces
.max
);
1900 iprintf("\tref_counts:\n");
1901 for (i
= 0; i
< MAX_REFS
; ++i
)
1902 iprintf("\t ref_counts[%d] = %d\n", i
, ref_counts
[i
]);
1904 iprintf("\t%d ports w/o receivers, %d w/o matches\n",
1905 no_receiver
, no_match
);
1907 iprintf("\tinactives:");
1908 if ( ref_inactive_overflow
|| inactive
[0] || inactive
[1] ||
1909 inactive
[2] || inactive
[3] || inactive
[4] )
1910 printf(" [0]=%d [1]=%d [2]=%d [3]=%d [4]=%d [5+]=%d\n",
1911 inactive
[0], inactive
[1], inactive
[2],
1912 inactive
[3], inactive
[4], ref_inactive_overflow
);
1914 printf(" No inactive ports.\n");
1916 port_track_sort(&port_spaces
);
1917 port_track_print(&port_spaces
, FUNC_NULL
);
1918 port_track_sort(&port_threads
);
1919 port_track_print(&port_threads
, FUNC_NULL
);
1920 port_track_sort(&port_callers
);
1921 port_track_print(&port_callers
, port_callers_print
);
1926 #endif /* MACH_ASSERT */
1928 #endif /* MACH_KDB */