]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_dnsbl.cpp
a785678b58e765d107587cc08dfa40e9e2f5ef0a
[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
28 /* Class holding data for a single entry */
29 class DNSBLConfEntry : public refcountbase
30 {
31         public:
32                 enum EnumBanaction { I_UNKNOWN, I_KILL, I_ZLINE, I_KLINE, I_GLINE, I_MARK };
33                 enum EnumType { A_RECORD, A_BITMASK };
34                 std::string name, ident, host, domain, reason;
35                 EnumBanaction banaction;
36                 EnumType type;
37                 long duration;
38                 int bitmask;
39                 unsigned char records[256];
40                 unsigned long stats_hits, stats_misses;
41                 DNSBLConfEntry(): type(A_BITMASK),duration(86400),bitmask(0),stats_hits(0), stats_misses(0) {}
42 };
43
44
45 /** Resolver for CGI:IRC hostnames encoded in ident/GECOS
46  */
47 class DNSBLResolver : public DNS::Request
48 {
49         std::string theiruid;
50         LocalStringExt& nameExt;
51         LocalIntExt& countExt;
52         reference<DNSBLConfEntry> ConfEntry;
53
54  public:
55
56         DNSBLResolver(DNS::Manager *mgr, Module *me, LocalStringExt& match, LocalIntExt& ctr, const std::string &hostname, LocalUser* u, reference<DNSBLConfEntry> conf)
57                 : DNS::Request(mgr, me, hostname, DNS::QUERY_A, true), theiruid(u->uuid), nameExt(match), countExt(ctr), ConfEntry(conf)
58         {
59         }
60
61         /* Note: This may be called multiple times for multiple A record results */
62         void OnLookupComplete(const DNS::Query *r) CXX11_OVERRIDE
63         {
64                 /* Check the user still exists */
65                 LocalUser* them = (LocalUser*)ServerInstance->FindUUID(theiruid);
66                 if (!them)
67                         return;
68
69                 const DNS::ResourceRecord &ans_record = r->answers[0];
70
71                 int i = countExt.get(them);
72                 if (i)
73                         countExt.set(them, i - 1);
74
75                 // Now we calculate the bitmask: 256*(256*(256*a+b)+c)+d
76
77                 unsigned int bitmask = 0, record = 0;
78                 bool match = false;
79                 in_addr resultip;
80
81                 inet_aton(ans_record.rdata.c_str(), &resultip);
82
83                 switch (ConfEntry->type)
84                 {
85                         case DNSBLConfEntry::A_BITMASK:
86                                 bitmask = resultip.s_addr >> 24; /* Last octet (network byte order) */
87                                 bitmask &= ConfEntry->bitmask;
88                                 match = (bitmask != 0);
89                         break;
90                         case DNSBLConfEntry::A_RECORD:
91                                 record = resultip.s_addr >> 24; /* Last octet */
92                                 match = (ConfEntry->records[record] == 1);
93                         break;
94                 }
95
96                 if (match)
97                 {
98                         std::string reason = ConfEntry->reason;
99                         std::string::size_type x = reason.find("%ip%");
100                         while (x != std::string::npos)
101                         {
102                                 reason.erase(x, 4);
103                                 reason.insert(x, them->GetIPString());
104                                 x = reason.find("%ip%");
105                         }
106
107                         ConfEntry->stats_hits++;
108
109                         switch (ConfEntry->banaction)
110                         {
111                                 case DNSBLConfEntry::I_KILL:
112                                 {
113                                         ServerInstance->Users->QuitUser(them, "Killed (" + reason + ")");
114                                         break;
115                                 }
116                                 case DNSBLConfEntry::I_MARK:
117                                 {
118                                         if (!ConfEntry->ident.empty())
119                                         {
120                                                 them->WriteServ("304 " + them->nick + " :Your ident has been set to " + ConfEntry->ident + " because you matched " + reason);
121                                                 them->ChangeIdent(ConfEntry->ident);
122                                         }
123
124                                         if (!ConfEntry->host.empty())
125                                         {
126                                                 them->WriteServ("304 " + them->nick + " :Your host has been set to " + ConfEntry->host + " because you matched " + reason);
127                                                 them->ChangeDisplayedHost(ConfEntry->host);
128                                         }
129
130                                         nameExt.set(them, ConfEntry->name);
131                                         break;
132                                 }
133                                 case DNSBLConfEntry::I_KLINE:
134                                 {
135                                         KLine* kl = new KLine(ServerInstance->Time(), ConfEntry->duration, ServerInstance->Config->ServerName.c_str(), reason.c_str(),
136                                                         "*", them->GetIPString());
137                                         if (ServerInstance->XLines->AddLine(kl,NULL))
138                                         {
139                                                 std::string timestr = ServerInstance->TimeString(kl->expiry);
140                                                 ServerInstance->SNO->WriteGlobalSno('x',"K:line added due to DNSBL match on *@%s to expire on %s: %s",
141                                                         them->GetIPString().c_str(), timestr.c_str(), reason.c_str());
142                                                 ServerInstance->XLines->ApplyLines();
143                                         }
144                                         else
145                                                 delete kl;
146                                         break;
147                                 }
148                                 case DNSBLConfEntry::I_GLINE:
149                                 {
150                                         GLine* gl = new GLine(ServerInstance->Time(), ConfEntry->duration, ServerInstance->Config->ServerName.c_str(), reason.c_str(),
151                                                         "*", them->GetIPString());
152                                         if (ServerInstance->XLines->AddLine(gl,NULL))
153                                         {
154                                                 std::string timestr = ServerInstance->TimeString(gl->expiry);
155                                                 ServerInstance->SNO->WriteGlobalSno('x',"G:line added due to DNSBL match on *@%s to expire on %s: %s",
156                                                         them->GetIPString().c_str(), timestr.c_str(), reason.c_str());
157                                                 ServerInstance->XLines->ApplyLines();
158                                         }
159                                         else
160                                                 delete gl;
161                                         break;
162                                 }
163                                 case DNSBLConfEntry::I_ZLINE:
164                                 {
165                                         ZLine* zl = new ZLine(ServerInstance->Time(), ConfEntry->duration, ServerInstance->Config->ServerName.c_str(), reason.c_str(),
166                                                         them->GetIPString());
167                                         if (ServerInstance->XLines->AddLine(zl,NULL))
168                                         {
169                                                 std::string timestr = ServerInstance->TimeString(zl->expiry);
170                                                 ServerInstance->SNO->WriteGlobalSno('x',"Z:line added due to DNSBL match on *@%s to expire on %s: %s",
171                                                         them->GetIPString().c_str(), timestr.c_str(), reason.c_str());
172                                                 ServerInstance->XLines->ApplyLines();
173                                         }
174                                         else
175                                                 delete zl;
176                                         break;
177                                 }
178                                 case DNSBLConfEntry::I_UNKNOWN:
179                                 default:
180                                         break;
181                         }
182
183                         ServerInstance->SNO->WriteGlobalSno('a', "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);
184                 }
185                 else
186                         ConfEntry->stats_misses++;
187         }
188
189         void OnError(const DNS::Query *q) CXX11_OVERRIDE
190         {
191                 LocalUser* them = (LocalUser*)ServerInstance->FindUUID(theiruid);
192                 if (!them)
193                         return;
194
195                 int i = countExt.get(them);
196                 if (i)
197                         countExt.set(them, i - 1);
198
199                 if (q->error == DNS::ERROR_NO_RECORDS || q->error == DNS::ERROR_DOMAIN_NOT_FOUND)
200                         ConfEntry->stats_misses++;
201         }
202 };
203
204 class ModuleDNSBL : public Module
205 {
206         std::vector<reference<DNSBLConfEntry> > DNSBLConfEntries;
207         dynamic_reference<DNS::Manager> DNS;
208         LocalStringExt nameExt;
209         LocalIntExt countExt;
210
211         /*
212          *      Convert a string to EnumBanaction
213          */
214         DNSBLConfEntry::EnumBanaction str2banaction(const std::string &action)
215         {
216                 if(action.compare("KILL")==0)
217                         return DNSBLConfEntry::I_KILL;
218                 if(action.compare("KLINE")==0)
219                         return DNSBLConfEntry::I_KLINE;
220                 if(action.compare("ZLINE")==0)
221                         return DNSBLConfEntry::I_ZLINE;
222                 if(action.compare("GLINE")==0)
223                         return DNSBLConfEntry::I_GLINE;
224                 if(action.compare("MARK")==0)
225                         return DNSBLConfEntry::I_MARK;
226
227                 return DNSBLConfEntry::I_UNKNOWN;
228         }
229  public:
230         ModuleDNSBL() : DNS(this, "DNS"), nameExt("dnsbl_match", this), countExt("dnsbl_pending", this) { }
231
232         void init() CXX11_OVERRIDE
233         {
234                 ServerInstance->Modules->AddService(nameExt);
235                 ServerInstance->Modules->AddService(countExt);
236         }
237
238         Version GetVersion() CXX11_OVERRIDE
239         {
240                 return Version("Provides handling of DNS blacklists", VF_VENDOR);
241         }
242
243         /** Fill our conf vector with data
244          */
245         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
246         {
247                 DNSBLConfEntries.clear();
248
249                 ConfigTagList dnsbls = ServerInstance->Config->ConfTags("dnsbl");
250                 for(ConfigIter i = dnsbls.first; i != dnsbls.second; ++i)
251                 {
252                         ConfigTag* tag = i->second;
253                         reference<DNSBLConfEntry> e = new DNSBLConfEntry();
254
255                         e->name = tag->getString("name");
256                         e->ident = tag->getString("ident");
257                         e->host = tag->getString("host");
258                         e->reason = tag->getString("reason");
259                         e->domain = tag->getString("domain");
260
261                         if (tag->getString("type") == "bitmask")
262                         {
263                                 e->type = DNSBLConfEntry::A_BITMASK;
264                                 e->bitmask = tag->getInt("bitmask");
265                         }
266                         else
267                         {
268                                 memset(e->records, 0, sizeof(e->records));
269                                 e->type = DNSBLConfEntry::A_RECORD;
270                                 irc::portparser portrange(tag->getString("records"), false);
271                                 long item = -1;
272                                 while ((item = portrange.GetToken()))
273                                         e->records[item] = 1;
274                         }
275
276                         e->banaction = str2banaction(tag->getString("action"));
277                         e->duration = tag->getDuration("duration", 60, 1);
278
279                         /* Use portparser for record replies */
280
281                         /* yeah, logic here is a little messy */
282                         if ((e->bitmask <= 0) && (DNSBLConfEntry::A_BITMASK == e->type))
283                         {
284                                 std::string location = tag->getTagLocation();
285                                 ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(%s): invalid bitmask", location.c_str());
286                         }
287                         else if (e->name.empty())
288                         {
289                                 std::string location = tag->getTagLocation();
290                                 ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(%s): Invalid name", location.c_str());
291                         }
292                         else if (e->domain.empty())
293                         {
294                                 std::string location = tag->getTagLocation();
295                                 ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(%s): Invalid domain", location.c_str());
296                         }
297                         else if (e->banaction == DNSBLConfEntry::I_UNKNOWN)
298                         {
299                                 std::string location = tag->getTagLocation();
300                                 ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(%s): Invalid banaction", location.c_str());
301                         }
302                         else
303                         {
304                                 if (e->reason.empty())
305                                 {
306                                         std::string location = tag->getTagLocation();
307                                         ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(%s): empty reason, using defaults", location.c_str());
308                                         e->reason = "Your IP has been blacklisted.";
309                                 }
310
311                                 /* add it, all is ok */
312                                 DNSBLConfEntries.push_back(e);
313                         }
314                 }
315         }
316
317         void OnSetUserIP(LocalUser* user) CXX11_OVERRIDE
318         {
319                 if ((user->exempt) || (user->client_sa.sa.sa_family != AF_INET) || !DNS)
320                         return;
321
322                 if (user->MyClass)
323                 {
324                         if (!user->MyClass->config->getBool("usednsbl", true))
325                                 return;
326                 }
327                 else
328                         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "User has no connect class in OnSetUserIP");
329
330                 unsigned int a, b, c, d;
331                 d = (unsigned int) (user->client_sa.in4.sin_addr.s_addr >> 24) & 0xFF;
332                 c = (unsigned int) (user->client_sa.in4.sin_addr.s_addr >> 16) & 0xFF;
333                 b = (unsigned int) (user->client_sa.in4.sin_addr.s_addr >> 8) & 0xFF;
334                 a = (unsigned int) user->client_sa.in4.sin_addr.s_addr & 0xFF;
335
336                 const std::string reversedip = ConvToStr(d) + "." + ConvToStr(c) + "." + ConvToStr(b) + "." + ConvToStr(a);
337
338                 countExt.set(user, DNSBLConfEntries.size());
339
340                 // For each DNSBL, we will run through this lookup
341                 for (unsigned i = 0; i < DNSBLConfEntries.size(); ++i)
342                 {
343                         // Fill hostname with a dnsbl style host (d.c.b.a.domain.tld)
344                         std::string hostname = reversedip + "." + DNSBLConfEntries[i]->domain;
345
346                         /* now we'd need to fire off lookups for `hostname'. */
347                         DNSBLResolver *r = new DNSBLResolver(*this->DNS, this, nameExt, countExt, hostname, user, DNSBLConfEntries[i]);
348                         try
349                         {
350                                 this->DNS->Process(r);
351                         }
352                         catch (DNS::Exception &ex)
353                         {
354                                 delete r;
355                                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, std::string(ex.GetReason()));
356                         }
357
358                         if (user->quitting)
359                                 break;
360                 }
361         }
362
363         ModResult OnSetConnectClass(LocalUser* user, ConnectClass* myclass) CXX11_OVERRIDE
364         {
365                 std::string dnsbl;
366                 if (!myclass->config->readString("dnsbl", dnsbl))
367                         return MOD_RES_PASSTHRU;
368                 std::string* match = nameExt.get(user);
369                 std::string myname = match ? *match : "";
370                 if (dnsbl == myname)
371                         return MOD_RES_PASSTHRU;
372                 return MOD_RES_DENY;
373         }
374
375         ModResult OnCheckReady(LocalUser *user) CXX11_OVERRIDE
376         {
377                 if (countExt.get(user))
378                         return MOD_RES_DENY;
379                 return MOD_RES_PASSTHRU;
380         }
381
382         ModResult OnStats(char symbol, User* user, string_list &results) CXX11_OVERRIDE
383         {
384                 if (symbol != 'd')
385                         return MOD_RES_PASSTHRU;
386
387                 unsigned long total_hits = 0, total_misses = 0;
388
389                 for (std::vector<reference<DNSBLConfEntry> >::const_iterator i = DNSBLConfEntries.begin(); i != DNSBLConfEntries.end(); ++i)
390                 {
391                         total_hits += (*i)->stats_hits;
392                         total_misses += (*i)->stats_misses;
393
394                         results.push_back(ServerInstance->Config->ServerName + " 304 " + user->nick + " :DNSBLSTATS DNSbl \"" + (*i)->name + "\" had " +
395                                         ConvToStr((*i)->stats_hits) + " hits and " + ConvToStr((*i)->stats_misses) + " misses");
396                 }
397
398                 results.push_back(ServerInstance->Config->ServerName + " 304 " + user->nick + " :DNSBLSTATS Total hits: " + ConvToStr(total_hits));
399                 results.push_back(ServerInstance->Config->ServerName + " 304 " + user->nick + " :DNSBLSTATS Total misses: " + ConvToStr(total_misses));
400
401                 return MOD_RES_PASSTHRU;
402         }
403 };
404
405 MODULE_INIT(ModuleDNSBL)