]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_dnsbl.cpp
Merge branch 'insp20' into master.
[user/henk/code/inspircd.git] / src / modules / m_dnsbl.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) 2007 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2006-2007 Dennis Friis <peavey@inspircd.org>
8  *   Copyright (C) 2007 John Brooks <john.brooks@dereferenced.net>
9  *
10  * This file is part of InspIRCd.  InspIRCd is free software: you can
11  * redistribute it and/or modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation, version 2.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23
24 #include "inspircd.h"
25 #include "xline.h"
26 #include "modules/dns.h"
27 #include "modules/stats.h"
28
29 /* Class holding data for a single entry */
30 class DNSBLConfEntry : public refcountbase
31 {
32         public:
33                 enum EnumBanaction { I_UNKNOWN, I_KILL, I_ZLINE, I_KLINE, I_GLINE, I_MARK };
34                 enum EnumType { A_RECORD, A_BITMASK };
35                 std::string name, ident, host, domain, reason;
36                 EnumBanaction banaction;
37                 EnumType type;
38                 unsigned long duration;
39                 unsigned int bitmask;
40                 unsigned char records[256];
41                 unsigned long stats_hits, stats_misses;
42                 DNSBLConfEntry(): type(A_BITMASK),duration(86400),bitmask(0),stats_hits(0), stats_misses(0) {}
43 };
44
45
46 /** Resolver for CGI:IRC hostnames encoded in ident/real name
47  */
48 class DNSBLResolver : public DNS::Request
49 {
50         std::string theiruid;
51         LocalStringExt& nameExt;
52         LocalIntExt& countExt;
53         reference<DNSBLConfEntry> ConfEntry;
54
55  public:
56
57         DNSBLResolver(DNS::Manager *mgr, Module *me, LocalStringExt& match, LocalIntExt& ctr, const std::string &hostname, LocalUser* u, reference<DNSBLConfEntry> conf)
58                 : DNS::Request(mgr, me, hostname, DNS::QUERY_A, true), theiruid(u->uuid), nameExt(match), countExt(ctr), ConfEntry(conf)
59         {
60         }
61
62         /* Note: This may be called multiple times for multiple A record results */
63         void OnLookupComplete(const DNS::Query *r) CXX11_OVERRIDE
64         {
65                 /* Check the user still exists */
66                 LocalUser* them = (LocalUser*)ServerInstance->FindUUID(theiruid);
67                 if (!them)
68                         return;
69
70                 const DNS::ResourceRecord* const ans_record = r->FindAnswerOfType(DNS::QUERY_A);
71                 if (!ans_record)
72                         return;
73
74                 // All replies should be in 127.0.0.0/8
75                 if (ans_record->rdata.compare(0, 4, "127.") != 0)
76                 {
77                         ServerInstance->SNO->WriteGlobalSno('d', "DNSBL: %s returned address outside of acceptable subnet 127.0.0.0/8: %s", ConfEntry->domain.c_str(), ans_record->rdata.c_str());
78                         ConfEntry->stats_misses++;
79                         return;
80                 }
81
82                 int i = countExt.get(them);
83                 if (i)
84                         countExt.set(them, i - 1);
85
86                 // Now we calculate the bitmask: 256*(256*(256*a+b)+c)+d
87
88                 unsigned int bitmask = 0, record = 0;
89                 bool match = false;
90                 in_addr resultip;
91
92                 inet_pton(AF_INET, ans_record->rdata.c_str(), &resultip);
93
94                 switch (ConfEntry->type)
95                 {
96                         case DNSBLConfEntry::A_BITMASK:
97                                 bitmask = resultip.s_addr >> 24; /* Last octet (network byte order) */
98                                 bitmask &= ConfEntry->bitmask;
99                                 match = (bitmask != 0);
100                         break;
101                         case DNSBLConfEntry::A_RECORD:
102                                 record = resultip.s_addr >> 24; /* Last octet */
103                                 match = (ConfEntry->records[record] == 1);
104                         break;
105                 }
106
107                 if (match)
108                 {
109                         std::string reason = ConfEntry->reason;
110                         std::string::size_type x = reason.find("%ip%");
111                         while (x != std::string::npos)
112                         {
113                                 reason.erase(x, 4);
114                                 reason.insert(x, them->GetIPString());
115                                 x = reason.find("%ip%");
116                         }
117
118                         ConfEntry->stats_hits++;
119
120                         switch (ConfEntry->banaction)
121                         {
122                                 case DNSBLConfEntry::I_KILL:
123                                 {
124                                         ServerInstance->Users->QuitUser(them, "Killed (" + reason + ")");
125                                         break;
126                                 }
127                                 case DNSBLConfEntry::I_MARK:
128                                 {
129                                         if (!ConfEntry->ident.empty())
130                                         {
131                                                 them->WriteNotice("Your ident has been set to " + ConfEntry->ident + " because you matched " + reason);
132                                                 them->ChangeIdent(ConfEntry->ident);
133                                         }
134
135                                         if (!ConfEntry->host.empty())
136                                         {
137                                                 them->WriteNotice("Your host has been set to " + ConfEntry->host + " because you matched " + reason);
138                                                 them->ChangeDisplayedHost(ConfEntry->host);
139                                         }
140
141                                         nameExt.set(them, ConfEntry->name);
142                                         break;
143                                 }
144                                 case DNSBLConfEntry::I_KLINE:
145                                 {
146                                         KLine* kl = new KLine(ServerInstance->Time(), ConfEntry->duration, ServerInstance->Config->ServerName.c_str(), reason.c_str(),
147                                                         "*", them->GetIPString());
148                                         if (ServerInstance->XLines->AddLine(kl,NULL))
149                                         {
150                                                 std::string timestr = InspIRCd::TimeString(kl->expiry);
151                                                 ServerInstance->SNO->WriteGlobalSno('x',"K:line added due to DNSBL match on *@%s to expire on %s: %s",
152                                                         them->GetIPString().c_str(), timestr.c_str(), reason.c_str());
153                                                 ServerInstance->XLines->ApplyLines();
154                                         }
155                                         else
156                                         {
157                                                 delete kl;
158                                                 return;
159                                         }
160                                         break;
161                                 }
162                                 case DNSBLConfEntry::I_GLINE:
163                                 {
164                                         GLine* gl = new GLine(ServerInstance->Time(), ConfEntry->duration, ServerInstance->Config->ServerName.c_str(), reason.c_str(),
165                                                         "*", them->GetIPString());
166                                         if (ServerInstance->XLines->AddLine(gl,NULL))
167                                         {
168                                                 std::string timestr = InspIRCd::TimeString(gl->expiry);
169                                                 ServerInstance->SNO->WriteGlobalSno('x',"G:line added due to DNSBL match on *@%s to expire on %s: %s",
170                                                         them->GetIPString().c_str(), timestr.c_str(), reason.c_str());
171                                                 ServerInstance->XLines->ApplyLines();
172                                         }
173                                         else
174                                         {
175                                                 delete gl;
176                                                 return;
177                                         }
178                                         break;
179                                 }
180                                 case DNSBLConfEntry::I_ZLINE:
181                                 {
182                                         ZLine* zl = new ZLine(ServerInstance->Time(), ConfEntry->duration, ServerInstance->Config->ServerName.c_str(), reason.c_str(),
183                                                         them->GetIPString());
184                                         if (ServerInstance->XLines->AddLine(zl,NULL))
185                                         {
186                                                 std::string timestr = InspIRCd::TimeString(zl->expiry);
187                                                 ServerInstance->SNO->WriteGlobalSno('x',"Z:line added due to DNSBL match on %s to expire on %s: %s",
188                                                         them->GetIPString().c_str(), timestr.c_str(), reason.c_str());
189                                                 ServerInstance->XLines->ApplyLines();
190                                         }
191                                         else
192                                         {
193                                                 delete zl;
194                                                 return;
195                                         }
196                                         break;
197                                 }
198                                 case DNSBLConfEntry::I_UNKNOWN:
199                                 default:
200                                         break;
201                         }
202
203                         ServerInstance->SNO->WriteGlobalSno('d', "Connecting user %s%s detected as being on a DNS blacklist (%s) with result %d", them->nick.empty() ? "<unknown>" : "", them->GetFullRealHost().c_str(), ConfEntry->domain.c_str(), (ConfEntry->type==DNSBLConfEntry::A_BITMASK) ? bitmask : record);
204                 }
205                 else
206                         ConfEntry->stats_misses++;
207         }
208
209         void OnError(const DNS::Query *q) CXX11_OVERRIDE
210         {
211                 LocalUser* them = (LocalUser*)ServerInstance->FindUUID(theiruid);
212                 if (!them)
213                         return;
214
215                 int i = countExt.get(them);
216                 if (i)
217                         countExt.set(them, i - 1);
218
219                 if (q->error == DNS::ERROR_NO_RECORDS || q->error == DNS::ERROR_DOMAIN_NOT_FOUND)
220                         ConfEntry->stats_misses++;
221         }
222 };
223
224 class ModuleDNSBL : public Module, public Stats::EventListener
225 {
226         std::vector<reference<DNSBLConfEntry> > DNSBLConfEntries;
227         dynamic_reference<DNS::Manager> DNS;
228         LocalStringExt nameExt;
229         LocalIntExt countExt;
230
231         /*
232          *      Convert a string to EnumBanaction
233          */
234         DNSBLConfEntry::EnumBanaction str2banaction(const std::string &action)
235         {
236                 if(action.compare("KILL")==0)
237                         return DNSBLConfEntry::I_KILL;
238                 if(action.compare("KLINE")==0)
239                         return DNSBLConfEntry::I_KLINE;
240                 if(action.compare("ZLINE")==0)
241                         return DNSBLConfEntry::I_ZLINE;
242                 if(action.compare("GLINE")==0)
243                         return DNSBLConfEntry::I_GLINE;
244                 if(action.compare("MARK")==0)
245                         return DNSBLConfEntry::I_MARK;
246
247                 return DNSBLConfEntry::I_UNKNOWN;
248         }
249  public:
250         ModuleDNSBL()
251                 : Stats::EventListener(this)
252                 , DNS(this, "DNS")
253                 , nameExt("dnsbl_match", ExtensionItem::EXT_USER, this)
254                 , countExt("dnsbl_pending", ExtensionItem::EXT_USER, this)
255         {
256         }
257
258         void init() CXX11_OVERRIDE
259         {
260                 ServerInstance->SNO->EnableSnomask('d', "DNSBL");
261         }
262
263         Version GetVersion() CXX11_OVERRIDE
264         {
265                 return Version("Provides handling of DNS blacklists", VF_VENDOR);
266         }
267
268         /** Fill our conf vector with data
269          */
270         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
271         {
272                 DNSBLConfEntries.clear();
273
274                 ConfigTagList dnsbls = ServerInstance->Config->ConfTags("dnsbl");
275                 for(ConfigIter i = dnsbls.first; i != dnsbls.second; ++i)
276                 {
277                         ConfigTag* tag = i->second;
278                         reference<DNSBLConfEntry> e = new DNSBLConfEntry();
279
280                         e->name = tag->getString("name");
281                         e->ident = tag->getString("ident");
282                         e->host = tag->getString("host");
283                         e->reason = tag->getString("reason");
284                         e->domain = tag->getString("domain");
285
286                         if (stdalgo::string::equalsci(tag->getString("type"), "bitmask"))
287                         {
288                                 e->type = DNSBLConfEntry::A_BITMASK;
289                                 e->bitmask = tag->getUInt("bitmask", 0, 0, UINT_MAX);
290                         }
291                         else
292                         {
293                                 memset(e->records, 0, sizeof(e->records));
294                                 e->type = DNSBLConfEntry::A_RECORD;
295                                 irc::portparser portrange(tag->getString("records"), false);
296                                 long item = -1;
297                                 while ((item = portrange.GetToken()))
298                                         e->records[item] = 1;
299                         }
300
301                         e->banaction = str2banaction(tag->getString("action"));
302                         e->duration = tag->getDuration("duration", 60, 1);
303
304                         /* Use portparser for record replies */
305
306                         /* yeah, logic here is a little messy */
307                         if ((e->bitmask <= 0) && (DNSBLConfEntry::A_BITMASK == e->type))
308                         {
309                                 std::string location = tag->getTagLocation();
310                                 ServerInstance->SNO->WriteGlobalSno('d', "DNSBL(%s): invalid bitmask", location.c_str());
311                         }
312                         else if (e->name.empty())
313                         {
314                                 std::string location = tag->getTagLocation();
315                                 ServerInstance->SNO->WriteGlobalSno('d', "DNSBL(%s): Invalid name", location.c_str());
316                         }
317                         else if (e->domain.empty())
318                         {
319                                 std::string location = tag->getTagLocation();
320                                 ServerInstance->SNO->WriteGlobalSno('d', "DNSBL(%s): Invalid domain", location.c_str());
321                         }
322                         else if (e->banaction == DNSBLConfEntry::I_UNKNOWN)
323                         {
324                                 std::string location = tag->getTagLocation();
325                                 ServerInstance->SNO->WriteGlobalSno('d', "DNSBL(%s): Invalid banaction", location.c_str());
326                         }
327                         else
328                         {
329                                 if (e->reason.empty())
330                                 {
331                                         std::string location = tag->getTagLocation();
332                                         ServerInstance->SNO->WriteGlobalSno('d', "DNSBL(%s): empty reason, using defaults", location.c_str());
333                                         e->reason = "Your IP has been blacklisted.";
334                                 }
335
336                                 /* add it, all is ok */
337                                 DNSBLConfEntries.push_back(e);
338                         }
339                 }
340         }
341
342         void OnSetUserIP(LocalUser* user) CXX11_OVERRIDE
343         {
344                 if ((user->exempt) || !DNS)
345                         return;
346
347                 // Clients can't be in a DNSBL if they aren't connected via IPv4 or IPv6.
348                 if (user->client_sa.family() != AF_INET && user->client_sa.family() != AF_INET6)
349                         return;
350
351                 if (user->MyClass)
352                 {
353                         if (!user->MyClass->config->getBool("usednsbl", true))
354                                 return;
355                 }
356                 else
357                         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "User has no connect class in OnSetUserIP");
358
359                 std::string reversedip;
360                 if (user->client_sa.family() == AF_INET)
361                 {
362                         unsigned int a, b, c, d;
363                         d = (unsigned int) (user->client_sa.in4.sin_addr.s_addr >> 24) & 0xFF;
364                         c = (unsigned int) (user->client_sa.in4.sin_addr.s_addr >> 16) & 0xFF;
365                         b = (unsigned int) (user->client_sa.in4.sin_addr.s_addr >> 8) & 0xFF;
366                         a = (unsigned int) user->client_sa.in4.sin_addr.s_addr & 0xFF;
367
368                         reversedip = ConvToStr(d) + "." + ConvToStr(c) + "." + ConvToStr(b) + "." + ConvToStr(a);
369                 }
370                 else if (user->client_sa.family() == AF_INET6)
371                 {
372                         const unsigned char* ip = user->client_sa.in6.sin6_addr.s6_addr;
373
374                         std::string buf = BinToHex(ip, 16);
375                         for (std::string::const_reverse_iterator it = buf.rbegin(); it != buf.rend(); ++it)
376                         {
377                                 reversedip.push_back(*it);
378                                 reversedip.push_back('.');
379                         }
380                 }
381                 else
382                         return;
383
384                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Reversed IP %s -> %s", user->GetIPString().c_str(), reversedip.c_str());
385
386                 countExt.set(user, DNSBLConfEntries.size());
387
388                 // For each DNSBL, we will run through this lookup
389                 for (unsigned i = 0; i < DNSBLConfEntries.size(); ++i)
390                 {
391                         // Fill hostname with a dnsbl style host (d.c.b.a.domain.tld)
392                         std::string hostname = reversedip + "." + DNSBLConfEntries[i]->domain;
393
394                         /* now we'd need to fire off lookups for `hostname'. */
395                         DNSBLResolver *r = new DNSBLResolver(*this->DNS, this, nameExt, countExt, hostname, user, DNSBLConfEntries[i]);
396                         try
397                         {
398                                 this->DNS->Process(r);
399                         }
400                         catch (DNS::Exception &ex)
401                         {
402                                 delete r;
403                                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, ex.GetReason());
404                         }
405
406                         if (user->quitting)
407                                 break;
408                 }
409         }
410
411         ModResult OnSetConnectClass(LocalUser* user, ConnectClass* myclass) CXX11_OVERRIDE
412         {
413                 std::string dnsbl;
414                 if (!myclass->config->readString("dnsbl", dnsbl))
415                         return MOD_RES_PASSTHRU;
416                 std::string* match = nameExt.get(user);
417                 std::string myname = match ? *match : "";
418                 if (dnsbl == myname)
419                         return MOD_RES_PASSTHRU;
420                 return MOD_RES_DENY;
421         }
422
423         ModResult OnCheckReady(LocalUser *user) CXX11_OVERRIDE
424         {
425                 if (countExt.get(user))
426                         return MOD_RES_DENY;
427                 return MOD_RES_PASSTHRU;
428         }
429
430         ModResult OnStats(Stats::Context& stats) CXX11_OVERRIDE
431         {
432                 if (stats.GetSymbol() != 'd')
433                         return MOD_RES_PASSTHRU;
434
435                 unsigned long total_hits = 0, total_misses = 0;
436
437                 for (std::vector<reference<DNSBLConfEntry> >::const_iterator i = DNSBLConfEntries.begin(); i != DNSBLConfEntries.end(); ++i)
438                 {
439                         total_hits += (*i)->stats_hits;
440                         total_misses += (*i)->stats_misses;
441
442                         stats.AddRow(304, "DNSBLSTATS DNSbl \"" + (*i)->name + "\" had " +
443                                         ConvToStr((*i)->stats_hits) + " hits and " + ConvToStr((*i)->stats_misses) + " misses");
444                 }
445
446                 stats.AddRow(304, "DNSBLSTATS Total hits: " + ConvToStr(total_hits));
447                 stats.AddRow(304, "DNSBLSTATS Total misses: " + ConvToStr(total_misses));
448
449                 return MOD_RES_PASSTHRU;
450         }
451 };
452
453 MODULE_INIT(ModuleDNSBL)