]> git.ipfire.org Git - thirdparty/squid.git/blame - src/store_key_md5.cc
make x-routines a little bit mt-safer
[thirdparty/squid.git] / src / store_key_md5.cc
CommitLineData
9cef6668 1
2/*
007b8be4 3 * $Id: store_key_md5.cc,v 1.15 1998/09/11 17:07:50 wessels Exp $
9cef6668 4 *
5 * DEBUG: section 20 Storage Manager MD5 Cache Keys
6 * AUTHOR: Duane Wessels
7 *
8 * SQUID Internet Object Cache http://squid.nlanr.net/Squid/
9 * ----------------------------------------------------------
10 *
11 * Squid is the result of efforts by numerous individuals from the
12 * Internet community. Development is led by Duane Wessels of the
13 * National Laboratory for Applied Network Research and funded by the
14 * National Science Foundation. Squid is Copyrighted (C) 1998 by
15 * Duane Wessels and the University of California San Diego. Please
16 * see the COPYRIGHT file for full details. Squid incorporates
17 * software developed and/or copyrighted by other sources. Please see
18 * the CREDITS file for full details.
19 *
20 * This program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; either version 2 of the License, or
23 * (at your option) any later version.
24 *
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software
32 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
33 *
34 */
35
6507d007 36#include "squid.h"
37
25535cbe 38static cache_key null_key[MD5_DIGEST_CHARS];
39
6507d007 40const char *
41storeKeyText(const unsigned char *key)
42{
137ee196 43 static MemBuf mb = MemBufNULL;
6507d007 44 int i;
137ee196 45 memBufReset(&mb);
46 for (i = 0; i < MD5_DIGEST_CHARS; i++)
47 memBufPrintf(&mb, "%02X", *(key + i));
48 return mb.buf;
6507d007 49}
50
51const unsigned char *
52storeKeyScan(const char *buf)
53{
54 static unsigned char digest[MD5_DIGEST_CHARS];
55 int i;
56 int j = 0;
7363fc17 57 char t[3];
164f7660 58 for (i = 0; i < MD5_DIGEST_CHARS; i++) {
59 t[0] = *(buf + (j++));
60 t[1] = *(buf + (j++));
6507d007 61 t[2] = '\0';
164f7660 62 *(digest + i) = (unsigned char) strtol(t, NULL, 16);
6507d007 63 }
64 return digest;
65}
66
67int
68storeKeyHashCmp(const void *a, const void *b)
69{
70 const unsigned char *A = a;
71 const unsigned char *B = b;
72 int i;
73 for (i = 0; i < MD5_DIGEST_CHARS; i++) {
74 if (A[i] < B[i])
75 return -1;
76 if (A[i] > B[i])
77 return 1;
78 }
79 return 0;
80}
81
82unsigned int
83storeKeyHashHash(const void *key, unsigned int n)
84{
85 /* note, n must be a power of 2! */
86 const unsigned char *digest = key;
87 unsigned int i = digest[0]
164f7660 88 | digest[1] << 8
89 | digest[2] << 16
90 | digest[3] << 24;
6507d007 91 return (i & (--n));
92}
93
94const cache_key *
007b8be4 95storeKeyPrivate(const char *url, method_t method, int id)
6507d007 96{
97 static cache_key digest[MD5_DIGEST_CHARS];
98 MD5_CTX M;
007b8be4 99 assert(id > 0);
5ad33356 100 debug(20, 3) ("storeKeyPrivate: %s %s\n",
101 RequestMethodStr[method], url);
6507d007 102 MD5Init(&M);
007b8be4 103 MD5Update(&M, (unsigned char *) &id, sizeof(id));
104 MD5Update(&M, (unsigned char *) &method, sizeof(method));
105 MD5Update(&M, (unsigned char *) url, strlen(url));
6507d007 106 MD5Final(digest, &M);
107 return digest;
108}
109
110const cache_key *
111storeKeyPublic(const char *url, method_t method)
112{
113 static cache_key digest[MD5_DIGEST_CHARS];
114 MD5_CTX M;
6507d007 115 MD5Init(&M);
007b8be4 116 MD5Update(&M, (unsigned char *) &method, sizeof(method));
117 MD5Update(&M, (unsigned char *) url, strlen(url));
6507d007 118 MD5Final(digest, &M);
119 return digest;
120}
121
122const cache_key *
123storeKeyDup(const cache_key * key)
124{
e55650e3 125 cache_key *dup = memAllocate(MEM_MD5_DIGEST);
6507d007 126 xmemcpy(dup, key, MD5_DIGEST_CHARS);
6507d007 127 return dup;
128}
129
399cabec 130cache_key *
131storeKeyCopy(cache_key * dst, const cache_key *src)
132{
133 xmemcpy(dst, src, MD5_DIGEST_CHARS);
134 return dst;
135}
136
6507d007 137void
138storeKeyFree(const cache_key * key)
139{
9b5a2ee8 140 memFree(MEM_MD5_DIGEST, (void *)key);
6507d007 141}
142
143int
144storeKeyHashBuckets(int nobj)
145{
146 if (nobj < 0x2000)
147 return 0x2000;
148 if (nobj < 0x4000)
149 return 0x4000;
150 if (nobj < 0x8000)
151 return 0x8000;
152 return 0x10000;
153}
25535cbe 154
155int
156storeKeyNull(const cache_key * key)
157{
158 if (memcmp(key, null_key, MD5_DIGEST_CHARS) == 0)
159 return 1;
160 else
161 return 0;
162}
163
164void
165storeKeyInit(void)
166{
167 memset(null_key, '\0', MD5_DIGEST_CHARS);
168}