Commit c2176e46 authored by Gregory P. Smith's avatar Gregory P. Smith

Fix the internals of our hash functions to used unsigned values during hash

computation as the overflow behavior of signed integers is undefined.

NOTE: This change is smaller compared to 3.2 as much of this cleanup had
already been done.  I added the comment that my change in 3.2 added so that the
code would match up.  Otherwise this just adds or synchronizes appropriate UL
designations on some constants to be pedantic.

In practice we require compiling everything with -fwrapv which forces overflow
to be defined as twos compliment but this keeps the code cleaner for checkers
or in the case where someone has compiled it without -fwrapv or their
compiler's equivalent.

Found by Clang trunk's Undefined Behavior Sanitizer (UBSan).

Cleanup only - no functionality or hash values change.
parents c0dd80e4 27cbcd62
...@@ -145,7 +145,7 @@ Used in: PY_LONG_LONG ...@@ -145,7 +145,7 @@ Used in: PY_LONG_LONG
#endif #endif
/* Prime multiplier used in string and various other hashes. */ /* Prime multiplier used in string and various other hashes. */
#define _PyHASH_MULTIPLIER 1000003 /* 0xf4243 */ #define _PyHASH_MULTIPLIER 1000003UL /* 0xf4243 */
/* Parameters used for the numeric hash implementation. See notes for /* Parameters used for the numeric hash implementation. See notes for
_Py_HashDouble in Objects/object.c. Numeric hashes are based on _Py_HashDouble in Objects/object.c. Numeric hashes are based on
......
...@@ -77,7 +77,7 @@ NULL if the rich comparison returns an error. ...@@ -77,7 +77,7 @@ NULL if the rich comparison returns an error.
static setentry * static setentry *
set_lookkey(PySetObject *so, PyObject *key, register Py_hash_t hash) set_lookkey(PySetObject *so, PyObject *key, register Py_hash_t hash)
{ {
register size_t i; register size_t i; /* Unsigned for defined overflow behavior. */
register size_t perturb; register size_t perturb;
register setentry *freeslot; register setentry *freeslot;
register size_t mask = so->mask; register size_t mask = so->mask;
...@@ -159,7 +159,7 @@ set_lookkey(PySetObject *so, PyObject *key, register Py_hash_t hash) ...@@ -159,7 +159,7 @@ set_lookkey(PySetObject *so, PyObject *key, register Py_hash_t hash)
static setentry * static setentry *
set_lookkey_unicode(PySetObject *so, PyObject *key, register Py_hash_t hash) set_lookkey_unicode(PySetObject *so, PyObject *key, register Py_hash_t hash)
{ {
register size_t i; register size_t i; /* Unsigned for defined overflow behavior. */
register size_t perturb; register size_t perturb;
register setentry *freeslot; register setentry *freeslot;
register size_t mask = so->mask; register size_t mask = so->mask;
...@@ -760,7 +760,7 @@ static Py_hash_t ...@@ -760,7 +760,7 @@ static Py_hash_t
frozenset_hash(PyObject *self) frozenset_hash(PyObject *self)
{ {
PySetObject *so = (PySetObject *)self; PySetObject *so = (PySetObject *)self;
Py_uhash_t h, hash = 1927868237U; Py_uhash_t h, hash = 1927868237UL;
setentry *entry; setentry *entry;
Py_ssize_t pos = 0; Py_ssize_t pos = 0;
...@@ -775,11 +775,11 @@ frozenset_hash(PyObject *self) ...@@ -775,11 +775,11 @@ frozenset_hash(PyObject *self)
hashes so that many distinct combinations collapse to only hashes so that many distinct combinations collapse to only
a handful of distinct hash values. */ a handful of distinct hash values. */
h = entry->hash; h = entry->hash;
hash ^= (h ^ (h << 16) ^ 89869747U) * 3644798167U; hash ^= (h ^ (h << 16) ^ 89869747UL) * 3644798167UL;
} }
hash = hash * 69069U + 907133923U; hash = hash * 69069U + 907133923UL;
if (hash == -1) if (hash == -1)
hash = 590923713U; hash = 590923713UL;
so->hash = hash; so->hash = hash;
return hash; return hash;
} }
......
...@@ -327,12 +327,12 @@ error: ...@@ -327,12 +327,12 @@ error:
static Py_hash_t static Py_hash_t
tuplehash(PyTupleObject *v) tuplehash(PyTupleObject *v)
{ {
register Py_uhash_t x; register Py_uhash_t x; /* Unsigned for defined overflow behavior. */
register Py_hash_t y; register Py_hash_t y;
register Py_ssize_t len = Py_SIZE(v); register Py_ssize_t len = Py_SIZE(v);
register PyObject **p; register PyObject **p;
Py_uhash_t mult = _PyHASH_MULTIPLIER; Py_uhash_t mult = _PyHASH_MULTIPLIER;
x = 0x345678; x = 0x345678UL;
p = v->ob_item; p = v->ob_item;
while (--len >= 0) { while (--len >= 0) {
y = PyObject_Hash(*p++); y = PyObject_Hash(*p++);
...@@ -340,9 +340,9 @@ tuplehash(PyTupleObject *v) ...@@ -340,9 +340,9 @@ tuplehash(PyTupleObject *v)
return -1; return -1;
x = (x ^ y) * mult; x = (x ^ y) * mult;
/* the cast might truncate len; that doesn't change hash stability */ /* the cast might truncate len; that doesn't change hash stability */
mult += (Py_hash_t)(82520L + len + len); mult += (Py_hash_t)(82520UL + len + len);
} }
x += 97531L; x += 97531UL;
if (x == (Py_uhash_t)-1) if (x == (Py_uhash_t)-1)
x = -2; x = -2;
return x; return x;
......
...@@ -11008,7 +11008,7 @@ static Py_hash_t ...@@ -11008,7 +11008,7 @@ static Py_hash_t
unicode_hash(PyObject *self) unicode_hash(PyObject *self)
{ {
Py_ssize_t len; Py_ssize_t len;
Py_uhash_t x; Py_uhash_t x; /* Unsigned for defined overflow behavior. */
#ifdef Py_DEBUG #ifdef Py_DEBUG
assert(_Py_HashSecret_Initialized); assert(_Py_HashSecret_Initialized);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment