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