]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_password_hash.cpp
Merge pull request #514 from SaberUK/master+virtual-cleanup
[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->WriteNotice("Unknown hash type");
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->WriteNotice(algo + " hashed password for " + stuff + " is " + str);
53                         return;
54                 }
55                 HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + algo);
56                 if (hp)
57                 {
58                         /* Now attempt to generate a hash */
59                         std::string hexsum = hp->hexsum(stuff);
60                         user->WriteNotice(algo + " hashed password for " + stuff + " is " + hexsum);
61                 }
62                 else
63                 {
64                         user->WriteNotice("Unknown hash type");
65                 }
66         }
67
68         CmdResult Handle (const std::vector<std::string>& parameters, User *user)
69         {
70                 MakeHash(user, parameters[0], parameters[1]);
71
72                 return CMD_SUCCESS;
73         }
74 };
75
76 class ModuleOperHash : public Module
77 {
78         CommandMkpasswd cmd;
79  public:
80
81         ModuleOperHash() : cmd(this)
82         {
83         }
84
85         void init() CXX11_OVERRIDE
86         {
87                 /* Read the config file first */
88                 OnRehash(NULL);
89
90                 ServerInstance->Modules->AddService(cmd);
91                 Implementation eventlist[] = { I_OnPassCompare };
92                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
93         }
94
95         ModResult OnPassCompare(Extensible* ex, const std::string &data, const std::string &input, const std::string &hashtype) CXX11_OVERRIDE
96         {
97                 if (hashtype.substr(0,5) == "hmac-")
98                 {
99                         std::string type = hashtype.substr(5);
100                         HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + type);
101                         if (!hp)
102                                 return MOD_RES_PASSTHRU;
103                         // this is a valid hash, from here on we either accept or deny
104                         std::string::size_type sep = data.find('$');
105                         if (sep == std::string::npos)
106                                 return MOD_RES_DENY;
107                         std::string salt = Base64ToBin(data.substr(0, sep));
108                         std::string target = Base64ToBin(data.substr(sep + 1));
109
110                         if (target == hp->hmac(salt, input))
111                                 return MOD_RES_ALLOW;
112                         else
113                                 return MOD_RES_DENY;
114                 }
115
116                 HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + hashtype);
117
118                 /* Is this a valid hash name? */
119                 if (hp)
120                 {
121                         /* Compare the hash in the config to the generated hash */
122                         if (data == hp->hexsum(input))
123                                 return MOD_RES_ALLOW;
124                         else
125                                 /* No match, and must be hashed, forbid */
126                                 return MOD_RES_DENY;
127                 }
128
129                 /* Not a hash, fall through to strcmp in core */
130                 return MOD_RES_PASSTHRU;
131         }
132
133         Version GetVersion() CXX11_OVERRIDE
134         {
135                 return Version("Allows for hashed oper passwords",VF_VENDOR);
136         }
137 };
138
139 MODULE_INIT(ModuleOperHash)