]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_password_hash.cpp
Replace OnRehash() with ReadConfig() that is called on boot, on module load and on...
[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 #include "inspircd.h"
22 #include "modules/hash.h"
23
24 /* Handle /MKPASSWD
25  */
26 class CommandMkpasswd : public Command
27 {
28  public:
29         CommandMkpasswd(Module* Creator) : Command(Creator, "MKPASSWD", 2)
30         {
31                 syntax = "<hashtype> <any-text>";
32                 Penalty = 5;
33         }
34
35         void MakeHash(User* user, const std::string& algo, const std::string& stuff)
36         {
37                 if (algo.substr(0,5) == "hmac-")
38                 {
39                         std::string type = algo.substr(5);
40                         HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + type);
41                         if (!hp)
42                         {
43                                 user->WriteNotice("Unknown hash type");
44                                 return;
45                         }
46                         std::string salt = ServerInstance->GenRandomStr(6, false);
47                         std::string target = hp->hmac(salt, stuff);
48                         std::string str = BinToBase64(salt) + "$" + BinToBase64(target, NULL, 0);
49
50                         user->WriteNotice(algo + " hashed password for " + stuff + " is " + str);
51                         return;
52                 }
53                 HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + algo);
54                 if (hp)
55                 {
56                         /* Now attempt to generate a hash */
57                         std::string hexsum = hp->hexsum(stuff);
58                         user->WriteNotice(algo + " hashed password for " + stuff + " is " + hexsum);
59                 }
60                 else
61                 {
62                         user->WriteNotice("Unknown hash type");
63                 }
64         }
65
66         CmdResult Handle (const std::vector<std::string>& parameters, User *user)
67         {
68                 MakeHash(user, parameters[0], parameters[1]);
69
70                 return CMD_SUCCESS;
71         }
72 };
73
74 class ModuleOperHash : public Module
75 {
76         CommandMkpasswd cmd;
77  public:
78
79         ModuleOperHash() : cmd(this)
80         {
81         }
82
83         void init() CXX11_OVERRIDE
84         {
85                 ServerInstance->Modules->AddService(cmd);
86         }
87
88         ModResult OnPassCompare(Extensible* ex, const std::string &data, const std::string &input, const std::string &hashtype) CXX11_OVERRIDE
89         {
90                 if (hashtype.substr(0,5) == "hmac-")
91                 {
92                         std::string type = hashtype.substr(5);
93                         HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + type);
94                         if (!hp)
95                                 return MOD_RES_PASSTHRU;
96                         // this is a valid hash, from here on we either accept or deny
97                         std::string::size_type sep = data.find('$');
98                         if (sep == std::string::npos)
99                                 return MOD_RES_DENY;
100                         std::string salt = Base64ToBin(data.substr(0, sep));
101                         std::string target = Base64ToBin(data.substr(sep + 1));
102
103                         if (target == hp->hmac(salt, input))
104                                 return MOD_RES_ALLOW;
105                         else
106                                 return MOD_RES_DENY;
107                 }
108
109                 HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + hashtype);
110
111                 /* Is this a valid hash name? */
112                 if (hp)
113                 {
114                         /* Compare the hash in the config to the generated hash */
115                         if (data == hp->hexsum(input))
116                                 return MOD_RES_ALLOW;
117                         else
118                                 /* No match, and must be hashed, forbid */
119                                 return MOD_RES_DENY;
120                 }
121
122                 /* Not a hash, fall through to strcmp in core */
123                 return MOD_RES_PASSTHRU;
124         }
125
126         Version GetVersion() CXX11_OVERRIDE
127         {
128                 return Version("Allows for hashed oper passwords",VF_VENDOR);
129         }
130 };
131
132 MODULE_INIT(ModuleOperHash)