]> git.saurik.com Git - apple/xnu.git/blob - osfmk/ipc/ipc_object.c
xnu-3789.51.2.tar.gz
[apple/xnu.git] / osfmk / ipc / ipc_object.c
1 /*
2 * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
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.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
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.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28 /*
29 * @OSF_COPYRIGHT@
30 */
31 /*
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
34 * All Rights Reserved.
35 *
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.
41 *
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.
45 *
46 * Carnegie Mellon requests users of this software to return to
47 *
48 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
49 * School of Computer Science
50 * Carnegie Mellon University
51 * Pittsburgh PA 15213-3890
52 *
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
55 */
56 /*
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,
60 * Version 2.0.
61 * Copyright (c) 2005-2006 SPARTA, Inc.
62 */
63 /*
64 */
65 /*
66 * File: ipc/ipc_object.c
67 * Author: Rich Draves
68 * Date: 1989
69 *
70 * Functions to manipulate IPC objects.
71 */
72
73 #include <mach_rt.h>
74
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>
80
81 #include <kern/kern_types.h>
82 #include <kern/misc_protos.h>
83 #include <kern/ipc_kobject.h>
84
85 #include <ipc/ipc_types.h>
86 #include <ipc/ipc_importance.h>
87 #include <ipc/port.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>
96
97 #include <security/mac_mach_internal.h>
98
99 zone_t ipc_object_zones[IOT_NUMBER];
100
101 /*
102 * Routine: ipc_object_reference
103 * Purpose:
104 * Take a reference to an object.
105 */
106
107 void
108 ipc_object_reference(
109 ipc_object_t object)
110 {
111 io_reference(object);
112 }
113
114 /*
115 * Routine: ipc_object_release
116 * Purpose:
117 * Release a reference to an object.
118 */
119
120 void
121 ipc_object_release(
122 ipc_object_t object)
123 {
124 io_release(object);
125 }
126
127 /*
128 * Routine: ipc_object_translate
129 * Purpose:
130 * Look up an object in a space.
131 * Conditions:
132 * Nothing locked before. If successful, the object
133 * is returned locked. The caller doesn't get a ref.
134 * Returns:
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.
139 */
140
141 kern_return_t
142 ipc_object_translate(
143 ipc_space_t space,
144 mach_port_name_t name,
145 mach_port_right_t right,
146 ipc_object_t *objectp)
147 {
148 ipc_entry_t entry;
149 ipc_object_t object;
150 kern_return_t kr;
151
152 kr = ipc_right_lookup_read(space, name, &entry);
153 if (kr != KERN_SUCCESS)
154 return kr;
155 /* space is read-locked and active */
156
157 if ((entry->ie_bits & MACH_PORT_TYPE(right)) == MACH_PORT_TYPE_NONE) {
158 is_read_unlock(space);
159 return KERN_INVALID_RIGHT;
160 }
161
162 object = entry->ie_object;
163 assert(object != IO_NULL);
164
165 io_lock(object);
166 is_read_unlock(space);
167
168 *objectp = object;
169 return KERN_SUCCESS;
170 }
171
172 /*
173 * Routine: ipc_object_translate_two
174 * Purpose:
175 * Look up two objects in a space.
176 * Conditions:
177 * Nothing locked before. If successful, the objects
178 * are returned locked. The caller doesn't get a ref.
179 * Returns:
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.
184 */
185
186 kern_return_t
187 ipc_object_translate_two(
188 ipc_space_t space,
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)
195 {
196 ipc_entry_t entry1;
197 ipc_entry_t entry2;
198 ipc_object_t object;
199 kern_return_t kr;
200
201 kr = ipc_right_lookup_two_read(space, name1, &entry1, name2, &entry2);
202 if (kr != KERN_SUCCESS)
203 return kr;
204 /* space is read-locked and active */
205
206 if ((entry1->ie_bits & MACH_PORT_TYPE(right1)) == MACH_PORT_TYPE_NONE) {
207 is_read_unlock(space);
208 return KERN_INVALID_RIGHT;
209 }
210
211 if ((entry2->ie_bits & MACH_PORT_TYPE(right2)) == MACH_PORT_TYPE_NONE) {
212 is_read_unlock(space);
213 return KERN_INVALID_RIGHT;
214 }
215
216 object = entry1->ie_object;
217 assert(object != IO_NULL);
218 io_lock(object);
219 *objectp1 = object;
220
221 object = entry2->ie_object;
222 assert(object != IO_NULL);
223 io_lock(object);
224 *objectp2 = object;
225
226 is_read_unlock(space);
227 return KERN_SUCCESS;
228 }
229
230 /*
231 * Routine: ipc_object_alloc_dead
232 * Purpose:
233 * Allocate a dead-name entry.
234 * Conditions:
235 * Nothing locked.
236 * Returns:
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.
241 */
242
243 kern_return_t
244 ipc_object_alloc_dead(
245 ipc_space_t space,
246 mach_port_name_t *namep)
247 {
248 ipc_entry_t entry;
249 kern_return_t kr;
250
251 kr = ipc_entry_alloc(space, namep, &entry);
252 if (kr != KERN_SUCCESS)
253 return kr;
254 /* space is write-locked */
255
256 /* null object, MACH_PORT_TYPE_DEAD_NAME, 1 uref */
257
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);
262 return KERN_SUCCESS;
263 }
264
265 /*
266 * Routine: ipc_object_alloc_dead_name
267 * Purpose:
268 * Allocate a dead-name entry, with a specific name.
269 * Conditions:
270 * Nothing locked.
271 * Returns:
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.
276 */
277
278 kern_return_t
279 ipc_object_alloc_dead_name(
280 ipc_space_t space,
281 mach_port_name_t name)
282 {
283 ipc_entry_t entry;
284 kern_return_t kr;
285
286 kr = ipc_entry_alloc_name(space, name, &entry);
287 if (kr != KERN_SUCCESS)
288 return kr;
289 /* space is write-locked */
290
291 if (ipc_right_inuse(space, name, entry))
292 return KERN_NAME_EXISTS;
293
294 /* null object, MACH_PORT_TYPE_DEAD_NAME, 1 uref */
295
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);
300 return KERN_SUCCESS;
301 }
302
303 /*
304 * Routine: ipc_object_alloc
305 * Purpose:
306 * Allocate an object.
307 * Conditions:
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.
311 * Returns:
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.
316 */
317
318 kern_return_t
319 ipc_object_alloc(
320 ipc_space_t space,
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)
326 {
327 ipc_object_t object;
328 ipc_entry_t entry;
329 kern_return_t kr;
330
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);
335
336 object = io_alloc(otype);
337 if (object == IO_NULL)
338 return KERN_RESOURCE_SHORTAGE;
339
340 if (otype == IOT_PORT) {
341 ipc_port_t port = (ipc_port_t)object;
342
343 bzero((char *)port, sizeof(*port));
344 } else if (otype == IOT_PORT_SET) {
345 ipc_pset_t pset = (ipc_pset_t)object;
346
347 bzero((char *)pset, sizeof(*pset));
348 }
349
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);
355 return kr;
356 }
357 /* space is write-locked */
358
359 entry->ie_bits |= type | urefs;
360 entry->ie_object = object;
361 ipc_entry_modified(space, *namep, entry);
362
363 io_lock(object);
364
365 object->io_references = 1; /* for entry, not caller */
366 object->io_bits = io_makebits(TRUE, otype, 0);
367
368 *objectp = object;
369 return KERN_SUCCESS;
370 }
371
372 /*
373 * Routine: ipc_object_alloc_name
374 * Purpose:
375 * Allocate an object, with a specific name.
376 * Conditions:
377 * Nothing locked. If successful, the object is returned locked.
378 * The caller doesn't get a reference for the object.
379 * Returns:
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.
384 */
385
386 kern_return_t
387 ipc_object_alloc_name(
388 ipc_space_t space,
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)
394 {
395 ipc_object_t object;
396 ipc_entry_t entry;
397 kern_return_t kr;
398
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);
403
404 object = io_alloc(otype);
405 if (object == IO_NULL)
406 return KERN_RESOURCE_SHORTAGE;
407
408 if (otype == IOT_PORT) {
409 ipc_port_t port = (ipc_port_t)object;
410
411 bzero((char *)port, sizeof(*port));
412 } else if (otype == IOT_PORT_SET) {
413 ipc_pset_t pset = (ipc_pset_t)object;
414
415 bzero((char *)pset, sizeof(*pset));
416 }
417
418 io_lock_init(object);
419 kr = ipc_entry_alloc_name(space, name, &entry);
420 if (kr != KERN_SUCCESS) {
421 io_free(otype, object);
422 return kr;
423 }
424 /* space is write-locked */
425
426 if (ipc_right_inuse(space, name, entry)) {
427 io_free(otype, object);
428 return KERN_NAME_EXISTS;
429 }
430
431 entry->ie_bits |= type | urefs;
432 entry->ie_object = object;
433 ipc_entry_modified(space, name, entry);
434
435 io_lock(object);
436 is_write_unlock(space);
437
438 object->io_references = 1; /* for entry, not caller */
439 object->io_bits = io_makebits(TRUE, otype, 0);
440
441 *objectp = object;
442 return KERN_SUCCESS;
443 }
444
445 /*
446 * Routine: ipc_object_copyin_type
447 * Purpose:
448 * Convert a send type name to a received type name.
449 */
450
451 mach_msg_type_name_t
452 ipc_object_copyin_type(
453 mach_msg_type_name_t msgt_name)
454 {
455 switch (msgt_name) {
456
457 case MACH_MSG_TYPE_MOVE_RECEIVE:
458 return MACH_MSG_TYPE_PORT_RECEIVE;
459
460 case MACH_MSG_TYPE_MOVE_SEND_ONCE:
461 case MACH_MSG_TYPE_MAKE_SEND_ONCE:
462 return MACH_MSG_TYPE_PORT_SEND_ONCE;
463
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;
468
469 case MACH_MSG_TYPE_DISPOSE_RECEIVE:
470 case MACH_MSG_TYPE_DISPOSE_SEND:
471 case MACH_MSG_TYPE_DISPOSE_SEND_ONCE:
472 /* fall thru */
473 default:
474 return MACH_MSG_TYPE_PORT_NONE;
475 }
476 }
477
478 /*
479 * Routine: ipc_object_copyin
480 * Purpose:
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.
484 * Conditions:
485 * Nothing locked.
486 * Returns:
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.
491 */
492
493 kern_return_t
494 ipc_object_copyin(
495 ipc_space_t space,
496 mach_port_name_t name,
497 mach_msg_type_name_t msgt_name,
498 ipc_object_t *objectp)
499 {
500 ipc_entry_t entry;
501 ipc_port_t soright;
502 ipc_port_t release_port;
503 kern_return_t kr;
504 int assertcnt = 0;
505
506 /*
507 * Could first try a read lock when doing
508 * MACH_MSG_TYPE_COPY_SEND, MACH_MSG_TYPE_MAKE_SEND,
509 * and MACH_MSG_TYPE_MAKE_SEND_ONCE.
510 */
511
512 kr = ipc_right_lookup_write(space, name, &entry);
513 if (kr != KERN_SUCCESS)
514 return kr;
515 /* space is write-locked and active */
516
517 release_port = IP_NULL;
518 kr = ipc_right_copyin(space, name, entry,
519 msgt_name, TRUE,
520 objectp, &soright,
521 &release_port,
522 &assertcnt);
523 if (IE_BITS_TYPE(entry->ie_bits) == MACH_PORT_TYPE_NONE)
524 ipc_entry_dealloc(space, name, entry);
525 is_write_unlock(space);
526
527 #if IMPORTANCE_INHERITANCE
528 if (0 < assertcnt && ipc_importance_task_is_any_receiver_type(current_task()->task_imp_base)) {
529 ipc_importance_task_drop_internal_assertion(current_task()->task_imp_base, assertcnt);
530 }
531 #endif /* IMPORTANCE_INHERITANCE */
532
533 if (release_port != IP_NULL)
534 ip_release(release_port);
535
536 if ((kr == KERN_SUCCESS) && (soright != IP_NULL))
537 ipc_notify_port_deleted(soright, name);
538
539 return kr;
540 }
541
542 /*
543 * Routine: ipc_object_copyin_from_kernel
544 * Purpose:
545 * Copyin a naked capability from the kernel.
546 *
547 * MACH_MSG_TYPE_MOVE_RECEIVE
548 * The receiver must be ipc_space_kernel
549 * or the receive right must already be in limbo.
550 * Consumes the naked receive right.
551 * MACH_MSG_TYPE_COPY_SEND
552 * A naked send right must be supplied.
553 * The port gains a reference, and a send right
554 * if the port is still active.
555 * MACH_MSG_TYPE_MAKE_SEND
556 * The receiver must be ipc_space_kernel.
557 * The port gains a reference and a send right.
558 * MACH_MSG_TYPE_MOVE_SEND
559 * Consumes a naked send right.
560 * MACH_MSG_TYPE_MAKE_SEND_ONCE
561 * The port gains a reference and a send-once right.
562 * Receiver also be the caller of device subsystem,
563 * so no assertion.
564 * MACH_MSG_TYPE_MOVE_SEND_ONCE
565 * Consumes a naked send-once right.
566 * Conditions:
567 * Nothing locked.
568 */
569
570 void
571 ipc_object_copyin_from_kernel(
572 ipc_object_t object,
573 mach_msg_type_name_t msgt_name)
574 {
575 assert(IO_VALID(object));
576
577 switch (msgt_name) {
578 case MACH_MSG_TYPE_MOVE_RECEIVE: {
579 ipc_port_t port = (ipc_port_t) object;
580
581 ip_lock(port);
582 assert(ip_active(port));
583 if (port->ip_destination != IP_NULL) {
584 assert(port->ip_receiver == ipc_space_kernel);
585
586 /* relevant part of ipc_port_clear_receiver */
587 ipc_port_set_mscount(port, 0);
588
589 port->ip_receiver_name = MACH_PORT_NULL;
590 port->ip_destination = IP_NULL;
591 }
592 ip_unlock(port);
593 break;
594 }
595
596 case MACH_MSG_TYPE_COPY_SEND: {
597 ipc_port_t port = (ipc_port_t) object;
598
599 ip_lock(port);
600 if (ip_active(port)) {
601 assert(port->ip_srights > 0);
602 port->ip_srights++;
603 }
604 ip_reference(port);
605 ip_unlock(port);
606 break;
607 }
608
609 case MACH_MSG_TYPE_MAKE_SEND: {
610 ipc_port_t port = (ipc_port_t) object;
611
612 ip_lock(port);
613 if (ip_active(port)) {
614 assert(port->ip_receiver_name != MACH_PORT_NULL);
615 assert((port->ip_receiver == ipc_space_kernel) ||
616 (port->ip_receiver->is_node_id != HOST_LOCAL_NODE));
617 port->ip_mscount++;
618 }
619
620 port->ip_srights++;
621 ip_reference(port);
622 ip_unlock(port);
623 break;
624 }
625
626 case MACH_MSG_TYPE_MOVE_SEND: {
627 /* move naked send right into the message */
628 assert(((ipc_port_t)object)->ip_srights);
629 break;
630 }
631
632 case MACH_MSG_TYPE_MAKE_SEND_ONCE: {
633 ipc_port_t port = (ipc_port_t) object;
634
635 ip_lock(port);
636 if (ip_active(port)) {
637 assert(port->ip_receiver_name != MACH_PORT_NULL);
638 }
639 port->ip_sorights++;
640 ip_reference(port);
641 ip_unlock(port);
642 break;
643 }
644
645 case MACH_MSG_TYPE_MOVE_SEND_ONCE: {
646 /* move naked send-once right into the message */
647 assert(((ipc_port_t)object)->ip_sorights);
648 break;
649 }
650
651 default:
652 panic("ipc_object_copyin_from_kernel: strange rights");
653 }
654 }
655
656 /*
657 * Routine: ipc_object_destroy
658 * Purpose:
659 * Destroys a naked capability.
660 * Consumes a ref for the object.
661 *
662 * A receive right should be in limbo or in transit.
663 * Conditions:
664 * Nothing locked.
665 */
666
667 void
668 ipc_object_destroy(
669 ipc_object_t object,
670 mach_msg_type_name_t msgt_name)
671 {
672 assert(IO_VALID(object));
673 assert(io_otype(object) == IOT_PORT);
674
675 switch (msgt_name) {
676 case MACH_MSG_TYPE_PORT_SEND:
677 ipc_port_release_send((ipc_port_t) object);
678 break;
679
680 case MACH_MSG_TYPE_PORT_SEND_ONCE:
681 ipc_notify_send_once((ipc_port_t) object);
682 break;
683
684 case MACH_MSG_TYPE_PORT_RECEIVE:
685 ipc_port_release_receive((ipc_port_t) object);
686 break;
687
688 default:
689 panic("ipc_object_destroy: strange rights");
690 }
691 }
692
693 /*
694 * Routine: ipc_object_destroy_dest
695 * Purpose:
696 * Destroys a naked capability for the destination of
697 * of a message. Consumes a ref for the object.
698 *
699 * Conditions:
700 * Nothing locked.
701 */
702
703 void
704 ipc_object_destroy_dest(
705 ipc_object_t object,
706 mach_msg_type_name_t msgt_name)
707 {
708 assert(IO_VALID(object));
709 assert(io_otype(object) == IOT_PORT);
710
711 switch (msgt_name) {
712 case MACH_MSG_TYPE_PORT_SEND:
713 ipc_port_release_send((ipc_port_t) object);
714 break;
715
716 case MACH_MSG_TYPE_PORT_SEND_ONCE:
717 if (io_active(object) &&
718 !ip_full_kernel((ipc_port_t) object))
719 ipc_notify_send_once((ipc_port_t) object);
720 else
721 ipc_port_release_sonce((ipc_port_t) object);
722 break;
723
724 default:
725 panic("ipc_object_destroy_dest: strange rights");
726 }
727 }
728
729 /*
730 * Routine: ipc_object_copyout
731 * Purpose:
732 * Copyout a capability, placing it into a space.
733 * If successful, consumes a ref for the object.
734 * Conditions:
735 * Nothing locked.
736 * Returns:
737 * KERN_SUCCESS Copied out object, consumed ref.
738 * KERN_INVALID_TASK The space is dead.
739 * KERN_INVALID_CAPABILITY The object is dead.
740 * KERN_NO_SPACE No room in space for another right.
741 * KERN_RESOURCE_SHORTAGE No memory available.
742 * KERN_UREFS_OVERFLOW Urefs limit exceeded
743 * and overflow wasn't specified.
744 */
745
746 kern_return_t
747 ipc_object_copyout(
748 ipc_space_t space,
749 ipc_object_t object,
750 mach_msg_type_name_t msgt_name,
751 boolean_t overflow,
752 mach_port_name_t *namep)
753 {
754 mach_port_name_t name;
755 ipc_entry_t entry;
756 kern_return_t kr;
757
758 assert(IO_VALID(object));
759 assert(io_otype(object) == IOT_PORT);
760
761 is_write_lock(space);
762
763 for (;;) {
764 if (!is_active(space)) {
765 is_write_unlock(space);
766 return KERN_INVALID_TASK;
767 }
768
769 if ((msgt_name != MACH_MSG_TYPE_PORT_SEND_ONCE) &&
770 ipc_right_reverse(space, object, &name, &entry)) {
771 /* object is locked and active */
772
773 assert(entry->ie_bits & MACH_PORT_TYPE_SEND_RECEIVE);
774 break;
775 }
776
777 name = CAST_MACH_PORT_TO_NAME(object);
778 kr = ipc_entry_get(space, &name, &entry);
779 if (kr != KERN_SUCCESS) {
780 /* unlocks/locks space, so must start again */
781
782 kr = ipc_entry_grow_table(space, ITS_SIZE_NONE);
783 if (kr != KERN_SUCCESS)
784 return kr; /* space is unlocked */
785
786 continue;
787 }
788
789 assert(IE_BITS_TYPE(entry->ie_bits) == MACH_PORT_TYPE_NONE);
790 assert(entry->ie_object == IO_NULL);
791
792 io_lock(object);
793 if (!io_active(object)) {
794 io_unlock(object);
795 ipc_entry_dealloc(space, name, entry);
796 is_write_unlock(space);
797 return KERN_INVALID_CAPABILITY;
798 }
799
800 entry->ie_object = object;
801 break;
802 }
803
804 /* space is write-locked and active, object is locked and active */
805
806 kr = ipc_right_copyout(space, name, entry,
807 msgt_name, overflow, object);
808
809 /* object is unlocked */
810 is_write_unlock(space);
811
812 if (kr == KERN_SUCCESS)
813 *namep = name;
814 return kr;
815 }
816
817 /*
818 * Routine: ipc_object_copyout_name
819 * Purpose:
820 * Copyout a capability, placing it into a space.
821 * The specified name is used for the capability.
822 * If successful, consumes a ref for the object.
823 * Conditions:
824 * Nothing locked.
825 * Returns:
826 * KERN_SUCCESS Copied out object, consumed ref.
827 * KERN_INVALID_TASK The space is dead.
828 * KERN_INVALID_CAPABILITY The object is dead.
829 * KERN_RESOURCE_SHORTAGE No memory available.
830 * KERN_UREFS_OVERFLOW Urefs limit exceeded
831 * and overflow wasn't specified.
832 * KERN_RIGHT_EXISTS Space has rights under another name.
833 * KERN_NAME_EXISTS Name is already used.
834 */
835
836 kern_return_t
837 ipc_object_copyout_name(
838 ipc_space_t space,
839 ipc_object_t object,
840 mach_msg_type_name_t msgt_name,
841 boolean_t overflow,
842 mach_port_name_t name)
843 {
844 mach_port_name_t oname;
845 ipc_entry_t oentry;
846 ipc_entry_t entry;
847 kern_return_t kr;
848
849 #if IMPORTANCE_INHERITANCE
850 int assertcnt = 0;
851 ipc_importance_task_t task_imp = IIT_NULL;
852 #endif /* IMPORTANCE_INHERITANCE */
853
854 assert(IO_VALID(object));
855 assert(io_otype(object) == IOT_PORT);
856
857 kr = ipc_entry_alloc_name(space, name, &entry);
858 if (kr != KERN_SUCCESS)
859 return kr;
860 /* space is write-locked and active */
861
862 if ((msgt_name != MACH_MSG_TYPE_PORT_SEND_ONCE) &&
863 ipc_right_reverse(space, object, &oname, &oentry)) {
864 /* object is locked and active */
865
866 if (name != oname) {
867 io_unlock(object);
868
869 if (IE_BITS_TYPE(entry->ie_bits) == MACH_PORT_TYPE_NONE)
870 ipc_entry_dealloc(space, name, entry);
871
872 is_write_unlock(space);
873 return KERN_RIGHT_EXISTS;
874 }
875
876 assert(entry == oentry);
877 assert(entry->ie_bits & MACH_PORT_TYPE_SEND_RECEIVE);
878 } else {
879 if (ipc_right_inuse(space, name, entry))
880 return KERN_NAME_EXISTS;
881
882 assert(IE_BITS_TYPE(entry->ie_bits) == MACH_PORT_TYPE_NONE);
883 assert(entry->ie_object == IO_NULL);
884
885 io_lock(object);
886 if (!io_active(object)) {
887 io_unlock(object);
888 ipc_entry_dealloc(space, name, entry);
889 is_write_unlock(space);
890 return KERN_INVALID_CAPABILITY;
891 }
892
893 entry->ie_object = object;
894 }
895
896 /* space is write-locked and active, object is locked and active */
897
898 #if IMPORTANCE_INHERITANCE
899 /*
900 * We are slamming a receive right into the space, without
901 * first having been enqueued on a port destined there. So,
902 * we have to arrange to boost the task appropriately if this
903 * port has assertions (and the task wants them).
904 */
905 if (msgt_name == MACH_MSG_TYPE_PORT_RECEIVE) {
906 ipc_port_t port = (ipc_port_t)object;
907
908 if (space->is_task != TASK_NULL) {
909 task_imp = space->is_task->task_imp_base;
910 if (ipc_importance_task_is_any_receiver_type(task_imp)) {
911 assertcnt = port->ip_impcount;
912 ipc_importance_task_reference(task_imp);
913 }
914 }
915
916 /* take port out of limbo */
917 assert(port->ip_tempowner != 0);
918 port->ip_tempowner = 0;
919 }
920
921 #endif /* IMPORTANCE_INHERITANCE */
922
923 kr = ipc_right_copyout(space, name, entry,
924 msgt_name, overflow, object);
925
926 /* object is unlocked */
927 is_write_unlock(space);
928
929 #if IMPORTANCE_INHERITANCE
930 /*
931 * Add the assertions to the task that we captured before
932 */
933 if (task_imp != IIT_NULL) {
934 ipc_importance_task_hold_internal_assertion(task_imp, assertcnt);
935 ipc_importance_task_release(task_imp);
936 }
937 #endif /* IMPORTANCE_INHERITANCE */
938
939 return kr;
940 }
941
942 /*
943 * Routine: ipc_object_copyout_dest
944 * Purpose:
945 * Translates/consumes the destination right of a message.
946 * This is unlike normal copyout because the right is consumed
947 * in a funny way instead of being given to the receiving space.
948 * The receiver gets his name for the port, if he has receive
949 * rights, otherwise MACH_PORT_NULL.
950 * Conditions:
951 * The object is locked and active. Nothing else locked.
952 * The object is unlocked and loses a reference.
953 */
954
955 void
956 ipc_object_copyout_dest(
957 ipc_space_t space,
958 ipc_object_t object,
959 mach_msg_type_name_t msgt_name,
960 mach_port_name_t *namep)
961 {
962 mach_port_name_t name;
963
964 assert(IO_VALID(object));
965 assert(io_active(object));
966
967 io_release(object);
968
969 /*
970 * If the space is the receiver/owner of the object,
971 * then we quietly consume the right and return
972 * the space's name for the object. Otherwise
973 * we destroy the right and return MACH_PORT_NULL.
974 */
975
976 switch (msgt_name) {
977 case MACH_MSG_TYPE_PORT_SEND: {
978 ipc_port_t port = (ipc_port_t) object;
979 ipc_port_t nsrequest = IP_NULL;
980 mach_port_mscount_t mscount;
981
982 if (port->ip_receiver == space)
983 name = port->ip_receiver_name;
984 else
985 name = MACH_PORT_NULL;
986
987 assert(port->ip_srights > 0);
988 if (--port->ip_srights == 0 &&
989 port->ip_nsrequest != IP_NULL) {
990 nsrequest = port->ip_nsrequest;
991 port->ip_nsrequest = IP_NULL;
992 mscount = port->ip_mscount;
993 ip_unlock(port);
994 ipc_notify_no_senders(nsrequest, mscount);
995 } else
996 ip_unlock(port);
997 break;
998 }
999
1000 case MACH_MSG_TYPE_PORT_SEND_ONCE: {
1001 ipc_port_t port = (ipc_port_t) object;
1002
1003 assert(port->ip_sorights > 0);
1004
1005 if (port->ip_receiver == space) {
1006 /* quietly consume the send-once right */
1007
1008 port->ip_sorights--;
1009 name = port->ip_receiver_name;
1010 ip_unlock(port);
1011 } else {
1012 /*
1013 * A very bizarre case. The message
1014 * was received, but before this copyout
1015 * happened the space lost receive rights.
1016 * We can't quietly consume the soright
1017 * out from underneath some other task,
1018 * so generate a send-once notification.
1019 */
1020
1021 ip_reference(port); /* restore ref */
1022 ip_unlock(port);
1023
1024 ipc_notify_send_once(port);
1025 name = MACH_PORT_NULL;
1026 }
1027
1028 break;
1029 }
1030
1031 default:
1032 panic("ipc_object_copyout_dest: strange rights");
1033 name = MACH_PORT_DEAD;
1034 }
1035
1036 *namep = name;
1037 }
1038
1039 /*
1040 * Routine: ipc_object_rename
1041 * Purpose:
1042 * Rename an entry in a space.
1043 * Conditions:
1044 * Nothing locked.
1045 * Returns:
1046 * KERN_SUCCESS Renamed the entry.
1047 * KERN_INVALID_TASK The space was dead.
1048 * KERN_INVALID_NAME oname didn't denote an entry.
1049 * KERN_NAME_EXISTS nname already denoted an entry.
1050 * KERN_RESOURCE_SHORTAGE Couldn't allocate new entry.
1051 */
1052
1053 kern_return_t
1054 ipc_object_rename(
1055 ipc_space_t space,
1056 mach_port_name_t oname,
1057 mach_port_name_t nname)
1058 {
1059 ipc_entry_t oentry, nentry;
1060 kern_return_t kr;
1061
1062 kr = ipc_entry_alloc_name(space, nname, &nentry);
1063 if (kr != KERN_SUCCESS)
1064 return kr;
1065
1066 /* space is write-locked and active */
1067
1068 if (ipc_right_inuse(space, nname, nentry)) {
1069 /* space is unlocked */
1070 return KERN_NAME_EXISTS;
1071 }
1072
1073 /* don't let ipc_entry_lookup see the uninitialized new entry */
1074
1075 if ((oname == nname) ||
1076 ((oentry = ipc_entry_lookup(space, oname)) == IE_NULL)) {
1077 ipc_entry_dealloc(space, nname, nentry);
1078 is_write_unlock(space);
1079 return KERN_INVALID_NAME;
1080 }
1081
1082 kr = ipc_right_rename(space, oname, oentry, nname, nentry);
1083 /* space is unlocked */
1084 return kr;
1085 }
1086
1087 /*
1088 * Check whether the object is a port if so, free it. But
1089 * keep track of that fact.
1090 */
1091 void
1092 io_free(
1093 unsigned int otype,
1094 ipc_object_t object)
1095 {
1096 ipc_port_t port;
1097
1098 if (otype == IOT_PORT) {
1099 port = (ipc_port_t) object;
1100 ipc_port_finalize(port);
1101 }
1102 io_lock_destroy(object);
1103 zfree(ipc_object_zones[otype], object);
1104 }