]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_cgiirc.cpp
Merge pull request #1157 from SaberUK/insp20+fix-cron-restart
[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                 user->InvalidateCache();
298
299                 RecheckClass(user);
300                 if (user->quitting)
301                         return MOD_RES_DENY;
302
303                 user->CheckLines(true);
304                 if (user->quitting)
305                         return MOD_RES_DENY;
306
307                 cmd.webirc_hostname.unset(user);
308                 cmd.webirc_ip.unset(user);
309
310                 return MOD_RES_PASSTHRU;
311         }
312
313         ModResult OnUserRegister(LocalUser* user)
314         {
315                 for(CGIHostlist::iterator iter = cmd.Hosts.begin(); iter != cmd.Hosts.end(); iter++)
316                 {
317                         if(InspIRCd::Match(user->host, iter->hostmask, ascii_case_insensitive_map) || InspIRCd::MatchCIDR(user->GetIPString(), iter->hostmask, ascii_case_insensitive_map))
318                         {
319                                 // Deal with it...
320                                 if(iter->type == PASS)
321                                 {
322                                         CheckPass(user); // We do nothing if it fails so...
323                                         user->CheckLines(true);
324                                 }
325                                 else if(iter->type == PASSFIRST && !CheckPass(user))
326                                 {
327                                         // If the password lookup failed, try the ident
328                                         CheckIdent(user);       // If this fails too, do nothing
329                                         user->CheckLines(true);
330                                 }
331                                 else if(iter->type == IDENT)
332                                 {
333                                         CheckIdent(user); // Nothing on failure.
334                                         user->CheckLines(true);
335                                 }
336                                 else if(iter->type == IDENTFIRST && !CheckIdent(user))
337                                 {
338                                         // If the ident lookup fails, try the password.
339                                         CheckPass(user);
340                                         user->CheckLines(true);
341                                 }
342                                 else if(iter->type == WEBIRC)
343                                 {
344                                         // We don't need to do anything here
345                                 }
346                                 return MOD_RES_PASSTHRU;
347                         }
348                 }
349                 return MOD_RES_PASSTHRU;
350         }
351
352         bool CheckPass(LocalUser* user)
353         {
354                 if(IsValidHost(user->password))
355                 {
356                         HandleIdentOrPass(user, user->password, true);
357                         user->password.clear();
358                         return true;
359                 }
360
361                 return false;
362         }
363
364         bool CheckIdent(LocalUser* user)
365         {
366                 const char* ident;
367                 in_addr newip;
368
369                 if (user->ident.length() == 8)
370                         ident = user->ident.c_str();
371                 else if (user->ident.length() == 9 && user->ident[0] == '~')
372                         ident = user->ident.c_str() + 1;
373                 else
374                         return false;
375
376                 errno = 0;
377                 unsigned long ipaddr = strtoul(ident, NULL, 16);
378                 if (errno)
379                         return false;
380                 newip.s_addr = htonl(ipaddr);
381                 std::string newipstr(inet_ntoa(newip));
382
383                 user->ident = "~cgiirc";
384                 HandleIdentOrPass(user, newipstr, false);
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         virtual Version GetVersion()
411         {
412                 return Version("Change user's hosts connecting from known CGI:IRC hosts",VF_VENDOR);
413         }
414
415 };
416
417 MODULE_INIT(ModuleCgiIRC)