]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_cgiirc.cpp
Make CGI:IRC host resolution block registration, fixes bug #1
[user/henk/code/inspircd.git] / src / modules / m_cgiirc.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 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
16 #ifndef WINDOWS
17 #include <sys/socket.h>
18 #include <netinet/in.h>
19 #include <arpa/inet.h>
20 #endif
21
22 /* $ModDesc: Change user's hosts connecting from known CGI:IRC hosts */
23
24 enum CGItype { INVALID, PASS, IDENT, PASSFIRST, IDENTFIRST, WEBIRC };
25
26
27 /** Holds a CGI site's details
28  */
29 class CGIhost
30 {
31 public:
32         std::string hostmask;
33         CGItype type;
34         std::string password;
35
36         CGIhost(const std::string &mask = "", CGItype t = IDENTFIRST, const std::string &spassword ="")
37         : hostmask(mask), type(t), password(spassword)
38         {
39         }
40 };
41 typedef std::vector<CGIhost> CGIHostlist;
42
43 /*
44  * WEBIRC
45  *  This is used for the webirc method of CGIIRC auth, and is (really) the best way to do these things.
46  *  Syntax: WEBIRC password client hostname ip
47  *  Where password is a shared key, client is the name of the "client" and version (e.g. cgiirc), hostname
48  *  is the resolved host of the client issuing the command and IP is the real IP of the client.
49  *
50  * How it works:
51  *  To tie in with the rest of cgiirc module, and to avoid race conditions, /webirc is only processed locally
52  *  and simply sets metadata on the user, which is later decoded on full connect to give something meaningful.
53  */
54 class CommandWebirc : public Command
55 {
56         bool notify;
57  public:
58         StringExtItem realhost;
59         StringExtItem realip;
60         LocalStringExt webirc_hostname;
61         LocalStringExt webirc_ip;
62
63         CGIHostlist Hosts;
64         CommandWebirc(Module* Creator, bool bnotify)
65                 : Command(Creator, "WEBIRC", 4), notify(bnotify),
66                   realhost("cgiirc_realhost", Creator), realip("cgiirc_realip", Creator),
67                   webirc_hostname("cgiirc_webirc_hostname", Creator), webirc_ip("cgiirc_webirc_ip", Creator)
68                 {
69                         works_before_reg = true;
70                         this->syntax = "password client hostname ip";
71                 }
72                 CmdResult Handle(const std::vector<std::string> &parameters, User *user)
73                 {
74                         if(user->registered == REG_ALL)
75                                 return CMD_FAILURE;
76
77                         for(CGIHostlist::iterator iter = Hosts.begin(); iter != Hosts.end(); iter++)
78                         {
79                                 if(InspIRCd::Match(user->host, iter->hostmask, ascii_case_insensitive_map) || InspIRCd::MatchCIDR(user->GetIPString(), iter->hostmask, ascii_case_insensitive_map))
80                                 {
81                                         if(iter->type == WEBIRC && parameters[0] == iter->password)
82                                         {
83                                                 realhost.set(user, user->host);
84                                                 realip.set(user, user->GetIPString());
85                                                 if (notify)
86                                                         ServerInstance->SNO->WriteGlobalSno('a', "Connecting user %s detected as using CGI:IRC (%s), changing real host to %s from %s", user->nick.c_str(), user->host.c_str(), parameters[2].c_str(), user->host.c_str());
87                                                 webirc_hostname.set(user, parameters[2]);
88                                                 webirc_ip.set(user, parameters[3]);
89                                                 return CMD_SUCCESS;
90                                         }
91                                 }
92                         }
93
94                         ServerInstance->SNO->WriteGlobalSno('a', "Connecting user %s tried to use WEBIRC, but didn't match any configured webirc blocks.", user->GetFullRealHost().c_str());
95                         return CMD_FAILURE;
96                 }
97 };
98
99
100 /** Resolver for CGI:IRC hostnames encoded in ident/GECOS
101  */
102 class CGIResolver : public Resolver
103 {
104         std::string typ;
105         std::string theiruid;
106         LocalIntExt& waiting;
107         bool notify;
108  public:
109         CGIResolver(Module* me, bool NotifyOpers, const std::string &source, bool forward, LocalUser* u,
110                         const std::string &type, bool &cached, LocalIntExt& ext)
111                 : Resolver(source, forward ? DNS_QUERY_A : DNS_QUERY_PTR4, cached, me), typ(type), theiruid(u->uuid),
112                 waiting(ext), notify(NotifyOpers)
113         {
114         }
115
116         virtual void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached)
117         {
118                 /* Check the user still exists */
119                 User* them = ServerInstance->FindUUID(theiruid);
120                 if (them)
121                 {
122                         if (notify)
123                                 ServerInstance->SNO->WriteGlobalSno('a', "Connecting user %s detected as using CGI:IRC (%s), changing real host to %s from %s", them->nick.c_str(), them->host.c_str(), result.c_str(), typ.c_str());
124
125                         if (result.length() > 64)
126                                 return;
127                         them->host = result;
128                         them->dhost = result;
129                         them->InvalidateCache();
130                         them->CheckLines(true);
131                 }
132         }
133
134         virtual void OnError(ResolverError e, const std::string &errormessage)
135         {
136                 User* them = ServerInstance->FindUUID(theiruid);
137                 if (them)
138                 {
139                         if (notify)
140                                 ServerInstance->SNO->WriteToSnoMask('a', "Connecting user %s detected as using CGI:IRC (%s), but their host can't be resolved from their %s!", them->nick.c_str(), them->host.c_str(), typ.c_str());
141                 }
142         }
143
144         virtual ~CGIResolver()
145         {
146                 User* them = ServerInstance->FindUUID(theiruid);
147                 if (!them)
148                         return;
149                 int count = waiting.get(them);
150                 if (count)
151                         waiting.set(them, count - 1);
152         }
153 };
154
155 class ModuleCgiIRC : public Module
156 {
157         CommandWebirc cmd;
158         LocalIntExt waiting;
159         bool NotifyOpers;
160 public:
161         ModuleCgiIRC() : cmd(this, NotifyOpers), waiting("cgiirc-delay", this)
162         {
163         }
164
165         void init()
166         {
167                 OnRehash(NULL);
168                 ServerInstance->AddCommand(&cmd);
169                 ServerInstance->Extensions.Register(&cmd.realhost);
170                 ServerInstance->Extensions.Register(&cmd.realip);
171                 ServerInstance->Extensions.Register(&cmd.webirc_hostname);
172                 ServerInstance->Extensions.Register(&cmd.webirc_ip);
173
174                 Implementation eventlist[] = { I_OnRehash, I_OnUserRegister, I_OnCheckReady, I_OnUserConnect };
175                 ServerInstance->Modules->Attach(eventlist, this, 4);
176         }
177
178         void Prioritize()
179         {
180                 ServerInstance->Modules->SetPriority(this, I_OnUserConnect, PRIORITY_FIRST);
181         }
182
183         void OnRehash(User* user)
184         {
185                 cmd.Hosts.clear();
186
187                 // Do we send an oper notice when a CGI:IRC has their host changed?
188                 NotifyOpers = ServerInstance->Config->ConfValue("cgiirc")->getBool("opernotice", true);
189
190                 ConfigTagList tags = ServerInstance->Config->ConfTags("cgihost");
191                 for (ConfigIter i = tags.first; i != tags.second; ++i)
192                 {
193                         ConfigTag* tag = i->second;
194                         std::string hostmask = tag->getString("mask"); // An allowed CGI:IRC host
195                         std::string type = tag->getString("type"); // What type of user-munging we do on this host.
196                         std::string password = tag->getString("password");
197
198                         if(hostmask.length())
199                         {
200                                 if (type == "webirc" && !password.length()) {
201                                                 ServerInstance->Logs->Log("CONFIG",DEFAULT, "m_cgiirc: Missing password in config: %s", hostmask.c_str());
202                                 }
203                                 else
204                                 {
205                                         CGItype cgitype = INVALID;
206                                         if (type == "pass")
207                                                 cgitype = PASS;
208                                         else if (type == "ident")
209                                                 cgitype = IDENT;
210                                         else if (type == "passfirst")
211                                                 cgitype = PASSFIRST;
212                                         else if (type == "webirc")
213                                         {
214                                                 cgitype = WEBIRC;
215                                         }
216
217                                         if (cgitype == INVALID)
218                                                 cgitype = PASS;
219
220                                         cmd.Hosts.push_back(CGIhost(hostmask,cgitype, password.length() ? password : "" ));
221                                 }
222                         }
223                         else
224                         {
225                                 ServerInstance->Logs->Log("CONFIG",DEFAULT, "m_cgiirc.so: Invalid <cgihost:mask> value in config: %s", hostmask.c_str());
226                                 continue;
227                         }
228                 }
229         }
230
231         ModResult OnCheckReady(LocalUser *user)
232         {
233                 if (waiting.get(user))
234                         return MOD_RES_DENY;
235                 return MOD_RES_PASSTHRU;
236         }
237
238         ModResult OnUserRegister(LocalUser* user)
239         {
240                 for(CGIHostlist::iterator iter = cmd.Hosts.begin(); iter != cmd.Hosts.end(); iter++)
241                 {
242                         if(InspIRCd::Match(user->host, iter->hostmask, ascii_case_insensitive_map) || InspIRCd::MatchCIDR(user->GetIPString(), iter->hostmask, ascii_case_insensitive_map))
243                         {
244                                 // Deal with it...
245                                 if(iter->type == PASS)
246                                 {
247                                         CheckPass(user); // We do nothing if it fails so...
248                                         user->CheckLines(true);
249                                 }
250                                 else if(iter->type == PASSFIRST && !CheckPass(user))
251                                 {
252                                         // If the password lookup failed, try the ident
253                                         CheckIdent(user);       // If this fails too, do nothing
254                                         user->CheckLines(true);
255                                 }
256                                 else if(iter->type == IDENT)
257                                 {
258                                         CheckIdent(user); // Nothing on failure.
259                                         user->CheckLines(true);
260                                 }
261                                 else if(iter->type == IDENTFIRST && !CheckIdent(user))
262                                 {
263                                         // If the ident lookup fails, try the password.
264                                         CheckPass(user);
265                                         user->CheckLines(true);
266                                 }
267                                 else if(iter->type == WEBIRC)
268                                 {
269                                         // We don't need to do anything here
270                                 }
271                                 return MOD_RES_PASSTHRU;
272                         }
273                 }
274                 return MOD_RES_PASSTHRU;
275         }
276
277         virtual void OnUserConnect(LocalUser* user)
278         {
279                 std::string *webirc_hostname = cmd.webirc_hostname.get(user);
280                 std::string *webirc_ip = cmd.webirc_ip.get(user);
281                 if (webirc_hostname && webirc_hostname->length() < 64)
282                 {
283                         user->host = *webirc_hostname;
284                         user->dhost = *webirc_hostname;
285                         user->InvalidateCache();
286                 }
287                 if (webirc_ip)
288                 {
289                         ServerInstance->Users->RemoveCloneCounts(user);
290                         user->SetClientIP(webirc_ip->c_str());
291                         user->InvalidateCache();
292                         cmd.webirc_ip.unset(user);
293                         ServerInstance->Users->AddLocalClone(user);
294                         ServerInstance->Users->AddGlobalClone(user);
295                         user->SetClass();
296                         user->CheckClass();
297                         user->CheckLines(true);
298                 }
299                 cmd.webirc_hostname.unset(user);
300         }
301
302         bool CheckPass(LocalUser* user)
303         {
304                 if(IsValidHost(user->password))
305                 {
306                         cmd.realhost.set(user, user->host);
307                         cmd.realip.set(user, user->GetIPString());
308                         user->host = user->password;
309                         user->dhost = user->password;
310                         user->InvalidateCache();
311
312                         ServerInstance->Users->RemoveCloneCounts(user);
313                         user->SetClientIP(user->password.c_str());
314                         ServerInstance->Users->AddLocalClone(user);
315                         ServerInstance->Users->AddGlobalClone(user);
316                         user->SetClass();
317                         user->CheckClass();
318
319                         try
320                         {
321                                 bool cached;
322                                 CGIResolver* r = new CGIResolver(this, NotifyOpers, user->password, false, user, "PASS", cached, waiting);
323                                 ServerInstance->AddResolver(r, cached);
324                                 waiting.set(user, waiting.get(user) + 1);
325                         }
326                         catch (...)
327                         {
328                                 if (NotifyOpers)
329                                         ServerInstance->SNO->WriteToSnoMask('a', "Connecting user %s detected as using CGI:IRC (%s), but I could not resolve their hostname!", user->nick.c_str(), user->host.c_str());
330                         }
331
332                         user->password.clear();
333                         return true;
334                 }
335
336                 return false;
337         }
338
339         bool CheckIdent(LocalUser* user)
340         {
341                 const char* ident;
342                 int len = user->ident.length();
343                 in_addr newip;
344
345                 if(len == 8)
346                         ident = user->ident.c_str();
347                 else if(len == 9 && user->ident[0] == '~')
348                         ident = user->ident.c_str() + 1;
349                 else
350                         return false;
351
352                 errno = 0;
353                 unsigned long ipaddr = strtoul(ident, NULL, 16);
354                 if (errno)
355                         return false;
356                 newip.s_addr = htonl(ipaddr);
357                 char* newipstr = inet_ntoa(newip);
358
359                 cmd.realhost.set(user, user->host);
360                 cmd.realip.set(user, user->GetIPString());
361                 ServerInstance->Users->RemoveCloneCounts(user);
362                 user->SetClientIP(newipstr);
363                 ServerInstance->Users->AddLocalClone(user);
364                 ServerInstance->Users->AddGlobalClone(user);
365                 user->SetClass();
366                 user->CheckClass();
367                 user->host = newipstr;
368                 user->dhost = newipstr;
369                 user->ident.assign("~cgiirc", 0, 8);
370                 try
371                 {
372
373                         bool cached;
374                         CGIResolver* r = new CGIResolver(this, NotifyOpers, newipstr, false, user, "IDENT", cached, waiting);
375                         ServerInstance->AddResolver(r, cached);
376                         waiting.set(user, waiting.get(user) + 1);
377                 }
378                 catch (...)
379                 {
380                         user->InvalidateCache();
381
382                         if(NotifyOpers)
383                                  ServerInstance->SNO->WriteToSnoMask('a', "Connecting user %s detected as using CGI:IRC (%s), but I could not resolve their hostname!", user->nick.c_str(), user->host.c_str());
384                 }
385
386                 return true;
387         }
388
389         bool IsValidHost(const std::string &host)
390         {
391                 if(!host.size() || host.size() > 64)
392                         return false;
393
394                 for(unsigned int i = 0; i < host.size(); i++)
395                 {
396                         if(     ((host[i] >= '0') && (host[i] <= '9')) ||
397                                         ((host[i] >= 'A') && (host[i] <= 'Z')) ||
398                                         ((host[i] >= 'a') && (host[i] <= 'z')) ||
399                                         ((host[i] == '-') && (i > 0) && (i+1 < host.size()) && (host[i-1] != '.') && (host[i+1] != '.')) ||
400                                         ((host[i] == '.') && (i > 0) && (i+1 < host.size())) )
401
402                                 continue;
403                         else
404                                 return false;
405                 }
406
407                 return true;
408         }
409
410         bool IsValidIP(const std::string &ip)
411         {
412                 if(ip.size() < 7 || ip.size() > 15)
413                         return false;
414
415                 short sincedot = 0;
416                 short dots = 0;
417
418                 for(unsigned int i = 0; i < ip.size(); i++)
419                 {
420                         if((dots <= 3) && (sincedot <= 3))
421                         {
422                                 if((ip[i] >= '0') && (ip[i] <= '9'))
423                                 {
424                                         sincedot++;
425                                 }
426                                 else if(ip[i] == '.')
427                                 {
428                                         sincedot = 0;
429                                         dots++;
430                                 }
431                         }
432                         else
433                         {
434                                 return false;
435
436                         }
437                 }
438
439                 if(dots != 3)
440                         return false;
441
442                 return true;
443         }
444
445         virtual ~ModuleCgiIRC()
446         {
447         }
448
449         virtual Version GetVersion()
450         {
451                 return Version("Change user's hosts connecting from known CGI:IRC hosts",VF_VENDOR);
452         }
453
454 };
455
456 MODULE_INIT(ModuleCgiIRC)