]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_httpd_acl.cpp
Merge insp20
[user/henk/code/inspircd.git] / src / modules / m_httpd_acl.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
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/httpd.h"
23 #include "protocol.h"
24
25 class HTTPACL
26 {
27  public:
28         std::string path;
29         std::string username;
30         std::string password;
31         std::string whitelist;
32         std::string blacklist;
33
34         HTTPACL(const std::string &set_path, const std::string &set_username, const std::string &set_password,
35                 const std::string &set_whitelist, const std::string &set_blacklist)
36                 : path(set_path), username(set_username), password(set_password), whitelist(set_whitelist),
37                 blacklist(set_blacklist) { }
38 };
39
40 class ModuleHTTPAccessList : public Module
41 {
42         std::string stylesheet;
43         std::vector<HTTPACL> acl_list;
44         HTTPdAPI API;
45
46  public:
47         ModuleHTTPAccessList()
48                 : API(this)
49         {
50         }
51
52         void OnRehash(User* user)
53         {
54                 acl_list.clear();
55                 ConfigTagList acls = ServerInstance->Config->ConfTags("httpdacl");
56                 for (ConfigIter i = acls.first; i != acls.second; i++)
57                 {
58                         ConfigTag* c = i->second;
59                         std::string path = c->getString("path");
60                         std::string types = c->getString("types");
61                         irc::commasepstream sep(types);
62                         std::string type;
63                         std::string username;
64                         std::string password;
65                         std::string whitelist;
66                         std::string blacklist;
67
68                         while (sep.GetToken(type))
69                         {
70                                 if (type == "password")
71                                 {
72                                         username = c->getString("username");
73                                         password = c->getString("password");
74                                 }
75                                 else if (type == "whitelist")
76                                 {
77                                         whitelist = c->getString("whitelist");
78                                 }
79                                 else if (type == "blacklist")
80                                 {
81                                         blacklist = c->getString("blacklist");
82                                 }
83                                 else
84                                 {
85                                         throw ModuleException("Invalid HTTP ACL type '" + type + "'");
86                                 }
87                         }
88
89                         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Read ACL: path=%s pass=%s whitelist=%s blacklist=%s", path.c_str(),
90                                         password.c_str(), whitelist.c_str(), blacklist.c_str());
91
92                         acl_list.push_back(HTTPACL(path, username, password, whitelist, blacklist));
93                 }
94         }
95
96         void init() CXX11_OVERRIDE
97         {
98                 OnRehash(NULL);
99         }
100
101         void BlockAccess(HTTPRequest* http, int returnval, const std::string &extraheaderkey = "", const std::string &extraheaderval="")
102         {
103                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "BlockAccess (%d)", returnval);
104
105                 std::stringstream data("Access to this resource is denied by an access control list. Please contact your IRC administrator.");
106                 HTTPDocumentResponse response(this, *http, &data, returnval);
107                 response.headers.SetHeader("X-Powered-By", MODNAME);
108                 if (!extraheaderkey.empty())
109                         response.headers.SetHeader(extraheaderkey, extraheaderval);
110                 API->SendResponse(response);
111         }
112
113         void OnEvent(Event& event) CXX11_OVERRIDE
114         {
115                 if (event.id == "httpd_acl")
116                 {
117                         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Handling httpd acl event");
118                         HTTPRequest* http = (HTTPRequest*)&event;
119
120                         for (std::vector<HTTPACL>::const_iterator this_acl = acl_list.begin(); this_acl != acl_list.end(); ++this_acl)
121                         {
122                                 if (InspIRCd::Match(http->GetURI(), this_acl->path, ascii_case_insensitive_map))
123                                 {
124                                         if (!this_acl->blacklist.empty())
125                                         {
126                                                 /* Blacklist */
127                                                 irc::commasepstream sep(this_acl->blacklist);
128                                                 std::string entry;
129
130                                                 while (sep.GetToken(entry))
131                                                 {
132                                                         if (InspIRCd::Match(http->GetIP(), entry, ascii_case_insensitive_map))
133                                                         {
134                                                                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Denying access to blacklisted resource %s (matched by pattern %s) from ip %s (matched by entry %s)",
135                                                                                 http->GetURI().c_str(), this_acl->path.c_str(), http->GetIP().c_str(), entry.c_str());
136                                                                 BlockAccess(http, 403);
137                                                                 return;
138                                                         }
139                                                 }
140                                         }
141                                         if (!this_acl->whitelist.empty())
142                                         {
143                                                 /* Whitelist */
144                                                 irc::commasepstream sep(this_acl->whitelist);
145                                                 std::string entry;
146                                                 bool allow_access = false;
147
148                                                 while (sep.GetToken(entry))
149                                                 {
150                                                         if (InspIRCd::Match(http->GetIP(), entry, ascii_case_insensitive_map))
151                                                                 allow_access = true;
152                                                 }
153
154                                                 if (!allow_access)
155                                                 {
156                                                         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Denying access to whitelisted resource %s (matched by pattern %s) from ip %s (Not in whitelist)",
157                                                                         http->GetURI().c_str(), this_acl->path.c_str(), http->GetIP().c_str());
158                                                         BlockAccess(http, 403);
159                                                         return;
160                                                 }
161                                         }
162                                         if (!this_acl->password.empty() && !this_acl->username.empty())
163                                         {
164                                                 /* Password auth, first look to see if we have a basic authentication header */
165                                                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Checking HTTP auth password for resource %s (matched by pattern %s) from ip %s, against username %s",
166                                                                 http->GetURI().c_str(), this_acl->path.c_str(), http->GetIP().c_str(), this_acl->username.c_str());
167
168                                                 if (http->headers->IsSet("Authorization"))
169                                                 {
170                                                         /* Password has been given, validate it */
171                                                         std::string authorization = http->headers->GetHeader("Authorization");
172                                                         irc::spacesepstream sep(authorization);
173                                                         std::string authtype;
174                                                         std::string base64;
175
176                                                         sep.GetToken(authtype);
177                                                         if (authtype == "Basic")
178                                                         {
179                                                                 std::string user;
180                                                                 std::string pass;
181
182                                                                 sep.GetToken(base64);
183                                                                 std::string userpass = Base64ToBin(base64);
184                                                                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "HTTP authorization: %s (%s)", userpass.c_str(), base64.c_str());
185
186                                                                 irc::sepstream userpasspair(userpass, ':');
187                                                                 if (userpasspair.GetToken(user))
188                                                                 {
189                                                                         userpasspair.GetToken(pass);
190
191                                                                         /* Access granted if username and password are correct */
192                                                                         if (user == this_acl->username && pass == this_acl->password)
193                                                                         {
194                                                                                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "HTTP authorization: password and username match");
195                                                                                 return;
196                                                                         }
197                                                                         else
198                                                                                 /* Invalid password */
199                                                                                 BlockAccess(http, 401, "WWW-Authenticate", "Basic realm=\"Restricted Object\"");
200                                                                 }
201                                                                 else
202                                                                         /* Malformed user:pass pair */
203                                                                         BlockAccess(http, 401, "WWW-Authenticate", "Basic realm=\"Restricted Object\"");
204                                                         }
205                                                         else
206                                                                 /* Unsupported authentication type */
207                                                                 BlockAccess(http, 401, "WWW-Authenticate", "Basic realm=\"Restricted Object\"");
208                                                 }
209                                                 else
210                                                 {
211                                                         /* No password given at all, access denied */
212                                                         BlockAccess(http, 401, "WWW-Authenticate", "Basic realm=\"Restricted Object\"");
213                                                 }
214                                         }
215
216                                         /* A path may only match one ACL (the first it finds in the config file) */
217                                         return;
218                                 }
219                         }
220                 }
221         }
222
223         Version GetVersion() CXX11_OVERRIDE
224         {
225                 return Version("Provides access control lists (passwording of resources, ip restrictions etc) to m_httpd.so dependent modules", VF_VENDOR);
226         }
227 };
228
229 MODULE_INIT(ModuleHTTPAccessList)