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 | /* * Copyright (c) 1998-2000 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@ */ #include <IOKit/IOSharedDataQueue.h> #include <IOKit/IODataQueueShared.h> #include <IOKit/IOLib.h> #include <IOKit/IOMemoryDescriptor.h> #ifdef enqueue #undef enqueue #endif #ifdef dequeue #undef dequeue #endif #define super IODataQueue OSDefineMetaClassAndStructors(IOSharedDataQueue, IODataQueue) IOSharedDataQueue *IOSharedDataQueue::withCapacity(UInt32 size) { IOSharedDataQueue *dataQueue = new IOSharedDataQueue; if (dataQueue) { if (!dataQueue->initWithCapacity(size)) { dataQueue->release(); dataQueue = NULL; } } return dataQueue; } IOSharedDataQueue * IOSharedDataQueue::withEntries(UInt32 numEntries, UInt32 entrySize) { IOSharedDataQueue *dataQueue = new IOSharedDataQueue; if (dataQueue) { if (!dataQueue->initWithEntries(numEntries, entrySize)) { dataQueue->release(); dataQueue = NULL; } } return dataQueue; } Boolean IOSharedDataQueue::initWithCapacity(UInt32 size) { IODataQueueAppendix * appendix; vm_size_t allocSize; if (!super::init()) { return false; } _reserved = (ExpansionData *)IOMalloc(sizeof(struct ExpansionData)); if (!_reserved) { return false; } if (size > UINT32_MAX - DATA_QUEUE_MEMORY_HEADER_SIZE - DATA_QUEUE_MEMORY_APPENDIX_SIZE) { return false; } allocSize = round_page(size + DATA_QUEUE_MEMORY_HEADER_SIZE + DATA_QUEUE_MEMORY_APPENDIX_SIZE); if (allocSize < size) { return false; } dataQueue = (IODataQueueMemory *)IOMallocAligned(allocSize, PAGE_SIZE); if (dataQueue == NULL) { return false; } bzero(dataQueue, allocSize); dataQueue->queueSize = size; // dataQueue->head = 0; // dataQueue->tail = 0; if (!setQueueSize(size)) { return false; } appendix = (IODataQueueAppendix *)((UInt8 *)dataQueue + size + DATA_QUEUE_MEMORY_HEADER_SIZE); appendix->version = 0; if (!notifyMsg) { notifyMsg = IOMalloc(sizeof(mach_msg_header_t)); if (!notifyMsg) { return false; } } bzero(notifyMsg, sizeof(mach_msg_header_t)); setNotificationPort(MACH_PORT_NULL); return true; } void IOSharedDataQueue::free() { if (dataQueue) { IOFreeAligned(dataQueue, round_page(getQueueSize() + DATA_QUEUE_MEMORY_HEADER_SIZE + DATA_QUEUE_MEMORY_APPENDIX_SIZE)); dataQueue = NULL; if (notifyMsg) { IOFree(notifyMsg, sizeof(mach_msg_header_t)); notifyMsg = NULL; } } if (_reserved) { IOFree(_reserved, sizeof(struct ExpansionData)); _reserved = NULL; } super::free(); } IOMemoryDescriptor * IOSharedDataQueue::getMemoryDescriptor() { IOMemoryDescriptor *descriptor = NULL; if (dataQueue != NULL) { descriptor = IOMemoryDescriptor::withAddress(dataQueue, getQueueSize() + DATA_QUEUE_MEMORY_HEADER_SIZE + DATA_QUEUE_MEMORY_APPENDIX_SIZE, kIODirectionOutIn); } return descriptor; } IODataQueueEntry * IOSharedDataQueue::peek() { IODataQueueEntry *entry = NULL; UInt32 headOffset; UInt32 tailOffset; if (!dataQueue) { return NULL; } // Read head and tail with acquire barrier // See rdar://problem/40780584 for an explanation of relaxed/acquire barriers headOffset = __c11_atomic_load((_Atomic UInt32 *)&dataQueue->head, __ATOMIC_RELAXED); tailOffset = __c11_atomic_load((_Atomic UInt32 *)&dataQueue->tail, __ATOMIC_ACQUIRE); if (headOffset != tailOffset) { volatile IODataQueueEntry * head = NULL; UInt32 headSize = 0; UInt32 headOffset = dataQueue->head; UInt32 queueSize = getQueueSize(); if (headOffset >= queueSize) { return NULL; } head = (IODataQueueEntry *)((char *)dataQueue->queue + headOffset); headSize = head->size; // 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; } else { entry = (IODataQueueEntry *)head; } } return entry; } Boolean IOSharedDataQueue::enqueue(void * data, UInt32 dataSize) { UInt32 head; UInt32 tail; UInt32 newTail; const UInt32 entrySize = dataSize + DATA_QUEUE_ENTRY_HEADER_SIZE; IODataQueueEntry * entry; // Force a single read of head and tail // See rdar://problem/40780584 for an explanation of relaxed/acquire barriers tail = __c11_atomic_load((_Atomic UInt32 *)&dataQueue->tail, __ATOMIC_RELAXED); head = __c11_atomic_load((_Atomic UInt32 *)&dataQueue->head, __ATOMIC_ACQUIRE); // Check for overflow of entrySize if (dataSize > UINT32_MAX - DATA_QUEUE_ENTRY_HEADER_SIZE) { return false; } // Check for underflow of (getQueueSize() - tail) if (getQueueSize() < tail || getQueueSize() < head) { return false; } if (tail >= head) { // Is there enough room at the end for the entry? if ((entrySize <= UINT32_MAX - tail) && ((tail + entrySize) <= getQueueSize())) { entry = (IODataQueueEntry *)((UInt8 *)dataQueue->queue + tail); entry->size = dataSize; __nochk_memcpy(&entry->data, data, dataSize); // 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 dataQueue->queueSize inclusive. newTail = tail + entrySize; } else if (head > entrySize) { // Is there enough room at the beginning? // Wrap around to the beginning, but do not allow the tail to catch // up to the head. dataQueue->queue->size = dataSize; // 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 ((getQueueSize() - tail) >= DATA_QUEUE_ENTRY_HEADER_SIZE) { ((IODataQueueEntry *)((UInt8 *)dataQueue->queue + tail))->size = dataSize; } __nochk_memcpy(&dataQueue->queue->data, data, dataSize); newTail = entrySize; } else { return false; // 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 *)((UInt8 *)dataQueue->queue + tail); entry->size = dataSize; __nochk_memcpy(&entry->data, data, dataSize); newTail = tail + entrySize; } else { return false; // queue is full } } // Publish the data we just enqueued __c11_atomic_store((_Atomic UInt32 *)&dataQueue->tail, newTail, __ATOMIC_RELEASE); if (tail != head) { // // The memory barrier below paris 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 *)&dataQueue->head, __ATOMIC_RELAXED); } if (tail == head) { // Send notification (via mach message) that data is now available. sendDataAvailableNotification(); } return true; } Boolean IOSharedDataQueue::dequeue(void *data, UInt32 *dataSize) { Boolean retVal = TRUE; volatile IODataQueueEntry * entry = NULL; UInt32 entrySize = 0; UInt32 headOffset = 0; UInt32 tailOffset = 0; UInt32 newHeadOffset = 0; if (!dataQueue || (data && !dataSize)) { return false; } // Read head and tail with acquire barrier // See rdar://problem/40780584 for an explanation of relaxed/acquire barriers headOffset = __c11_atomic_load((_Atomic UInt32 *)&dataQueue->head, __ATOMIC_RELAXED); tailOffset = __c11_atomic_load((_Atomic UInt32 *)&dataQueue->tail, __ATOMIC_ACQUIRE); if (headOffset != tailOffset) { volatile IODataQueueEntry * head = NULL; UInt32 headSize = 0; UInt32 queueSize = getQueueSize(); if (headOffset > queueSize) { return false; } head = (IODataQueueEntry *)((char *)dataQueue->queue + headOffset); headSize = head->size; // 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; entrySize = entry->size; if ((entrySize > UINT32_MAX - DATA_QUEUE_ENTRY_HEADER_SIZE) || (entrySize + DATA_QUEUE_ENTRY_HEADER_SIZE > queueSize)) { return false; } newHeadOffset = entrySize + DATA_QUEUE_ENTRY_HEADER_SIZE; // else it is at the end } else { entry = head; entrySize = entry->size; if ((entrySize > UINT32_MAX - DATA_QUEUE_ENTRY_HEADER_SIZE) || (entrySize + DATA_QUEUE_ENTRY_HEADER_SIZE > UINT32_MAX - headOffset) || (entrySize + DATA_QUEUE_ENTRY_HEADER_SIZE + headOffset > queueSize)) { return false; } newHeadOffset = headOffset + entrySize + DATA_QUEUE_ENTRY_HEADER_SIZE; } } else { // empty queue return false; } if (data) { if (entrySize > *dataSize) { // not enough space return false; } __nochk_memcpy(data, (void *)entry->data, entrySize); *dataSize = entrySize; } __c11_atomic_store((_Atomic UInt32 *)&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; } UInt32 IOSharedDataQueue::getQueueSize() { if (!_reserved) { return 0; } return _reserved->queueSize; } Boolean IOSharedDataQueue::setQueueSize(UInt32 size) { if (!_reserved) { return false; } _reserved->queueSize = size; return true; } OSMetaClassDefineReservedUnused(IOSharedDataQueue, 0); OSMetaClassDefineReservedUnused(IOSharedDataQueue, 1); OSMetaClassDefineReservedUnused(IOSharedDataQueue, 2); OSMetaClassDefineReservedUnused(IOSharedDataQueue, 3); OSMetaClassDefineReservedUnused(IOSharedDataQueue, 4); OSMetaClassDefineReservedUnused(IOSharedDataQueue, 5); OSMetaClassDefineReservedUnused(IOSharedDataQueue, 6); OSMetaClassDefineReservedUnused(IOSharedDataQueue, 7); |