Fix hash_function().
authorEtienne Dechamps <etienne@edechamps.fr>
Sat, 20 Jul 2013 13:50:28 +0000 (14:50 +0100)
committerGuus Sliepen <guus@tinc-vpn.org>
Sat, 20 Jul 2013 21:31:19 +0000 (23:31 +0200)
commit51c1639884b409a98a4581a7b661ef65b94e9d86
treec44a44a217599e24ee69b772e581cee11cae760d
parent182890814881be90e28ac5183039e25709766992
Fix hash_function().

The hashing function that tinc uses is currently broken as it only looks
at the first 4 bytes of data.

This leads to interesting bugs, like the node UDP address cache being
subtly broken because two addresses with the same protocol and port (but
not the same IP address) will override each other. This is because
the first four bytes of sockaddr_in contains the IP protocol and port,
while the IP address itself is contained in the four remaining bytes
that are never used when the hash is computed.
src/hash.c