]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_password_hash.cpp
m_spanningtree Remove duplicate code for sending channel messages from RouteCommand()
[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                 /* Read the config file first */
86                 OnRehash(NULL);
87
88                 ServerInstance->Modules->AddService(cmd);
89         }
90
91         ModResult OnPassCompare(Extensible* ex, const std::string &data, const std::string &input, const std::string &hashtype) CXX11_OVERRIDE
92         {
93                 if (hashtype.substr(0,5) == "hmac-")
94                 {
95                         std::string type = hashtype.substr(5);
96                         HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + type);
97                         if (!hp)
98                                 return MOD_RES_PASSTHRU;
99                         // this is a valid hash, from here on we either accept or deny
100                         std::string::size_type sep = data.find('$');
101                         if (sep == std::string::npos)
102                                 return MOD_RES_DENY;
103                         std::string salt = Base64ToBin(data.substr(0, sep));
104                         std::string target = Base64ToBin(data.substr(sep + 1));
105
106                         if (target == hp->hmac(salt, input))
107                                 return MOD_RES_ALLOW;
108                         else
109                                 return MOD_RES_DENY;
110                 }
111
112                 HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + hashtype);
113
114                 /* Is this a valid hash name? */
115                 if (hp)
116                 {
117                         /* Compare the hash in the config to the generated hash */
118                         if (data == hp->hexsum(input))
119                                 return MOD_RES_ALLOW;
120                         else
121                                 /* No match, and must be hashed, forbid */
122                                 return MOD_RES_DENY;
123                 }
124
125                 /* Not a hash, fall through to strcmp in core */
126                 return MOD_RES_PASSTHRU;
127         }
128
129         Version GetVersion() CXX11_OVERRIDE
130         {
131                 return Version("Allows for hashed oper passwords",VF_VENDOR);
132         }
133 };
134
135 MODULE_INIT(ModuleOperHash)