]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_dnsbl.cpp
Add cleanup of objects on readconf and in destructor.
[user/henk/code/inspircd.git] / src / modules / m_dnsbl.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include <sys/types.h>
15 #include <sys/socket.h>
16 #include <netinet/in.h>
17 #include <arpa/inet.h>
18 #include <stdint.h>
19 #include "inspircd.h"
20 #include "dns.h"
21 #include "users.h"
22 #include "channels.h"
23 #include "modules.h"
24
25 /* $ModDesc: Provides handling of DNS blacklists */
26
27 /* Class holding data for a single entry */
28 class DNSBLConfEntry
29 {
30         public:
31                 enum EnumBanaction { I_UNKNOWN, I_KILL, I_ZLINE, I_KLINE, I_GLINE };
32                 std::string name, domain, reason;
33                 EnumBanaction banaction;
34                 long duration;
35                 int bitmask;
36                 DNSBLConfEntry(): duration(86400),bitmask(0) {}
37 };
38
39
40 /** Resolver for CGI:IRC hostnames encoded in ident/GECOS
41  */
42 class DNSBLResolver : public Resolver
43 {
44         int theirfd;
45         userrec* them;
46         DNSBLConfEntry *ConfEntry;
47
48     public:
49         DNSBLResolver(Module *me, InspIRCd *ServerInstance, const std::string &hostname, userrec* u, int userfd, DNSBLConfEntry *conf)
50                 : Resolver(ServerInstance, hostname, DNS_QUERY_A, me)
51         {
52                 theirfd = userfd;
53                 them = u;
54                 ConfEntry = conf;
55         }
56
57         virtual void OnLookupComplete(const std::string &result)
58         {
59                 /* Check the user still exists */
60                 if ((them) && (them == ServerInstance->SE->GetRef(theirfd)))
61                 {
62                         ServerInstance->Log(DEBUG, "m_dnsbl:  %s got a result from dnsbl %s", them->nick, ConfEntry->name.c_str());
63
64                         // Now we calculate the bitmask: 256*(256*(256*a+b)+c)+d
65                         if(result.length())
66                         {
67                                 unsigned int bitmask=0;
68                                 unsigned int octetpos=0;
69                                 std::string tmp = result;
70
71                                 while(tmp.length()>0)
72                                 {
73                                         std::string octet;
74                                         /* Fix by brain, npos is -1, so unsigned int will never match */
75                                         std::string::size_type lastdot = tmp.rfind(".");
76
77                                         if (lastdot == std::string::npos)
78                                         {
79                                                 octet=tmp;
80                                                 tmp.clear();
81                                         }
82                                         else
83                                         {
84                                                 octet=tmp.substr(lastdot+1,tmp.length()-lastdot+1);
85                                                 tmp.resize(lastdot);
86                                         }
87
88                                         bitmask += (256 ^ octetpos) * atoi(octet.c_str());
89                                         octetpos += 1;
90                                 }
91
92                                 bitmask &= ConfEntry->bitmask;
93
94                                 if (bitmask != 0)
95                                 {
96                                         std::string reason = ConfEntry->reason;
97
98                                         while (int pos = reason.find("%ip%") != std::string::npos)
99                                         {
100                                                 reason.replace(pos, 4, them->GetIPString());
101                                         }
102
103                                         ServerInstance->WriteOpers("*** Connecting user %s detected as being on a DNS blacklist (%s) with result %d", them->GetFullRealHost(), ConfEntry->name.c_str(), bitmask);
104
105                                         switch (ConfEntry->banaction)
106                                         {
107                                                 case DNSBLConfEntry::I_KILL:
108                                                 {
109                                                         them->QuitUser(ServerInstance, them, std::string("Killed (") + reason + ")");
110                                                         break;
111                                                 }
112                                                 case DNSBLConfEntry::I_KLINE:
113                                                 {
114                                                         ServerInstance->AddKLine(ConfEntry->duration, ServerInstance->Config->ServerName, reason, std::string("*@") + them->GetIPString());
115                                                         break;
116                                                 }
117                                                 case DNSBLConfEntry::I_GLINE:
118                                                 {
119                                                         ServerInstance->AddGLine(ConfEntry->duration, ServerInstance->Config->ServerName, reason, std::string("*@") + them->GetIPString());
120                                                         break;
121                                                 }
122                                                 case DNSBLConfEntry::I_ZLINE:
123                                                 {
124                                                         ServerInstance->AddZLine(ConfEntry->duration, ServerInstance->Config->ServerName, reason, them->GetIPString());
125                                                         break;
126                                                 }
127                                                 case DNSBLConfEntry::I_UNKNOWN:
128                                                 {
129                                                         break;
130                                                 }
131                                                 break;
132                                         }
133                                 }
134                         }
135                 }
136         }
137
138         virtual void OnError(ResolverError e, const std::string &errormessage)
139         {
140                 /*
141                 this just means they don't appear in the respective dnsbl
142                 if ((them) && (them == ServerInstance->SE->GetRef(theirfd)))
143                 {
144                 }
145                 */
146                 /* Check the user still exists */
147                 if ((them) && (them == ServerInstance->SE->GetRef(theirfd)))
148                 {
149                         ServerInstance->Log(DEBUG, "m_dnsbl:  %s got an error while resolving for dnsbl %s", them->nick, ConfEntry->name.c_str());
150                 }
151         }
152  
153         virtual ~DNSBLResolver()
154         {
155         }
156 };
157
158 class ModuleDNSBL : public Module
159 {
160  private:
161         std::vector<DNSBLConfEntry *> DNSBLConfEntries;
162         
163         /*
164          *      Convert a string to EnumBanaction
165          */
166         DNSBLConfEntry::EnumBanaction str2banaction(const std::string &action)
167         {
168                 if(action.compare("KILL")==0)
169                         return DNSBLConfEntry::I_KILL;
170                 if(action.compare("KLINE")==0)
171                         return DNSBLConfEntry::I_KLINE;
172                 if(action.compare("ZLINE")==0)
173                         return DNSBLConfEntry::I_ZLINE;
174                 if(action.compare("GLINE")==0)
175                         return DNSBLConfEntry::I_GLINE;
176         
177                 return DNSBLConfEntry::I_UNKNOWN;
178         }
179  public:
180         ModuleDNSBL(InspIRCd *Me) : Module::Module(Me)
181         {
182                 ReadConf();
183         }
184         
185         virtual ~ModuleDNSBL()
186         {
187                 ClearEntries();
188         }
189         
190         virtual Version GetVersion()
191         {
192                 return Version(2, 0, 0, 0, 0, API_VERSION);
193         }
194
195         void Implements(char* List)
196         {
197                 List[I_OnRehash] = List[I_OnUserRegister] = 1;
198         }
199
200
201         void ClearEntries()
202         {
203                 std::vector<DNSBLConfEntry *>::iterator i, safei;
204                 while ((i = DNSBLConfEntries.begin()) != DNSBLConfEntries.end())
205                 {
206                         DNSBLConfEntries.erase(i);
207                         delete *i;
208                 }
209                 
210         }
211
212
213         /*
214          * Fill our conf vector with data
215          */     
216         virtual void ReadConf()
217         {
218                 ConfigReader *MyConf = new ConfigReader(ServerInstance);
219                 ClearEntries();
220
221                 for (int i=0; i< MyConf->Enumerate("dnsbl"); i++)
222                 {
223                         DNSBLConfEntry *e = new DNSBLConfEntry();
224
225                         e->name = MyConf->ReadValue("dnsbl", "name", i);
226                         e->reason = MyConf->ReadValue("dnsbl", "reason", i);
227                         e->domain = MyConf->ReadValue("dnsbl", "domain", i);
228                         e->banaction = str2banaction(MyConf->ReadValue("dnsbl", "action", i));
229                         e->duration = ServerInstance->Duration(MyConf->ReadValue("dnsbl", "duration", i).c_str());
230                         e->bitmask = MyConf->ReadInteger("dnsbl", "bitmask", i, false);
231
232                         /* yeah, logic here is a little messy */
233                         if (e->bitmask <= 0)
234                         {
235                                 ServerInstance->WriteOpers("*** DNSBL(#%d): invalid bitmask",i);
236                         }
237                         else if (e->name == "")
238                         {
239                                 ServerInstance->WriteOpers("*** DNSBL(#%d): Invalid name",i);
240                         }
241                         else if (e->domain == "")
242                         {
243                                 ServerInstance->WriteOpers("*** DNSBL(#%d): Invalid domain",i);
244                         }
245                         else if (e->banaction == DNSBLConfEntry::I_UNKNOWN)
246                         {
247                                 ServerInstance->WriteOpers("*** DNSBL(#%d): Invalid banaction", i);
248                         }
249                         else
250                         {
251                                 if (e->reason == "")
252                                 {
253                                         ServerInstance->WriteOpers("*** DNSBL(#%d): empty reason, using defaults",i);
254                                         e->reason = "Your IP has been blacklisted.";
255                                 }
256
257                                 /* add it, all is ok */
258                                 DNSBLConfEntries.push_back(e);
259                                 continue;
260                         }
261
262                         /* delete and drop it, error somewhere */
263                         delete e;
264                 }
265
266                 delete MyConf;
267         }
268         
269         
270         virtual void OnRehash(const std::string &parameter)
271         {
272                 ReadConf();
273         }
274
275         /*
276          * We will check each user that connects *locally* (userrec::fd>0)
277          */
278         virtual int OnUserRegister(userrec* user)
279         {
280                 if (IS_LOCAL(user))
281                 {
282                         /* following code taken from bopm, reverses an IP address. */
283                         struct in_addr in;
284                         unsigned char a, b, c, d;
285                         char reversedipbuf[128];
286                         std::string reversedip;
287
288                         if (!inet_aton(user->GetIPString(), &in))
289                         {
290                                 ServerInstance->WriteOpers("Invalid IP address in m_dnsbl! Bailing check");
291                                 return 0;
292                         }
293
294                         d = (unsigned char) (in.s_addr >> 24) & 0xFF;
295                         c = (unsigned char) (in.s_addr >> 16) & 0xFF;
296                         b = (unsigned char) (in.s_addr >> 8) & 0xFF;
297                         a = (unsigned char) in.s_addr & 0xFF;
298
299                         snprintf(reversedipbuf, 128, "%d.%d.%d.%d", d, c, b, a);
300                         reversedip = std::string(reversedipbuf);
301
302 /*
303         this is satmd's old code
304                         std::string reversedip;
305                         std::string userip = user->GetIPString();
306                         std::string tempip = userip;
307
308                         // reversedip will created in there
309                         while (tempip.length()>0)
310                         {
311                                 unsigned int lastdot=tempip.rfind(".");
312                                 if (lastdot == std::string::npos)
313                                 {
314                                         reversedip+=tempip;
315                                         tempip.clear();
316                                 }
317                                 else
318                                 {
319                                         reversedip += tempip.substr(lastdot+1,tempip.length()-lastdot+1);
320                                         reversedip += ".";
321                                         tempip.resize(lastdot);
322                                 }
323                         }
324 */
325                 
326                         // For each DNSBL, we will run through this lookup
327                         for (std::vector<DNSBLConfEntry *>::iterator i = DNSBLConfEntries.begin(); i != DNSBLConfEntries.end(); i++)
328                         {
329                                 // Fill hostname with a dnsbl style host (d.c.b.a.domain.tld)
330                                 std::string hostname=reversedip+"."+ (*i)->domain;
331
332                                 ServerInstance->Log(DEBUG, "m_dnsbl: sending %s for resolution", hostname.c_str());
333
334                                 /* now we'd need to fire off lookups for `hostname'. */
335                                 DNSBLResolver *r = new DNSBLResolver(this, ServerInstance, hostname, user, user->GetFd(), *i);
336                                 ServerInstance->AddResolver(r);
337                         }
338                 }
339
340                 /* don't do anything with this hot potato */
341                 return 0;
342         }
343 };
344
345 // stuff down here is the module-factory stuff.
346
347 class ModuleDNSBLFactory : public ModuleFactory
348 {
349  public:
350         ModuleDNSBLFactory()
351         {
352         }
353         
354         ~ModuleDNSBLFactory()
355         {
356         }
357         
358         virtual Module *CreateModule(InspIRCd *Me)
359         {
360                 return new ModuleDNSBL(Me);
361         }
362         
363 };
364
365
366 extern "C" void * init_module( void )
367 {
368         return new ModuleDNSBLFactory;
369 }
370