]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_opermd5.cpp
d99b9a96e8e3d2fd53616bf44dddbae57756c656
[user/henk/code/inspircd.git] / src / modules / m_opermd5.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 /* $ModDesc: Allows for MD5 encrypted oper passwords */
18
19 using namespace std;
20
21 #include <stdio.h>
22 #include "inspircd_config.h"
23 #ifdef HAS_STDINT
24 #include <stdint.h>
25 #endif
26 #include "users.h"
27 #include "channels.h"
28 #include "modules.h"
29 #include "helperfuncs.h"
30
31 /* The four core functions - F1 is optimized somewhat */
32 #define F1(x, y, z) (z ^ (x & (y ^ z)))
33 #define F2(x, y, z) F1(z, x, y)
34 #define F3(x, y, z) (x ^ y ^ z)
35 #define F4(x, y, z) (y ^ (x | ~z))
36
37 /* This is the central step in the MD5 algorithm. */
38 #define MD5STEP(f,w,x,y,z,in,s) \
39          (w += f(x,y,z) + in, w = (w<<s | w>>(32-s)) + x)
40
41 #ifndef HAS_STDINT
42 typedef unsigned int uint32_t;
43 #endif
44
45 typedef uint32_t word32; /* NOT unsigned long. We don't support 16 bit platforms, anyway. */
46 typedef unsigned char byte;
47
48 struct MD5Context {
49         word32 buf[4];
50         word32 bytes[2];
51         word32 in[16];
52 };
53
54 void MD5Init(struct MD5Context *context);
55 void MD5Update(struct MD5Context *context, byte const *buf, int len);
56 void MD5Final(byte digest[16], struct MD5Context *context);
57 void MD5Transform(word32 buf[4], word32 const in[16]);
58 void MyMD5(void *dest, void *orig, int len);
59 void GenHash(const char* src, char* dest);
60
61 void byteSwap(word32 *buf, unsigned words)
62 {
63         byte *p = (byte *)buf;
64
65         do
66         {
67                 *buf++ = (word32)((unsigned)p[3] << 8 | p[2]) << 16 |
68                         ((unsigned)p[1] << 8 | p[0]);
69                 p += 4;
70         } while (--words);
71 }
72
73 /* XXX - maybe if we had an md5/encryption moduletype? *shrug* */
74 void MD5Init(struct MD5Context *ctx)
75 {
76         ctx->buf[0] = 0x67452301;
77         ctx->buf[1] = 0xefcdab89;
78         ctx->buf[2] = 0x98badcfe;
79         ctx->buf[3] = 0x10325476;
80
81         ctx->bytes[0] = 0;
82         ctx->bytes[1] = 0;
83 }
84
85 void MD5Update(struct 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], struct 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)
239 {
240         struct MD5Context context;
241
242         MD5Init(&context);
243         MD5Update(&context, (const unsigned char*)orig, len);
244         MD5Final((unsigned char*)dest, &context);
245 }
246
247
248 void GenHash(const char* src, char* dest)
249 {
250         int i = 0;
251         unsigned char bytes[16];
252         char hash[1024];
253         *hash = 0;
254         MyMD5((char*)bytes,(void*)src,strlen(src));
255         for (i = 0; i < 16; i++)
256         {
257                 const char* xtab = "0123456789abcdef";
258                 unsigned char lo = xtab[bytes[i] % 16];
259                 unsigned char hi = xtab[bytes[i] / 16];
260                 char hx[3];
261                 hx[0] = hi;
262                 hx[1] = lo;
263                 hx[2] = '\0';
264                 strcat(hash,hx);
265         }
266         strcpy(dest,hash);
267 }
268
269 class cmd_mkpasswd : public command_t
270 {
271  public:
272         cmd_mkpasswd () : command_t("MKPASSWD", 'o', 1)
273         {
274                 this->source = "m_opermd5.so";
275         }
276
277         void Handle (char **parameters, int pcnt, userrec *user)
278         {
279                 char buffer[MAXBUF];
280                 GenHash(parameters[0],buffer);
281                 WriteServ(user->fd,"NOTICE %s :MD5 hashed password for %s is %s",user->nick,parameters[0],buffer);
282         }
283 };
284
285 class ModuleOperMD5 : public Module
286 {
287         Server* Srv;
288         cmd_mkpasswd* mycommand;
289  public:
290
291         ModuleOperMD5(Server* Me)
292                 : Module::Module(Me)
293         {
294                 Srv = Me;
295                 mycommand = new cmd_mkpasswd();
296                 Srv->AddCommand(mycommand);
297         }
298         
299         virtual ~ModuleOperMD5()
300         {
301         }
302
303         void Implements(char* List)
304         {
305                 List[I_OnOperCompare] = 1;
306         }
307
308         virtual int OnOperCompare(const std::string &data, const std::string &input)
309         {
310                 char buffer[MAXBUF];
311                 if (data.length() == 32)        // if its 32 chars long, try it as an md5
312                 {
313                         GenHash(input.c_str(),buffer);
314                         if (!strcasecmp(data.c_str(),buffer))
315                         {
316                                 return 1;
317                         }
318                         else return -1;
319                 }
320                 return 0;
321         }
322         
323         virtual Version GetVersion()
324         {
325                 return Version(1,0,0,1,VF_VENDOR);
326         }
327 };
328
329
330 class ModuleOperMD5Factory : public ModuleFactory
331 {
332  public:
333         ModuleOperMD5Factory()
334         {
335         }
336         
337         ~ModuleOperMD5Factory()
338         {
339         }
340         
341         virtual Module * CreateModule(Server* Me)
342         {
343                 return new ModuleOperMD5(Me);
344         }
345         
346 };
347
348
349 extern "C" void * init_module( void )
350 {
351         return new ModuleOperMD5Factory;
352 }