]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_sslinfo.cpp
5d4b8c3c082786958175a050e553576cd846f5c1
[user/henk/code/inspircd.git] / src / modules / m_sslinfo.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "transport.h"
16
17 /* $ModDesc: Provides SSL metadata, including /WHOIS information and /SSLINFO command */
18
19 /** Handle /SSLINFO
20  */
21 class CommandSSLInfo : public Command
22 {
23  public:
24         CommandSSLInfo(InspIRCd* Instance, Module* Creator) : Command(Instance, Creator, "SSLINFO", 0, 1)
25         {
26                 this->syntax = "<nick>";
27         }
28
29         CmdResult Handle (const std::vector<std::string> &parameters, User *user)
30         {
31                 User* target = ServerInstance->FindNick(parameters[0]);
32                 ssl_cert* cert;
33
34                 if (target)
35                 {
36                         if (target->GetExt("ssl_cert", cert))
37                         {
38                                 if (cert->GetError().length())
39                                 {
40                                         user->WriteServ("NOTICE %s :*** No SSL certificate information for this user (%s).", user->nick.c_str(), cert->GetError().c_str());
41                                 }
42                                 else
43                                 {
44                                         user->WriteServ("NOTICE %s :*** Distinguised Name: %s", user->nick.c_str(), cert->GetDN().c_str());
45                                         user->WriteServ("NOTICE %s :*** Issuer:            %s", user->nick.c_str(), cert->GetIssuer().c_str());
46                                         user->WriteServ("NOTICE %s :*** Key Fingerprint:   %s", user->nick.c_str(), cert->GetFingerprint().c_str());
47                                 }
48                                 return CMD_LOCALONLY;
49                         }
50                         else
51                         {
52                                 user->WriteServ("NOTICE %s :*** No SSL certificate information for this user.", user->nick.c_str());
53                                 return CMD_FAILURE;
54                         }
55                 }
56                 else
57                         user->WriteNumeric(ERR_NOSUCHNICK, "%s %s :No such nickname", user->nick.c_str(), parameters[0].c_str());
58
59                 return CMD_FAILURE;
60         }
61 };
62
63 class ModuleSSLInfo : public Module
64 {
65         CommandSSLInfo cmd;
66  public:
67         ModuleSSLInfo(InspIRCd* Me)
68                 : Module(Me), cmd(Me, this)
69         {
70                 ServerInstance->AddCommand(&cmd);
71
72                 Implementation eventlist[] = { I_OnSyncUser, I_OnDecodeMetaData, I_OnWhois, I_OnPreCommand };
73                 ServerInstance->Modules->Attach(eventlist, this, 4);
74         }
75
76
77         virtual ~ModuleSSLInfo()
78         {
79         }
80
81         virtual Version GetVersion()
82         {
83                 return Version("$Id$", VF_VENDOR, API_VERSION);
84         }
85
86         virtual void OnWhois(User* source, User* dest)
87         {
88                 if(dest->GetExt("ssl"))
89                 {
90                         ServerInstance->SendWhoisLine(source, dest, 320, "%s %s :is using a secure connection", source->nick.c_str(), dest->nick.c_str());
91                 }
92         }
93
94         virtual void OnSyncUser(User* user, Module* proto, void* opaque)
95         {
96                 if (user->GetExt("ssl"))
97                         proto->ProtoSendMetaData(opaque, user, "ssl", "ON");
98                 
99                 ssl_cert* cert;
100                 if (user->GetExt("ssl_cert", cert))
101                         proto->ProtoSendMetaData(opaque, user, "ssl_cert", cert->GetMetaLine().c_str());
102         }
103
104         virtual void OnDecodeMetaData(Extensible* target, const std::string &extname, const std::string &extdata)
105         {
106                 User* dest = dynamic_cast<User*>(target);
107                 // check if its our metadata key, and its associated with a user
108                 if (dest && (extname == "ssl"))
109                 {
110                         // if they dont already have an ssl flag, accept the remote server's
111                         if (!dest->GetExt(extname))
112                         {
113                                 dest->Extend(extname);
114                         }
115                 }
116                 else if (dest && (extname == "ssl_cert"))
117                 {
118                         if (dest->GetExt(extname))
119                                 return;
120
121                         ssl_cert* cert = new ssl_cert;
122                         dest->Extend(extname, cert);
123
124                         std::stringstream s(extdata);
125                         std::string v;
126                         getline(s,v,' ');
127
128                         cert->invalid = (v.find('v') != std::string::npos);
129                         cert->trusted = (v.find('T') != std::string::npos);
130                         cert->revoked = (v.find('R') != std::string::npos);
131                         cert->unknownsigner = (v.find('s') != std::string::npos);
132                         if (v.find('E') != std::string::npos)
133                         {
134                                 getline(s,cert->error,'\n');
135                         }
136                         else
137                         {
138                                 getline(s,cert->fingerprint,' ');
139                                 getline(s,cert->dn,' ');
140                                 getline(s,cert->issuer,'\n');
141                         }
142                 }
143         }
144
145         bool OneOfMatches(const char* host, const char* ip, const char* hostlist)
146         {
147                 std::stringstream hl(hostlist);
148                 std::string xhost;
149                 while (hl >> xhost)
150                 {
151                         if (InspIRCd::Match(host, xhost, ascii_case_insensitive_map) || InspIRCd::MatchCIDR(ip, xhost, ascii_case_insensitive_map))
152                         {
153                                 return true;
154                         }
155                 }
156                 return false;
157         }
158
159         virtual ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line)
160         {
161                 irc::string pcmd = command.c_str();
162
163                 if ((pcmd == "OPER") && (validated))
164                 {
165                         ConfigReader cf(ServerInstance);
166                         char TheHost[MAXBUF];
167                         char TheIP[MAXBUF];
168                         std::string LoginName;
169                         std::string Password;
170                         std::string OperType;
171                         std::string HostName;
172                         std::string HashType;
173                         std::string FingerPrint;
174                         bool SSLOnly;
175                         ssl_cert* cert = NULL;
176
177                         snprintf(TheHost,MAXBUF,"%s@%s",user->ident.c_str(),user->host.c_str());
178                         snprintf(TheIP, MAXBUF,"%s@%s",user->ident.c_str(),user->GetIPString());
179
180                         user->GetExt("ssl_cert",cert);
181
182                         for (int i = 0; i < cf.Enumerate("oper"); i++)
183                         {
184                                 LoginName = cf.ReadValue("oper", "name", i);
185                                 Password = cf.ReadValue("oper", "password", i);
186                                 OperType = cf.ReadValue("oper", "type", i);
187                                 HostName = cf.ReadValue("oper", "host", i);
188                                 HashType = cf.ReadValue("oper", "hash", i);
189                                 FingerPrint = cf.ReadValue("oper", "fingerprint", i);
190                                 SSLOnly = cf.ReadFlag("oper", "sslonly", i);
191
192                                 if (FingerPrint.empty() && !SSLOnly)
193                                         continue;
194
195                                 if (LoginName != parameters[0])
196                                         continue;
197
198                                 if (!OneOfMatches(TheHost, TheIP, HostName.c_str()))
199                                         continue;
200
201                                 if (Password.length() && ServerInstance->PassCompare(user, Password.c_str(),parameters[1].c_str(), HashType.c_str()))
202                                         continue;
203
204                                 if (SSLOnly && !user->GetExt("ssl"))
205                                 {
206                                         user->WriteNumeric(491, "%s :This oper login name requires an SSL connection.", user->nick.c_str());
207                                         return MOD_RES_DENY;
208                                 }
209
210                                 /*
211                                  * No cert found or the fingerprint doesn't match
212                                  */
213                                 if ((!cert) || (cert->GetFingerprint() != FingerPrint))
214                                 {
215                                         user->WriteNumeric(491, "%s :This oper login name requires a matching key fingerprint.",user->nick.c_str());
216                                         ServerInstance->SNO->WriteToSnoMask('o',"'%s' cannot oper, does not match fingerprint", user->nick.c_str());
217                                         ServerInstance->Logs->Log("m_ssl_oper_cert",DEFAULT,"OPER: Failed oper attempt by %s!%s@%s: credentials valid, but wrong fingerprint.", user->nick.c_str(), user->ident.c_str(), user->host.c_str());
218                                         return MOD_RES_DENY;
219                                 }
220                         }
221                 }
222
223                 // Let core handle it for extra stuff
224                 return MOD_RES_PASSTHRU;
225         }
226
227
228 };
229
230 MODULE_INIT(ModuleSSLInfo)
231