]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_cgiirc.cpp
Merge insp20
[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 #include "modules/dns.h"
29
30 enum CGItype { PASS, IDENT, PASSFIRST, IDENTFIRST, WEBIRC };
31
32 // We need this method up here so that it can be accessed from anywhere
33 static void ChangeIP(User* user, const std::string& newip)
34 {
35         ServerInstance->Users->RemoveCloneCounts(user);
36         user->SetClientIP(newip.c_str());
37         ServerInstance->Users->AddClone(user);
38 }
39
40 /** Holds a CGI site's details
41  */
42 class CGIhost
43 {
44 public:
45         std::string hostmask;
46         CGItype type;
47         std::string password;
48
49         CGIhost(const std::string &mask, CGItype t, const std::string &spassword)
50         : hostmask(mask), type(t), password(spassword)
51         {
52         }
53 };
54 typedef std::vector<CGIhost> CGIHostlist;
55
56 /*
57  * WEBIRC
58  *  This is used for the webirc method of CGIIRC auth, and is (really) the best way to do these things.
59  *  Syntax: WEBIRC password client hostname ip
60  *  Where password is a shared key, client is the name of the "client" and version (e.g. cgiirc), hostname
61  *  is the resolved host of the client issuing the command and IP is the real IP of the client.
62  *
63  * How it works:
64  *  To tie in with the rest of cgiirc module, and to avoid race conditions, /webirc is only processed locally
65  *  and simply sets metadata on the user, which is later decoded on full connect to give something meaningful.
66  */
67 class CommandWebirc : public Command
68 {
69  public:
70         bool notify;
71         StringExtItem realhost;
72         StringExtItem realip;
73
74         CGIHostlist Hosts;
75         CommandWebirc(Module* Creator)
76                 : Command(Creator, "WEBIRC", 4),
77                   realhost("cgiirc_realhost", Creator), realip("cgiirc_realip", Creator)
78                 {
79                         works_before_reg = true;
80                         this->syntax = "password client hostname ip";
81                 }
82                 CmdResult Handle(const std::vector<std::string> &parameters, User *user)
83                 {
84                         if(user->registered == REG_ALL)
85                                 return CMD_FAILURE;
86
87                         for(CGIHostlist::iterator iter = Hosts.begin(); iter != Hosts.end(); iter++)
88                         {
89                                 if(InspIRCd::Match(user->host, iter->hostmask, ascii_case_insensitive_map) || InspIRCd::MatchCIDR(user->GetIPString(), iter->hostmask, ascii_case_insensitive_map))
90                                 {
91                                         if(iter->type == WEBIRC && parameters[0] == iter->password)
92                                         {
93                                                 realhost.set(user, user->host);
94                                                 realip.set(user, user->GetIPString());
95
96                                                 // 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
97                                                 bool host_ok = (parameters[2].length() <= ServerInstance->Config->Limits.MaxHost);
98                                                 const std::string& newhost = (host_ok ? parameters[2] : parameters[3]);
99
100                                                 if (notify)
101                                                         ServerInstance->SNO->WriteGlobalSno('w', "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());
102
103                                                 // Where the magic happens - change their IP
104                                                 ChangeIP(user, parameters[3]);
105                                                 // And follow this up by changing their host
106                                                 user->host = user->dhost = newhost;
107                                                 user->InvalidateCache();
108
109                                                 return CMD_SUCCESS;
110                                         }
111                                 }
112                         }
113
114                         ServerInstance->SNO->WriteGlobalSno('w', "Connecting user %s tried to use WEBIRC, but didn't match any configured webirc blocks.", user->GetFullRealHost().c_str());
115                         return CMD_FAILURE;
116                 }
117 };
118
119
120 /** Resolver for CGI:IRC hostnames encoded in ident/GECOS
121  */
122 class CGIResolver : public DNS::Request
123 {
124         std::string typ;
125         std::string theiruid;
126         LocalIntExt& waiting;
127         bool notify;
128  public:
129         CGIResolver(DNS::Manager *mgr, Module* me, bool NotifyOpers, const std::string &source, LocalUser* u,
130                         const std::string &ttype, LocalIntExt& ext)
131                 : DNS::Request(mgr, me, source, DNS::QUERY_PTR), typ(ttype), theiruid(u->uuid),
132                 waiting(ext), notify(NotifyOpers)
133         {
134         }
135
136         void OnLookupComplete(const DNS::Query *r) CXX11_OVERRIDE
137         {
138                 /* Check the user still exists */
139                 User* them = ServerInstance->FindUUID(theiruid);
140                 if ((them) && (!them->quitting))
141                 {
142                         LocalUser* lu = IS_LOCAL(them);
143                         if (!lu)
144                                 return;
145
146                         const DNS::ResourceRecord &ans_record = r->answers[0];
147                         if (ans_record.rdata.empty() || ans_record.rdata.length() > ServerInstance->Config->Limits.MaxHost)
148                                 return;
149
150                         if (notify)
151                                 ServerInstance->SNO->WriteGlobalSno('w', "Connecting user %s detected as using CGI:IRC (%s), changing real host to %s from %s", them->nick.c_str(), them->host.c_str(), ans_record.rdata.c_str(), typ.c_str());
152
153                         them->host = them->dhost = ans_record.rdata;
154                         them->InvalidateCache();
155                         lu->CheckLines(true);
156                 }
157         }
158
159         void OnError(const DNS::Query *r) CXX11_OVERRIDE
160         {
161                 if (!notify)
162                         return;
163
164                 User* them = ServerInstance->FindUUID(theiruid);
165                 if ((them) && (!them->quitting))
166                 {
167                         ServerInstance->SNO->WriteToSnoMask('w', "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());
168                 }
169         }
170
171         ~CGIResolver()
172         {
173                 User* them = ServerInstance->FindUUID(theiruid);
174                 if (!them)
175                         return;
176                 int count = waiting.get(them);
177                 if (count)
178                         waiting.set(them, count - 1);
179         }
180 };
181
182 class ModuleCgiIRC : public Module
183 {
184         CommandWebirc cmd;
185         LocalIntExt waiting;
186         dynamic_reference<DNS::Manager> DNS;
187
188         static void RecheckClass(LocalUser* user)
189         {
190                 user->MyClass = NULL;
191                 user->SetClass();
192                 user->CheckClass();
193         }
194
195         void HandleIdentOrPass(LocalUser* user, const std::string& newip, bool was_pass)
196         {
197                 cmd.realhost.set(user, user->host);
198                 cmd.realip.set(user, user->GetIPString());
199                 ChangeIP(user, newip);
200                 user->host = user->dhost = user->GetIPString();
201                 user->InvalidateCache();
202                 RecheckClass(user);
203
204                 // Don't create the resolver if the core couldn't put the user in a connect class or when dns is disabled
205                 if (user->quitting || !DNS || !user->MyClass->resolvehostnames)
206                         return;
207
208                 CGIResolver* r = new CGIResolver(*this->DNS, this, cmd.notify, newip, user, (was_pass ? "PASS" : "IDENT"), waiting);
209                 try
210                 {
211                         waiting.set(user, waiting.get(user) + 1);
212                         this->DNS->Process(r);
213                 }
214                 catch (DNS::Exception &ex)
215                 {
216                         int count = waiting.get(user);
217                         if (count)
218                                 waiting.set(user, count - 1);
219                         delete r;
220                         if (cmd.notify)
221                                  ServerInstance->SNO->WriteToSnoMask('w', "Connecting user %s detected as using CGI:IRC (%s), but I could not resolve their hostname; %s", user->nick.c_str(), user->host.c_str(), ex.GetReason().c_str());
222                 }
223         }
224
225 public:
226         ModuleCgiIRC()
227                 : cmd(this)
228                 , waiting("cgiirc-delay", this)
229                 , DNS(this, "DNS")
230         {
231         }
232
233         void init() CXX11_OVERRIDE
234         {
235                 ServerInstance->SNO->EnableSnomask('w', "CGIIRC");
236         }
237
238         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
239         {
240                 cmd.Hosts.clear();
241
242                 // Do we send an oper notice when a CGI:IRC has their host changed?
243                 cmd.notify = ServerInstance->Config->ConfValue("cgiirc")->getBool("opernotice", true);
244
245                 ConfigTagList tags = ServerInstance->Config->ConfTags("cgihost");
246                 for (ConfigIter i = tags.first; i != tags.second; ++i)
247                 {
248                         ConfigTag* tag = i->second;
249                         std::string hostmask = tag->getString("mask"); // An allowed CGI:IRC host
250                         std::string type = tag->getString("type"); // What type of user-munging we do on this host.
251                         std::string password = tag->getString("password");
252
253                         if(hostmask.length())
254                         {
255                                 if (type == "webirc" && password.empty())
256                                 {
257                                         ServerInstance->Logs->Log("CONFIG", LOG_DEFAULT, "m_cgiirc: Missing password in config: %s", hostmask.c_str());
258                                 }
259                                 else
260                                 {
261                                         CGItype cgitype;
262                                         if (type == "pass")
263                                                 cgitype = PASS;
264                                         else if (type == "ident")
265                                                 cgitype = IDENT;
266                                         else if (type == "passfirst")
267                                                 cgitype = PASSFIRST;
268                                         else if (type == "webirc")
269                                                 cgitype = WEBIRC;
270                                         else
271                                         {
272                                                 cgitype = PASS;
273                                                 ServerInstance->Logs->Log("CONFIG", LOG_DEFAULT, "Invalid <cgihost:type> value in config: %s, setting it to \"pass\"", type.c_str());
274                                         }
275
276                                         cmd.Hosts.push_back(CGIhost(hostmask, cgitype, password));
277                                 }
278                         }
279                         else
280                         {
281                                 ServerInstance->Logs->Log("CONFIG", LOG_DEFAULT, "Invalid <cgihost:mask> value in config: %s", hostmask.c_str());
282                                 continue;
283                         }
284                 }
285         }
286
287         ModResult OnCheckReady(LocalUser *user) CXX11_OVERRIDE
288         {
289                 if (waiting.get(user))
290                         return MOD_RES_DENY;
291
292                 if (!cmd.realip.get(user))
293                         return MOD_RES_PASSTHRU;
294
295                 RecheckClass(user);
296                 if (user->quitting)
297                         return MOD_RES_DENY;
298
299                 user->CheckLines(true);
300                 if (user->quitting)
301                         return MOD_RES_DENY;
302
303                 return MOD_RES_PASSTHRU;
304         }
305
306         ModResult OnUserRegister(LocalUser* user) CXX11_OVERRIDE
307         {
308                 for(CGIHostlist::iterator iter = cmd.Hosts.begin(); iter != cmd.Hosts.end(); iter++)
309                 {
310                         if(InspIRCd::Match(user->host, iter->hostmask, ascii_case_insensitive_map) || InspIRCd::MatchCIDR(user->GetIPString(), iter->hostmask, ascii_case_insensitive_map))
311                         {
312                                 // Deal with it...
313                                 if(iter->type == PASS)
314                                 {
315                                         CheckPass(user); // We do nothing if it fails so...
316                                         user->CheckLines(true);
317                                 }
318                                 else if(iter->type == PASSFIRST && !CheckPass(user))
319                                 {
320                                         // If the password lookup failed, try the ident
321                                         CheckIdent(user);       // If this fails too, do nothing
322                                         user->CheckLines(true);
323                                 }
324                                 else if(iter->type == IDENT)
325                                 {
326                                         CheckIdent(user); // Nothing on failure.
327                                         user->CheckLines(true);
328                                 }
329                                 else if(iter->type == IDENTFIRST && !CheckIdent(user))
330                                 {
331                                         // If the ident lookup fails, try the password.
332                                         CheckPass(user);
333                                         user->CheckLines(true);
334                                 }
335                                 else if(iter->type == WEBIRC)
336                                 {
337                                         // We don't need to do anything here
338                                 }
339                                 return MOD_RES_PASSTHRU;
340                         }
341                 }
342                 return MOD_RES_PASSTHRU;
343         }
344
345         bool CheckPass(LocalUser* user)
346         {
347                 if(IsValidHost(user->password))
348                 {
349                         HandleIdentOrPass(user, user->password, true);
350                         user->password.clear();
351                         return true;
352                 }
353
354                 return false;
355         }
356
357         bool CheckIdent(LocalUser* user)
358         {
359                 const char* ident;
360                 in_addr newip;
361
362                 if (user->ident.length() == 8)
363                         ident = user->ident.c_str();
364                 else if (user->ident.length() == 9 && user->ident[0] == '~')
365                         ident = user->ident.c_str() + 1;
366                 else
367                         return false;
368
369                 errno = 0;
370                 unsigned long ipaddr = strtoul(ident, NULL, 16);
371                 if (errno)
372                         return false;
373                 newip.s_addr = htonl(ipaddr);
374                 std::string newipstr(inet_ntoa(newip));
375
376                 user->ident = "~cgiirc";
377                 HandleIdentOrPass(user, newipstr, false);
378
379                 return true;
380         }
381
382         bool IsValidHost(const std::string &host)
383         {
384                 if(!host.size() || host.size() > ServerInstance->Config->Limits.MaxHost)
385                         return false;
386
387                 for(unsigned int i = 0; i < host.size(); i++)
388                 {
389                         if(     ((host[i] >= '0') && (host[i] <= '9')) ||
390                                         ((host[i] >= 'A') && (host[i] <= 'Z')) ||
391                                         ((host[i] >= 'a') && (host[i] <= 'z')) ||
392                                         ((host[i] == '-') && (i > 0) && (i+1 < host.size()) && (host[i-1] != '.') && (host[i+1] != '.')) ||
393                                         ((host[i] == '.') && (i > 0) && (i+1 < host.size())) )
394
395                                 continue;
396                         else
397                                 return false;
398                 }
399
400                 return true;
401         }
402
403         Version GetVersion() CXX11_OVERRIDE
404         {
405                 return Version("Change user's hosts connecting from known CGI:IRC hosts",VF_VENDOR);
406         }
407 };
408
409 MODULE_INIT(ModuleCgiIRC)