-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhash_func.c
172 lines (145 loc) · 4.24 KB
/
hash_func.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*
* $Id: hash_func.c 166 2007-03-02 19:28:23Z vingarzan $
*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
* ser is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* For a license to use the ser software under conditions
* other than those described here, or to purchase support for this
* software, please contact iptel.org by e-mail at the following addresses:
*
* ser is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _CRC_H_
#define _CRC_H_
extern unsigned long int crc_32_tab[];
extern unsigned short int ccitt_tab[];
extern unsigned short int crc_16_tab[];
#endif
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "hash_func.h"
#include "dprint.h"
#include "crc.h"
#include "ut.h"
unsigned int new_hash( str call_id, str cseq_nr )
{
unsigned int hash_code = 0;
int i,j, k, third;
int ci_len, cs_len;
char *ci, *cs;
/* trim EoLs */
/*
ci_len = call_id.len;
while (ci_len && ((c=call_id.s[ci_len-1])==0 || c=='\r' || c=='\n'))
ci_len--;
cs_len = cseq_nr.len;
while (cs_len && ((c=cseq_nr.s[cs_len-1])==0 || c=='\r' || c=='\n'))
cs_len--;
*/
trim_len( ci_len, ci, call_id );
trim_len( cs_len, cs, cseq_nr );
/* run the cycle from the end ... we are interested in the
most-right digits ... and just take the %10 value of it
*/
third=(ci_len-1)/3;
for ( i=ci_len-1, j=2*third, k=third;
k>0 ; i--, j--, k-- ) {
hash_code+=crc_16_tab[(unsigned char)(*(ci+i)) /*+7*/ ]+
ccitt_tab[(unsigned char)*(ci+k)+63]+
ccitt_tab[(unsigned char)*(ci+j)+13];
}
for( i=0 ; i<cs_len ; i++ )
//hash_code+=crc_32_tab[(cseq_nr.s[i]+hash_code)%243];
hash_code+=ccitt_tab[(unsigned char)*(cs+i)+123];
/* hash_code conditioning */
#ifdef _BUG
/* not flat ... % 111b has shorter period than
& 111b by one and results in different distribution;
( 7 % 7 == 0, 7 %7 == 1 )
% is used as a part of the hash function too, not only
for rounding; & is not flat; whoever comes up with
a nicer flat hash function which does not take
costly division is welcome; feel free to verify
distribution using hashtest()
*/
hash_code &= (TABLE_ENTRIES-1); /* TABLE_ENTRIES = 2^k */
#endif
hash_code=hash_code%(TABLE_ENTRIES-1)+1;
return hash_code;
}
#if 0
int new_hash2( str call_id, str cseq_nr )
{
#define h_inc h+=v^(v>>3)
char* p;
register unsigned v;
register unsigned h;
h=0;
for (p=call_id.s; p<=(call_id.s+call_id.len-4); p+=4){
v=(*p<<24)+(p[1]<<16)+(p[2]<<8)+p[3];
h_inc;
}
v=0;
for (;p<(call_id.s+call_id.len); p++){ v<<=8; v+=*p;}
h_inc;
for (p=cseq_nr.s; p<=(cseq_nr.s+cseq_nr.len-4); p+=4){
v=(*p<<24)+(p[1]<<16)+(p[2]<<8)+p[3];
h_inc;
}
v=0;
for (;p<(cseq_nr.s+cseq_nr.len); p++){ v<<=8; v+=*p;}
h_inc;
h=((h)+(h>>11))+((h>>13)+(h>>23));
return (h)&(TABLE_ENTRIES-1);
}
#endif
void hashtest_cycle( int hits[TABLE_ENTRIES+5], char *ip )
{
long int i,j,k, l;
int hashv;
static char buf1[1024];
static char buf2[1024];
str call_id;
str cseq;
call_id.s=buf1;
cseq.s=buf2;
for (i=987654328;i<987654328+10;i++)
for (j=85296341;j<85296341+10;j++)
for (k=987654;k<=987654+10;k++)
for (l=101;l<201;l++) {
call_id.len=sprintf( buf1, "%d-%d-%d@%s",(int)i,(int)j,
(int)k, ip );
cseq.len=sprintf( buf2, "%d", (int)l );
/* printf("%s\t%s\n", buf1, buf2 ); */
hashv=hash( call_id, cseq );
hits[ hashv ]++;
}
}
void hashtest()
{
int hits[TABLE_ENTRIES+5];
int i;
memset( hits, 0, sizeof hits );
hashtest_cycle( hits, "192.168.99.100" );
hashtest_cycle( hits, "172.168.99.100" );
hashtest_cycle( hits, "142.168.99.100" );
for (i=0; i<TABLE_ENTRIES+5; i++)
printf("[%d. %d]\n", i, hits[i] );
exit(0);
}