]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_sethost.cpp
m_dccallow Validate tokens before use
[user/henk/code/inspircd.git] / src / modules / m_sethost.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2004-2006 Craig Edwards <craigedwards@brainbox.cc>
7  *
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.
11  *
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
15  * details.
16  *
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/>.
19  */
20
21
22 #include "inspircd.h"
23
24 /* $ModDesc: Provides support for the SETHOST command */
25
26 /** Handle /SETHOST
27  */
28 class CommandSethost : public Command
29 {
30  private:
31         char* hostmap;
32  public:
33         CommandSethost(Module* Creator, char* hmap) : Command(Creator,"SETHOST", 1), hostmap(hmap)
34         {
35                 allow_empty_last_param = false;
36                 flags_needed = 'o'; syntax = "<new-hostname>";
37                 TRANSLATE2(TR_TEXT, TR_END);
38         }
39
40         CmdResult Handle (const std::vector<std::string>& parameters, User *user)
41         {
42                 size_t len = 0;
43                 for (std::string::const_iterator x = parameters[0].begin(); x != parameters[0].end(); x++, len++)
44                 {
45                         if (!hostmap[(const unsigned char)*x])
46                         {
47                                 user->WriteServ("NOTICE "+user->nick+" :*** SETHOST: Invalid characters in hostname");
48                                 return CMD_FAILURE;
49                         }
50                 }
51
52                 if (len > 64)
53                 {
54                         user->WriteServ("NOTICE %s :*** SETHOST: Host too long",user->nick.c_str());
55                         return CMD_FAILURE;
56                 }
57
58                 if (user->ChangeDisplayedHost(parameters[0].c_str()))
59                 {
60                         ServerInstance->SNO->WriteGlobalSno('a', user->nick+" used SETHOST to change their displayed host to "+user->dhost);
61                         return CMD_SUCCESS;
62                 }
63
64                 return CMD_FAILURE;
65         }
66 };
67
68
69 class ModuleSetHost : public Module
70 {
71         CommandSethost cmd;
72         char hostmap[256];
73  public:
74         ModuleSetHost()
75                 : cmd(this, hostmap)
76         {
77         }
78
79         void init()
80         {
81                 OnRehash(NULL);
82                 ServerInstance->Modules->AddService(cmd);
83                 Implementation eventlist[] = { I_OnRehash };
84                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
85         }
86
87         void OnRehash(User* user)
88         {
89                 std::string hmap = ServerInstance->Config->ConfValue("hostname")->getString("charmap", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.-_/0123456789");
90
91                 memset(hostmap, 0, sizeof(hostmap));
92                 for (std::string::iterator n = hmap.begin(); n != hmap.end(); n++)
93                         hostmap[(unsigned char)*n] = 1;
94         }
95
96         virtual ~ModuleSetHost()
97         {
98         }
99
100         virtual Version GetVersion()
101         {
102                 return Version("Provides support for the SETHOST command", VF_VENDOR);
103         }
104
105 };
106
107 MODULE_INIT(ModuleSetHost)