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 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 | typedef struct _IODataQueueEntry { uint32_t size; uint8_t data[0]; } IODataQueueEntry; #define DATA_QUEUE_ENTRY_HEADER_SIZE sizeof(IODataQueueEntry) typedef struct _IODataQueueMemory { volatile uint32_t head; volatile uint32_t tail; volatile uint8_t needServicedCallback; volatile uint8_t _resv[119]; IODataQueueEntry queue[0]; } IODataQueueMemory; #define DATA_QUEUE_MEMORY_HEADER_SIZE (offsetof(IODataQueueMemory, queue)) struct IODataQueueDispatchSource_IVars { IODataQueueMemory * dataQueue; IODataQueueDispatchSource * source; // IODispatchQueue * queue; IOMemoryDescriptor * memory; OSAction * dataAvailableAction; OSAction * dataServicedAction; uint64_t options; uint32_t queueByteCount; #if !KERNEL bool enable; bool canceled; #endif }; bool IODataQueueDispatchSource::init() { if (!super::init()) { return false; } ivars = IONewZero(IODataQueueDispatchSource_IVars, 1); ivars->source = this; #if !KERNEL kern_return_t ret; ret = CopyMemory(&ivars->memory); assert(kIOReturnSuccess == ret); uint64_t address; uint64_t length; ret = ivars->memory->Map(0, 0, 0, 0, &address, &length); assert(kIOReturnSuccess == ret); ivars->dataQueue = (typeof(ivars->dataQueue))(uintptr_t) address; ivars->queueByteCount = length; #endif return true; } kern_return_t IODataQueueDispatchSource::CheckForWork_Impl( const IORPC rpc, bool synchronous) { IOReturn ret = kIOReturnNotReady; return ret; } #if KERNEL kern_return_t IODataQueueDispatchSource::Create_Impl( uint64_t queueByteCount, IODispatchQueue * queue, IODataQueueDispatchSource ** source) { IODataQueueDispatchSource * inst; IOBufferMemoryDescriptor * bmd; if (3 & queueByteCount) { return kIOReturnBadArgument; } if (queueByteCount > UINT_MAX - DATA_QUEUE_MEMORY_HEADER_SIZE) { return kIOReturnBadArgument; } queueByteCount += DATA_QUEUE_MEMORY_HEADER_SIZE; inst = OSTypeAlloc(IODataQueueDispatchSource); if (!inst) { return kIOReturnNoMemory; } if (!inst->init()) { inst->release(); return kIOReturnError; } bmd = IOBufferMemoryDescriptor::withOptions( kIODirectionOutIn | kIOMemoryKernelUserShared, queueByteCount, page_size); if (!bmd) { inst->release(); return kIOReturnNoMemory; } inst->ivars->memory = bmd; inst->ivars->queueByteCount = ((uint32_t) queueByteCount); inst->ivars->options = 0; inst->ivars->dataQueue = (typeof(inst->ivars->dataQueue))bmd->getBytesNoCopy(); *source = inst; return kIOReturnSuccess; } kern_return_t IODataQueueDispatchSource::CopyMemory_Impl( IOMemoryDescriptor ** memory) { kern_return_t ret; IOMemoryDescriptor * result; result = ivars->memory; if (result) { result->retain(); ret = kIOReturnSuccess; } else { ret = kIOReturnNotReady; } *memory = result; return ret; } kern_return_t IODataQueueDispatchSource::CopyDataAvailableHandler_Impl( OSAction ** action) { kern_return_t ret; OSAction * result; result = ivars->dataAvailableAction; if (result) { result->retain(); ret = kIOReturnSuccess; } else { ret = kIOReturnNotReady; } *action = result; return ret; } kern_return_t IODataQueueDispatchSource::CopyDataServicedHandler_Impl( OSAction ** action) { kern_return_t ret; OSAction * result; result = ivars->dataServicedAction; if (result) { result->retain(); ret = kIOReturnSuccess; } else { ret = kIOReturnNotReady; } *action = result; return ret; } kern_return_t IODataQueueDispatchSource::SetDataAvailableHandler_Impl( OSAction * action) { IOReturn ret; OSAction * oldAction; oldAction = ivars->dataAvailableAction; if (oldAction && OSCompareAndSwapPtr(oldAction, NULL, &ivars->dataAvailableAction)) { oldAction->release(); } if (action) { action->retain(); ivars->dataAvailableAction = action; if (IsDataAvailable()) { DataAvailable(ivars->dataAvailableAction); } } ret = kIOReturnSuccess; return ret; } kern_return_t IODataQueueDispatchSource::SetDataServicedHandler_Impl( OSAction * action) { IOReturn ret; OSAction * oldAction; oldAction = ivars->dataServicedAction; if (oldAction && OSCompareAndSwapPtr(oldAction, NULL, &ivars->dataServicedAction)) { oldAction->release(); } if (action) { action->retain(); ivars->dataServicedAction = action; } ret = kIOReturnSuccess; return ret; } #endif /* KERNEL */ void IODataQueueDispatchSource::SendDataAvailable(void) { IOReturn ret; if (!ivars->dataAvailableAction) { ret = CopyDataAvailableHandler(&ivars->dataAvailableAction); if (kIOReturnSuccess != ret) { ivars->dataAvailableAction = NULL; } } if (ivars->dataAvailableAction) { DataAvailable(ivars->dataAvailableAction); } } void IODataQueueDispatchSource::SendDataServiced(void) { IOReturn ret; if (!ivars->dataServicedAction) { ret = CopyDataServicedHandler(&ivars->dataServicedAction); if (kIOReturnSuccess != ret) { ivars->dataServicedAction = NULL; } } if (ivars->dataServicedAction) { ivars->dataQueue->needServicedCallback = false; DataServiced(ivars->dataServicedAction); } } kern_return_t IODataQueueDispatchSource::SetEnableWithCompletion_Impl( bool enable, IODispatchSourceCancelHandler handler) { IOReturn ret; #if !KERNEL ivars->enable = enable; #endif ret = kIOReturnSuccess; return ret; } void IODataQueueDispatchSource::free() { OSSafeReleaseNULL(ivars->memory); OSSafeReleaseNULL(ivars->dataAvailableAction); OSSafeReleaseNULL(ivars->dataServicedAction); IOSafeDeleteNULL(ivars, IODataQueueDispatchSource_IVars, 1); super::free(); } kern_return_t IODataQueueDispatchSource::Cancel_Impl( IODispatchSourceCancelHandler handler) { #if !KERNEL if (handler) { handler(); } #endif return kIOReturnSuccess; } bool IODataQueueDispatchSource::IsDataAvailable(void) { IODataQueueMemory *dataQueue = ivars->dataQueue; return dataQueue && (dataQueue->head != dataQueue->tail); } kern_return_t IODataQueueDispatchSource::Peek(IODataQueueClientDequeueEntryBlock callback) { IODataQueueEntry * entry = NULL; IODataQueueMemory * dataQueue; uint32_t callerDataSize; uint32_t dataSize; uint32_t headOffset; uint32_t tailOffset; dataQueue = ivars->dataQueue; if (!dataQueue) { return kIOReturnNoMemory; } // Read head and tail with acquire barrier headOffset = __c11_atomic_load((_Atomic uint32_t *)&dataQueue->head, __ATOMIC_RELAXED); tailOffset = __c11_atomic_load((_Atomic uint32_t *)&dataQueue->tail, __ATOMIC_ACQUIRE); if (headOffset != tailOffset) { IODataQueueEntry * head = NULL; uint32_t headSize = 0; uint32_t queueSize = ivars->queueByteCount - DATA_QUEUE_MEMORY_HEADER_SIZE; if (headOffset > queueSize) { return kIOReturnError; } head = (IODataQueueEntry *)((uintptr_t)dataQueue->queue + headOffset); callerDataSize = head->size; if (os_add_overflow(3, callerDataSize, &headSize)) { return kIOReturnError; } headSize &= ~3U; // Check if there's enough room before the end of the queue for a header. // If there is room, check if there's enough room to hold the header and // the data. if ((headOffset > UINT32_MAX - DATA_QUEUE_ENTRY_HEADER_SIZE) || (headOffset + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize) || (headOffset + DATA_QUEUE_ENTRY_HEADER_SIZE > UINT32_MAX - headSize) || (headOffset + headSize + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize)) { // No room for the header or the data, wrap to the beginning of the queue. // Note: wrapping even with the UINT32_MAX checks, as we have to support // queueSize of UINT32_MAX entry = dataQueue->queue; callerDataSize = entry->size; dataSize = entry->size; if (os_add_overflow(3, callerDataSize, &dataSize)) { return kIOReturnError; } dataSize &= ~3U; if ((dataSize > UINT32_MAX - DATA_QUEUE_ENTRY_HEADER_SIZE) || (dataSize + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize)) { return kIOReturnError; } callback(&entry->data, callerDataSize); return kIOReturnSuccess; } else { callback(&head->data, callerDataSize); return kIOReturnSuccess; } } return kIOReturnUnderrun; } kern_return_t IODataQueueDispatchSource::Dequeue(IODataQueueClientDequeueEntryBlock callback) { kern_return_t ret; bool sendDataServiced; sendDataServiced = false; ret = DequeueWithCoalesce(&sendDataServiced, callback); if (sendDataServiced) { SendDataServiced(); } return ret; } kern_return_t IODataQueueDispatchSource::DequeueWithCoalesce(bool * sendDataServiced, IODataQueueClientDequeueEntryBlock callback) { IOReturn retVal = kIOReturnSuccess; IODataQueueEntry * entry = NULL; IODataQueueMemory * dataQueue; uint32_t callerDataSize; uint32_t dataSize = 0; uint32_t headOffset = 0; uint32_t tailOffset = 0; uint32_t newHeadOffset = 0; dataQueue = ivars->dataQueue; if (!dataQueue) { return kIOReturnNoMemory; } // Read head and tail with acquire barrier headOffset = __c11_atomic_load((_Atomic uint32_t *)&dataQueue->head, __ATOMIC_RELAXED); tailOffset = __c11_atomic_load((_Atomic uint32_t *)&dataQueue->tail, __ATOMIC_ACQUIRE); if (headOffset != tailOffset) { IODataQueueEntry * head = NULL; uint32_t headSize = 0; uint32_t queueSize = ivars->queueByteCount - DATA_QUEUE_MEMORY_HEADER_SIZE; if (headOffset > queueSize) { return kIOReturnError; } head = (IODataQueueEntry *)((uintptr_t)dataQueue->queue + headOffset); callerDataSize = head->size; if (os_add_overflow(3, callerDataSize, &headSize)) { return kIOReturnError; } headSize &= ~3U; // we wrapped around to beginning, so read from there // either there was not even room for the header if ((headOffset > UINT32_MAX - DATA_QUEUE_ENTRY_HEADER_SIZE) || (headOffset + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize) || // or there was room for the header, but not for the data (headOffset + DATA_QUEUE_ENTRY_HEADER_SIZE > UINT32_MAX - headSize) || (headOffset + headSize + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize)) { // Note: we have to wrap to the beginning even with the UINT32_MAX checks // because we have to support a queueSize of UINT32_MAX. entry = dataQueue->queue; callerDataSize = entry->size; if (os_add_overflow(callerDataSize, 3, &dataSize)) { return kIOReturnError; } dataSize &= ~3U; if ((dataSize > UINT32_MAX - DATA_QUEUE_ENTRY_HEADER_SIZE) || (dataSize + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize)) { return kIOReturnError; } newHeadOffset = dataSize + DATA_QUEUE_ENTRY_HEADER_SIZE; // else it is at the end } else { entry = head; if ((headSize > UINT32_MAX - DATA_QUEUE_ENTRY_HEADER_SIZE) || (headSize + DATA_QUEUE_ENTRY_HEADER_SIZE > UINT32_MAX - headOffset) || (headSize + DATA_QUEUE_ENTRY_HEADER_SIZE + headOffset > queueSize)) { return kIOReturnError; } newHeadOffset = headOffset + headSize + DATA_QUEUE_ENTRY_HEADER_SIZE; } } else { // empty queue if (dataQueue->needServicedCallback) { *sendDataServiced = true; } return kIOReturnUnderrun; } callback(&entry->data, callerDataSize); if (dataQueue->needServicedCallback) { *sendDataServiced = true; } __c11_atomic_store((_Atomic uint32_t *)&dataQueue->head, newHeadOffset, __ATOMIC_RELEASE); if (newHeadOffset == tailOffset) { // // If we are making the queue empty, then we need to make sure // that either the enqueuer notices, or we notice the enqueue // that raced with our making of the queue empty. // __c11_atomic_thread_fence(__ATOMIC_SEQ_CST); } return retVal; } kern_return_t IODataQueueDispatchSource::Enqueue(uint32_t callerDataSize, IODataQueueClientEnqueueEntryBlock callback) { kern_return_t ret; bool sendDataAvailable; sendDataAvailable = false; ret = EnqueueWithCoalesce(callerDataSize, &sendDataAvailable, callback); if (sendDataAvailable) { SendDataAvailable(); } return ret; } kern_return_t IODataQueueDispatchSource::EnqueueWithCoalesce(uint32_t callerDataSize, bool * sendDataAvailable, IODataQueueClientEnqueueEntryBlock callback) { IODataQueueMemory * dataQueue; IODataQueueEntry * entry; uint32_t head; uint32_t tail; uint32_t newTail; uint32_t dataSize; uint32_t queueSize; uint32_t entrySize; IOReturn retVal = kIOReturnSuccess; dataQueue = ivars->dataQueue; if (!dataQueue) { return kIOReturnNoMemory; } queueSize = ivars->queueByteCount - DATA_QUEUE_MEMORY_HEADER_SIZE; // Force a single read of head and tail tail = __c11_atomic_load((_Atomic uint32_t *)&dataQueue->tail, __ATOMIC_RELAXED); head = __c11_atomic_load((_Atomic uint32_t *)&dataQueue->head, __ATOMIC_ACQUIRE); if (os_add_overflow(callerDataSize, 3, &dataSize)) { return kIOReturnOverrun; } dataSize &= ~3U; // Check for overflow of entrySize if (os_add_overflow(DATA_QUEUE_ENTRY_HEADER_SIZE, dataSize, &entrySize)) { return kIOReturnOverrun; } // Check for underflow of (getQueueSize() - tail) if (queueSize < tail || queueSize < head) { return kIOReturnUnderrun; } newTail = tail; if (tail >= head) { // Is there enough room at the end for the entry? if ((entrySize <= (UINT32_MAX - tail)) && ((tail + entrySize) <= queueSize)) { entry = (IODataQueueEntry *)((uintptr_t)dataQueue->queue + tail); callback(&entry->data, callerDataSize); entry->size = callerDataSize; // The tail can be out of bound when the size of the new entry // exactly matches the available space at the end of the queue. // The tail can range from 0 to queueSize inclusive. newTail = tail + entrySize; } else if (head > entrySize) { // Is there enough room at the beginning? entry = (IODataQueueEntry *)((uintptr_t)dataQueue->queue); callback(&entry->data, callerDataSize); // Wrap around to the beginning, but do not allow the tail to catch // up to the head. entry->size = callerDataSize; // We need to make sure that there is enough room to set the size before // doing this. The user client checks for this and will look for the size // at the beginning if there isn't room for it at the end. if ((queueSize - tail) >= DATA_QUEUE_ENTRY_HEADER_SIZE) { ((IODataQueueEntry *)((uintptr_t)dataQueue->queue + tail))->size = dataSize; } newTail = entrySize; } else { retVal = kIOReturnOverrun; // queue is full } } else { // Do not allow the tail to catch up to the head when the queue is full. // That's why the comparison uses a '>' rather than '>='. if ((head - tail) > entrySize) { entry = (IODataQueueEntry *)((uintptr_t)dataQueue->queue + tail); callback(&entry->data, callerDataSize); entry->size = callerDataSize; newTail = tail + entrySize; } else { retVal = kIOReturnOverrun; // queue is full } } // Send notification (via mach message) that data is available. if (retVal == kIOReturnSuccess) { // Publish the data we just enqueued __c11_atomic_store((_Atomic uint32_t *)&dataQueue->tail, newTail, __ATOMIC_RELEASE); if (tail != head) { // // The memory barrier below pairs with the one in dequeue // so that either our store to the tail cannot be missed by // the next dequeue attempt, or we will observe the dequeuer // making the queue empty. // // Of course, if we already think the queue is empty, // there's no point paying this extra cost. // __c11_atomic_thread_fence(__ATOMIC_SEQ_CST); head = __c11_atomic_load((_Atomic uint32_t *)&dataQueue->head, __ATOMIC_RELAXED); } if (tail == head) { // Send notification that data is now available. *sendDataAvailable = true; retVal = kIOReturnSuccess; } } else if (retVal == kIOReturnOverrun) { // ask to be notified of Dequeue() dataQueue->needServicedCallback = true; *sendDataAvailable = true; } return retVal; } kern_return_t IODataQueueDispatchSource::CanEnqueueData(uint32_t callerDataSize) { return CanEnqueueData(callerDataSize, 1); } kern_return_t IODataQueueDispatchSource::CanEnqueueData(uint32_t callerDataSize, uint32_t dataCount) { IODataQueueMemory * dataQueue; uint32_t head; uint32_t tail; uint32_t dataSize; uint32_t queueSize; uint32_t entrySize; dataQueue = ivars->dataQueue; if (!dataQueue) { return kIOReturnNoMemory; } queueSize = ivars->queueByteCount - DATA_QUEUE_MEMORY_HEADER_SIZE; // Force a single read of head and tail tail = __c11_atomic_load((_Atomic uint32_t *)&dataQueue->tail, __ATOMIC_RELAXED); head = __c11_atomic_load((_Atomic uint32_t *)&dataQueue->head, __ATOMIC_ACQUIRE); if (os_add_overflow(callerDataSize, 3, &dataSize)) { return kIOReturnOverrun; } dataSize &= ~3U; // Check for overflow of entrySize if (os_add_overflow(DATA_QUEUE_ENTRY_HEADER_SIZE, dataSize, &entrySize)) { return kIOReturnOverrun; } // Check for underflow of (getQueueSize() - tail) if (queueSize < tail || queueSize < head) { return kIOReturnError; } if (tail >= head) { uint32_t endSpace = queueSize - tail; uint32_t endElements = endSpace / entrySize; uint32_t beginElements = head / entrySize; if (endElements < dataCount && endElements + beginElements <= dataCount) { return kIOReturnOverrun; } } else { // Do not allow the tail to catch up to the head when the queue is full. uint32_t space = head - tail - 1; uint32_t elements = space / entrySize; if (elements < dataCount) { return kIOReturnOverrun; } } return kIOReturnSuccess; } size_t IODataQueueDispatchSource::GetDataQueueEntryHeaderSize() { return DATA_QUEUE_ENTRY_HEADER_SIZE; } |