]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_cgiirc.cpp
Merge pull request #563 from ElementalAlchemist/patch-1
[user/henk/code/inspircd.git] / src / modules / m_cgiirc.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007-2008 John Brooks <john.brooks@dereferenced.net>
6  *   Copyright (C) 2008 Pippijn van Steenhoven <pip88nl@gmail.com>
7  *   Copyright (C) 2006-2008 Craig Edwards <craigedwards@brainbox.cc>
8  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
9  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
10  *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
11  *
12  * This file is part of InspIRCd.  InspIRCd is free software: you can
13  * redistribute it and/or modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation, version 2.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25
26 #include "inspircd.h"
27 #include "xline.h"
28
29 /* $ModDesc: Change user's hosts connecting from known CGI:IRC hosts */
30
31 enum CGItype { PASS, IDENT, PASSFIRST, IDENTFIRST, WEBIRC };
32
33
34 /** Holds a CGI site's details
35  */
36 class CGIhost
37 {
38 public:
39         std::string hostmask;
40         CGItype type;
41         std::string password;
42
43         CGIhost(const std::string &mask, CGItype t, const std::string &spassword)
44         : hostmask(mask), type(t), password(spassword)
45         {
46         }
47 };
48 typedef std::vector<CGIhost> CGIHostlist;
49
50 /*
51  * WEBIRC
52  *  This is used for the webirc method of CGIIRC auth, and is (really) the best way to do these things.
53  *  Syntax: WEBIRC password client hostname ip
54  *  Where password is a shared key, client is the name of the "client" and version (e.g. cgiirc), hostname
55  *  is the resolved host of the client issuing the command and IP is the real IP of the client.
56  *
57  * How it works:
58  *  To tie in with the rest of cgiirc module, and to avoid race conditions, /webirc is only processed locally
59  *  and simply sets metadata on the user, which is later decoded on full connect to give something meaningful.
60  */
61 class CommandWebirc : public Command
62 {
63  public:
64         bool notify;
65         StringExtItem realhost;
66         StringExtItem realip;
67         LocalStringExt webirc_hostname;
68         LocalStringExt webirc_ip;
69
70         CGIHostlist Hosts;
71         CommandWebirc(Module* Creator)
72                 : Command(Creator, "WEBIRC", 4),
73                   realhost("cgiirc_realhost", Creator), realip("cgiirc_realip", Creator),
74                   webirc_hostname("cgiirc_webirc_hostname", Creator), webirc_ip("cgiirc_webirc_ip", Creator)
75                 {
76                         works_before_reg = true;
77                         this->syntax = "password client hostname ip";
78                 }
79                 CmdResult Handle(const std::vector<std::string> &parameters, User *user)
80                 {
81                         if(user->registered == REG_ALL)
82                                 return CMD_FAILURE;
83
84                         for(CGIHostlist::iterator iter = Hosts.begin(); iter != Hosts.end(); iter++)
85                         {
86                                 if(InspIRCd::Match(user->host, iter->hostmask, ascii_case_insensitive_map) || InspIRCd::MatchCIDR(user->GetIPString(), iter->hostmask, ascii_case_insensitive_map))
87                                 {
88                                         if(iter->type == WEBIRC && parameters[0] == iter->password)
89                                         {
90                                                 realhost.set(user, user->host);
91                                                 realip.set(user, user->GetIPString());
92
93                                                 bool host_ok = (parameters[2].length() < 64);
94                                                 const std::string& newhost = (host_ok ? parameters[2] : parameters[3]);
95
96                                                 if (notify)
97                                                         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(), newhost.c_str(), user->host.c_str());
98
99                                                 // Check if we're happy with the provided hostname. If it's problematic then make sure we won't set a host later, just the IP
100                                                 if (host_ok)
101                                                         webirc_hostname.set(user, parameters[2]);
102                                                 else
103                                                         webirc_hostname.unset(user);
104
105                                                 webirc_ip.set(user, parameters[3]);
106                                                 return CMD_SUCCESS;
107                                         }
108                                 }
109                         }
110
111                         ServerInstance->SNO->WriteGlobalSno('a', "Connecting user %s tried to use WEBIRC, but didn't match any configured webirc blocks.", user->GetFullRealHost().c_str());
112                         return CMD_FAILURE;
113                 }
114 };
115
116
117 /** Resolver for CGI:IRC hostnames encoded in ident/GECOS
118  */
119 class CGIResolver : public Resolver
120 {
121         std::string typ;
122         std::string theiruid;
123         LocalIntExt& waiting;
124         bool notify;
125  public:
126         CGIResolver(Module* me, bool NotifyOpers, const std::string &source, LocalUser* u,
127                         const std::string &type, bool &cached, LocalIntExt& ext)
128                 : Resolver(source, DNS_QUERY_PTR4, cached, me), typ(type), theiruid(u->uuid),
129                 waiting(ext), notify(NotifyOpers)
130         {
131         }
132
133         virtual void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached)
134         {
135                 /* Check the user still exists */
136                 User* them = ServerInstance->FindUUID(theiruid);
137                 if ((them) && (!them->quitting))
138                 {
139                         if (notify)
140                                 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());
141
142                         if (result.length() > 64)
143                                 return;
144                         them->host = result;
145                         them->dhost = result;
146                         them->InvalidateCache();
147                         them->CheckLines(true);
148                 }
149         }
150
151         virtual void OnError(ResolverError e, const std::string &errormessage)
152         {
153                 if (!notify)
154                         return;
155
156                 User* them = ServerInstance->FindUUID(theiruid);
157                 if ((them) && (!them->quitting))
158                 {
159                         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());
160                 }
161         }
162
163         virtual ~CGIResolver()
164         {
165                 User* them = ServerInstance->FindUUID(theiruid);
166                 if (!them)
167                         return;
168                 int count = waiting.get(them);
169                 if (count)
170                         waiting.set(them, count - 1);
171         }
172 };
173
174 class ModuleCgiIRC : public Module
175 {
176         CommandWebirc cmd;
177         LocalIntExt waiting;
178
179         static void RecheckClass(LocalUser* user)
180         {
181                 user->MyClass = NULL;
182                 user->SetClass();
183                 user->CheckClass();
184         }
185
186         static void ChangeIP(LocalUser* user, const std::string& newip)
187         {
188                 ServerInstance->Users->RemoveCloneCounts(user);
189                 user->SetClientIP(newip.c_str());
190                 ServerInstance->Users->AddLocalClone(user);
191                 ServerInstance->Users->AddGlobalClone(user);
192         }
193
194         void HandleIdentOrPass(LocalUser* user, const std::string& newip, bool was_pass)
195         {
196                 cmd.realhost.set(user, user->host);
197                 cmd.realip.set(user, user->GetIPString());
198                 ChangeIP(user, newip);
199                 user->host = user->dhost = user->GetIPString();
200                 user->InvalidateCache();
201                 RecheckClass(user);
202                 // Don't create the resolver if the core couldn't put the user in a connect class or when dns is disabled
203                 if (user->quitting || ServerInstance->Config->NoUserDns)
204                         return;
205
206                 try
207                 {
208                         bool cached;
209                         CGIResolver* r = new CGIResolver(this, cmd.notify, newip, user, (was_pass ? "PASS" : "IDENT"), cached, waiting);
210                         waiting.set(user, waiting.get(user) + 1);
211                         ServerInstance->AddResolver(r, cached);
212                 }
213                 catch (...)
214                 {
215                         if (cmd.notify)
216                                  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());
217                 }
218         }
219
220 public:
221         ModuleCgiIRC() : cmd(this), waiting("cgiirc-delay", this)
222         {
223         }
224
225         void init()
226         {
227                 OnRehash(NULL);
228                 ServiceProvider* providerlist[] = { &cmd, &cmd.realhost, &cmd.realip, &cmd.webirc_hostname, &cmd.webirc_ip, &waiting };
229                 ServerInstance->Modules->AddServices(providerlist, sizeof(providerlist)/sizeof(ServiceProvider*));
230
231                 Implementation eventlist[] = { I_OnRehash, I_OnUserRegister, I_OnCheckReady };
232                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
233         }
234
235         void OnRehash(User* user)
236         {
237                 cmd.Hosts.clear();
238
239                 // Do we send an oper notice when a CGI:IRC has their host changed?
240                 cmd.notify = ServerInstance->Config->ConfValue("cgiirc")->getBool("opernotice", true);
241
242                 ConfigTagList tags = ServerInstance->Config->ConfTags("cgihost");
243                 for (ConfigIter i = tags.first; i != tags.second; ++i)
244                 {
245                         ConfigTag* tag = i->second;
246                         std::string hostmask = tag->getString("mask"); // An allowed CGI:IRC host
247                         std::string type = tag->getString("type"); // What type of user-munging we do on this host.
248                         std::string password = tag->getString("password");
249
250                         if(hostmask.length())
251                         {
252                                 if (type == "webirc" && password.empty())
253                                 {
254                                         ServerInstance->Logs->Log("CONFIG",DEFAULT, "m_cgiirc: Missing password in config: %s", hostmask.c_str());
255                                 }
256                                 else
257                                 {
258                                         CGItype cgitype;
259                                         if (type == "pass")
260                                                 cgitype = PASS;
261                                         else if (type == "ident")
262                                                 cgitype = IDENT;
263                                         else if (type == "passfirst")
264                                                 cgitype = PASSFIRST;
265                                         else if (type == "webirc")
266                                                 cgitype = WEBIRC;
267                                         else
268                                         {
269                                                 cgitype = PASS;
270                                                 ServerInstance->Logs->Log("CONFIG",DEFAULT, "m_cgiirc.so: Invalid <cgihost:type> value in config: %s, setting it to \"pass\"", type.c_str());
271                                         }
272
273                                         cmd.Hosts.push_back(CGIhost(hostmask, cgitype, password));
274                                 }
275                         }
276                         else
277                         {
278                                 ServerInstance->Logs->Log("CONFIG",DEFAULT, "m_cgiirc.so: Invalid <cgihost:mask> value in config: %s", hostmask.c_str());
279                                 continue;
280                         }
281                 }
282         }
283
284         ModResult OnCheckReady(LocalUser *user)
285         {
286                 if (waiting.get(user))
287                         return MOD_RES_DENY;
288
289                 std::string *webirc_ip = cmd.webirc_ip.get(user);
290                 if (!webirc_ip)
291                         return MOD_RES_PASSTHRU;
292
293                 ChangeIP(user, *webirc_ip);
294
295                 std::string* webirc_hostname = cmd.webirc_hostname.get(user);
296                 user->host = user->dhost = (webirc_hostname ? *webirc_hostname : user->GetIPString());
297
298                 RecheckClass(user);
299                 if (user->quitting)
300                         return MOD_RES_DENY;
301
302                 user->CheckLines(true);
303                 if (user->quitting)
304                         return MOD_RES_DENY;
305
306                 cmd.webirc_hostname.unset(user);
307                 cmd.webirc_ip.unset(user);
308
309                 return MOD_RES_PASSTHRU;
310         }
311
312         ModResult OnUserRegister(LocalUser* user)
313         {
314                 for(CGIHostlist::iterator iter = cmd.Hosts.begin(); iter != cmd.Hosts.end(); iter++)
315                 {
316                         if(InspIRCd::Match(user->host, iter->hostmask, ascii_case_insensitive_map) || InspIRCd::MatchCIDR(user->GetIPString(), iter->hostmask, ascii_case_insensitive_map))
317                         {
318                                 // Deal with it...
319                                 if(iter->type == PASS)
320                                 {
321                                         CheckPass(user); // We do nothing if it fails so...
322                                         user->CheckLines(true);
323                                 }
324                                 else if(iter->type == PASSFIRST && !CheckPass(user))
325                                 {
326                                         // If the password lookup failed, try the ident
327                                         CheckIdent(user);       // If this fails too, do nothing
328                                         user->CheckLines(true);
329                                 }
330                                 else if(iter->type == IDENT)
331                                 {
332                                         CheckIdent(user); // Nothing on failure.
333                                         user->CheckLines(true);
334                                 }
335                                 else if(iter->type == IDENTFIRST && !CheckIdent(user))
336                                 {
337                                         // If the ident lookup fails, try the password.
338                                         CheckPass(user);
339                                         user->CheckLines(true);
340                                 }
341                                 else if(iter->type == WEBIRC)
342                                 {
343                                         // We don't need to do anything here
344                                 }
345                                 return MOD_RES_PASSTHRU;
346                         }
347                 }
348                 return MOD_RES_PASSTHRU;
349         }
350
351         bool CheckPass(LocalUser* user)
352         {
353                 if(IsValidHost(user->password))
354                 {
355                         HandleIdentOrPass(user, user->password, true);
356                         user->password.clear();
357                         return true;
358                 }
359
360                 return false;
361         }
362
363         bool CheckIdent(LocalUser* user)
364         {
365                 const char* ident;
366                 in_addr newip;
367
368                 if (user->ident.length() == 8)
369                         ident = user->ident.c_str();
370                 else if (user->ident.length() == 9 && user->ident[0] == '~')
371                         ident = user->ident.c_str() + 1;
372                 else
373                         return false;
374
375                 errno = 0;
376                 unsigned long ipaddr = strtoul(ident, NULL, 16);
377                 if (errno)
378                         return false;
379                 newip.s_addr = htonl(ipaddr);
380                 std::string newipstr(inet_ntoa(newip));
381
382                 user->ident = "~cgiirc";
383                 HandleIdentOrPass(user, newipstr, false);
384
385                 return true;
386         }
387
388         bool IsValidHost(const std::string &host)
389         {
390                 if(!host.size() || host.size() > 64)
391                         return false;
392
393                 for(unsigned int i = 0; i < host.size(); i++)
394                 {
395                         if(     ((host[i] >= '0') && (host[i] <= '9')) ||
396                                         ((host[i] >= 'A') && (host[i] <= 'Z')) ||
397                                         ((host[i] >= 'a') && (host[i] <= 'z')) ||
398                                         ((host[i] == '-') && (i > 0) && (i+1 < host.size()) && (host[i-1] != '.') && (host[i+1] != '.')) ||
399                                         ((host[i] == '.') && (i > 0) && (i+1 < host.size())) )
400
401                                 continue;
402                         else
403                                 return false;
404                 }
405
406                 return true;
407         }
408
409         virtual Version GetVersion()
410         {
411                 return Version("Change user's hosts connecting from known CGI:IRC hosts",VF_VENDOR);
412         }
413
414 };
415
416 MODULE_INIT(ModuleCgiIRC)