]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_md5.cpp
a6df62dd9c2605802f9fdbd32eed66d3c750d7d6
[user/henk/code/inspircd.git] / src / modules / m_md5.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $ModDesc: Allows for MD5 encrypted oper passwords */
15
16 #include "inspircd.h"
17 #ifdef HAS_STDINT
18 #include <stdint.h>
19 #endif
20 #include "hash.h"
21
22 /* The four core functions - F1 is optimized somewhat */
23 #define F1(x, y, z) (z ^ (x & (y ^ z)))
24 #define F2(x, y, z) F1(z, x, y)
25 #define F3(x, y, z) (x ^ y ^ z)
26 #define F4(x, y, z) (y ^ (x | ~z))
27
28 /* This is the central step in the MD5 algorithm. */
29 #define MD5STEP(f,w,x,y,z,in,s) \
30         (w += f(x,y,z) + in, w = (w<<s | w>>(32-s)) + x)
31
32 #ifndef HAS_STDINT
33 typedef unsigned int uint32_t;
34 #endif
35
36 typedef uint32_t word32; /* NOT unsigned long. We don't support 16 bit platforms, anyway. */
37 typedef unsigned char byte;
38
39 /** An MD5 context, used by m_opermd5
40  */
41 class MD5Context
42 {
43  public:
44         word32 buf[4];
45         word32 bytes[2];
46         word32 in[16];
47 };
48
49 class MD5Provider : public HashProvider
50 {
51         void byteSwap(word32 *buf, unsigned words)
52         {
53                 byte *p = (byte *)buf;
54
55                 do
56                 {
57                         *buf++ = (word32)((unsigned)p[3] << 8 | p[2]) << 16 |
58                                 ((unsigned)p[1] << 8 | p[0]);
59                         p += 4;
60                 } while (--words);
61         }
62
63         void MD5Init(MD5Context *ctx, unsigned int* ikey = NULL)
64         {
65                 /* These are the defaults for md5 */
66                 if (!ikey)
67                 {
68                         ctx->buf[0] = 0x67452301;
69                         ctx->buf[1] = 0xefcdab89;
70                         ctx->buf[2] = 0x98badcfe;
71                         ctx->buf[3] = 0x10325476;
72                 }
73                 else
74                 {
75                         ctx->buf[0] = ikey[0];
76                         ctx->buf[1] = ikey[1];
77                         ctx->buf[2] = ikey[2];
78                         ctx->buf[3] = ikey[3];
79                 }
80
81                 ctx->bytes[0] = 0;
82                 ctx->bytes[1] = 0;
83         }
84
85         void MD5Update(MD5Context *ctx, byte const *buf, int len)
86         {
87                 word32 t;
88
89                 /* Update byte count */
90
91                 t = ctx->bytes[0];
92                 if ((ctx->bytes[0] = t + len) < t)
93                         ctx->bytes[1]++;        /* Carry from low to high */
94
95                 t = 64 - (t & 0x3f);    /* Space available in ctx->in (at least 1) */
96                 if ((unsigned)t > (unsigned)len)
97                 {
98                         memcpy((byte *)ctx->in + 64 - (unsigned)t, buf, len);
99                         return;
100                 }
101                 /* First chunk is an odd size */
102                 memcpy((byte *)ctx->in + 64 - (unsigned)t, buf, (unsigned)t);
103                 byteSwap(ctx->in, 16);
104                 MD5Transform(ctx->buf, ctx->in);
105                 buf += (unsigned)t;
106                 len -= (unsigned)t;
107
108                 /* Process data in 64-byte chunks */
109                 while (len >= 64)
110                 {
111                         memcpy(ctx->in, buf, 64);
112                         byteSwap(ctx->in, 16);
113                         MD5Transform(ctx->buf, ctx->in);
114                         buf += 64;
115                         len -= 64;
116                 }
117
118                 /* Handle any remaining bytes of data. */
119                 memcpy(ctx->in, buf, len);
120         }
121
122         void MD5Final(byte digest[16], MD5Context *ctx)
123         {
124                 int count = (int)(ctx->bytes[0] & 0x3f); /* Bytes in ctx->in */
125                 byte *p = (byte *)ctx->in + count;      /* First unused byte */
126
127                 /* Set the first char of padding to 0x80.  There is always room. */
128                 *p++ = 0x80;
129
130                 /* Bytes of padding needed to make 56 bytes (-8..55) */
131                 count = 56 - 1 - count;
132
133                 if (count < 0)
134                 {       /* Padding forces an extra block */
135                         memset(p, 0, count+8);
136                         byteSwap(ctx->in, 16);
137                         MD5Transform(ctx->buf, ctx->in);
138                         p = (byte *)ctx->in;
139                         count = 56;
140                 }
141                 memset(p, 0, count+8);
142                 byteSwap(ctx->in, 14);
143
144                 /* Append length in bits and transform */
145                 ctx->in[14] = ctx->bytes[0] << 3;
146                 ctx->in[15] = ctx->bytes[1] << 3 | ctx->bytes[0] >> 29;
147                 MD5Transform(ctx->buf, ctx->in);
148
149                 byteSwap(ctx->buf, 4);
150                 memcpy(digest, ctx->buf, 16);
151                 memset(ctx, 0, sizeof(ctx));
152         }
153
154         void MD5Transform(word32 buf[4], word32 const in[16])
155         {
156                 register word32 a, b, c, d;
157
158                 a = buf[0];
159                 b = buf[1];
160                 c = buf[2];
161                 d = buf[3];
162
163                 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
164                 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
165                 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
166                 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
167                 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
168                 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
169                 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
170                 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
171                 MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
172                 MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
173                 MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
174                 MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
175                 MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
176                 MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
177                 MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
178                 MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
179
180                 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
181                 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
182                 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
183                 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
184                 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
185                 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
186                 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
187                 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
188                 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
189                 MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
190                 MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
191                 MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
192                 MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
193                 MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
194                 MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
195                 MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
196
197                 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
198                 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
199                 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
200                 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
201                 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
202                 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
203                 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
204                 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
205                 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
206                 MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
207                 MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
208                 MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
209                 MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
210                 MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
211                 MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
212                 MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
213
214                 MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
215                 MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
216                 MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
217                 MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
218                 MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
219                 MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
220                 MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
221                 MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
222                 MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
223                 MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
224                 MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
225                 MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
226                 MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
227                 MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
228                 MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
229                 MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);
230
231                 buf[0] += a;
232                 buf[1] += b;
233                 buf[2] += c;
234                 buf[3] += d;
235         }
236
237
238         void MyMD5(void *dest, void *orig, int len, unsigned int* ikey)
239         {
240                 MD5Context context;
241                 MD5Init(&context, ikey);
242                 MD5Update(&context, (const unsigned char*)orig, len);
243                 MD5Final((unsigned char*)dest, &context);
244         }
245
246
247         void GenHash(const char* src, char* dest, const char* xtab, unsigned int* ikey, size_t srclen)
248         {
249                 unsigned char bytes[16];
250
251                 MyMD5((char*)bytes, (void*)src, srclen, ikey);
252
253                 for (int i = 0; i < 16; i++)
254                 {
255                         *dest++ = xtab[bytes[i] / 16];
256                         *dest++ = xtab[bytes[i] % 16];
257                 }
258                 *dest++ = 0;
259         }
260  public:
261         std::string sum(const std::string& data)
262         {
263                 char res[16];
264                 MyMD5(res, (void*)data.data(), data.length(), NULL);
265                 return std::string(res, 16);
266         }
267
268         std::string sumIV(unsigned int* IV, const char* HexMap, const std::string &sdata)
269         {
270                 char res[33];
271                 GenHash(sdata.data(), res, HexMap, IV, sdata.length());
272                 return res;
273         }
274
275         MD5Provider(Module* parent) : HashProvider(parent, "hash/md5", 16, 64) {}
276 };
277
278 class ModuleMD5 : public Module
279 {
280         MD5Provider md5;
281  public:
282         ModuleMD5() : md5(this)
283         {
284                 ServerInstance->Modules->AddService(md5);
285         }
286
287         Version GetVersion()
288         {
289                 return Version("Implements MD5 hashing",VF_VENDOR);
290         }
291 };
292
293 MODULE_INIT(ModuleMD5)