]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_dnsbl.cpp
Use WriteNumeric() everywhere we send numerics and include the user's nick automatically
[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->WriteNumeric(304, ":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->WriteNumeric(304, ":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         Version GetVersion() CXX11_OVERRIDE
233         {
234                 return Version("Provides handling of DNS blacklists", VF_VENDOR);
235         }
236
237         /** Fill our conf vector with data
238          */
239         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
240         {
241                 DNSBLConfEntries.clear();
242
243                 ConfigTagList dnsbls = ServerInstance->Config->ConfTags("dnsbl");
244                 for(ConfigIter i = dnsbls.first; i != dnsbls.second; ++i)
245                 {
246                         ConfigTag* tag = i->second;
247                         reference<DNSBLConfEntry> e = new DNSBLConfEntry();
248
249                         e->name = tag->getString("name");
250                         e->ident = tag->getString("ident");
251                         e->host = tag->getString("host");
252                         e->reason = tag->getString("reason");
253                         e->domain = tag->getString("domain");
254
255                         if (tag->getString("type") == "bitmask")
256                         {
257                                 e->type = DNSBLConfEntry::A_BITMASK;
258                                 e->bitmask = tag->getInt("bitmask");
259                         }
260                         else
261                         {
262                                 memset(e->records, 0, sizeof(e->records));
263                                 e->type = DNSBLConfEntry::A_RECORD;
264                                 irc::portparser portrange(tag->getString("records"), false);
265                                 long item = -1;
266                                 while ((item = portrange.GetToken()))
267                                         e->records[item] = 1;
268                         }
269
270                         e->banaction = str2banaction(tag->getString("action"));
271                         e->duration = tag->getDuration("duration", 60, 1);
272
273                         /* Use portparser for record replies */
274
275                         /* yeah, logic here is a little messy */
276                         if ((e->bitmask <= 0) && (DNSBLConfEntry::A_BITMASK == e->type))
277                         {
278                                 std::string location = tag->getTagLocation();
279                                 ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(%s): invalid bitmask", location.c_str());
280                         }
281                         else if (e->name.empty())
282                         {
283                                 std::string location = tag->getTagLocation();
284                                 ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(%s): Invalid name", location.c_str());
285                         }
286                         else if (e->domain.empty())
287                         {
288                                 std::string location = tag->getTagLocation();
289                                 ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(%s): Invalid domain", location.c_str());
290                         }
291                         else if (e->banaction == DNSBLConfEntry::I_UNKNOWN)
292                         {
293                                 std::string location = tag->getTagLocation();
294                                 ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(%s): Invalid banaction", location.c_str());
295                         }
296                         else
297                         {
298                                 if (e->reason.empty())
299                                 {
300                                         std::string location = tag->getTagLocation();
301                                         ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(%s): empty reason, using defaults", location.c_str());
302                                         e->reason = "Your IP has been blacklisted.";
303                                 }
304
305                                 /* add it, all is ok */
306                                 DNSBLConfEntries.push_back(e);
307                         }
308                 }
309         }
310
311         void OnSetUserIP(LocalUser* user) CXX11_OVERRIDE
312         {
313                 if ((user->exempt) || (user->client_sa.sa.sa_family != AF_INET) || !DNS)
314                         return;
315
316                 if (user->MyClass)
317                 {
318                         if (!user->MyClass->config->getBool("usednsbl", true))
319                                 return;
320                 }
321                 else
322                         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "User has no connect class in OnSetUserIP");
323
324                 unsigned int a, b, c, d;
325                 d = (unsigned int) (user->client_sa.in4.sin_addr.s_addr >> 24) & 0xFF;
326                 c = (unsigned int) (user->client_sa.in4.sin_addr.s_addr >> 16) & 0xFF;
327                 b = (unsigned int) (user->client_sa.in4.sin_addr.s_addr >> 8) & 0xFF;
328                 a = (unsigned int) user->client_sa.in4.sin_addr.s_addr & 0xFF;
329
330                 const std::string reversedip = ConvToStr(d) + "." + ConvToStr(c) + "." + ConvToStr(b) + "." + ConvToStr(a);
331
332                 countExt.set(user, DNSBLConfEntries.size());
333
334                 // For each DNSBL, we will run through this lookup
335                 for (unsigned i = 0; i < DNSBLConfEntries.size(); ++i)
336                 {
337                         // Fill hostname with a dnsbl style host (d.c.b.a.domain.tld)
338                         std::string hostname = reversedip + "." + DNSBLConfEntries[i]->domain;
339
340                         /* now we'd need to fire off lookups for `hostname'. */
341                         DNSBLResolver *r = new DNSBLResolver(*this->DNS, this, nameExt, countExt, hostname, user, DNSBLConfEntries[i]);
342                         try
343                         {
344                                 this->DNS->Process(r);
345                         }
346                         catch (DNS::Exception &ex)
347                         {
348                                 delete r;
349                                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, std::string(ex.GetReason()));
350                         }
351
352                         if (user->quitting)
353                                 break;
354                 }
355         }
356
357         ModResult OnSetConnectClass(LocalUser* user, ConnectClass* myclass) CXX11_OVERRIDE
358         {
359                 std::string dnsbl;
360                 if (!myclass->config->readString("dnsbl", dnsbl))
361                         return MOD_RES_PASSTHRU;
362                 std::string* match = nameExt.get(user);
363                 std::string myname = match ? *match : "";
364                 if (dnsbl == myname)
365                         return MOD_RES_PASSTHRU;
366                 return MOD_RES_DENY;
367         }
368
369         ModResult OnCheckReady(LocalUser *user) CXX11_OVERRIDE
370         {
371                 if (countExt.get(user))
372                         return MOD_RES_DENY;
373                 return MOD_RES_PASSTHRU;
374         }
375
376         ModResult OnStats(char symbol, User* user, string_list &results) CXX11_OVERRIDE
377         {
378                 if (symbol != 'd')
379                         return MOD_RES_PASSTHRU;
380
381                 unsigned long total_hits = 0, total_misses = 0;
382
383                 for (std::vector<reference<DNSBLConfEntry> >::const_iterator i = DNSBLConfEntries.begin(); i != DNSBLConfEntries.end(); ++i)
384                 {
385                         total_hits += (*i)->stats_hits;
386                         total_misses += (*i)->stats_misses;
387
388                         results.push_back(ServerInstance->Config->ServerName + " 304 " + user->nick + " :DNSBLSTATS DNSbl \"" + (*i)->name + "\" had " +
389                                         ConvToStr((*i)->stats_hits) + " hits and " + ConvToStr((*i)->stats_misses) + " misses");
390                 }
391
392                 results.push_back(ServerInstance->Config->ServerName + " 304 " + user->nick + " :DNSBLSTATS Total hits: " + ConvToStr(total_hits));
393                 results.push_back(ServerInstance->Config->ServerName + " 304 " + user->nick + " :DNSBLSTATS Total misses: " + ConvToStr(total_misses));
394
395                 return MOD_RES_PASSTHRU;
396         }
397 };
398
399 MODULE_INIT(ModuleDNSBL)