Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 | /* * Copyright (c) 2000-2020 Apple Computer, Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990,1989 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* * NOTICE: This file was modified by McAfee Research in 2004 to introduce * support for mandatory and extensible security protections. This notice * is included in support of clause 2.2 (b) of the Apple Public License, * Version 2.0. */ /* */ /* * File: ipc/ipc_space.c * Author: Rich Draves * Date: 1989 * * Functions to manipulate IPC capability spaces. */ #include <mach/boolean.h> #include <mach/kern_return.h> #include <mach/port.h> #include <kern/assert.h> #include <kern/sched_prim.h> #include <kern/zalloc.h> #include <ipc/port.h> #include <ipc/ipc_entry.h> #include <ipc/ipc_object.h> #include <ipc/ipc_hash.h> #include <ipc/ipc_port.h> #include <ipc/ipc_space.h> #include <ipc/ipc_right.h> #include <prng/random.h> #include <string.h> /* Remove this in the future so port names are less predictable. */ #define CONFIG_SEMI_RANDOM_ENTRIES #ifdef CONFIG_SEMI_RANDOM_ENTRIES #define NUM_SEQ_ENTRIES 8 #endif os_refgrp_decl(static, is_refgrp, "is", NULL); static ZONE_DEFINE_TYPE(ipc_space_zone, "ipc spaces", struct ipc_space, ZC_ZFREE_CLEARMEM); SECURITY_READ_ONLY_LATE(ipc_space_t) ipc_space_kernel; SECURITY_READ_ONLY_LATE(ipc_space_t) ipc_space_reply; static ipc_space_t ipc_space_alloc(void) { ipc_space_t space; space = zalloc_flags(ipc_space_zone, Z_WAITOK | Z_ZERO | Z_NOFAIL); lck_ticket_init(&space->is_lock, &ipc_lck_grp); return space; } __attribute__((noinline)) static void ipc_space_free(ipc_space_t space) { assert(!is_active(space)); lck_ticket_destroy(&space->is_lock, &ipc_lck_grp); zfree(ipc_space_zone, space); } void ipc_space_retire_table(ipc_entry_table_t table) { smr_global_retire(table, ipc_entry_table_size(table), (void (*)(void*))ipc_entry_table_free_noclear); } void ipc_space_reference( ipc_space_t space) { os_ref_retain_mask(&space->is_bits, IS_FLAGS_BITS, &is_refgrp); } void ipc_space_release( ipc_space_t space) { if (os_ref_release_mask(&space->is_bits, IS_FLAGS_BITS, &is_refgrp) == 0) { ipc_space_free(space); } } void ipc_space_lock( ipc_space_t space) { lck_ticket_lock(&space->is_lock, &ipc_lck_grp); } void ipc_space_unlock( ipc_space_t space) { lck_ticket_unlock(&space->is_lock); } void ipc_space_lock_sleep( ipc_space_t space) { lck_ticket_sleep_with_inheritor(&space->is_lock, &ipc_lck_grp, LCK_SLEEP_DEFAULT, (event_t)space, space->is_grower, THREAD_UNINT, TIMEOUT_WAIT_FOREVER); } /* Routine: ipc_space_get_rollpoint * Purpose: * Generate a new gencount rollover point from a space's entropy pool */ ipc_entry_bits_t ipc_space_get_rollpoint( ipc_space_t space) { return random_bool_gen_bits( &space->bool_gen, &space->is_entropy[0], IS_ENTROPY_CNT, IE_BITS_ROLL_BITS); } /* * Routine: ipc_entry_rand_freelist * Purpose: * Pseudo-randomly permute the order of entries in an IPC space * Arguments: * space: the ipc space to initialize. * table: the corresponding ipc table to initialize. * the table is 0 initialized. * bottom: the start of the range to initialize (inclusive). * top: the end of the range to initialize (noninclusive). */ void ipc_space_rand_freelist( ipc_space_t space, ipc_entry_t table, mach_port_index_t bottom, mach_port_index_t size) { int at_start = (bottom == 0); #ifdef CONFIG_SEMI_RANDOM_ENTRIES /* * Only make sequential entries at the start of the table, and not when * we're growing the space. */ ipc_entry_num_t total = 0; #endif /* First entry in the free list is always free, and is the start of the free list. */ mach_port_index_t curr = bottom; mach_port_index_t top = size; bottom++; top--; /* * Initialize the free list in the table. * Add the entries in pseudo-random order and randomly set the generation * number, in order to frustrate attacks involving port name reuse. */ while (bottom <= top) { ipc_entry_t entry = &table[curr]; int which; #ifdef CONFIG_SEMI_RANDOM_ENTRIES /* * XXX: This is a horrible hack to make sure that randomizing the port * doesn't break programs that might have (sad) hard-coded values for * certain port names. */ if (at_start && total++ < NUM_SEQ_ENTRIES) { which = 0; } else #endif which = random_bool_gen_bits( &space->bool_gen, &space->is_entropy[0], IS_ENTROPY_CNT, 1); mach_port_index_t next; if (which) { next = top; top--; } else { next = bottom; bottom++; } /* * The entry's gencount will roll over on its first allocation, at which * point a random rollover will be set for the entry. */ entry->ie_bits = IE_BITS_GEN_MASK; entry->ie_next = next; curr = next; } table[curr].ie_bits = IE_BITS_GEN_MASK; } /* * Routine: ipc_space_create * Purpose: * Creates a new IPC space. * * The new space has two references, one for the caller * and one because it is active. * Conditions: * Nothing locked. Allocates memory. * Returns: * KERN_SUCCESS Created a space. * KERN_RESOURCE_SHORTAGE Couldn't allocate memory. */ kern_return_t ipc_space_create( ipc_label_t label, ipc_space_t *spacep) { ipc_space_t space; ipc_entry_table_t table; ipc_entry_num_t count; table = ipc_entry_table_alloc_by_count(IPC_ENTRY_TABLE_MIN, Z_WAITOK | Z_ZERO | Z_NOFAIL); space = ipc_space_alloc(); count = ipc_entry_table_count(table); random_bool_init(&space->bool_gen); ipc_space_rand_freelist(space, ipc_entry_table_base(table), 0, count); os_ref_init_count_mask(&space->is_bits, IS_FLAGS_BITS, &is_refgrp, 2, 0); space->is_table_free = count - 1; space->is_label = label; space->is_low_mod = count; space->is_node_id = HOST_LOCAL_NODE; /* HOST_LOCAL_NODE, except proxy spaces */ smr_init_store(&space->is_table, table); *spacep = space; return KERN_SUCCESS; } /* * Routine: ipc_space_label * Purpose: * Modify the label on a space. The desired * label must be a super-set of the current * label for the space (as rights may already * have been previously copied out under the * old label value. * Conditions: * Nothing locked. * Returns: * KERN_SUCCESS Updated the label * KERN_INVALID_VALUE label not a superset of old */ kern_return_t ipc_space_label( ipc_space_t space, ipc_label_t label) { is_write_lock(space); if (!is_active(space)) { is_write_unlock(space); return KERN_SUCCESS; } if ((space->is_label & label) != space->is_label) { is_write_unlock(space); return KERN_INVALID_VALUE; } space->is_label = label; is_write_unlock(space); return KERN_SUCCESS; } /* * Routine: ipc_space_add_label * Purpose: * Modify the label on a space. The desired * label is added to the labels already set * on the space. * Conditions: * Nothing locked. * Returns: * KERN_SUCCESS Updated the label * KERN_INVALID_VALUE label not a superset of old */ kern_return_t ipc_space_add_label( ipc_space_t space, ipc_label_t label) { is_write_lock(space); if (!is_active(space)) { is_write_unlock(space); return KERN_SUCCESS; } space->is_label |= label; is_write_unlock(space); return KERN_SUCCESS; } /* * Routine: ipc_space_create_special * Purpose: * Create a special space. A special space * doesn't hold rights in the normal way. * Instead it is place-holder for holding * disembodied (naked) receive rights. * See ipc_port_alloc_special/ipc_port_dealloc_special. * Conditions: * Nothing locked. * Returns: * KERN_SUCCESS Created a space. * KERN_RESOURCE_SHORTAGE Couldn't allocate memory. */ kern_return_t ipc_space_create_special( ipc_space_t *spacep) { ipc_space_t space; space = ipc_space_alloc(); os_ref_init_count_mask(&space->is_bits, IS_FLAGS_BITS, &is_refgrp, 1, 0); space->is_label = IPC_LABEL_SPECIAL; space->is_node_id = HOST_LOCAL_NODE; /* HOST_LOCAL_NODE, except proxy spaces */ *spacep = space; return KERN_SUCCESS; } /* * Routine: ipc_space_terminate * Purpose: * Marks the space as dead and cleans up the entries. * Does nothing if the space is already dead. * Conditions: * Nothing locked. */ void ipc_space_terminate( ipc_space_t space) { ipc_entry_table_t table; assert(space != IS_NULL); is_write_lock(space); if (!is_active(space)) { is_write_unlock(space); return; } table = smr_serialized_load(&space->is_table); smr_clear_store(&space->is_table); /* * If somebody is trying to grow the table, * we must wait until they finish and figure * out the space died. */ while (is_growing(space)) { is_write_sleep(space); } is_write_unlock(space); /* * Now we can futz with it unlocked. * * First destroy receive rights, then the rest. * This will cut down the number of notifications * being sent when the notification destination * was a receive right in this space. */ for (mach_port_index_t index = 1; ipc_entry_table_contains(table, index); index++) { ipc_entry_t entry = ipc_entry_table_get_nocheck(table, index); mach_port_type_t type; type = IE_BITS_TYPE(entry->ie_bits); if (type != MACH_PORT_TYPE_NONE) { mach_port_name_t name; name = MACH_PORT_MAKE(index, IE_BITS_GEN(entry->ie_bits)); ipc_right_terminate(space, name, entry); } } ipc_space_retire_table(table); space->is_table_free = 0; /* * Because the space is now dead, * we must release the "active" reference for it. * Our caller still has his reference. */ is_release(space); } #if CONFIG_PROC_RESOURCE_LIMITS /* * ipc_space_set_table_size_limits: * * Set the table size's soft and hard limit. */ kern_return_t ipc_space_set_table_size_limits( ipc_space_t space, ipc_entry_num_t soft_limit, ipc_entry_num_t hard_limit) { if (space == IS_NULL) { return KERN_INVALID_TASK; } is_write_lock(space); if (!is_active(space)) { is_write_unlock(space); return KERN_INVALID_TASK; } if (hard_limit && soft_limit >= hard_limit) { soft_limit = 0; } space->is_table_size_soft_limit = soft_limit; space->is_table_size_hard_limit = hard_limit; is_write_unlock(space); return KERN_SUCCESS; } /* * Check if port space has exceeded its limits. * Should be called with the space write lock held. */ void ipc_space_check_limit_exceeded(ipc_space_t space) { size_t size = ipc_entry_table_count(is_active_table(space)); if (!is_above_soft_limit_notify(space) && space->is_table_size_soft_limit && ((size - space->is_table_free) > space->is_table_size_soft_limit)) { is_above_soft_limit_send_notification(space); act_set_astproc_resource(current_thread()); } else if (!is_above_hard_limit_notify(space) && space->is_table_size_hard_limit && ((size - space->is_table_free) > space->is_table_size_hard_limit)) { is_above_hard_limit_send_notification(space); act_set_astproc_resource(current_thread()); } } #endif /* CONFIG_PROC_RESOURCE_LIMITS */ kern_return_t ipc_space_get_table_size_and_limits( ipc_space_t space, ipc_entry_num_t *current_size, ipc_entry_num_t *soft_limit, ipc_entry_num_t *hard_limit) { kern_return_t kr = KERN_SUCCESS; ipc_entry_table_t table; if (space == IS_NULL) { return KERN_INVALID_TASK; } is_write_lock(space); if (!is_active(space)) { kr = KERN_INVALID_TASK; goto exit; } table = is_active_table(space); *current_size = ipc_entry_table_count(table) - space->is_table_free; if (is_at_max_limit_notify(space)) { if (is_at_max_limit_already_notified(space)) { kr = KERN_FAILURE; } else { *soft_limit = 0; *hard_limit = 0; is_at_max_limit_notified(space); } goto exit; } #if CONFIG_PROC_RESOURCE_LIMITS *soft_limit = space->is_table_size_soft_limit; *hard_limit = space->is_table_size_hard_limit; if (!*soft_limit && !*hard_limit) { kr = KERN_INVALID_VALUE; goto exit; } /* * Check if the thread sending the soft limit notification arrives after * the one that sent the hard limit notification */ if (is_hard_limit_already_notified(space)) { kr = KERN_FAILURE; goto exit; } if (*hard_limit > 0 && *current_size >= *hard_limit) { *soft_limit = 0; is_hard_limit_notified(space); } else { if (is_soft_limit_already_notified(space)) { kr = KERN_FAILURE; goto exit; } if (*soft_limit > 0 && *current_size >= *soft_limit) { *hard_limit = 0; is_soft_limit_notified(space); } } #endif /* CONFIG_PROC_RESOURCE_LIMITS */ exit: is_write_unlock(space); return kr; } /* * Set an ast if port space is at its max limit. * Should be called with the space write lock held. */ void ipc_space_set_at_max_limit(ipc_space_t space) { if (!is_at_max_limit_notify(space)) { is_at_max_limit_send_notification(space); act_set_astproc_resource(current_thread()); } } |