From f957593f265d3ed1f9076ff02a6b37d5c29b518a Mon Sep 17 00:00:00 2001
From: Matthias Schiffer <mschiffer@universe-factory.net>
Date: Thu, 22 Feb 2018 14:06:12 +0100
Subject: [PATCH] gluon-web: template_lmo: clean up sfh_hash()

---
 package/gluon-web/src/template_lmo.c | 45 +++++++++++++---------------
 package/gluon-web/src/template_lmo.h |  7 -----
 2 files changed, 21 insertions(+), 31 deletions(-)

diff --git a/package/gluon-web/src/template_lmo.c b/package/gluon-web/src/template_lmo.c
index e156fd229..8e5e17c24 100644
--- a/package/gluon-web/src/template_lmo.c
+++ b/package/gluon-web/src/template_lmo.c
@@ -22,40 +22,37 @@
  * Hash function from http://www.azillionmonkeys.com/qed/hash.html
  * Copyright (C) 2004-2008 by Paul Hsieh
  */
+static inline uint16_t get_le16(const uint8_t *d) {
+	return (((uint16_t)d[1]) << 8) | d[0];
+}
 
-static uint32_t sfh_hash(const char *data, int len)
+static uint32_t sfh_hash(const uint8_t *data, int len)
 {
 	uint32_t hash = len, tmp;
-	int rem;
-
-	if (len <= 0 || data == NULL) return 0;
-
-	rem = len & 3;
-	len >>= 2;
 
 	/* Main loop */
-	for (;len > 0; len--) {
-		hash  += sfh_get16(data);
-		tmp    = (sfh_get16(data+2) << 11) ^ hash;
+	for (; len > 3; len -= 4) {
+		hash  += get_le16(data);
+		tmp    = (get_le16(data+2) << 11) ^ hash;
 		hash   = (hash << 16) ^ tmp;
-		data  += 2*sizeof(uint16_t);
+		data  += 4;
 		hash  += hash >> 11;
 	}
 
 	/* Handle end cases */
-	switch (rem) {
-		case 3: hash += sfh_get16(data);
-			hash ^= hash << 16;
-			hash ^= data[sizeof(uint16_t)] << 18;
-			hash += hash >> 11;
-			break;
-		case 2: hash += sfh_get16(data);
-			hash ^= hash << 11;
-			hash += hash >> 17;
-			break;
-		case 1: hash += *data;
-			hash ^= hash << 10;
-			hash += hash >> 1;
+	switch (len) {
+	case 3: hash += get_le16(data);
+		hash ^= hash << 16;
+		hash ^= data[2] << 18;
+		hash += hash >> 11;
+		break;
+	case 2: hash += get_le16(data);
+		hash ^= hash << 11;
+		hash += hash >> 17;
+		break;
+	case 1: hash += *data;
+		hash ^= hash << 10;
+		hash += hash >> 1;
 	}
 
 	/* Force "avalanching" of final 127 bits */
diff --git a/package/gluon-web/src/template_lmo.h b/package/gluon-web/src/template_lmo.h
index d2951e9e6..0531883ef 100644
--- a/package/gluon-web/src/template_lmo.h
+++ b/package/gluon-web/src/template_lmo.h
@@ -34,13 +34,6 @@
 #include <ctype.h>
 #include <limits.h>
 
-#if (defined(__GNUC__) && defined(__i386__))
-#define sfh_get16(d) (*((const uint16_t *) (d)))
-#else
-#define sfh_get16(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8)\
-					   +(uint32_t)(((const uint8_t *)(d))[0]) )
-#endif
-
 
 struct lmo_entry {
 	uint32_t key_id;
-- 
GitLab