blob: 16a47c0eef374dbe6efbd2bb20f518c25a038761 [file] [log] [blame]
Sage Weil1654dd02009-11-06 21:55:25 -08001
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/types.h>
Sage Weil6c0f3af2010-11-16 11:14:34 -08003#include <linux/module.h>
Sage Weil1654dd02009-11-06 21:55:25 -08004
5/*
6 * Robert Jenkin's hash function.
Alexander A. Klimov94f17c02020-07-08 08:53:28 +02007 * https://burtleburtle.net/bob/hash/evahash.html
Sage Weil1654dd02009-11-06 21:55:25 -08008 * This is in the public domain.
9 */
10#define mix(a, b, c) \
11 do { \
12 a = a - b; a = a - c; a = a ^ (c >> 13); \
13 b = b - c; b = b - a; b = b ^ (a << 8); \
14 c = c - a; c = c - b; c = c ^ (b >> 13); \
15 a = a - b; a = a - c; a = a ^ (c >> 12); \
16 b = b - c; b = b - a; b = b ^ (a << 16); \
17 c = c - a; c = c - b; c = c ^ (b >> 5); \
18 a = a - b; a = a - c; a = a ^ (c >> 3); \
19 b = b - c; b = b - a; b = b ^ (a << 10); \
20 c = c - a; c = c - b; c = c ^ (b >> 15); \
21 } while (0)
22
Eric Dumazet95c96172012-04-15 05:58:06 +000023unsigned int ceph_str_hash_rjenkins(const char *str, unsigned int length)
Sage Weil1654dd02009-11-06 21:55:25 -080024{
25 const unsigned char *k = (const unsigned char *)str;
26 __u32 a, b, c; /* the internal state */
27 __u32 len; /* how many key bytes still need mixing */
28
29 /* Set up the internal state */
30 len = length;
31 a = 0x9e3779b9; /* the golden ratio; an arbitrary value */
32 b = a;
33 c = 0; /* variable initialization of internal state */
34
35 /* handle most of the key */
36 while (len >= 12) {
37 a = a + (k[0] + ((__u32)k[1] << 8) + ((__u32)k[2] << 16) +
38 ((__u32)k[3] << 24));
39 b = b + (k[4] + ((__u32)k[5] << 8) + ((__u32)k[6] << 16) +
40 ((__u32)k[7] << 24));
41 c = c + (k[8] + ((__u32)k[9] << 8) + ((__u32)k[10] << 16) +
42 ((__u32)k[11] << 24));
43 mix(a, b, c);
44 k = k + 12;
45 len = len - 12;
46 }
47
48 /* handle the last 11 bytes */
49 c = c + length;
Gustavo A. R. Silva18370b32017-10-15 12:55:23 -050050 switch (len) {
Sage Weil1654dd02009-11-06 21:55:25 -080051 case 11:
52 c = c + ((__u32)k[10] << 24);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050053 fallthrough;
Sage Weil1654dd02009-11-06 21:55:25 -080054 case 10:
55 c = c + ((__u32)k[9] << 16);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050056 fallthrough;
Sage Weil1654dd02009-11-06 21:55:25 -080057 case 9:
58 c = c + ((__u32)k[8] << 8);
59 /* the first byte of c is reserved for the length */
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050060 fallthrough;
Sage Weil1654dd02009-11-06 21:55:25 -080061 case 8:
62 b = b + ((__u32)k[7] << 24);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050063 fallthrough;
Sage Weil1654dd02009-11-06 21:55:25 -080064 case 7:
65 b = b + ((__u32)k[6] << 16);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050066 fallthrough;
Sage Weil1654dd02009-11-06 21:55:25 -080067 case 6:
68 b = b + ((__u32)k[5] << 8);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050069 fallthrough;
Sage Weil1654dd02009-11-06 21:55:25 -080070 case 5:
71 b = b + k[4];
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050072 fallthrough;
Sage Weil1654dd02009-11-06 21:55:25 -080073 case 4:
74 a = a + ((__u32)k[3] << 24);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050075 fallthrough;
Sage Weil1654dd02009-11-06 21:55:25 -080076 case 3:
77 a = a + ((__u32)k[2] << 16);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050078 fallthrough;
Sage Weil1654dd02009-11-06 21:55:25 -080079 case 2:
80 a = a + ((__u32)k[1] << 8);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050081 fallthrough;
Sage Weil1654dd02009-11-06 21:55:25 -080082 case 1:
83 a = a + k[0];
84 /* case 0: nothing left to add */
85 }
86 mix(a, b, c);
87
88 return c;
89}
90
91/*
92 * linux dcache hash
93 */
Eric Dumazet95c96172012-04-15 05:58:06 +000094unsigned int ceph_str_hash_linux(const char *str, unsigned int length)
Sage Weil1654dd02009-11-06 21:55:25 -080095{
Sage Weil50b885b2009-12-01 14:12:07 -080096 unsigned long hash = 0;
Sage Weil1654dd02009-11-06 21:55:25 -080097 unsigned char c;
98
Sage Weil50b885b2009-12-01 14:12:07 -080099 while (length--) {
Sage Weil1654dd02009-11-06 21:55:25 -0800100 c = *str++;
101 hash = (hash + (c << 4) + (c >> 4)) * 11;
102 }
Sage Weil50b885b2009-12-01 14:12:07 -0800103 return hash;
Sage Weil1654dd02009-11-06 21:55:25 -0800104}
105
106
Eric Dumazet95c96172012-04-15 05:58:06 +0000107unsigned int ceph_str_hash(int type, const char *s, unsigned int len)
Sage Weil1654dd02009-11-06 21:55:25 -0800108{
109 switch (type) {
110 case CEPH_STR_HASH_LINUX:
111 return ceph_str_hash_linux(s, len);
112 case CEPH_STR_HASH_RJENKINS:
113 return ceph_str_hash_rjenkins(s, len);
114 default:
115 return -1;
116 }
117}
Sage Weil6c0f3af2010-11-16 11:14:34 -0800118EXPORT_SYMBOL(ceph_str_hash);
Sage Weil1654dd02009-11-06 21:55:25 -0800119
Sage Weil50b885b2009-12-01 14:12:07 -0800120const char *ceph_str_hash_name(int type)
Sage Weil1654dd02009-11-06 21:55:25 -0800121{
122 switch (type) {
123 case CEPH_STR_HASH_LINUX:
124 return "linux";
125 case CEPH_STR_HASH_RJENKINS:
126 return "rjenkins";
127 default:
128 return "unknown";
129 }
130}
Sage Weil6c0f3af2010-11-16 11:14:34 -0800131EXPORT_SYMBOL(ceph_str_hash_name);