diff options
author | lloyd <[email protected]> | 2007-07-17 00:48:23 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-07-17 00:48:23 +0000 |
commit | e56d05f6e77044ce4fdc4288dc9bb4eb556d13fd (patch) | |
tree | 538eae60218196959a20dea6b32f454cd210c4fb /src/blowfish.cpp | |
parent | a02d73324ce4ce52fa891586708256dd1c815f54 (diff) |
If an algorithm cache lookup fails, index the newly created prototype object
under the name that the algorithm was originally requested by. This enables
proper caching for algorithm names which deref_alias fails to fully dereference
such as "HMAC(SHA-1)". The previous code had two major problems with names of
that type, firstly that the cache was effectively bypassed due to all prototype
objects in Algorithm_Cache_Impl being indexed by their canonical names rather
than the alias that they were requested under, and that there existed a race
condition where a prototype object might be deleted while in use in multithreaded
code.
The downside of this change is that using multiple names to refer to a single
algorithm causes multiple prototype objects to be created, one for each name
that is in use. However the memory overhead of this should be fairly minimal
and given the severity of the race condition this seems like a worthwhile tradeoff.
A more complete fix would be to fix deref_alias to properly derference all alias
names. That fix would be complimentary with this change in that if deref_alias
handled all names properly there would be a single prototype object and there
would then be no additional memory overhead to the cache.
Diffstat (limited to 'src/blowfish.cpp')
0 files changed, 0 insertions, 0 deletions