]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_password_hash.cpp
Tidy up source files:
[user/henk/code/inspircd.git] / src / modules / m_password_hash.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 /* $ModDesc: Allows for hashed oper passwords */
22
23 #include "inspircd.h"
24 #include "modules/hash.h"
25
26 /* Handle /MKPASSWD
27  */
28 class CommandMkpasswd : public Command
29 {
30  public:
31         CommandMkpasswd(Module* Creator) : Command(Creator, "MKPASSWD", 2)
32         {
33                 syntax = "<hashtype> <any-text>";
34                 Penalty = 5;
35         }
36
37         void MakeHash(User* user, const std::string& algo, const std::string& stuff)
38         {
39                 if (algo.substr(0,5) == "hmac-")
40                 {
41                         std::string type = algo.substr(5);
42                         HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + type);
43                         if (!hp)
44                         {
45                                 user->WriteServ("NOTICE %s :Unknown hash type", user->nick.c_str());
46                                 return;
47                         }
48                         std::string salt = ServerInstance->GenRandomStr(6, false);
49                         std::string target = hp->hmac(salt, stuff);
50                         std::string str = BinToBase64(salt) + "$" + BinToBase64(target, NULL, 0);
51
52                         user->WriteServ("NOTICE %s :%s hashed password for %s is %s",
53                                 user->nick.c_str(), algo.c_str(), stuff.c_str(), str.c_str());
54                         return;
55                 }
56                 HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + algo);
57                 if (hp)
58                 {
59                         /* Now attempt to generate a hash */
60                         std::string hexsum = hp->hexsum(stuff);
61                         user->WriteServ("NOTICE %s :%s hashed password for %s is %s",
62                                 user->nick.c_str(), algo.c_str(), stuff.c_str(), hexsum.c_str());
63                 }
64                 else
65                 {
66                         user->WriteServ("NOTICE %s :Unknown hash type", user->nick.c_str());
67                 }
68         }
69
70         CmdResult Handle (const std::vector<std::string>& parameters, User *user)
71         {
72                 MakeHash(user, parameters[0], parameters[1]);
73
74                 return CMD_SUCCESS;
75         }
76 };
77
78 class ModuleOperHash : public Module
79 {
80         CommandMkpasswd cmd;
81  public:
82
83         ModuleOperHash() : cmd(this)
84         {
85         }
86
87         void init()
88         {
89                 /* Read the config file first */
90                 OnRehash(NULL);
91
92                 ServerInstance->Modules->AddService(cmd);
93                 Implementation eventlist[] = { I_OnPassCompare };
94                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
95         }
96
97         virtual ModResult OnPassCompare(Extensible* ex, const std::string &data, const std::string &input, const std::string &hashtype)
98         {
99                 if (hashtype.substr(0,5) == "hmac-")
100                 {
101                         std::string type = hashtype.substr(5);
102                         HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + type);
103                         if (!hp)
104                                 return MOD_RES_PASSTHRU;
105                         // this is a valid hash, from here on we either accept or deny
106                         std::string::size_type sep = data.find('$');
107                         if (sep == std::string::npos)
108                                 return MOD_RES_DENY;
109                         std::string salt = Base64ToBin(data.substr(0, sep));
110                         std::string target = Base64ToBin(data.substr(sep + 1));
111
112                         if (target == hp->hmac(salt, input))
113                                 return MOD_RES_ALLOW;
114                         else
115                                 return MOD_RES_DENY;
116                 }
117
118                 HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + hashtype);
119
120                 /* Is this a valid hash name? */
121                 if (hp)
122                 {
123                         /* Compare the hash in the config to the generated hash */
124                         if (data == hp->hexsum(input))
125                                 return MOD_RES_ALLOW;
126                         else
127                                 /* No match, and must be hashed, forbid */
128                                 return MOD_RES_DENY;
129                 }
130
131                 /* Not a hash, fall through to strcmp in core */
132                 return MOD_RES_PASSTHRU;
133         }
134
135         virtual Version GetVersion()
136         {
137                 return Version("Allows for hashed oper passwords",VF_VENDOR);
138         }
139 };
140
141 MODULE_INIT(ModuleOperHash)