]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_httpd_acl.cpp
Remove InspIRCd* parameters and fields
[user/henk/code/inspircd.git] / src / modules / m_httpd_acl.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 "httpd.h"
16 #include "protocol.h"
17
18 /* $ModDesc: Provides access control lists (passwording of resources, ip restrictions etc) to m_httpd.so dependent modules */
19 /* $ModDep: httpd.h */
20
21 class HTTPACL : public Extensible
22 {
23  public:
24         std::string path;
25         std::string username;
26         std::string password;
27         std::string whitelist;
28         std::string blacklist;
29
30         HTTPACL(const std::string &set_path, const std::string &set_username, const std::string &set_password,
31                 const std::string &set_whitelist, const std::string &set_blacklist)
32                 : path(set_path), username(set_username), password(set_password), whitelist(set_whitelist),
33                 blacklist(set_blacklist) { }
34
35         ~HTTPACL() { }
36 };
37
38 class ModuleHTTPAccessList : public Module
39 {
40
41         std::string stylesheet;
42         bool changed;
43         std::vector<HTTPACL> acl_list;
44
45  public:
46
47         void ReadConfig()
48         {
49                 acl_list.clear();
50                 ConfigReader c;
51                 int n_items = c.Enumerate("httpdacl");
52                 for (int i = 0; i < n_items; ++i)
53                 {
54                         std::string path = c.ReadValue("httpdacl", "path", i);
55                         std::string types = c.ReadValue("httpdacl", "types", i);
56                         irc::commasepstream sep(types);
57                         std::string type;
58                         std::string username;
59                         std::string password;
60                         std::string whitelist;
61                         std::string blacklist;
62
63                         while (sep.GetToken(type))
64                         {
65                                 if (type == "password")
66                                 {
67                                         username = c.ReadValue("httpdacl", "username", i);
68                                         password = c.ReadValue("httpdacl", "password", i);
69                                 }
70                                 else if (type == "whitelist")
71                                 {
72                                         whitelist = c.ReadValue("httpdacl", "whitelist", i);
73                                 }
74                                 else if (type == "blacklist")
75                                 {
76                                         blacklist = c.ReadValue("httpdacl", "blacklist", i);
77                                 }
78                                 else
79                                 {
80                                         throw ModuleException("Invalid HTTP ACL type '" + type + "'");
81                                 }
82                         }
83
84                         ServerInstance->Logs->Log("m_httpd_acl", DEBUG, "Read ACL: path=%s pass=%s whitelist=%s blacklist=%s", path.c_str(),
85                                         password.c_str(), whitelist.c_str(), blacklist.c_str());
86
87                         acl_list.push_back(HTTPACL(path, username, password, whitelist, blacklist));
88                 }
89         }
90
91         ModuleHTTPAccessList()  {
92                 ReadConfig();
93                 Implementation eventlist[] = { I_OnEvent, I_OnRequest };
94                 ServerInstance->Modules->Attach(eventlist, this, 2);
95         }
96
97         void BlockAccess(HTTPRequest* http, Event* event, int returnval, const std::string &extraheaderkey = "", const std::string &extraheaderval="")
98         {
99                 ServerInstance->Logs->Log("m_httpd_acl", DEBUG, "BlockAccess (%d)", returnval);
100
101                 std::stringstream data("Access to this resource is denied by an access control list. Please contact your IRC administrator.");
102                 HTTPDocument response(http->sock, &data, returnval);
103                 response.headers.SetHeader("X-Powered-By", "m_httpd_acl.so");
104                 if (!extraheaderkey.empty())
105                         response.headers.SetHeader(extraheaderkey, extraheaderval);
106                 Request req((char*)&response, (Module*)this, event->GetSource());
107                 req.Send();
108         }
109
110         bool IsBase64(unsigned char c)
111         {
112                 return (isalnum(c) || (c == '+') || (c == '/'));
113         }
114
115         std::string Base64Decode(const std::string &base64)
116         {
117                 const std::string base64_chars("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/");
118                 int inputlen = base64.length();
119                 int i = 0, j = 0, input = 0;
120                 unsigned char longbuf[4], shortbuf[3];
121                 std::string retval;
122
123                 if (inputlen == 0)
124                         return "";
125
126                 while (inputlen-- && (base64[input] != '=') && IsBase64(base64[input]))
127                 {
128                         longbuf[i++] = base64[input];
129                         input++;
130                         if (i == 4)
131                         {
132                                 for (i = 0; i < 4; ++i)
133                                         longbuf[i] = base64_chars.find(longbuf[i]);
134
135                                 shortbuf[0] = (longbuf[0] << 2)         + ((longbuf[1] & 0x30) >> 4);
136                                 shortbuf[1] = ((longbuf[1] & 0xf) << 4) + ((longbuf[2] & 0x3c) >> 2);
137                                 shortbuf[2] = ((longbuf[2] & 0x3) << 6) + longbuf[3];
138
139                                 for (i = 0; i < 3; ++i)
140                                         retval += shortbuf[i];
141
142                                 i = 0;
143                         }
144                 }
145
146                 if (i)
147                 {
148                         for (j = i; j < 4; ++j)
149                                 longbuf[j] = 0;
150
151                         for (j = 0; j < 4; ++j)
152                                 longbuf[j] = base64_chars.find(longbuf[j]);
153
154                         shortbuf[0] = (longbuf[0] << 2)         + ((longbuf[1] & 0x30) >> 4);
155                         shortbuf[1] = ((longbuf[1] & 0xf) << 4) + ((longbuf[2] & 0x3c) >> 2);
156                         shortbuf[2] = ((longbuf[2] & 0x3) << 6) + longbuf[3];
157
158                         for (j = 0; j < i - 1; ++j)
159                                 retval += shortbuf[j];
160                 }
161
162                 return retval;
163         }
164
165         void OnEvent(Event* event)
166         {
167                 if (event->GetEventID() == "httpd_acl")
168                 {
169                         ServerInstance->Logs->Log("m_http_stats", DEBUG,"Handling httpd acl event");
170                         HTTPRequest* http = (HTTPRequest*)event->GetData();
171
172                         for (std::vector<HTTPACL>::const_iterator this_acl = acl_list.begin(); this_acl != acl_list.end(); ++this_acl)
173                         {
174                                 if (InspIRCd::Match(http->GetURI(), this_acl->path, ascii_case_insensitive_map))
175                                 {
176                                         if (!this_acl->blacklist.empty())
177                                         {
178                                                 /* Blacklist */
179                                                 irc::commasepstream sep(this_acl->blacklist);
180                                                 std::string entry;
181
182                                                 while (sep.GetToken(entry))
183                                                 {
184                                                         if (InspIRCd::Match(http->GetIP(), entry, ascii_case_insensitive_map))
185                                                         {
186                                                                 ServerInstance->Logs->Log("m_httpd_acl", DEBUG, "Denying access to blacklisted resource %s (matched by pattern %s) from ip %s (matched by entry %s)",
187                                                                                 http->GetURI().c_str(), this_acl->path.c_str(), http->GetIP().c_str(), entry.c_str());
188                                                                 BlockAccess(http, event, 403);
189                                                                 return;
190                                                         }
191                                                 }
192                                         }
193                                         if (!this_acl->whitelist.empty())
194                                         {
195                                                 /* Whitelist */
196                                                 irc::commasepstream sep(this_acl->whitelist);
197                                                 std::string entry;
198                                                 bool allow_access = false;
199
200                                                 while (sep.GetToken(entry))
201                                                 {
202                                                         if (InspIRCd::Match(http->GetIP(), entry, ascii_case_insensitive_map))
203                                                                 allow_access = true;
204                                                 }
205
206                                                 if (!allow_access)
207                                                 {
208                                                         ServerInstance->Logs->Log("m_httpd_acl", DEBUG, "Denying access to whitelisted resource %s (matched by pattern %s) from ip %s (Not in whitelist)",
209                                                                         http->GetURI().c_str(), this_acl->path.c_str(), http->GetIP().c_str());
210                                                         BlockAccess(http, event, 403);
211                                                         return;
212                                                 }
213                                         }
214                                         if (!this_acl->password.empty() && !this_acl->username.empty())
215                                         {
216                                                 /* Password auth, first look to see if we have a basic authentication header */
217                                                 ServerInstance->Logs->Log("m_httpd_acl", DEBUG, "Checking HTTP auth password for resource %s (matched by pattern %s) from ip %s, against username %s",
218                                                                 http->GetURI().c_str(), this_acl->path.c_str(), http->GetIP().c_str(), this_acl->username.c_str());
219
220                                                 if (http->headers->IsSet("Authorization"))
221                                                 {
222                                                         /* Password has been given, validate it */
223                                                         std::string authorization = http->headers->GetHeader("Authorization");
224                                                         irc::spacesepstream sep(authorization);
225                                                         std::string authtype;
226                                                         std::string base64;
227
228                                                         sep.GetToken(authtype);
229                                                         if (authtype == "Basic")
230                                                         {
231                                                                 std::string user;
232                                                                 std::string pass;
233
234                                                                 sep.GetToken(base64);
235                                                                 std::string userpass = Base64Decode(base64);
236                                                                 ServerInstance->Logs->Log("m_httpd_acl", DEBUG, "HTTP authorization: %s (%s)", userpass.c_str(), base64.c_str());
237
238                                                                 irc::sepstream userpasspair(userpass, ':');
239                                                                 if (userpasspair.GetToken(user))
240                                                                 {
241                                                                         userpasspair.GetToken(pass);
242
243                                                                         /* Access granted if username and password are correct */
244                                                                         if (user == this_acl->username && pass == this_acl->password)
245                                                                         {
246                                                                                 ServerInstance->Logs->Log("m_httpd_acl", DEBUG, "HTTP authorization: password and username match");
247                                                                                 return;
248                                                                         }
249                                                                         else
250                                                                                 /* Invalid password */
251                                                                                 BlockAccess(http, event, 401, "WWW-Authenticate", "Basic realm=\"Restricted Object\"");
252                                                                 }
253                                                                 else
254                                                                         /* Malformed user:pass pair */
255                                                                         BlockAccess(http, event, 401, "WWW-Authenticate", "Basic realm=\"Restricted Object\"");
256                                                         }
257                                                         else
258                                                                 /* Unsupported authentication type */
259                                                                 BlockAccess(http, event, 401, "WWW-Authenticate", "Basic realm=\"Restricted Object\"");
260                                                 }
261                                                 else
262                                                 {
263                                                         /* No password given at all, access denied */
264                                                         BlockAccess(http, event, 401, "WWW-Authenticate", "Basic realm=\"Restricted Object\"");
265                                                 }
266                                         }
267
268                                         /* A path may only match one ACL (the first it finds in the config file) */
269                                         return;
270                                 }
271                         }
272                 }
273         }
274
275         const char* OnRequest(Request* request)
276         {
277                 return NULL;
278         }
279
280         virtual ~ModuleHTTPAccessList()
281         {
282         }
283
284         virtual Version GetVersion()
285         {
286                 return Version("Provides access control lists (passwording of resources, ip restrictions etc) to m_httpd.so dependent modules", VF_VENDOR, API_VERSION);
287         }
288 };
289
290 MODULE_INIT(ModuleHTTPAccessList)