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 | /* * Copyright (c) 2000 Apple 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@ */ /* OSObject.cpp created by gvdl on Fri 1998-11-17 */ #include <libkern/c++/OSObject.h> #include <libkern/c++/OSString.h> #include <libkern/c++/OSArray.h> #include <libkern/c++/OSSerialize.h> #include <libkern/c++/OSLib.h> #include <libkern/OSDebug.h> #include <libkern/c++/OSCPPDebug.h> #include <IOKit/IOKitDebug.h> #include <libkern/OSAtomic.h> #include <libkern/c++/OSCollection.h> #include <kern/queue.h> __BEGIN_DECLS size_t debug_ivars_size; __END_DECLS // OSDefineMetaClassAndAbstractStructors(OSObject, 0); /* Class global data */ OSObject::MetaClass OSObject::gMetaClass; const OSMetaClass * const OSObject::metaClass = &OSObject::gMetaClass; const OSMetaClass * const OSObject::superClass = NULL; /* Class member functions - Can't use defaults */ OSObject::~OSObject() { } const OSMetaClass * OSObject::getMetaClass() const { return &gMetaClass; } OSObject * OSObject::MetaClass::alloc() const { return NULL; } /* The OSObject::MetaClass constructor */ OSObject::MetaClass::MetaClass() : OSMetaClass("OSObject", OSObject::superClass, sizeof(OSObject)) { } // Virtual Padding OSMetaClassDefineReservedUnused(OSObject, 0); OSMetaClassDefineReservedUnused(OSObject, 1); OSMetaClassDefineReservedUnused(OSObject, 2); OSMetaClassDefineReservedUnused(OSObject, 3); OSMetaClassDefineReservedUnused(OSObject, 4); OSMetaClassDefineReservedUnused(OSObject, 5); OSMetaClassDefineReservedUnused(OSObject, 6); OSMetaClassDefineReservedUnused(OSObject, 7); OSMetaClassDefineReservedUnused(OSObject, 8); OSMetaClassDefineReservedUnused(OSObject, 9); OSMetaClassDefineReservedUnused(OSObject, 10); OSMetaClassDefineReservedUnused(OSObject, 11); OSMetaClassDefineReservedUnused(OSObject, 12); OSMetaClassDefineReservedUnused(OSObject, 13); OSMetaClassDefineReservedUnused(OSObject, 14); OSMetaClassDefineReservedUnused(OSObject, 15); static const char * getClassName(const OSObject *obj) { const OSMetaClass *meta = obj->getMetaClass(); return (meta) ? meta->getClassName() : "unknown class?"; } int OSObject::getRetainCount() const { return (int) ((UInt16) retainCount); } bool OSObject::taggedTryRetain(const void *tag) const { volatile UInt32 *countP = (volatile UInt32 *) &retainCount; UInt32 inc = 1; UInt32 origCount; UInt32 newCount; // Increment the collection bucket. if ((const void *) OSTypeID(OSCollection) == tag) { inc |= (1UL << 16); } do { origCount = *countP; if (((UInt16) origCount | 0x1) == 0xffff) { if (origCount & 0x1) { // If count == 0xffff that means we are freeing now so we can // just return obviously somebody is cleaning up dangling // references. return false; } else { // If count == 0xfffe then we have wrapped our reference count. // We should stop counting now as this reference must be // leaked rather than accidently wrapping around the clock and // freeing a very active object later. #if !DEBUG break; // Break out of update loop which pegs the reference #else /* DEBUG */ // @@@ gvdl: eventually need to make this panic optional // based on a boot argument i.e. debug= boot flag panic("OSObject::refcount: " "About to wrap the reference count, reference leak?"); #endif /* !DEBUG */ } } newCount = origCount + inc; } while (!OSCompareAndSwap(origCount, newCount, const_cast<UInt32 *>(countP))); return true; } void OSObject::taggedRetain(const void *tag) const { if (!taggedTryRetain(tag)) { panic("OSObject::refcount: Attempting to retain a freed object"); } } void OSObject::taggedRelease(const void *tag) const { taggedRelease(tag, 1); } void OSObject::taggedRelease(const void *tag, const int when) const { volatile UInt32 *countP = (volatile UInt32 *) &retainCount; UInt32 dec = 1; UInt32 origCount; UInt32 newCount; UInt32 actualCount; // Increment the collection bucket. if ((const void *) OSTypeID(OSCollection) == tag) { dec |= (1UL << 16); } do { origCount = *countP; if (((UInt16) origCount | 0x1) == 0xffff) { if (origCount & 0x1) { // If count == 0xffff that means we are freeing now so we can // just return obviously somebody is cleaning up some dangling // references. So we blow out immediately. return; } else { // If count == 0xfffe then we have wrapped our reference // count. We should stop counting now as this reference must be // leaked rather than accidently freeing an active object later. #if !DEBUG return; // return out of function which pegs the reference #else /* DEBUG */ // @@@ gvdl: eventually need to make this panic optional // based on a boot argument i.e. debug= boot flag panic("OSObject::refcount: %s", "About to unreference a pegged object, reference leak?"); #endif /* !DEBUG */ } } actualCount = origCount - dec; if ((UInt16) actualCount < when) { newCount = 0xffff; } else { newCount = actualCount; } } while (!OSCompareAndSwap(origCount, newCount, const_cast<UInt32 *>(countP))); // // This panic means that we have just attempted to release an object // whose retain count has gone to less than the number of collections // it is a member off. Take a panic immediately. // In fact the panic MAY not be a registry corruption but it is // ALWAYS the wrong thing to do. I call it a registry corruption 'cause // the registry is the biggest single use of a network of collections. // // xxx - this error message is overly-specific; // xxx - any code in the kernel could trip this, // xxx - and it applies as noted to all collections, not just the registry if ((UInt16) actualCount < (actualCount >> 16)) { panic("A kext releasing a(n) %s has corrupted the registry.", getClassName(this)); } // Check for a 'free' condition and that if we are first through if (newCount == 0xffff) { (const_cast<OSObject *>(this))->free(); } } void OSObject::release() const { taggedRelease(NULL); } void OSObject::retain() const { taggedRetain(NULL); } extern "C" void osobject_retain(void * object) { ((OSObject *)object)->retain(); } extern "C" void osobject_release(void * object) { ((OSObject *)object)->release(); } void OSObject::release(int when) const { taggedRelease(NULL, when); } bool OSObject::serialize(OSSerialize *s) const { char cstr[128]; bool ok; snprintf(cstr, sizeof(cstr), "%s is not serializable", getClassName(this)); OSString * str; str = OSString::withCStringNoCopy(cstr); if (!str) { return false; } ok = str->serialize(s); str->release(); return ok; } void * OSObject::operator new(size_t size) { #if IOTRACKING if (kIOTracking & gIOKitDebug) { return OSMetaClass::trackedNew(size); } #endif void *mem = kheap_alloc_tag_bt(KHEAP_DEFAULT, size, (zalloc_flags_t) (Z_WAITOK | Z_ZERO), VM_KERN_MEMORY_LIBKERN); assert(mem); OSIVAR_ACCUMSIZE(size); return (void *) mem; } void OSObject::operator delete(void * mem, size_t size) { if (!mem) { return; } #if IOTRACKING if (kIOTracking & gIOKitDebug) { return OSMetaClass::trackedDelete(mem, size); } #endif kern_os_kfree(mem, size); OSIVAR_ACCUMSIZE(-size); } __BEGIN_DECLS void *OSObject_operator_new_external(size_t size); void * OSObject_operator_new_external(size_t size) { #if IOTRACKING if (kIOTracking & gIOKitDebug) { return OSMetaClass::trackedNew(size); } #endif void * mem = kheap_alloc_tag_bt(KHEAP_KEXT, size, (zalloc_flags_t) (Z_WAITOK | Z_ZERO), VM_KERN_MEMORY_LIBKERN); assert(mem); OSIVAR_ACCUMSIZE(size); return (void *) mem; } void OSObject_operator_delete_external(void * mem, size_t size); void OSObject_operator_delete_external(void * mem, size_t size) { if (!mem) { return; } #if IOTRACKING if (kIOTracking & gIOKitDebug) { return OSMetaClass::trackedDelete(mem, size); } #endif kheap_free(KHEAP_KEXT, mem, size); OSIVAR_ACCUMSIZE(-size); } __END_DECLS bool OSObject::init() { #if IOTRACKING if (kIOTracking & gIOKitDebug) { getMetaClass()->trackedInstance(this); } #endif return true; } void OSObject::free() { const OSMetaClass *meta = getMetaClass(); if (meta) { meta->instanceDestructed(); #if IOTRACKING if (kIOTracking & gIOKitDebug) { getMetaClass()->trackedFree(this); } #endif } delete this; } #if IOTRACKING void OSObject::trackingAccumSize(size_t size) { if (kIOTracking & gIOKitDebug) { getMetaClass()->trackedAccumSize(this, size); } } #endif /* Class member functions - Can't use defaults */ /* During constructor vtable is always OSObject's - can't call any subclass */ OSObject::OSObject() { retainCount = 1; // if (kIOTracking & gIOKitDebug) getMetaClass()->trackedInstance(this); } OSObject::OSObject(const OSMetaClass *) { retainCount = 1; // if (kIOTracking & gIOKitDebug) getMetaClass()->trackedInstance(this); } bool OSObject::iterateObjects(void * refcon, bool (*callback)(void * refcon, OSObject * object)) { OSCollection * col; if ((col = OSDynamicCast(OSCollection, this))) { return col->iterateObjects(refcon, callback); } return callback(refcon, this); } bool OSObject::iterateObjects(bool (^block)(OSObject * object)) { OSCollection * col; if ((col = OSDynamicCast(OSCollection, this))) { return col->iterateObjects(block); } return block(this); } |