1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2008 InspIRCd Development Team
* See: http://www.inspircd.org/wiki/index.php/Credits
*
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
#include "inspircd.h"
#include "httpd.h"
#include "protocol.h"
#include "wildcard.h"
/* $ModDesc: Provides access control lists (passwording of resources, ip restrictions etc) to m_httpd.so dependent modules */
/* $ModDep: httpd.h */
class ACL : public Extensible
{
public:
std::string path;
std::string password;
std::string whitelist;
std::string blacklist;
ACL(const std::string &set_path, const std::string &set_password,
const std::string &set_whitelist, const std::string &set_blacklist)
: path(set_path), password(set_password), whitelist(set_whitelist),
blacklist(set_blacklist) { }
~ACL() { }
};
class ModuleHTTPAccessList : public Module
{
std::string stylesheet;
bool changed;
std::vector<ACL> acl_list;
public:
void ReadConfig()
{
acl_list.clear();
ConfigReader c(ServerInstance);
int n_items = c.Enumerate("httpacl");
for (int i = 0; i < n_items; ++i)
{
std::string path = c.ReadValue("httpacl", "path", i);
std::string types = c.ReadValue("httpacl", "types", i);
irc::commasepstream sep(types);
std::string type;
std::string password;
std::string whitelist;
std::string blacklist;
while (sep.GetToken(type))
{
if (type == "password")
{
password = c.ReadValue("httpacl", "password", i);
}
else if (type == "whitelist")
{
whitelist = c.ReadValue("httpacl", "whitelist", i);
}
else if (type == "blacklist")
{
blacklist = c.ReadValue("httpacl", "blacklist", i);
}
else
{
throw ModuleException("Invalid HTTP ACL type '" + type + "'");
}
}
acl_list.push_back(ACL(path, password, whitelist, blacklist));
}
}
ModuleHTTPAccessList(InspIRCd* Me) : Module(Me)
{
ReadConfig();
this->changed = true;
Implementation eventlist[] = { I_OnEvent, I_OnRequest };
ServerInstance->Modules->Attach(eventlist, this, 2);
}
void BlockAccess(HTTPRequest* http, Event* event)
{
std::stringstream data("Access to this resource is denied by an access control list. Please contact your IRC administrator.");
HTTPDocument response(http->sock, &data, 403);
response.headers.SetHeader("X-Powered-By", "m_httpd_acl.so");
Request req((char*)&response, (Module*)this, event->GetSource());
req.Send();
}
void OnEvent(Event* event)
{
std::stringstream data("");
if (event->GetEventID() == "httpd_url")
{
ServerInstance->Logs->Log("m_http_stats", DEBUG,"Handling httpd event");
HTTPRequest* http = (HTTPRequest*)event->GetData();
for (std::vector<ACL>::const_iterator this_acl = acl_list.begin(); this_acl != acl_list.end(); ++this_acl)
{
if (match(http->GetURI(), this_acl->path))
{
if (!this_acl->blacklist.empty())
{
/* Blacklist */
irc::commasepstream sep(this_acl->blacklist);
std::string entry;
while (sep.GetToken(entry))
{
if (match(http->GetIP(), entry))
{
BlockAccess(http, event);
return;
}
}
}
if (!this_acl->whitelist.empty())
{
/* Whitelist */
irc::commasepstream sep(this_acl->whitelist);
std::string entry;
bool allow_access = false;
while (sep.GetToken(entry))
{
if (match(http->GetIP(), entry))
allow_access = true;
}
if (!allow_access)
{
BlockAccess(http, event);
return;
}
}
if (!this_acl->password.empty())
{
/* Password auth, first look to see if we have a basic authentication header */
}
}
}
}
}
const char* OnRequest(Request* request)
{
return NULL;
}
virtual ~ModuleHTTPAccessList()
{
}
virtual Version GetVersion()
{
return Version(1, 2, 0, 0, VF_VENDOR, API_VERSION);
}
};
MODULE_INIT(ModuleHTTPAccessList)
|