-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserverlogic.cpp
247 lines (195 loc) · 6.19 KB
/
serverlogic.cpp
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#include "serverlogic.h"
ServerLogic::ServerLogic(QSettings *settings)
{
QString document_root = settings->value("server/document_root").toString();
if (document_root.right(1) != "/") {
document_root.push_back("/");
}
bool keepAliveAllowed = settings->value("server/keep_alive_allowed").toBool();
this->root = document_root;
this->cacheControl = new CacheControl(settings);
this->keepAliveAllowed = keepAliveAllowed;
}
ServerLogic::~ServerLogic()
{
delete cacheControl;
}
Message *ServerLogic::handleRequest(QByteArray *req, bool &socketKeepAlive)
{
QBuffer request(req);
request.open(QIODevice::ReadOnly);
QByteArray startingLine = request.readLine();
QByteArray method;
QString uri;
QHash<QString, QString> headers;
parseStartingLine(startingLine, method, uri);
parseHeaders(request, headers);
socketKeepAlive = (keepAliveAllowed
&& headers.contains("Connection")
&& headers.value("Connection").toLower() == "keep-alive");
if (!uriSecCheck(uri)) {
return formBadRequestMessage(socketKeepAlive);
}
if(!checkForIndex(uri)) {
return formForbiddenMessage(socketKeepAlive);
}
if (method != "GET" && method != "HEAD") {
return formBadRequestMessage(socketKeepAlive);
}
QIODevice *mesBody = cacheControl->getFile(uri);
if (mesBody == NULL) {
return formNotFoundMessage(socketKeepAlive);
}
bool includeBody = (method == "GET");
Message *message = formOKMessage(parseContentType(uri), socketKeepAlive, mesBody, includeBody);
if (!includeBody) {
delete mesBody;
}
return message;
}
Message *ServerLogic::formOKMessage(QString contentType, bool keepAlive, QIODevice *mesBody, bool includeBody) {
Message *response = new Message();
response->setCode(200);
response->setContentLength(mesBody->size());
response->setContentType(contentType);
if (includeBody) {
response->setBody(mesBody);
}
response->setKeepAlive(keepAlive);
return response;
}
Message *ServerLogic::formNotFoundMessage(bool keepAlive) {
Message *response = new Message();
QByteArray *body = new QByteArray("404 Not Found");
response->setCode(404);
response->setContentLength(body->length());
response->setContentType("text/plain");
response->setBody(body);
response->setKeepAlive(keepAlive);
return response;
}
Message *ServerLogic::formBadRequestMessage(bool keepAlive) {
Message *response = new Message();
QByteArray *body = new QByteArray("400 Bad Request");
response->setCode(400);
response->setContentLength(body->length());
response->setContentType("text/plain");
response->setBody(body);
response->setKeepAlive(keepAlive);
return response;
}
Message *ServerLogic::formForbiddenMessage(bool keepAlive)
{
Message *response = new Message();
QByteArray *body = new QByteArray("403 Forbidden directory");
response->setCode(403);
response->setContentLength(body->length());
response->setContentType("text/plain");
response->setBody(body);
response->setKeepAlive(keepAlive);
return response;
}
void ServerLogic::parseStartingLine(QByteArray &startingLine, QByteArray &method, QString &uri)
{
QList<QByteArray> startingLineParts = startingLine.split(' ');
method = startingLineParts[0];
int uriQuestionMarkIndex = startingLineParts[1].indexOf('?');
QByteArray uriRaw = (uriQuestionMarkIndex != -1)
? startingLineParts[1].left(uriQuestionMarkIndex)
: startingLineParts[1];
uri = QUrl::fromPercentEncoding(uriRaw);
}
void ServerLogic::parseHeaders(QBuffer &request, QHash<QString, QString> &headers)
{
while (!request.atEnd()) {
QByteArray line = request.readLine();
int colonIndex = line.indexOf(':');
if (colonIndex == -1) {
continue;
}
QString headerName = line.left(colonIndex);
if (headerName != "Connection") {
continue;
}
QString headerValue = line.right(line.length() - colonIndex - 1).trimmed();
headers.insert(headerName, headerValue);
}
}
QString ServerLogic::parseContentType(QString uri)
{
QString cType;
QString cTypeMarker = uri.split('.').last().toLower();
if(cTypeMarker == "html") {
cType = "text/html";
}
else if(cTypeMarker == "css") {
cType = "text/css";
}
else if(cTypeMarker == "js") {
cType = "application/javascript";
}
else if(cTypeMarker == "jpg") {
cType = "image/jpeg";
}
else if(cTypeMarker == "jpeg") {
cType = "image/jpeg";
}
else if(cTypeMarker == "png") {
cType = "image/png";
}
else if(cTypeMarker == "gif") {
cType = "image/gif";
}
else if(cTypeMarker == "swf") {
cType = "application/x-shockwave-flash";
}
else if(cTypeMarker == "txt") {
cType = "text/html";
}
else if(cTypeMarker == "ico") {
cType = "image/vnd.microsoft.icon";
}
else cType = "text/html";
return cType;
}
bool ServerLogic::uriSecCheck(QString uri) {
if (uri[0] != '/')
return false;
// 0 - met nothing suspicious, 1 - met '/', 2 - met '/.', 3 - met '/..'
quint8 state = 1;
// >=0 - secure, <0 - unsecure
qint8 seclevel = 0;
quint32 size = uri.size();
for (quint32 i = 1; i < size; ++i) {
if (uri[i] == '/') {
switch (state) {
case 1: return false;
case 3: --seclevel;
}
state = 1;
} else
if (uri[i] == '.') {
switch (state) {
case 1: state = 2; break;
case 2: state = 3; break;
case 3: return false;
}
} else {
switch (state) {
case 1: ++seclevel; state = 0; break;
case 2: case 3: return false;
}
}
if (seclevel < 0)
return false;
}
return true;
}
bool ServerLogic::checkForIndex(QString &uri){
if(uri.at(uri.length() - 1) == '/') {
if(!cacheControl->isFileAvailiable(uri.append("index.html"))){
return false;
}
}
return true;
}