2 * Copyright (c) 2000-2016 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
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.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
28 /* IOSymbol.cpp created by gvdl on Fri 1998-11-17 */
30 #define IOKIT_ENABLE_SHARED_PTR
33 #include <sys/cdefs.h>
35 #include <kern/locks.h>
37 #include <libkern/c++/OSSymbol.h>
38 #include <libkern/c++/OSSharedPtr.h>
39 #include <libkern/c++/OSLib.h>
40 #include <os/cpp_util.h>
43 #define super OSString
45 typedef struct { unsigned int i
, j
; } OSSymbolPoolState
;
47 #define INITIAL_POOL_SIZE ((unsigned int)((exp2ml(1 + log2(kInitBucketCount)))))
49 #define GROW_FACTOR (1)
50 #define SHRINK_FACTOR (3)
52 #define GROW_POOL() do \
53 if (count * GROW_FACTOR > nBuckets) { \
54 reconstructSymbols(true); \
58 #define SHRINK_POOL() do \
59 if (count * SHRINK_FACTOR < nBuckets && \
60 nBuckets > INITIAL_POOL_SIZE) { \
61 reconstructSymbols(false); \
68 static const unsigned int kInitBucketCount
= 16;
70 typedef struct { unsigned int count
; OSSymbol
**symbolP
; } Bucket
;
73 unsigned int nBuckets
;
78 hashSymbol(const char *s
,
82 unsigned int hash
= 0;
85 /* Unroll the loop. */
90 len
++; hash
^= (unsigned int)(unsigned char) *s
++;
94 len
++; hash
^= ((unsigned int)(unsigned char) *s
++) << 8;
98 len
++; hash
^= ((unsigned int)(unsigned char) *s
++) << 16;
102 len
++; hash
^= ((unsigned int)(unsigned char) *s
++) << 24;
108 static unsigned long log2(unsigned int x
);
109 static unsigned long exp2ml(unsigned long x
);
111 void reconstructSymbols(void);
112 void reconstructSymbols(bool grow
);
115 static void *operator new(size_t size
);
116 static void operator delete(void *mem
, size_t size
);
121 OSSymbolPool(const OSSymbolPool
*old
);
130 lck_rw_lock(poolGate
, LCK_RW_TYPE_SHARED
);
136 lck_rw_unlock(poolGate
, LCK_RW_TYPE_SHARED
);
143 lck_rw_lock(poolGate
, LCK_RW_TYPE_EXCLUSIVE
);
149 lck_rw_unlock(poolGate
, LCK_RW_TYPE_EXCLUSIVE
);
152 OSSharedPtr
<OSSymbol
> findSymbol(const char *cString
) const;
153 OSSharedPtr
<OSSymbol
> insertSymbol(OSSymbol
*sym
);
154 void removeSymbol(OSSymbol
*sym
);
156 OSSymbolPoolState
initHashState();
157 LIBKERN_RETURNS_NOT_RETAINED OSSymbol
* nextHashState(OSSymbolPoolState
*stateP
);
161 OSSymbolPool::operator new(size_t size
)
163 void *mem
= (void *)kalloc_tag(size
, VM_KERN_MEMORY_LIBKERN
);
164 OSMETA_ACCUMSIZE(size
);
172 OSSymbolPool::operator delete(void *mem
, size_t size
)
175 OSMETA_ACCUMSIZE(-size
);
178 extern lck_grp_t
*IOLockGroup
;
184 nBuckets
= INITIAL_POOL_SIZE
;
185 buckets
= (Bucket
*) kalloc_tag(nBuckets
* sizeof(Bucket
), VM_KERN_MEMORY_LIBKERN
);
186 OSMETA_ACCUMSIZE(nBuckets
* sizeof(Bucket
));
190 bzero(buckets
, nBuckets
* sizeof(Bucket
));
192 poolGate
= lck_rw_alloc_init(IOLockGroup
, LCK_ATTR_NULL
);
194 return poolGate
!= NULL
;
197 OSSymbolPool::OSSymbolPool(const OSSymbolPool
*old
)
200 nBuckets
= old
->nBuckets
;
201 buckets
= old
->buckets
;
203 poolGate
= NULL
; // Do not duplicate the poolGate
206 OSSymbolPool::~OSSymbolPool()
210 for (thisBucket
= &buckets
[0]; thisBucket
< &buckets
[nBuckets
]; thisBucket
++) {
211 if (thisBucket
->count
> 1) {
212 kfree(thisBucket
->symbolP
, thisBucket
->count
* sizeof(OSSymbol
*));
213 OSMETA_ACCUMSIZE(-(thisBucket
->count
* sizeof(OSSymbol
*)));
216 kfree(buckets
, nBuckets
* sizeof(Bucket
));
217 OSMETA_ACCUMSIZE(-(nBuckets
* sizeof(Bucket
)));
221 lck_rw_free(poolGate
, IOLockGroup
);
226 OSSymbolPool::log2(unsigned int x
)
230 for (i
= 0; x
> 1; i
++) {
237 OSSymbolPool::exp2ml(unsigned long x
)
243 OSSymbolPool::initHashState()
245 OSSymbolPoolState newState
= { nBuckets
, 0 };
250 OSSymbolPool::nextHashState(OSSymbolPoolState
*stateP
)
252 Bucket
*thisBucket
= &buckets
[stateP
->i
];
260 stateP
->j
= thisBucket
->count
;
264 if (thisBucket
->count
== 1) {
265 return (OSSymbol
*) thisBucket
->symbolP
;
267 return thisBucket
->symbolP
[stateP
->j
];
272 OSSymbolPool::reconstructSymbols(void)
274 this->reconstructSymbols(true);
278 OSSymbolPool::reconstructSymbols(bool grow
)
280 unsigned int new_nBuckets
= nBuckets
;
282 OSSymbolPoolState state
;
285 new_nBuckets
+= new_nBuckets
+ 1;
287 /* Don't shrink the pool below the default initial size.
289 if (nBuckets
<= INITIAL_POOL_SIZE
) {
292 new_nBuckets
= (new_nBuckets
- 1) / 2;
295 /* Create old pool to iterate after doing above check, cause it
296 * gets finalized at return.
298 OSSymbolPool
old(this);
301 nBuckets
= new_nBuckets
;
302 buckets
= (Bucket
*) kalloc_tag(nBuckets
* sizeof(Bucket
), VM_KERN_MEMORY_LIBKERN
);
303 OSMETA_ACCUMSIZE(nBuckets
* sizeof(Bucket
));
304 /* @@@ gvdl: Zero test and panic if can't set up pool */
305 bzero(buckets
, nBuckets
* sizeof(Bucket
));
307 state
= old
.initHashState();
308 while ((insert
= old
.nextHashState(&state
))) {
309 insertSymbol(insert
);
313 OSSharedPtr
<OSSymbol
>
314 OSSymbolPool::findSymbol(const char *cString
) const
317 unsigned int j
, inLen
, hash
;
318 OSSymbol
*probeSymbol
, **list
;
319 OSSharedPtr
<OSSymbol
> ret
;
321 hashSymbol(cString
, &hash
, &inLen
); inLen
++;
322 thisBucket
= &buckets
[hash
% nBuckets
];
323 j
= thisBucket
->count
;
330 probeSymbol
= (OSSymbol
*) thisBucket
->symbolP
;
332 if (inLen
== probeSymbol
->length
333 && strncmp(probeSymbol
->string
, cString
, probeSymbol
->length
) == 0
334 && probeSymbol
->taggedTryRetain(nullptr)) {
335 ret
.reset(probeSymbol
, OSNoRetain
);
341 for (list
= thisBucket
->symbolP
; j
--; list
++) {
343 if (inLen
== probeSymbol
->length
344 && strncmp(probeSymbol
->string
, cString
, probeSymbol
->length
) == 0
345 && probeSymbol
->taggedTryRetain(nullptr)) {
346 ret
.reset(probeSymbol
, OSNoRetain
);
354 OSSharedPtr
<OSSymbol
>
355 OSSymbolPool::insertSymbol(OSSymbol
*sym
)
357 const char *cString
= sym
->string
;
359 unsigned int j
, inLen
, hash
;
360 OSSymbol
*probeSymbol
, **list
;
361 OSSharedPtr
<OSSymbol
> ret
;
363 hashSymbol(cString
, &hash
, &inLen
); inLen
++;
364 thisBucket
= &buckets
[hash
% nBuckets
];
365 j
= thisBucket
->count
;
368 thisBucket
->symbolP
= (OSSymbol
**) sym
;
375 probeSymbol
= (OSSymbol
*) thisBucket
->symbolP
;
377 if (inLen
== probeSymbol
->length
378 && strncmp(probeSymbol
->string
, cString
, probeSymbol
->length
) == 0
379 && probeSymbol
->taggedTryRetain(nullptr)) {
380 ret
.reset(probeSymbol
, OSNoRetain
);
384 list
= (OSSymbol
**) kalloc_tag(2 * sizeof(OSSymbol
*), VM_KERN_MEMORY_LIBKERN
);
385 OSMETA_ACCUMSIZE(2 * sizeof(OSSymbol
*));
386 /* @@@ gvdl: Zero test and panic if can't set up pool */
388 list
[1] = probeSymbol
;
389 thisBucket
->symbolP
= list
;
397 for (list
= thisBucket
->symbolP
; j
--; list
++) {
399 if (inLen
== probeSymbol
->length
400 && strncmp(probeSymbol
->string
, cString
, probeSymbol
->length
) == 0
401 && probeSymbol
->taggedTryRetain(nullptr)) {
402 ret
.reset(probeSymbol
, OSNoRetain
);
407 j
= thisBucket
->count
++;
409 list
= (OSSymbol
**) kalloc_tag(thisBucket
->count
* sizeof(OSSymbol
*), VM_KERN_MEMORY_LIBKERN
);
410 OSMETA_ACCUMSIZE(thisBucket
->count
* sizeof(OSSymbol
*));
411 /* @@@ gvdl: Zero test and panic if can't set up pool */
413 bcopy(thisBucket
->symbolP
, list
+ 1, j
* sizeof(OSSymbol
*));
414 kfree(thisBucket
->symbolP
, j
* sizeof(OSSymbol
*));
415 OSMETA_ACCUMSIZE(-(j
* sizeof(OSSymbol
*)));
416 thisBucket
->symbolP
= list
;
423 OSSymbolPool::removeSymbol(OSSymbol
*sym
)
426 unsigned int j
, inLen
, hash
;
427 OSSymbol
*probeSymbol
, **list
;
429 hashSymbol(sym
->string
, &hash
, &inLen
); inLen
++;
430 thisBucket
= &buckets
[hash
% nBuckets
];
431 j
= thisBucket
->count
;
432 list
= thisBucket
->symbolP
;
435 // couldn't find the symbol; probably means string hash changed
436 panic("removeSymbol %s count %d ", sym
->string
? sym
->string
: "no string", count
);
441 probeSymbol
= (OSSymbol
*) list
;
443 if (probeSymbol
== sym
) {
444 thisBucket
->symbolP
= NULL
;
450 // couldn't find the symbol; probably means string hash changed
451 panic("removeSymbol %s count %d ", sym
->string
? sym
->string
: "no string", count
);
456 probeSymbol
= list
[0];
457 if (probeSymbol
== sym
) {
458 thisBucket
->symbolP
= (OSSymbol
**) list
[1];
459 kfree(list
, 2 * sizeof(OSSymbol
*));
460 OSMETA_ACCUMSIZE(-(2 * sizeof(OSSymbol
*)));
467 probeSymbol
= list
[1];
468 if (probeSymbol
== sym
) {
469 thisBucket
->symbolP
= (OSSymbol
**) list
[0];
470 kfree(list
, 2 * sizeof(OSSymbol
*));
471 OSMETA_ACCUMSIZE(-(2 * sizeof(OSSymbol
*)));
477 // couldn't find the symbol; probably means string hash changed
478 panic("removeSymbol %s count %d ", sym
->string
? sym
->string
: "no string", count
);
482 for (; j
--; list
++) {
484 if (probeSymbol
== sym
) {
486 kalloc_tag((thisBucket
->count
- 1) * sizeof(OSSymbol
*), VM_KERN_MEMORY_LIBKERN
);
487 OSMETA_ACCUMSIZE((thisBucket
->count
- 1) * sizeof(OSSymbol
*));
488 if (thisBucket
->count
- 1 != j
) {
489 bcopy(thisBucket
->symbolP
, list
,
490 (thisBucket
->count
- 1 - j
) * sizeof(OSSymbol
*));
493 bcopy(thisBucket
->symbolP
+ thisBucket
->count
- j
,
494 list
+ thisBucket
->count
- 1 - j
,
495 j
* sizeof(OSSymbol
*));
497 kfree(thisBucket
->symbolP
, thisBucket
->count
* sizeof(OSSymbol
*));
498 OSMETA_ACCUMSIZE(-(thisBucket
->count
* sizeof(OSSymbol
*)));
499 thisBucket
->symbolP
= list
;
505 // couldn't find the symbol; probably means string hash changed
506 panic("removeSymbol %s count %d ", sym
->string
? sym
->string
: "no string", count
);
510 *********************************************************************
511 * From here on we are actually implementing the OSSymbol class
512 *********************************************************************
514 OSDefineMetaClassAndStructorsWithInitAndZone(OSSymbol
, OSString
,
515 OSSymbol::initialize(), ZC_ZFREE_CLEARMEM
)
516 OSMetaClassDefineReservedUnused(OSSymbol
, 0);
517 OSMetaClassDefineReservedUnused(OSSymbol
, 1);
518 OSMetaClassDefineReservedUnused(OSSymbol
, 2);
519 OSMetaClassDefineReservedUnused(OSSymbol
, 3);
520 OSMetaClassDefineReservedUnused(OSSymbol
, 4);
521 OSMetaClassDefineReservedUnused(OSSymbol
, 5);
522 OSMetaClassDefineReservedUnused(OSSymbol
, 6);
523 OSMetaClassDefineReservedUnused(OSSymbol
, 7);
525 static OSSymbolPool
*pool
;
528 OSSymbol::initialize()
530 pool
= new OSSymbolPool
;
533 if (pool
&& !pool
->init()) {
541 OSSymbol::initWithCStringNoCopy(const char *)
546 OSSymbol::initWithCString(const char *)
551 OSSymbol::initWithString(const OSString
*)
556 OSSharedPtr
<const OSSymbol
>
557 OSSymbol::withString(const OSString
*aString
)
559 // This string may be a OSSymbol already, cheap check.
560 if (OSDynamicCast(OSSymbol
, aString
)) {
561 OSSharedPtr
<const OSSymbol
> aStringNew((const OSSymbol
*)aString
, OSRetain
);
563 } else if (((const OSSymbol
*) aString
)->flags
& kOSStringNoCopy
) {
564 return OSSymbol::withCStringNoCopy(aString
->getCStringNoCopy());
566 return OSSymbol::withCString(aString
->getCStringNoCopy());
570 OSSharedPtr
<const OSSymbol
>
571 OSSymbol::withCString(const char *cString
)
573 OSSharedPtr
<const OSSymbol
> symbol
;
575 // Check if the symbol exists already, we don't need to take a lock here,
576 // since existingSymbolForCString will take the shared lock.
577 symbol
= OSSymbol::existingSymbolForCString(cString
);
582 OSSharedPtr
<OSSymbol
> newSymb
= OSMakeShared
<OSSymbol
>();
584 return os::move(newSymb
);
587 if (newSymb
->OSString::initWithCString(cString
)) {
588 pool
->closeWriteGate();
589 symbol
= pool
->insertSymbol(newSymb
.get());
590 pool
->openWriteGate();
593 // Somebody must have inserted the new symbol so free our copy
594 newSymb
.detach()->OSString::free();
599 return os::move(newSymb
); // return the newly created & inserted symbol.
602 OSSharedPtr
<const OSSymbol
>
603 OSSymbol::withCStringNoCopy(const char *cString
)
605 OSSharedPtr
<const OSSymbol
> symbol
;
606 OSSharedPtr
<OSSymbol
> newSymb
;
608 // Check if the symbol exists already, we don't need to take a lock here,
609 // since existingSymbolForCString will take the shared lock.
610 symbol
= OSSymbol::existingSymbolForCString(cString
);
615 newSymb
= OSMakeShared
<OSSymbol
>();
617 return os::move(newSymb
);
620 if (newSymb
->OSString::initWithCStringNoCopy(cString
)) {
621 pool
->closeWriteGate();
622 symbol
= pool
->insertSymbol(newSymb
.get());
623 pool
->openWriteGate();
626 newSymb
.detach()->OSString::free();
627 // Somebody must have inserted the new symbol so free our copy
632 return os::move(newSymb
); // return the newly created & inserted symbol.
635 OSSharedPtr
<const OSSymbol
>
636 OSSymbol::existingSymbolForString(const OSString
*aString
)
638 if (OSDynamicCast(OSSymbol
, aString
)) {
639 OSSharedPtr
<const OSSymbol
> aStringNew((const OSSymbol
*)aString
, OSRetain
);
643 return OSSymbol::existingSymbolForCString(aString
->getCStringNoCopy());
646 OSSharedPtr
<const OSSymbol
>
647 OSSymbol::existingSymbolForCString(const char *cString
)
649 OSSharedPtr
<OSSymbol
> symbol
;
651 pool
->closeReadGate();
652 symbol
= pool
->findSymbol(cString
);
653 pool
->openReadGate();
655 return os::move(symbol
);
659 OSSymbol::checkForPageUnload(void *startAddr
, void *endAddr
)
661 OSSymbol
*probeSymbol
;
662 OSSymbolPoolState state
;
664 pool
->closeWriteGate();
665 state
= pool
->initHashState();
666 while ((probeSymbol
= pool
->nextHashState(&state
))) {
667 if (probeSymbol
->string
>= startAddr
&& probeSymbol
->string
< endAddr
) {
668 probeSymbol
->OSString::initWithCString(probeSymbol
->string
);
671 pool
->openWriteGate();
675 OSSymbol::taggedRelease(const void *tag
) const
677 super::taggedRelease(tag
);
681 OSSymbol::taggedRelease(const void *tag
, const int when
) const
683 super::taggedRelease(tag
, when
);
689 pool
->closeWriteGate();
690 pool
->removeSymbol(this);
691 pool
->openWriteGate();
696 OSSymbol::isEqualTo(const char *aCString
) const
698 return super::isEqualTo(aCString
);
702 OSSymbol::isEqualTo(const OSSymbol
*aSymbol
) const
704 return aSymbol
== this;
708 OSSymbol::isEqualTo(const OSMetaClassBase
*obj
) const
713 if ((sym
= OSDynamicCast(OSSymbol
, obj
))) {
714 return isEqualTo(sym
);
715 } else if ((str
= OSDynamicCast(OSString
, obj
))) {
716 return super::isEqualTo(str
);
726 unsigned int arrayCount
,
730 unsigned int baseIdx
= 0;
733 for (lim
= arrayCount
; lim
; lim
>>= 1) {
734 p
= (typeof(p
))(((uintptr_t) array
) + (baseIdx
+ (lim
>> 1)) * memberSize
);
736 return baseIdx
+ (lim
>> 1);
740 baseIdx
+= (lim
>> 1) + 1;
745 // not found, insertion point here
746 return baseIdx
+ (lim
>> 1);