1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
17 #include <sys/socket.h>
18 #include <netinet/in.h>
19 #include <arpa/inet.h>
22 /* $ModDesc: Change user's hosts connecting from known CGI:IRC hosts */
24 enum CGItype { INVALID, PASS, IDENT, PASSFIRST, IDENTFIRST, WEBIRC };
27 /** Holds a CGI site's details
29 class CGIhost : public classbase
36 CGIhost(const std::string &mask = "", CGItype t = IDENTFIRST, const std::string &password ="")
37 : hostmask(mask), type(t), password(password)
41 typedef std::vector<CGIhost> CGIHostlist;
43 class cmd_webirc : public command_t
49 cmd_webirc(InspIRCd* Me, CGIHostlist &Hosts, bool notify) : command_t(Me, "WEBIRC", 0, 4, true), Hosts(Hosts), notify(notify)
51 this->source = "m_cgiirc.so";
52 this->syntax = "password client hostname ip";
54 CmdResult Handle(const char** parameters, int pcnt, userrec *user)
56 if(user->registered == REG_ALL)
59 for(CGIHostlist::iterator iter = Hosts.begin(); iter != Hosts.end(); iter++)
61 if(ServerInstance->MatchText(user->host, iter->hostmask) || ServerInstance->MatchText(user->GetIPString(), iter->hostmask))
63 if(iter->type == WEBIRC && parameters[0] == iter->password)
65 user->Extend("cgiirc_realhost", new std::string(user->host));
66 user->Extend("cgiirc_realip", new std::string(user->GetIPString()));
68 ServerInstance->WriteOpers("*** Connecting user %s detected as using CGI:IRC (%s), changing real host to %s from %s", user->nick, user->host, parameters[2], user->host);
69 user->Extend("cgiirc_webirc_hostname", new std::string(parameters[2]));
70 user->Extend("cgiirc_webirc_ip", new std::string(parameters[3]));
80 /** Resolver for CGI:IRC hostnames encoded in ident/GECOS
82 class CGIResolver : public Resolver
89 CGIResolver(Module* me, InspIRCd* ServerInstance, bool NotifyOpers, const std::string &source, bool forward, userrec* u, int userfd, const std::string &type, bool &cached)
90 : Resolver(ServerInstance, source, forward ? DNS_QUERY_A : DNS_QUERY_PTR4, cached, me), typ(type), theirfd(userfd), them(u), notify(NotifyOpers) { }
92 virtual void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached, int resultnum = 0)
97 /* Check the user still exists */
98 if ((them) && (them == ServerInstance->SE->GetRef(theirfd)))
101 ServerInstance->WriteOpers("*** Connecting user %s detected as using CGI:IRC (%s), changing real host to %s from %s", them->nick, them->host, result.c_str(), typ.c_str());
103 strlcpy(them->host, result.c_str(), 63);
104 strlcpy(them->dhost, result.c_str(), 63);
105 strlcpy(them->ident, "~cgiirc", 8);
106 them->InvalidateCache();
110 virtual void OnError(ResolverError e, const std::string &errormessage)
112 if ((them) && (them == ServerInstance->SE->GetRef(theirfd)))
115 ServerInstance->WriteOpers("*** Connecting user %s detected as using CGI:IRC (%s), but their host can't be resolved from their %s!", them->nick, them->host,typ.c_str());
119 virtual ~CGIResolver()
124 class ModuleCgiIRC : public Module
126 cmd_webirc* mycommand;
130 ModuleCgiIRC(InspIRCd* Me) : Module(Me)
134 mycommand=new cmd_webirc(Me, Hosts, NotifyOpers);
135 ServerInstance->AddCommand(mycommand);
138 void Implements(char* List)
140 List[I_OnRehash] = List[I_OnUserRegister] = List[I_OnCleanup] = List[I_OnSyncUserMetaData] = List[I_OnDecodeMetaData] = List[I_OnUserQuit] = List[I_OnUserConnect] = 1;
143 virtual Priority Prioritize()
145 // We want to get here before m_cloaking and m_hostchange etc
146 return PRIORITY_FIRST;
149 virtual void OnRehash(userrec* user, const std::string ¶meter)
151 ConfigReader Conf(ServerInstance);
153 NotifyOpers = Conf.ReadFlag("cgiirc", "opernotice", 0); // If we send an oper notice when a CGI:IRC has their host changed.
155 if(Conf.GetError() == CONF_VALUE_NOT_FOUND)
158 for(int i = 0; i < Conf.Enumerate("cgihost"); i++)
160 std::string hostmask = Conf.ReadValue("cgihost", "mask", i); // An allowed CGI:IRC host
161 std::string type = Conf.ReadValue("cgihost", "type", i); // What type of user-munging we do on this host.
162 std::string password = Conf.ReadValue("cgihost", "password", i);
164 if(hostmask.length())
166 if (type == "webirc" && !password.length()) {
167 ServerInstance->Log(DEFAULT, "m_cgiirc: Missing password in config: %s", hostmask.c_str());
171 CGItype cgitype = INVALID;
174 else if (type == "ident")
176 else if (type == "passfirst")
178 else if (type == "webirc")
183 if (cgitype == INVALID)
186 Hosts.push_back(CGIhost(hostmask,cgitype, password.length() ? password : "" ));
191 ServerInstance->Log(DEFAULT, "m_cgiirc.so: Invalid <cgihost:mask> value in config: %s", hostmask.c_str());
197 virtual void OnCleanup(int target_type, void* item)
199 if(target_type == TYPE_USER)
201 userrec* user = (userrec*)item;
202 std::string* realhost;
205 if(user->GetExt("cgiirc_realhost", realhost))
208 user->Shrink("cgiirc_realhost");
211 if(user->GetExt("cgiirc_realip", realip))
214 user->Shrink("cgiirc_realip");
219 virtual void OnSyncUserMetaData(userrec* user, Module* proto, void* opaque, const std::string &extname, bool displayable)
221 if((extname == "cgiirc_realhost") || (extname == "cgiirc_realip"))
225 if(user->GetExt(extname, data))
227 proto->ProtoSendMetaData(opaque, TYPE_USER, user, extname, *data);
232 virtual void OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata)
234 if(target_type == TYPE_USER)
236 userrec* dest = (userrec*)target;
238 if(((extname == "cgiirc_realhost") || (extname == "cgiirc_realip")) && (!dest->GetExt(extname, bleh)))
240 dest->Extend(extname, new std::string(extdata));
245 virtual void OnUserQuit(userrec* user, const std::string &message, const std::string &oper_message)
247 OnCleanup(TYPE_USER, user);
251 virtual int OnUserRegister(userrec* user)
253 for(CGIHostlist::iterator iter = Hosts.begin(); iter != Hosts.end(); iter++)
255 if(ServerInstance->MatchText(user->host, iter->hostmask) || ServerInstance->MatchText(user->GetIPString(), iter->hostmask))
258 if(iter->type == PASS)
260 CheckPass(user); // We do nothing if it fails so...
262 else if(iter->type == PASSFIRST && !CheckPass(user))
264 // If the password lookup failed, try the ident
265 CheckIdent(user); // If this fails too, do nothing
267 else if(iter->type == IDENT)
269 CheckIdent(user); // Nothing on failure.
271 else if(iter->type == IDENTFIRST && !CheckIdent(user))
273 // If the ident lookup fails, try the password.
276 else if(iter->type == WEBIRC)
278 // We don't need to do anything here
286 virtual void OnUserConnect(userrec* user)
288 std::string *webirc_hostname, *webirc_ip;
289 if(user->GetExt("cgiirc_webirc_hostname", webirc_hostname))
291 strlcpy(user->host,webirc_hostname->c_str(),63);
292 strlcpy(user->dhost,webirc_hostname->c_str(),63);
293 delete webirc_hostname;
294 user->InvalidateCache();
295 user->Shrink("cgiirc_webirc_hostname");
297 if(user->GetExt("cgiirc_webirc_ip", webirc_ip))
300 user->RemoveCloneCounts();
302 valid = (inet_pton(AF_INET6, webirc_ip->c_str(), &((sockaddr_in6*)user->ip)->sin6_addr) > 0);
305 valid = (inet_aton(webirc_ip->c_str(), &((sockaddr_in*)user->ip)->sin_addr));
307 if (inet_aton(webirc_ip->c_str(), &((sockaddr_in*)user->ip)->sin_addr))
312 user->InvalidateCache();
313 user->Shrink("cgiirc_webirc_ip");
314 ServerInstance->AddLocalClone(user);
315 ServerInstance->AddGlobalClone(user);
320 bool CheckPass(userrec* user)
322 if(IsValidHost(user->password))
324 user->Extend("cgiirc_realhost", new std::string(user->host));
325 user->Extend("cgiirc_realip", new std::string(user->GetIPString()));
326 strlcpy(user->host, user->password, 64);
327 strlcpy(user->dhost, user->password, 64);
328 user->InvalidateCache();
331 user->RemoveCloneCounts();
333 if (user->GetProtocolFamily() == AF_INET6)
334 valid = (inet_pton(AF_INET6, user->password, &((sockaddr_in6*)user->ip)->sin6_addr) > 0);
336 valid = (inet_aton(user->password, &((sockaddr_in*)user->ip)->sin_addr));
338 if (inet_aton(user->password, &((sockaddr_in*)user->ip)->sin_addr))
341 ServerInstance->AddLocalClone(user);
342 ServerInstance->AddGlobalClone(user);
347 /* We were given a IP in the password, we don't do DNS so they get this is as their host as well. */
349 ServerInstance->WriteOpers("*** Connecting user %s detected as using CGI:IRC (%s), changing real host to %s from PASS", user->nick, user->host, user->password);
353 /* We got as resolved hostname in the password. */
358 CGIResolver* r = new CGIResolver(this, ServerInstance, NotifyOpers, user->password, false, user, user->GetFd(), "PASS", cached);
359 ServerInstance->AddResolver(r, cached);
364 ServerInstance->WriteOpers("*** Connecting user %s detected as using CGI:IRC (%s), but i could not resolve their hostname!", user->nick, user->host);
371 ServerInstance->WriteOpers("*** Connecting user %s detected as using CGI:IRC (%s), changing real host to %s from PASS", user->nick, user->host, user->password);*/
379 bool CheckIdent(userrec* user)
384 int len = strlen(user->ident);
388 else if(len == 9 && *user->ident == '~')
389 ident = user->ident+1;
393 for(int i = 0; i < 4; i++)
394 if(!HexToInt(ip[i], ident + i*2))
397 snprintf(newip, 16, "%d.%d.%d.%d", ip[0], ip[1], ip[2], ip[3]);
399 user->Extend("cgiirc_realhost", new std::string(user->host));
400 user->Extend("cgiirc_realip", new std::string(user->GetIPString()));
401 user->RemoveCloneCounts();
403 if (user->GetProtocolFamily() == AF_INET6)
404 inet_pton(AF_INET6, newip, &((sockaddr_in6*)user->ip)->sin6_addr);
407 inet_aton(newip, &((sockaddr_in*)user->ip)->sin_addr);
408 ServerInstance->AddLocalClone(user);
409 ServerInstance->AddGlobalClone(user);
413 strlcpy(user->host, newip, 16);
414 strlcpy(user->dhost, newip, 16);
415 strlcpy(user->ident, "~cgiirc", 8);
418 CGIResolver* r = new CGIResolver(this, ServerInstance, NotifyOpers, newip, false, user, user->GetFd(), "IDENT", cached);
419 ServerInstance->AddResolver(r, cached);
423 strlcpy(user->host, newip, 16);
424 strlcpy(user->dhost, newip, 16);
425 strlcpy(user->ident, "~cgiirc", 8);
426 user->InvalidateCache();
429 ServerInstance->WriteOpers("*** Connecting user %s detected as using CGI:IRC (%s), but i could not resolve their hostname!", user->nick, user->host);
431 /*strlcpy(user->host, newip, 16);
432 strlcpy(user->dhost, newip, 16);
433 strlcpy(user->ident, "~cgiirc", 8);*/
438 bool IsValidHost(const std::string &host)
443 for(unsigned int i = 0; i < host.size(); i++)
445 if( ((host[i] >= '0') && (host[i] <= '9')) ||
446 ((host[i] >= 'A') && (host[i] <= 'Z')) ||
447 ((host[i] >= 'a') && (host[i] <= 'z')) ||
448 ((host[i] == '-') && (i > 0) && (i+1 < host.size()) && (host[i-1] != '.') && (host[i+1] != '.')) ||
449 ((host[i] == '.') && (i > 0) && (i+1 < host.size())) )
459 bool IsValidIP(const std::string &ip)
461 if(ip.size() < 7 || ip.size() > 15)
467 for(unsigned int i = 0; i < ip.size(); i++)
469 if((dots <= 3) && (sincedot <= 3))
471 if((ip[i] >= '0') && (ip[i] <= '9'))
475 else if(ip[i] == '.')
494 bool HexToInt(int &out, const char* in)
500 out = strtol(ip, NULL, 16);
502 if(out > 255 || out < 0)
508 virtual ~ModuleCgiIRC()
512 virtual Version GetVersion()
514 return Version(1,1,0,0,VF_VENDOR,API_VERSION);
519 MODULE_INIT(ModuleCgiIRC)