Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ustring): ustring hash collision protection #4350

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 53 additions & 15 deletions src/include/OpenImageIO/ustring.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ OIIO_NAMESPACE_BEGIN
#define OIIO_USTRING_HAS_CTR_FROM_USTRINGHASH 1
#define OIIO_USTRING_HAS_STDHASH 1
#define OIIO_HAS_USTRINGHASH_FORMATTER 1
#define OIIO_USTRING_SAFE_HASH 1


class ustringhash; // forward declaration
Expand Down Expand Up @@ -123,6 +124,16 @@ class ustringhash; // forward declaration
/// - if you don't need to do a lot of string assignment or equality
/// testing, but lots of more complex string manipulation.
///
/// The ustring implementation guarantees that no two ustrings return the same
/// value for hash() (despite the slim probability that two strings could
/// numerically hash to the same value). For the first ustring added with a
/// given hash, u.hash() will be the same value as ustring::strhash(chars),
/// and will deterministically be the same on every execution. In the very
/// improbable case of a hash collision, subsequent ustrings with the same
/// numeric hash will use an alternate hash based on the character address,
/// which is both not the same as ustring::strhash(chars), nor is it expected
/// to be the same constant on every program execution.

class OIIO_UTIL_API ustring {
public:
using rep_t = const char*; ///< The underlying representation type
Expand Down Expand Up @@ -288,11 +299,7 @@ class OIIO_UTIL_API ustring {
/// Return a C++ std::string representation of a ustring.
const std::string& string() const noexcept
{
if (m_chars) {
const TableRep* rep = (const TableRep*)m_chars - 1;
return rep->str;
} else
return empty_std_string;
return m_chars ? rep()->str : empty_std_string;
}

/// Reset to an empty string.
Expand All @@ -303,17 +310,27 @@ class OIIO_UTIL_API ustring {
{
if (!m_chars)
return 0;
const TableRep* rep = ((const TableRep*)m_chars) - 1;
return rep->length;
return rep()->length;
}

/// Return a hashed version of the string
/// ustring::strhash() uses Strutil::strhash but clears the MSB.
static OIIO_HOSTDEVICE constexpr hash_t strhash(string_view str)
{
return Strutil::strhash(str) & hash_mask;
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In our implementation, we do an OR instead of an and, so that "pointer hashes" look like pointers in a debugger, and it saves clearing the bit when we want to use it like a pointer, and "hash-hashes" are always negative when looking at them in a debugger.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting. I think I was trying to preserve the "0 means empty string" property without needing extra conditionals, but maybe it's easier than I thought. I will noodle with this and see if I can make it work just as simply with the reversed polarity, because I do see your point about how it's nice for the pointers to be the unchanged values.


/// Return a hashed version of the string. To guarantee unique hashes,
/// we check if the "duplicate bit" of the hash is set. If not, then
/// we just return the hash which we know is unique. But if that bit
/// is set, we utilize the unique character address.
hash_t hash() const noexcept
{
if (!m_chars)
return 0;
const TableRep* rep = ((const TableRep*)m_chars) - 1;
return rep->hashed;
hash_t h = rep()->hashed;
return OIIO_LIKELY((h & duplicate_bit) == 0)
? h
: hash_t(m_chars) | duplicate_bit;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With a "pointer hash", you can actually just store that "hash" the "hashed" member on TableRep creation, then you don't need to do any of this hashing or checking at all, you just return the value like before.

}

/// Return a hashed version of the string
Expand Down Expand Up @@ -749,6 +766,8 @@ class OIIO_UTIL_API ustring {
// if you know the rep, the chars are at (char *)(rep+1), and if you
// know the chars, the rep is at ((TableRep *)chars - 1).
struct TableRep {
// hashed has the MSB set if and only if this is the second or
// greater ustring to have the same hash.
hash_t hashed; // precomputed Hash value
std::string str; // String representation
size_t length; // Length of the string; must be right before cap
Expand All @@ -757,10 +776,29 @@ class OIIO_UTIL_API ustring {
TableRep(string_view strref, hash_t hash);
~TableRep();
const char* c_str() const noexcept { return (const char*)(this + 1); }
constexpr bool unique_hash() const
{
return (hashed & duplicate_bit) == 0;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you flip the polarity of the indicator bit, this needs to flip.

}
};

// duplicate_bit is a 1 in the MSB, which if set indicates a hash that
// is a duplicate.
static constexpr hash_t duplicate_bit = hash_t(1) << 63;
// hash_mask is what you `&` with hashed to get the real hash (clearing
// the duplicate bit).
#if 1
static constexpr hash_t hash_mask = ~duplicate_bit;
#else
// Alternate to force lots of hash collisions for testing purposes:
static constexpr hash_t hash_mask = ~duplicate_bit & 0xffff;
#endif
bool has_unique_hash() const { return rep()->unique_hash(); }

private:
static std::string empty_std_string;

const TableRep* rep() const { return ((const TableRep*)m_chars) - 1; }
};


Expand Down Expand Up @@ -811,7 +849,7 @@ class OIIO_UTIL_API ustringhash {
OIIO_DEVICE_CONSTEXPR explicit ustringhash(const char* str)
#ifdef __CUDA_ARCH__
// GPU: just compute the hash. This can be constexpr!
: m_hash(Strutil::strhash(str))
: m_hash(ustring::strhash(str))
#else
// CPU: make ustring, get its hash. Note that ustring ctr can't be
// constexpr because it has to modify the internal ustring table.
Expand All @@ -823,7 +861,7 @@ class OIIO_UTIL_API ustringhash {
OIIO_DEVICE_CONSTEXPR explicit ustringhash(const char* str, size_t len)
#ifdef __CUDA_ARCH__
// GPU: just compute the hash. This can be constexpr!
: m_hash(Strutil::strhash(len, str))
: m_hash(ustring::strhash(len, str))
#else
// CPU: make ustring, get its hash. Note that ustring ctr can't be
// constexpr because it has to modify the internal ustring table.
Expand All @@ -837,7 +875,7 @@ class OIIO_UTIL_API ustringhash {
OIIO_DEVICE_CONSTEXPR explicit ustringhash(string_view str)
#ifdef __CUDA_ARCH__
// GPU: just compute the hash. This can be constexpr!
: m_hash(Strutil::strhash(str))
: m_hash(ustring::strhash(str))
#else
// CPU: make ustring, get its hash. Note that ustring ctr can't be
// constexpr because it has to modify the internal ustring table.
Expand Down Expand Up @@ -931,13 +969,13 @@ class OIIO_UTIL_API ustringhash {
/// Test for equality with a char*.
constexpr bool operator==(const char* str) const noexcept
{
return m_hash == Strutil::strhash(str);
return m_hash == ustring::strhash(str);
}

/// Test for inequality with a char*.
constexpr bool operator!=(const char* str) const noexcept
{
return m_hash != Strutil::strhash(str);
return m_hash != ustring::strhash(str);
}

#ifndef __CUDA_ARCH__
Expand Down
Loading
Loading