4 * Copyright (C) 2002 by Theodore Ts'o
6 * This file is released under the GPL v2.
8 * This file may be redistributed under the terms of the GNU Public
13 #include <linux/jbd.h>
14 #include <linux/ext3_fs.h>
15 #include <linux/cryptohash.h>
17 #define DELTA 0x9E3779B9
19 static void TEA_transform(__u32 buf[4], __u32 const in[])
22 __u32 b0 = buf[0], b1 = buf[1];
23 __u32 a = in[0], b = in[1], c = in[2], d = in[3];
28 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b);
29 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d);
37 /* The old legacy hash */
38 static __u32 dx_hack_hash_unsigned(const char *name, int len)
40 __u32 hash, hash0 = 0x12a3fe2d, hash1 = 0x37abe8f9;
41 const unsigned char *ucp = (const unsigned char *) name;
44 hash = hash1 + (hash0 ^ (((int) *ucp++) * 7152373));
46 if (hash & 0x80000000)
54 static __u32 dx_hack_hash_signed(const char *name, int len)
56 __u32 hash, hash0 = 0x12a3fe2d, hash1 = 0x37abe8f9;
57 const signed char *scp = (const signed char *) name;
60 hash = hash1 + (hash0 ^ (((int) *scp++) * 7152373));
62 if (hash & 0x80000000)
70 static void str2hashbuf_signed(const char *msg, int len, __u32 *buf, int num)
74 const signed char *scp = (const signed char *) msg;
76 pad = (__u32)len | ((__u32)len << 8);
82 for (i = 0; i < len; i++) {
85 val = ((int) scp[i]) + (val << 8);
98 static void str2hashbuf_unsigned(const char *msg, int len, __u32 *buf, int num)
102 const unsigned char *ucp = (const unsigned char *) msg;
104 pad = (__u32)len | ((__u32)len << 8);
110 for (i=0; i < len; i++) {
113 val = ((int) ucp[i]) + (val << 8);
127 * Returns the hash of a filename. If len is 0 and name is NULL, then
128 * this function can be used to test whether or not a hash version is
131 * The seed is an 4 longword (32 bits) "secret" which can be used to
132 * uniquify a hash. If the seed is all zero's, then some default seed
135 * A particular hash version specifies whether or not the seed is
136 * represented, and whether or not the returned hash is 32 bits or 64
137 * bits. 32 bit hashes will return 0 for the minor hash.
139 int ext3fs_dirhash(const char *name, int len, struct dx_hash_info *hinfo)
142 __u32 minor_hash = 0;
146 void (*str2hashbuf)(const char *, int, __u32 *, int) =
149 /* Initialize the default seed for the hash checksum functions */
155 /* Check to see if the seed is all zero's */
157 for (i=0; i < 4; i++) {
162 memcpy(buf, hinfo->seed, sizeof(buf));
165 switch (hinfo->hash_version) {
166 case DX_HASH_LEGACY_UNSIGNED:
167 hash = dx_hack_hash_unsigned(name, len);
170 hash = dx_hack_hash_signed(name, len);
172 case DX_HASH_HALF_MD4_UNSIGNED:
173 str2hashbuf = str2hashbuf_unsigned;
174 case DX_HASH_HALF_MD4:
177 (*str2hashbuf)(p, len, in, 8);
178 half_md4_transform(buf, in);
185 case DX_HASH_TEA_UNSIGNED:
186 str2hashbuf = str2hashbuf_unsigned;
190 (*str2hashbuf)(p, len, in, 4);
191 TEA_transform(buf, in);
203 if (hash == (EXT3_HTREE_EOF << 1))
204 hash = (EXT3_HTREE_EOF-1) << 1;
206 hinfo->minor_hash = minor_hash;