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/cryptohash.h>
16 #define DELTA 0x9E3779B9
18 static void TEA_transform(__u32 buf[4], __u32 const in[])
21 __u32 b0 = buf[0], b1 = buf[1];
22 __u32 a = in[0], b = in[1], c = in[2], d = in[3];
27 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b);
28 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d);
36 /* The old legacy hash */
37 static __u32 dx_hack_hash_unsigned(const char *name, int len)
39 __u32 hash, hash0 = 0x12a3fe2d, hash1 = 0x37abe8f9;
40 const unsigned char *ucp = (const unsigned char *) name;
43 hash = hash1 + (hash0 ^ (((int) *ucp++) * 7152373));
45 if (hash & 0x80000000)
53 static __u32 dx_hack_hash_signed(const char *name, int len)
55 __u32 hash, hash0 = 0x12a3fe2d, hash1 = 0x37abe8f9;
56 const signed char *scp = (const signed char *) name;
59 hash = hash1 + (hash0 ^ (((int) *scp++) * 7152373));
61 if (hash & 0x80000000)
69 static void str2hashbuf_signed(const char *msg, int len, __u32 *buf, int num)
73 const signed char *scp = (const signed char *) msg;
75 pad = (__u32)len | ((__u32)len << 8);
81 for (i = 0; i < len; i++) {
84 val = ((int) scp[i]) + (val << 8);
97 static void str2hashbuf_unsigned(const char *msg, int len, __u32 *buf, int num)
101 const unsigned char *ucp = (const unsigned char *) msg;
103 pad = (__u32)len | ((__u32)len << 8);
109 for (i = 0; i < len; i++) {
112 val = ((int) ucp[i]) + (val << 8);
126 * Returns the hash of a filename. If len is 0 and name is NULL, then
127 * this function can be used to test whether or not a hash version is
130 * The seed is an 4 longword (32 bits) "secret" which can be used to
131 * uniquify a hash. If the seed is all zero's, then some default seed
134 * A particular hash version specifies whether or not the seed is
135 * represented, and whether or not the returned hash is 32 bits or 64
136 * bits. 32 bit hashes will return 0 for the minor hash.
138 int ext4fs_dirhash(const char *name, int len, struct dx_hash_info *hinfo)
141 __u32 minor_hash = 0;
145 void (*str2hashbuf)(const char *, int, __u32 *, int) =
148 /* Initialize the default seed for the hash checksum functions */
154 /* Check to see if the seed is all zero's */
156 for (i = 0; i < 4; i++) {
157 if (hinfo->seed[i]) {
158 memcpy(buf, hinfo->seed, sizeof(buf));
164 switch (hinfo->hash_version) {
165 case DX_HASH_LEGACY_UNSIGNED:
166 hash = dx_hack_hash_unsigned(name, len);
169 hash = dx_hack_hash_signed(name, len);
171 case DX_HASH_HALF_MD4_UNSIGNED:
172 str2hashbuf = str2hashbuf_unsigned;
173 case DX_HASH_HALF_MD4:
176 (*str2hashbuf)(p, len, in, 8);
177 half_md4_transform(buf, in);
184 case DX_HASH_TEA_UNSIGNED:
185 str2hashbuf = str2hashbuf_unsigned;
189 (*str2hashbuf)(p, len, in, 4);
190 TEA_transform(buf, in);
202 if (hash == (EXT4_HTREE_EOF_32BIT << 1))
203 hash = (EXT4_HTREE_EOF_32BIT - 1) << 1;
205 hinfo->minor_hash = minor_hash;