]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_cloaking.cpp
Automatically attach modules to events
[user/henk/code/inspircd.git] / src / modules / m_cloaking.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2006-2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2008 Pippijn van Steenhoven <pip88nl@gmail.com>
7  *   Copyright (C) 2003-2008 Craig Edwards <craigedwards@brainbox.cc>
8  *   Copyright (C) 2007 John Brooks <john.brooks@dereferenced.net>
9  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
10  *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
11  *
12  * This file is part of InspIRCd.  InspIRCd is free software: you can
13  * redistribute it and/or modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation, version 2.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25
26 #include "inspircd.h"
27 #include "modules/hash.h"
28
29 enum CloakMode
30 {
31         /** 2.0 cloak of "half" of the hostname plus the full IP hash */
32         MODE_HALF_CLOAK,
33         /** 2.0 cloak of IP hash, split at 2 common CIDR range points */
34         MODE_OPAQUE
35 };
36
37 // lowercase-only encoding similar to base64, used for hash output
38 static const char base32[] = "0123456789abcdefghijklmnopqrstuv";
39
40 /** Handles user mode +x
41  */
42 class CloakUser : public ModeHandler
43 {
44  public:
45         LocalStringExt ext;
46         std::string debounce_uid;
47         time_t debounce_ts;
48         int debounce_count;
49
50         CloakUser(Module* source)
51                 : ModeHandler(source, "cloak", 'x', PARAM_NONE, MODETYPE_USER),
52                 ext("cloaked_host", source), debounce_ts(0), debounce_count(0)
53         {
54         }
55
56         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
57         {
58                 LocalUser* user = IS_LOCAL(dest);
59
60                 /* For remote clients, we don't take any action, we just allow it.
61                  * The local server where they are will set their cloak instead.
62                  * This is fine, as we will receive it later.
63                  */
64                 if (!user)
65                 {
66                         dest->SetMode(this, adding);
67                         return MODEACTION_ALLOW;
68                 }
69
70                 if (user->uuid == debounce_uid && debounce_ts == ServerInstance->Time())
71                 {
72                         // prevent spamming using /mode user +x-x+x-x+x-x
73                         if (++debounce_count > 2)
74                                 return MODEACTION_DENY;
75                 }
76                 else
77                 {
78                         debounce_uid = user->uuid;
79                         debounce_count = 1;
80                         debounce_ts = ServerInstance->Time();
81                 }
82
83                 if (adding == user->IsModeSet(this))
84                         return MODEACTION_DENY;
85
86                 /* don't allow this user to spam modechanges */
87                 if (source == dest)
88                         user->CommandFloodPenalty += 5000;
89
90                 if (adding)
91                 {
92                         std::string* cloak = ext.get(user);
93
94                         if (!cloak)
95                         {
96                                 /* Force creation of missing cloak */
97                                 creator->OnUserConnect(user);
98                                 cloak = ext.get(user);
99                         }
100                         if (cloak)
101                         {
102                                 user->ChangeDisplayedHost(cloak->c_str());
103                                 user->SetMode(this, true);
104                                 return MODEACTION_ALLOW;
105                         }
106                         else
107                                 return MODEACTION_DENY;
108                 }
109                 else
110                 {
111                         /* User is removing the mode, so restore their real host
112                          * and make it match the displayed one.
113                          */
114                         user->SetMode(this, false);
115                         user->ChangeDisplayedHost(user->host.c_str());
116                         return MODEACTION_ALLOW;
117                 }
118         }
119 };
120
121 class CommandCloak : public Command
122 {
123  public:
124         CommandCloak(Module* Creator) : Command(Creator, "CLOAK", 1)
125         {
126                 flags_needed = 'o';
127                 syntax = "<host>";
128         }
129
130         CmdResult Handle(const std::vector<std::string> &parameters, User *user);
131 };
132
133 class ModuleCloaking : public Module
134 {
135  public:
136         CloakUser cu;
137         CloakMode mode;
138         CommandCloak ck;
139         std::string prefix;
140         std::string suffix;
141         std::string key;
142         const char* xtab[4];
143         dynamic_reference<HashProvider> Hash;
144
145         ModuleCloaking() : cu(this), mode(MODE_OPAQUE), ck(this), Hash(this, "hash/md5")
146         {
147         }
148
149         void init() CXX11_OVERRIDE
150         {
151                 OnRehash(NULL);
152
153                 ServerInstance->Modules->AddService(cu);
154                 ServerInstance->Modules->AddService(ck);
155                 ServerInstance->Modules->AddService(cu.ext);
156         }
157
158         /** This function takes a domain name string and returns just the last two domain parts,
159          * or the last domain part if only two are available. Failing that it just returns what it was given.
160          *
161          * For example, if it is passed "svn.inspircd.org" it will return ".inspircd.org".
162          * If it is passed "brainbox.winbot.co.uk" it will return ".co.uk",
163          * and if it is passed "localhost.localdomain" it will return ".localdomain".
164          *
165          * This is used to ensure a significant part of the host is always cloaked (see Bug #216)
166          */
167         std::string LastTwoDomainParts(const std::string &host)
168         {
169                 int dots = 0;
170                 std::string::size_type splitdot = host.length();
171
172                 for (std::string::size_type x = host.length() - 1; x; --x)
173                 {
174                         if (host[x] == '.')
175                         {
176                                 splitdot = x;
177                                 dots++;
178                         }
179                         if (dots >= 3)
180                                 break;
181                 }
182
183                 if (splitdot == host.length())
184                         return "";
185                 else
186                         return host.substr(splitdot);
187         }
188
189         /**
190          * 2.0-style cloaking function
191          * @param item The item to cloak (part of an IP or hostname)
192          * @param id A unique ID for this type of item (to make it unique if the item matches)
193          * @param len The length of the output. Maximum for MD5 is 16 characters.
194          */
195         std::string SegmentCloak(const std::string& item, char id, int len)
196         {
197                 std::string input;
198                 input.reserve(key.length() + 3 + item.length());
199                 input.append(1, id);
200                 input.append(key);
201                 input.append(1, '\0'); // null does not terminate a C++ string
202                 input.append(item);
203
204                 std::string rv = Hash->sum(input).substr(0,len);
205                 for(int i=0; i < len; i++)
206                 {
207                         // this discards 3 bits per byte. We have an
208                         // overabundance of bits in the hash output, doesn't
209                         // matter which ones we are discarding.
210                         rv[i] = base32[rv[i] & 0x1F];
211                 }
212                 return rv;
213         }
214
215         std::string SegmentIP(const irc::sockets::sockaddrs& ip, bool full)
216         {
217                 std::string bindata;
218                 int hop1, hop2, hop3;
219                 int len1, len2;
220                 std::string rv;
221                 if (ip.sa.sa_family == AF_INET6)
222                 {
223                         bindata = std::string((const char*)ip.in6.sin6_addr.s6_addr, 16);
224                         hop1 = 8;
225                         hop2 = 6;
226                         hop3 = 4;
227                         len1 = 6;
228                         len2 = 4;
229                         // pfx s1.s2.s3. (xxxx.xxxx or s4) sfx
230                         //     6  4  4    9/6
231                         rv.reserve(prefix.length() + 26 + suffix.length());
232                 }
233                 else
234                 {
235                         bindata = std::string((const char*)&ip.in4.sin_addr, 4);
236                         hop1 = 3;
237                         hop2 = 0;
238                         hop3 = 2;
239                         len1 = len2 = 3;
240                         // pfx s1.s2. (xxx.xxx or s3) sfx
241                         rv.reserve(prefix.length() + 15 + suffix.length());
242                 }
243
244                 rv.append(prefix);
245                 rv.append(SegmentCloak(bindata, 10, len1));
246                 rv.append(1, '.');
247                 bindata.erase(hop1);
248                 rv.append(SegmentCloak(bindata, 11, len2));
249                 if (hop2)
250                 {
251                         rv.append(1, '.');
252                         bindata.erase(hop2);
253                         rv.append(SegmentCloak(bindata, 12, len2));
254                 }
255
256                 if (full)
257                 {
258                         rv.append(1, '.');
259                         bindata.erase(hop3);
260                         rv.append(SegmentCloak(bindata, 13, 6));
261                         rv.append(suffix);
262                 }
263                 else
264                 {
265                         char buf[50];
266                         if (ip.sa.sa_family == AF_INET6)
267                         {
268                                 snprintf(buf, 50, ".%02x%02x.%02x%02x%s",
269                                         ip.in6.sin6_addr.s6_addr[2], ip.in6.sin6_addr.s6_addr[3],
270                                         ip.in6.sin6_addr.s6_addr[0], ip.in6.sin6_addr.s6_addr[1], suffix.c_str());
271                         }
272                         else
273                         {
274                                 const unsigned char* ip4 = (const unsigned char*)&ip.in4.sin_addr;
275                                 snprintf(buf, 50, ".%d.%d%s", ip4[1], ip4[0], suffix.c_str());
276                         }
277                         rv.append(buf);
278                 }
279                 return rv;
280         }
281
282         ModResult OnCheckBan(User* user, Channel* chan, const std::string& mask) CXX11_OVERRIDE
283         {
284                 LocalUser* lu = IS_LOCAL(user);
285                 if (!lu)
286                         return MOD_RES_PASSTHRU;
287
288                 OnUserConnect(lu);
289                 std::string* cloak = cu.ext.get(user);
290                 /* Check if they have a cloaked host, but are not using it */
291                 if (cloak && *cloak != user->dhost)
292                 {
293                         const std::string cloakMask = user->nick + "!" + user->ident + "@" + *cloak;
294                         if (InspIRCd::Match(cloakMask, mask))
295                                 return MOD_RES_DENY;
296                 }
297                 return MOD_RES_PASSTHRU;
298         }
299
300         void Prioritize()
301         {
302                 /* Needs to be after m_banexception etc. */
303                 ServerInstance->Modules->SetPriority(this, I_OnCheckBan, PRIORITY_LAST);
304         }
305
306         // this unsets umode +x on every host change. If we are actually doing a +x
307         // mode change, we will call SetMode back to true AFTER the host change is done.
308         void OnChangeHost(User* u, const std::string& host) CXX11_OVERRIDE
309         {
310                 if (u->IsModeSet(cu))
311                 {
312                         u->SetMode(cu, false);
313                         u->WriteServ("MODE %s -%c", u->nick.c_str(), cu.GetModeChar());
314                 }
315         }
316
317         Version GetVersion() CXX11_OVERRIDE
318         {
319                 std::string testcloak = "broken";
320                 if (Hash)
321                 {
322                         switch (mode)
323                         {
324                                 case MODE_HALF_CLOAK:
325                                         testcloak = prefix + SegmentCloak("*", 3, 8) + suffix;
326                                         break;
327                                 case MODE_OPAQUE:
328                                         testcloak = prefix + SegmentCloak("*", 4, 8) + suffix;
329                         }
330                 }
331                 return Version("Provides masking of user hostnames", VF_COMMON|VF_VENDOR, testcloak);
332         }
333
334         void OnRehash(User* user) CXX11_OVERRIDE
335         {
336                 ConfigTag* tag = ServerInstance->Config->ConfValue("cloak");
337                 prefix = tag->getString("prefix");
338                 suffix = tag->getString("suffix", ".IP");
339
340                 std::string modestr = tag->getString("mode");
341                 if (modestr == "half")
342                         mode = MODE_HALF_CLOAK;
343                 else if (modestr == "full")
344                         mode = MODE_OPAQUE;
345                 else
346                         throw ModuleException("Bad value for <cloak:mode>; must be half or full");
347
348                 key = tag->getString("key");
349                 if (key.empty() || key == "secret")
350                         throw ModuleException("You have not defined cloak keys for m_cloaking. Define <cloak:key> as a network-wide secret.");
351         }
352
353         std::string GenCloak(const irc::sockets::sockaddrs& ip, const std::string& ipstr, const std::string& host)
354         {
355                 std::string chost;
356
357                 switch (mode)
358                 {
359                         case MODE_HALF_CLOAK:
360                         {
361                                 if (ipstr != host)
362                                         chost = prefix + SegmentCloak(host, 1, 6) + LastTwoDomainParts(host);
363                                 if (chost.empty() || chost.length() > 50)
364                                         chost = SegmentIP(ip, false);
365                                 break;
366                         }
367                         case MODE_OPAQUE:
368                         default:
369                                 chost = SegmentIP(ip, true);
370                 }
371                 return chost;
372         }
373
374         void OnUserConnect(LocalUser* dest) CXX11_OVERRIDE
375         {
376                 std::string* cloak = cu.ext.get(dest);
377                 if (cloak)
378                         return;
379
380                 cu.ext.set(dest, GenCloak(dest->client_sa, dest->GetIPString(), dest->host));
381         }
382 };
383
384 CmdResult CommandCloak::Handle(const std::vector<std::string> &parameters, User *user)
385 {
386         ModuleCloaking* mod = (ModuleCloaking*)(Module*)creator;
387         irc::sockets::sockaddrs sa;
388         std::string cloak;
389
390         if (irc::sockets::aptosa(parameters[0], 0, sa))
391                 cloak = mod->GenCloak(sa, parameters[0], parameters[0]);
392         else
393                 cloak = mod->GenCloak(sa, "", parameters[0]);
394
395         user->WriteNotice("*** Cloak for " + parameters[0] + " is " + cloak);
396
397         return CMD_SUCCESS;
398 }
399
400 MODULE_INIT(ModuleCloaking)