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