]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_cloaking.cpp
b9b9f4402fd6d694e417a215e4ded1867b0f6d55
[user/henk/code/inspircd.git] / src / modules / m_cloaking.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 // Hostname cloaking (+x mode) module for inspircd.
18 // version 1.0.0.1 by brain (C. J. Edwards) Mar 2004.
19 //
20 // When loaded this module will automatically set the
21 // +x mode on all connecting clients.
22 //
23 // Setting +x on a client causes the module to change the
24 // dhost entry (displayed host) for each user who has the
25 // mode, cloaking their host. Unlike unreal, the algorithm
26 // is non-reversible as uncloaked hosts are passed along
27 // the server->server link, and all encoding of hosts is
28 // done locally on the server by this module.
29
30 #include <sys/types.h>
31 #include <sys/socket.h>
32 #include <netinet/in.h>
33 #include <arpa/inet.h>
34 #include <stdint.h>
35 #include "inspircd.h"
36 #include "users.h"
37 #include "channels.h"
38 #include "modules.h"
39
40 /* $ModDesc: Provides masking of user hostnames */
41
42
43 /* The four core functions - F1 is optimized somewhat */
44
45 #define F1(x, y, z) (z ^ (x & (y ^ z)))
46 #define F2(x, y, z) F1(z, x, y)
47 #define F3(x, y, z) (x ^ y ^ z)
48 #define F4(x, y, z) (y ^ (x | ~z))
49 #define MD5STEP(f,w,x,y,z,in,s) (w += f(x,y,z) + in, w = (w<<s | w>>(32-s)) + x)
50
51 typedef uint32_t word32; /* NOT unsigned long. We don't support 16 bit platforms, anyway. */
52 typedef unsigned char byte;
53
54 struct xMD5Context {
55         word32 buf[4];
56         word32 bytes[2];
57         word32 in[16];
58 };
59
60 class CloakUser : public ModeHandler
61 {
62         Server* Srv;
63         std::string prefix;
64         word32 key1;
65         word32 key2;
66         word32 key3;
67         word32 key4;
68         
69         void byteSwap(word32 *buf, unsigned words)
70         {
71                 byte *p = (byte *)buf;
72         
73                 do
74                 {
75                         *buf++ = (word32)((unsigned)p[3] << 8 | p[2]) << 16 |
76                                 ((unsigned)p[1] << 8 | p[0]);
77                         p += 4;
78                 } while (--words);
79         }
80
81         void xMD5Init(struct xMD5Context *ctx)
82         {
83                 ctx->buf[0] = key1;
84                 ctx->buf[1] = key2;
85                 ctx->buf[2] = key3;
86                 ctx->buf[3] = key4;
87
88                 ctx->bytes[0] = 0;
89                 ctx->bytes[1] = 0;
90         }
91
92         void xMD5Update(struct xMD5Context *ctx, byte const *buf, int len)
93         {
94                 word32 t;
95
96                 /* Update byte count */
97
98                 t = ctx->bytes[0];
99                 if ((ctx->bytes[0] = t + len) < t)
100                         ctx->bytes[1]++;        /* Carry from low to high */
101
102                 t = 64 - (t & 0x3f);    /* Space available in ctx->in (at least 1) */
103                 if ((unsigned)t > (unsigned)len)
104                 {
105                         memcpy((byte *)ctx->in + 64 - (unsigned)t, buf, len);
106                         return;
107                 }
108                 /* First chunk is an odd size */
109                 memcpy((byte *)ctx->in + 64 - (unsigned)t, buf, (unsigned)t);
110                 byteSwap(ctx->in, 16);
111                 xMD5Transform(ctx->buf, ctx->in);
112                 buf += (unsigned)t;
113                 len -= (unsigned)t;
114
115                 /* Process data in 64-byte chunks */
116                 while (len >= 64)
117                 {
118                         memcpy(ctx->in, buf, 64);
119                         byteSwap(ctx->in, 16);
120                         xMD5Transform(ctx->buf, ctx->in);
121                         buf += 64;
122                         len -= 64;
123                 }
124
125                 /* Handle any remaining bytes of data. */
126                 memcpy(ctx->in, buf, len);
127         }
128
129         void xMD5Final(byte digest[16], struct xMD5Context *ctx)
130         {
131                 int count = (int)(ctx->bytes[0] & 0x3f); /* Bytes in ctx->in */
132                 byte *p = (byte *)ctx->in + count;      /* First unused byte */
133
134                 /* Set the first char of padding to 0x80.  There is always room. */
135                 *p++ = 0x80;
136
137                 /* Bytes of padding needed to make 56 bytes (-8..55) */
138                 count = 56 - 1 - count;
139
140                 if (count < 0)
141                 {       /* Padding forces an extra block */
142                         memset(p, 0, count+8);
143                         byteSwap(ctx->in, 16);
144                         xMD5Transform(ctx->buf, ctx->in);
145                         p = (byte *)ctx->in;
146                         count = 56;
147                 }
148                 memset(p, 0, count+8);
149                 byteSwap(ctx->in, 14);
150
151                 /* Append length in bits and transform */
152                 ctx->in[14] = ctx->bytes[0] << 3;
153                 ctx->in[15] = ctx->bytes[1] << 3 | ctx->bytes[0] >> 29;
154                 xMD5Transform(ctx->buf, ctx->in);
155
156                 byteSwap(ctx->buf, 4);
157                 memcpy(digest, ctx->buf, 16);
158                 memset(ctx, 0, sizeof(ctx));
159         }
160
161         void xMD5Transform(word32 buf[4], word32 const in[16])
162         {
163                 register word32 a, b, c, d;
164
165                 a = buf[0];
166                 b = buf[1];
167                 c = buf[2];
168                 d = buf[3];
169
170                 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
171                 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
172                 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
173                 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
174                 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
175                 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
176                 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
177                 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
178                 MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
179                 MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
180                 MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
181                 MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
182                 MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
183                 MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
184                 MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
185                 MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
186
187                 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
188                 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
189                 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
190                 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
191                 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
192                 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
193                 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
194                 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
195                 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
196                 MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
197                 MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
198                 MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
199                 MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
200                 MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
201                 MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
202                 MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
203
204                 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
205                 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
206                 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
207                 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
208                 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
209                 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
210                 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
211                 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
212                 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
213                 MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
214                 MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
215                 MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
216                 MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
217                 MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
218                 MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
219                 MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
220
221                 MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
222                 MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
223                 MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
224                 MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
225                 MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
226                 MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
227                 MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
228                 MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
229                 MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
230                 MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
231                 MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
232                 MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
233                 MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
234                 MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
235                 MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
236                 MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);
237
238                 buf[0] += a;
239                 buf[1] += b;
240                 buf[2] += c;
241                 buf[3] += d;
242         }
243
244
245         void MyMD5(void *dest, void *orig, int len)
246         {
247                 struct xMD5Context context;
248         
249                 xMD5Init(&context);
250                 xMD5Update(&context, (const unsigned char*)orig, len);
251                 xMD5Final((unsigned char*)dest, &context);
252         }
253
254
255         void GenHash(char* src, char* dest)
256         {
257                 // purposefully lossy md5 - only gives them the most significant 4 bits
258                 // of every md5 output byte.
259                 int i = 0;
260                 unsigned char bytes[16];
261                 char hash[MAXBUF];
262                 *hash = 0;
263                 MyMD5((char*)bytes,src,strlen(src));
264                 for (i = 0; i < 16; i++)
265                 {
266                         const char* xtab = "F92E45D871BCA630";
267                         unsigned char hi = xtab[bytes[i] / 16];
268                         char hx[2];
269                         hx[0] = hi;
270                         hx[1] = '\0';
271                         strlcat(hash,hx,MAXBUF);
272                 }
273                 strlcpy(dest,hash,MAXBUF);
274         }
275         
276  public:
277         CloakUser(Server* Me) : ModeHandler('x', 0, 0, false, MODETYPE_USER, false), Srv(Me) { }
278
279         ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
280         {
281                 /* Only opers can change other users modes */
282                 if ((source != dest) && (!*source->oper))
283                         return MODEACTION_DENY;
284                 
285                 if (adding)
286                 {
287                         if(!dest->IsModeSet('x'))
288                         {
289                                 /* The mode is being turned on - so attempt to
290                                  * allocate the user a cloaked host using a non-reversible
291                                  * algorithm (its simple, but its non-reversible so the
292                                  * simplicity doesnt really matter). This algorithm
293                                  * will not work if the user has only one level of domain
294                                  * naming in their hostname (e.g. if they are on a lan or
295                                  * are connecting via localhost) -- this doesnt matter much.
296                                  */
297                         
298                                 if (strchr(dest->host,'.'))
299                                 {
300                                         /* InspIRCd users have two hostnames; A displayed
301                                          * hostname which can be modified by modules (e.g.
302                                          * to create vhosts, implement chghost, etc) and a
303                                          * 'real' hostname which you shouldnt write to.
304                                          */
305                                 
306                                         std::string a = strstr(dest->host,".");
307                                         
308                                         char ra[64];
309                                         this->GenHash(dest->host,ra);
310                                         std::string b = "";
311                                         in_addr testaddr;
312                                         std::string hostcloak = prefix + "-" + std::string(ra) + a;
313                                 
314                                         /* Fix by brain - if the cloaked host is > the max length of a host (64 bytes
315                                          * according to the DNS RFC) then tough titty, they get cloaked as an IP. 
316                                          * Their ISP shouldnt go to town on subdomains, or they shouldnt have a kiddie
317                                          * vhost.
318                                          */
319                                 
320                                         if ((!inet_aton(dest->host,&testaddr)) && (hostcloak.length() < 64))
321                                         {
322                                                 // if they have a hostname, make something appropriate
323                                                 b = hostcloak;
324                                         }
325                                         else
326                                         {
327                                                 // else, they have an ip
328                                                 b = std::string(ra) + "." + prefix + ".cloak";
329                                         }
330                                         Srv->Log(DEBUG,"cloak: allocated "+b);
331                                         Srv->ChangeHost(dest,b);
332                                 }
333                                 
334                                 dest->SetMode('x',true);
335                                 return MODEACTION_ALLOW;
336                         }
337                 }
338                 else
339                 {
340                         if (dest->IsModeSet('x'))
341                         {
342                                 /* User is removing the mode, so just restore their real host
343                                  * and make it match the displayed one.
344                                  */
345                                 Srv->ChangeHost(dest,dest->host);
346                                 dest->SetMode('x',false);
347                                 return MODEACTION_ALLOW;
348                         }
349                 }
350
351                 return MODEACTION_DENY;
352         }
353         
354         void DoRehash()
355         {
356                 ConfigReader Conf;
357                 key1 = key2 = key3 = key4 = 0;
358                 key1 = Conf.ReadInteger("cloak","key1",0,false);
359                 key2 = Conf.ReadInteger("cloak","key2",0,false);
360                 key3 = Conf.ReadInteger("cloak","key3",0,false);
361                 key4 = Conf.ReadInteger("cloak","key4",0,false);
362                 
363                 prefix = Conf.ReadValue("cloak","prefix",0);
364                 if (prefix == "")
365                 {
366                         prefix = Srv->GetNetworkName();
367                 }
368                 if (!key1 && !key2 && !key3 && !key4)
369                 {
370                         ModuleException ex("You have not defined cloak keys for m_cloaking!!! THIS IS INSECURE AND SHOULD BE CHECKED!");
371                         throw (ex);
372                 }
373         }
374 };
375
376
377 class ModuleCloaking : public Module
378 {
379  private:
380         Server *Srv;
381         CloakUser* cu;
382
383  public:
384         ModuleCloaking(Server* Me)
385         : Module::Module(Me), Srv(Me)
386         {
387                 /* Create new mode handler object */
388                 cu = new CloakUser(Srv);
389
390                 /* Register it with the core */         
391                 Srv->AddMode(cu, 'x');
392
393                 OnRehash("");
394         }
395         
396         virtual ~ModuleCloaking()
397         {
398                 DELETE(cu);
399         }
400         
401         virtual Version GetVersion()
402         {
403                 // returns the version number of the module to be
404                 // listed in /MODULES
405                 return Version(1,0,0,2,VF_STATIC|VF_VENDOR);
406         }
407
408         virtual void OnRehash(const std::string &parameter)
409         {
410                 cu->DoRehash();
411         }
412
413         void Implements(char* List)
414         {
415                 List[I_OnRehash] = List[I_OnUserConnect] = 1;
416         }
417
418         virtual void OnUserConnect(userrec* user)
419         {
420                 // Heres the weird bit. When a user connects we must set +x on them, so
421                 // we're going to use the SendMode method of the Server class to send
422                 // the mode to the client. This is basically the same as sending an
423                 // SAMODE in unreal. Note that to the user it will appear as if they set
424                 // the mode on themselves.
425                 
426                 char* modes[2];                 // only two parameters
427                 modes[0] = user->nick;          // first parameter is the nick
428                 modes[1] = "+x";                // second parameter is the mode
429                 Srv->SendMode(modes,2,user);    // send these, forming the command "MODE <nick> +x"
430         }
431
432 };
433
434 // stuff down here is the module-factory stuff. For basic modules you can ignore this.
435
436 class ModuleCloakingFactory : public ModuleFactory
437 {
438  public:
439         ModuleCloakingFactory()
440         {
441         }
442         
443         ~ModuleCloakingFactory()
444         {
445         }
446         
447         virtual Module * CreateModule(Server* Me)
448         {
449                 return new ModuleCloaking(Me);
450         }
451         
452 };
453
454
455 extern "C" void * init_module( void )
456 {
457         return new ModuleCloakingFactory;
458 }