2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2005-2007 Craig Edwards <craigedwards@brainbox.cc>
5 * Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
6 * Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
8 * This file is part of InspIRCd. InspIRCd is free software: you can
9 * redistribute it and/or modify it under the terms of the GNU General Public
10 * License as published by the Free Software Foundation, version 2.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 /* $ModDesc: Provides masking of user hostnames in a different way to m_cloaking */
26 /** Holds information on a host set by m_hostchange
38 HostChangeAction action;
42 Host(HostChangeAction Action, const std::string& Newhost, const std::string& Ports) :
43 action(Action), newhost(Newhost), ports(Ports) {}
46 typedef std::vector<std::pair<std::string, Host> > hostchanges_t;
48 class ModuleHostChange : public Module
50 hostchanges_t hostchanges;
53 std::string MySeparator;
59 Implementation eventlist[] = { I_OnRehash, I_OnUserConnect };
60 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
63 virtual void OnRehash(User* user)
65 ConfigTag* host = ServerInstance->Config->ConfValue("host");
66 MySuffix = host->getString("suffix");
67 MyPrefix = host->getString("prefix");
68 MySeparator = host->getString("separator", ".");
71 std::set<std::string> dupecheck;
72 ConfigTagList tags = ServerInstance->Config->ConfTags("hostchange");
73 for (ConfigIter i = tags.first; i != tags.second; ++i)
75 ConfigTag* tag = i->second;
76 std::string mask = tag->getString("mask");
77 if (!dupecheck.insert(mask).second)
78 throw ModuleException("Duplicate hostchange entry: " + mask);
80 Host::HostChangeAction act;
82 std::string action = tag->getString("action");
83 if (!strcasecmp(action.c_str(), "set"))
86 newhost = tag->getString("value");
88 else if (!strcasecmp(action.c_str(), "suffix"))
89 act = Host::HCA_SUFFIX;
90 else if (!strcasecmp(action.c_str(), "addnick"))
91 act = Host::HCA_ADDNICK;
93 throw ModuleException("Invalid hostchange action: " + action);
95 hostchanges.push_back(std::make_pair(mask, Host(act, newhost, tag->getString("ports"))));
99 virtual Version GetVersion()
101 // returns the version number of the module to be
102 // listed in /MODULES
103 return Version("Provides masking of user hostnames in a different way to m_cloaking", VF_VENDOR);
106 virtual void OnUserConnect(LocalUser* user)
108 for (hostchanges_t::iterator i = hostchanges.begin(); i != hostchanges.end(); i++)
110 if (((InspIRCd::MatchCIDR(user->MakeHost(), i->first)) || (InspIRCd::MatchCIDR(user->MakeHostIP(), i->first))))
112 const Host& h = i->second;
114 if (!h.ports.empty())
116 irc::portparser portrange(h.ports, false);
118 bool foundany = false;
120 while ((portno = portrange.GetToken()))
121 if (portno == user->GetServerPort())
128 // host of new user matches a hostchange tag's mask
130 if (h.action == Host::HCA_SET)
134 else if (h.action == Host::HCA_SUFFIX)
138 else if (h.action == Host::HCA_ADDNICK)
140 // first take their nick and strip out non-dns, leaving just [A-Z0-9\-]
141 std::string complete;
142 for (std::string::const_iterator j = user->nick.begin(); j != user->nick.end(); ++j)
144 if (((*j >= 'A') && (*j <= 'Z')) ||
145 ((*j >= 'a') && (*j <= 'z')) ||
146 ((*j >= '0') && (*j <= '9')) ||
149 complete = complete + *j;
152 if (complete.empty())
153 complete = "i-have-a-lame-nick";
155 if (!MyPrefix.empty())
156 newhost = MyPrefix + MySeparator + complete;
158 newhost = complete + MySeparator + MySuffix;
160 if (!newhost.empty())
162 user->WriteServ("NOTICE "+user->nick+" :Setting your virtual host: " + newhost);
163 if (!user->ChangeDisplayedHost(newhost.c_str()))
164 user->WriteServ("NOTICE "+user->nick+" :Could not set your virtual host: " + newhost);
172 MODULE_INIT(ModuleHostChange)