]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_dnsbl.cpp
78d2478b069dc8f53f1e161693c6f42f30a6ea35
[user/henk/code/inspircd.git] / src / modules / m_dnsbl.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "xline.h"
16
17 #ifndef WINDOWS
18 #include <sys/types.h>
19 #include <sys/socket.h>
20 #include <netinet/in.h>
21 #include <arpa/inet.h>
22 #endif
23
24 /* $ModDesc: Provides handling of DNS blacklists */
25
26 /* Class holding data for a single entry */
27 class DNSBLConfEntry : public classbase
28 {
29         public:
30                 enum EnumBanaction { I_UNKNOWN, I_KILL, I_ZLINE, I_KLINE, I_GLINE };
31                 enum EnumType { A_RECORD, A_BITMASK };
32                 std::string name, domain, reason;
33                 EnumBanaction banaction;
34                 EnumType type;
35                 long duration;
36                 int bitmask;
37                 unsigned char records[256];
38                 unsigned long stats_hits, stats_misses;
39                 DNSBLConfEntry(): type(A_BITMASK),duration(86400),bitmask(0),stats_hits(0), stats_misses(0) {}
40                 ~DNSBLConfEntry() { }
41 };
42
43
44 /** Resolver for CGI:IRC hostnames encoded in ident/GECOS
45  */
46 class DNSBLResolver : public Resolver
47 {
48         int theirfd;
49         User* them;
50         DNSBLConfEntry *ConfEntry;
51
52  public:
53
54         DNSBLResolver(Module *me, InspIRCd *Instance, const std::string &hostname, User* u, int userfd, DNSBLConfEntry *conf, bool &cached)
55                 : Resolver(Instance, hostname, DNS_QUERY_A, cached, me)
56         {
57                 theirfd = userfd;
58                 them = u;
59                 ConfEntry = conf;
60         }
61
62         /* Note: This may be called multiple times for multiple A record results */
63         virtual void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached, int resultnum = 0)
64         {
65                 /* for bitmask reply types, we arent interested in any but the first result (number 0) */
66                 if ((ConfEntry->type == DNSBLConfEntry::A_BITMASK) && (resultnum))
67                         return;
68
69                 /* Check the user still exists */
70                 if ((them) && (them == ServerInstance->SE->GetRef(theirfd)))
71                 {
72                         // Now we calculate the bitmask: 256*(256*(256*a+b)+c)+d
73                         if(result.length())
74                         {
75                                 unsigned int bitmask = 0, record = 0;
76                                 bool match = false;
77                                 in_addr resultip;
78
79                                 inet_aton(result.c_str(), &resultip);
80
81                                 switch (ConfEntry->type)
82                                 {
83                                         case DNSBLConfEntry::A_BITMASK:
84                                                 bitmask = resultip.s_addr >> 24; /* Last octet (network byte order) */
85                                                 bitmask &= ConfEntry->bitmask;
86                                                 match = (bitmask != 0);
87                                         break;
88                                         case DNSBLConfEntry::A_RECORD:
89                                                 record = resultip.s_addr >> 24; /* Last octet */
90                                                 match = (ConfEntry->records[record] == 1);
91                                         break;
92                                 }
93
94                                 if (match)
95                                 {
96                                         std::string reason = ConfEntry->reason;
97                                         std::string::size_type x = reason.find("%ip%");
98                                         while (x != std::string::npos)
99                                         {
100                                                 reason.erase(x, 4);
101                                                 reason.insert(x, them->GetIPString());
102                                                 x = reason.find("%ip%");
103                                         }
104
105                                         ConfEntry->stats_hits++;
106
107                                         switch (ConfEntry->banaction)
108                                         {
109                                                 case DNSBLConfEntry::I_KILL:
110                                                 {
111                                                         ServerInstance->Users->QuitUser(them, std::string("Killed (") + reason + ")");
112                                                         break;
113                                                 }
114                                                 case DNSBLConfEntry::I_KLINE:
115                                                 {
116                                                         KLine* kl = new KLine(ServerInstance, ServerInstance->Time(), ConfEntry->duration, ServerInstance->Config->ServerName, reason.c_str(),
117                                                                         "*", them->GetIPString());
118                                                         if (ServerInstance->XLines->AddLine(kl,NULL))
119                                                         {
120                                                                 ServerInstance->XLines->ApplyLines();
121                                                         }
122                                                         else
123                                                                 delete kl;
124                                                         break;
125                                                 }
126                                                 case DNSBLConfEntry::I_GLINE:
127                                                 {
128                                                         GLine* gl = new GLine(ServerInstance, ServerInstance->Time(), ConfEntry->duration, ServerInstance->Config->ServerName, reason.c_str(),
129                                                                         "*", them->GetIPString());
130                                                         if (ServerInstance->XLines->AddLine(gl,NULL))
131                                                         {
132                                                                 ServerInstance->XLines->ApplyLines();
133                                                         }
134                                                         else
135                                                                 delete gl;
136                                                         break;
137                                                 }
138                                                 case DNSBLConfEntry::I_ZLINE:
139                                                 {
140                                                         ZLine* zl = new ZLine(ServerInstance, ServerInstance->Time(), ConfEntry->duration, ServerInstance->Config->ServerName, reason.c_str(),
141                                                                         them->GetIPString());
142                                                         if (ServerInstance->XLines->AddLine(zl,NULL))
143                                                         {
144                                                                 ServerInstance->XLines->ApplyLines();
145                                                         }
146                                                         else
147                                                                 delete zl;
148                                                         break;
149                                                 }
150                                                 case DNSBLConfEntry::I_UNKNOWN:
151                                                 {
152                                                         break;
153                                                 }
154                                                 break;
155                                         }
156
157                                         ServerInstance->SNO->WriteGlobalSno('a', "Connecting user %s detected as being on a DNS blacklist (%s) with result %d", them->GetFullRealHost().c_str(), ConfEntry->name.c_str(), (ConfEntry->type==DNSBLConfEntry::A_BITMASK) ? bitmask : record);
158                                 }
159                                 else
160                                         ConfEntry->stats_misses++;
161                         }
162                         else
163                                 ConfEntry->stats_misses++;
164                 }
165         }
166
167         virtual void OnError(ResolverError e, const std::string &errormessage)
168         {
169         }
170
171         virtual ~DNSBLResolver()
172         {
173         }
174 };
175
176 class ModuleDNSBL : public Module
177 {
178  private:
179         std::vector<DNSBLConfEntry *> DNSBLConfEntries;
180
181         /*
182          *      Convert a string to EnumBanaction
183          */
184         DNSBLConfEntry::EnumBanaction str2banaction(const std::string &action)
185         {
186                 if(action.compare("KILL")==0)
187                         return DNSBLConfEntry::I_KILL;
188                 if(action.compare("KLINE")==0)
189                         return DNSBLConfEntry::I_KLINE;
190                 if(action.compare("ZLINE")==0)
191                         return DNSBLConfEntry::I_ZLINE;
192                 if(action.compare("GLINE")==0)
193                         return DNSBLConfEntry::I_GLINE;
194
195                 return DNSBLConfEntry::I_UNKNOWN;
196         }
197  public:
198         ModuleDNSBL(InspIRCd *Me) : Module(Me)
199         {
200                 ReadConf();
201                 Implementation eventlist[] = { I_OnRehash, I_OnUserRegister, I_OnStats };
202                 ServerInstance->Modules->Attach(eventlist, this, 3);
203         }
204
205         virtual ~ModuleDNSBL()
206         {
207                 ClearEntries();
208         }
209
210         virtual Version GetVersion()
211         {
212                 return Version("$Id$", VF_VENDOR, API_VERSION);
213         }
214
215
216         /** Clear entries and free the mem it was using
217          */
218         void ClearEntries()
219         {
220                 for (std::vector<DNSBLConfEntry *>::iterator i = DNSBLConfEntries.begin(); i != DNSBLConfEntries.end(); i++)
221                         delete *i;
222                 DNSBLConfEntries.clear();
223         }
224
225         /** Fill our conf vector with data
226          */
227         virtual void ReadConf()
228         {
229                 ConfigReader *MyConf = new ConfigReader(ServerInstance);
230                 ClearEntries();
231
232                 for (int i=0; i< MyConf->Enumerate("dnsbl"); i++)
233                 {
234                         DNSBLConfEntry *e = new DNSBLConfEntry();
235
236                         e->name = MyConf->ReadValue("dnsbl", "name", i);
237                         e->reason = MyConf->ReadValue("dnsbl", "reason", i);
238                         e->domain = MyConf->ReadValue("dnsbl", "domain", i);
239
240                         if (MyConf->ReadValue("dnsbl", "type", i) == "bitmask")
241                         {
242                                 e->type = DNSBLConfEntry::A_BITMASK;
243                                 e->bitmask = MyConf->ReadInteger("dnsbl", "bitmask", i, false);
244                         }
245                         else
246                         {
247                                 memset(e->records, 0, sizeof(e->records));
248                                 e->type = DNSBLConfEntry::A_RECORD;
249                                 irc::portparser portrange(MyConf->ReadValue("dnsbl", "records", i), false);
250                                 long item = -1;
251                                 while ((item = portrange.GetToken()))
252                                         e->records[item] = 1;
253                         }
254
255                         e->banaction = str2banaction(MyConf->ReadValue("dnsbl", "action", i));
256                         e->duration = ServerInstance->Duration(MyConf->ReadValue("dnsbl", "duration", i));
257
258                         /* Use portparser for record replies */
259
260                         /* yeah, logic here is a little messy */
261                         if ((e->bitmask <= 0) && (DNSBLConfEntry::A_BITMASK == e->type))
262                         {
263                                 ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(#%d): invalid bitmask",i);
264                         }
265                         else if (e->name.empty())
266                         {
267                                 ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(#%d): Invalid name",i);
268                         }
269                         else if (e->domain.empty())
270                         {
271                                 ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(#%d): Invalid domain",i);
272                         }
273                         else if (e->banaction == DNSBLConfEntry::I_UNKNOWN)
274                         {
275                                 ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(#%d): Invalid banaction", i);
276                         }
277                         else
278                         {
279                                 if (e->reason.empty())
280                                 {
281                                         ServerInstance->SNO->WriteGlobalSno('a', "DNSBL(#%d): empty reason, using defaults",i);
282                                         e->reason = "Your IP has been blacklisted.";
283                                 }
284
285                                 /* add it, all is ok */
286                                 DNSBLConfEntries.push_back(e);
287                                 continue;
288                         }
289
290                         /* delete and drop it, error somewhere */
291                         delete e;
292                 }
293
294                 delete MyConf;
295         }
296
297         virtual void OnRehash(User* user, const std::string &parameter)
298         {
299                 ReadConf();
300         }
301
302         virtual int OnUserRegister(User* user)
303         {
304                 /* only do lookups on local users */
305                 if (IS_LOCAL(user))
306                 {
307                         /* following code taken from bopm, reverses an IP address. */
308                         struct in_addr in;
309                         unsigned char a, b, c, d;
310                         char reversedipbuf[128];
311                         std::string reversedip;
312                         bool success;
313
314                         success = inet_aton(user->GetIPString(), &in);
315
316                         if (!success)
317                                 return 0;
318
319                         d = (unsigned char) (in.s_addr >> 24) & 0xFF;
320                         c = (unsigned char) (in.s_addr >> 16) & 0xFF;
321                         b = (unsigned char) (in.s_addr >> 8) & 0xFF;
322                         a = (unsigned char) in.s_addr & 0xFF;
323
324                         snprintf(reversedipbuf, 128, "%d.%d.%d.%d", d, c, b, a);
325                         reversedip = std::string(reversedipbuf);
326
327                         // For each DNSBL, we will run through this lookup
328                         for (std::vector<DNSBLConfEntry *>::iterator i = DNSBLConfEntries.begin(); i != DNSBLConfEntries.end(); i++)
329                         {
330                                 // Fill hostname with a dnsbl style host (d.c.b.a.domain.tld)
331                                 std::string hostname = reversedip + "." + (*i)->domain;
332
333                                 /* now we'd need to fire off lookups for `hostname'. */
334                                 bool cached;
335                                 DNSBLResolver *r = new DNSBLResolver(this, ServerInstance, hostname, user, user->GetFd(), *i, cached);
336                                 ServerInstance->AddResolver(r, cached);
337                         }
338                 }
339
340                 /* don't do anything with this hot potato */
341                 return 0;
342         }
343
344         virtual int OnStats(char symbol, User* user, string_list &results)
345         {
346                 if (symbol != 'd')
347                         return 0;
348
349                 unsigned long total_hits = 0, total_misses = 0;
350
351                 for (std::vector<DNSBLConfEntry*>::iterator i = DNSBLConfEntries.begin(); i != DNSBLConfEntries.end(); i++)
352                 {
353                         total_hits += (*i)->stats_hits;
354                         total_misses += (*i)->stats_misses;
355
356                         results.push_back(std::string(ServerInstance->Config->ServerName) + " 304 " + user->nick + " :DNSBLSTATS DNSbl \"" + (*i)->name + "\" had " +
357                                         ConvToStr((*i)->stats_hits) + " hits and " + ConvToStr((*i)->stats_misses) + " misses");
358                 }
359
360                 results.push_back(std::string(ServerInstance->Config->ServerName) + " 304 " + user->nick + " :DNSBLSTATS Total hits: " + ConvToStr(total_hits));
361                 results.push_back(std::string(ServerInstance->Config->ServerName) + " 304 " + user->nick + " :DNSBLSTATS Total misses: " + ConvToStr(total_misses));
362
363                 return 0;
364         }
365 };
366
367 MODULE_INIT(ModuleDNSBL)