3 #include <apt-pkg/strutl.h>
4 #include <apt-pkg/fileutl.h>
5 #include <apt-pkg/error.h>
6 #include <apt-pkg/cmndline.h>
7 #include <apt-pkg/configuration.h>
8 #include <apt-pkg/init.h>
15 #include <sys/socket.h>
16 #include <sys/types.h>
18 #include <netinet/in.h>
26 char const * const httpcodeToStr(int const httpcode
) /*{{{*/
31 case 100: return "100 Continue";
32 case 101: return "101 Switching Protocols";
34 case 200: return "200 OK";
35 case 201: return "201 Created";
36 case 202: return "202 Accepted";
37 case 203: return "203 Non-Authoritative Information";
38 case 204: return "204 No Content";
39 case 205: return "205 Reset Content";
40 case 206: return "206 Partial Content";
42 case 300: return "300 Multiple Choices";
43 case 301: return "301 Moved Permanently";
44 case 302: return "302 Found";
45 case 303: return "303 See Other";
46 case 304: return "304 Not Modified";
47 case 305: return "304 Use Proxy";
48 case 307: return "307 Temporary Redirect";
50 case 400: return "400 Bad Request";
51 case 401: return "401 Unauthorized";
52 case 402: return "402 Payment Required";
53 case 403: return "403 Forbidden";
54 case 404: return "404 Not Found";
55 case 405: return "405 Method Not Allowed";
56 case 406: return "406 Not Acceptable";
57 case 407: return "407 Proxy Authentication Required";
58 case 408: return "408 Request Time-out";
59 case 409: return "409 Conflict";
60 case 410: return "410 Gone";
61 case 411: return "411 Length Required";
62 case 412: return "412 Precondition Failed";
63 case 413: return "413 Request Entity Too Large";
64 case 414: return "414 Request-URI Too Large";
65 case 415: return "415 Unsupported Media Type";
66 case 416: return "416 Requested range not satisfiable";
67 case 417: return "417 Expectation Failed";
68 case 418: return "418 I'm a teapot";
70 case 500: return "500 Internal Server Error";
71 case 501: return "501 Not Implemented";
72 case 502: return "502 Bad Gateway";
73 case 503: return "503 Service Unavailable";
74 case 504: return "504 Gateway Time-out";
75 case 505: return "505 HTTP Version not supported";
80 void addFileHeaders(std::list
<std::string
> &headers
, FileFd
&data
) /*{{{*/
82 std::ostringstream contentlength
;
83 contentlength
<< "Content-Length: " << data
.FileSize();
84 headers
.push_back(contentlength
.str());
86 std::string
lastmodified("Last-Modified: ");
87 lastmodified
.append(TimeRFC1123(data
.ModificationTime()));
88 headers
.push_back(lastmodified
);
91 void addDataHeaders(std::list
<std::string
> &headers
, std::string
&data
) /*{{{*/
93 std::ostringstream contentlength
;
94 contentlength
<< "Content-Length: " << data
.size();
95 headers
.push_back(contentlength
.str());
98 bool sendHead(int const client
, int const httpcode
, std::list
<std::string
> &headers
)/*{{{*/
100 std::string
response("HTTP/1.1 ");
101 response
.append(httpcodeToStr(httpcode
));
102 headers
.push_front(response
);
104 headers
.push_back("Server: APT webserver");
106 std::string
date("Date: ");
107 date
.append(TimeRFC1123(time(NULL
)));
108 headers
.push_back(date
);
110 std::clog
<< ">>> RESPONSE >>>" << std::endl
;
112 for (std::list
<std::string
>::const_iterator h
= headers
.begin();
113 Success
== true && h
!= headers
.end(); ++h
)
115 Success
&= FileFd::Write(client
, h
->c_str(), h
->size());
117 Success
&= FileFd::Write(client
, "\r\n", 2);
118 std::clog
<< *h
<< std::endl
;
121 Success
&= FileFd::Write(client
, "\r\n", 2);
122 std::clog
<< "<<<<<<<<<<<<<<<<" << std::endl
;
126 bool sendFile(int const client
, FileFd
&data
) /*{{{*/
130 unsigned long long actual
= 0;
131 while ((Success
&= data
.Read(buffer
, sizeof(buffer
), &actual
)) == true)
136 Success
&= FileFd::Write(client
, buffer
, actual
);
139 Success
&= FileFd::Write(client
, "\r\n", 2);
143 bool sendData(int const client
, std::string
const &data
) /*{{{*/
146 Success
&= FileFd::Write(client
, data
.c_str(), data
.size());
148 Success
&= FileFd::Write(client
, "\r\n", 2);
152 void sendError(int const client
, int const httpcode
, std::string
const &request
,/*{{{*/
153 bool content
, std::string
const &error
= "")
155 std::list
<std::string
> headers
;
156 std::string
response("<html><head><title>");
157 response
.append(httpcodeToStr(httpcode
)).append("</title></head>");
158 response
.append("<body><h1>").append(httpcodeToStr(httpcode
)).append("</h1>");
159 if (error
.empty() == false)
160 response
.append("<p><em>Error</em>: ").append(error
).append("</p>");
161 response
.append("This error is a result of the request: <pre>");
162 response
.append(request
).append("</pre></body></html>");
163 addDataHeaders(headers
, response
);
164 sendHead(client
, httpcode
, headers
);
166 sendData(client
, response
);
169 void sendRedirect(int const client
, int const httpcode
, std::string
const &uri
,/*{{{*/
170 std::string
const &request
, bool content
)
172 std::list
<std::string
> headers
;
173 std::string
response("<html><head><title>");
174 response
.append(httpcodeToStr(httpcode
)).append("</title></head>");
175 response
.append("<body><h1>").append(httpcodeToStr(httpcode
)).append("</h1");
176 response
.append("<p>You should be redirected to <em>").append(uri
).append("</em></p>");
177 response
.append("This page is a result of the request: <pre>");
178 response
.append(request
).append("</pre></body></html>");
179 addDataHeaders(headers
, response
);
180 std::string
location("Location: ");
181 if (strncmp(uri
.c_str(), "http://", 7) != 0)
182 location
.append("http://").append(LookupTag(request
, "Host")).append("/").append(uri
);
184 location
.append(uri
);
185 headers
.push_back(location
);
186 sendHead(client
, httpcode
, headers
);
188 sendData(client
, response
);
191 int filter_hidden_files(const struct dirent
*a
) /*{{{*/
193 if (a
->d_name
[0] == '.')
195 #ifdef _DIRENT_HAVE_D_TYPE
196 // if we have the d_type check that only files and dirs will be included
197 if (a
->d_type
!= DT_UNKNOWN
&&
198 a
->d_type
!= DT_REG
&&
199 a
->d_type
!= DT_LNK
&& // this includes links to regular files
205 int grouped_alpha_case_sort(const struct dirent
**a
, const struct dirent
**b
) {
206 #ifdef _DIRENT_HAVE_D_TYPE
207 if ((*a
)->d_type
== DT_DIR
&& (*b
)->d_type
== DT_DIR
);
208 else if ((*a
)->d_type
== DT_DIR
&& (*b
)->d_type
== DT_REG
)
210 else if ((*b
)->d_type
== DT_DIR
&& (*a
)->d_type
== DT_REG
)
215 struct stat f_prop
; //File's property
216 stat((*a
)->d_name
, &f_prop
);
217 int const amode
= f_prop
.st_mode
;
218 stat((*b
)->d_name
, &f_prop
);
219 int const bmode
= f_prop
.st_mode
;
220 if (S_ISDIR(amode
) && S_ISDIR(bmode
));
221 else if (S_ISDIR(amode
))
223 else if (S_ISDIR(bmode
))
226 return strcasecmp((*a
)->d_name
, (*b
)->d_name
);
229 void sendDirectoryListing(int const client
, std::string
const &dir
, /*{{{*/
230 std::string
const &request
, bool content
)
232 std::list
<std::string
> headers
;
233 std::ostringstream listing
;
235 struct dirent
**namelist
;
236 int const counter
= scandir(dir
.c_str(), &namelist
, filter_hidden_files
, grouped_alpha_case_sort
);
239 sendError(client
, 500, request
, content
);
243 listing
<< "<html><head><title>Index of " << dir
<< "</title>"
244 << "<style type=\"text/css\"><!-- td {padding: 0.02em 0.5em 0.02em 0.5em;}"
245 << "tr:nth-child(even){background-color:#dfdfdf;}"
246 << "h1, td:nth-child(3){text-align:center;}"
247 << "table {margin-left:auto;margin-right:auto;} --></style>"
248 << "</head>" << std::endl
249 << "<body><h1>Index of " << dir
<< "</h1>" << std::endl
250 << "<table><tr><th>#</th><th>Name</th><th>Size</th><th>Last-Modified</th></tr>" << std::endl
;
252 listing
<< "<tr><td>d</td><td><a href=\"..\">Parent Directory</a></td><td>-</td><td>-</td></tr>";
253 for (int i
= 0; i
< counter
; ++i
) {
255 std::string
filename(dir
);
256 filename
.append("/").append(namelist
[i
]->d_name
);
257 stat(filename
.c_str(), &fs
);
258 if (S_ISDIR(fs
.st_mode
))
260 listing
<< "<tr><td>d</td>"
261 << "<td><a href=\"" << namelist
[i
]->d_name
<< "/\">" << namelist
[i
]->d_name
<< "</a></td>"
266 listing
<< "<tr><td>f</td>"
267 << "<td><a href=\"" << namelist
[i
]->d_name
<< "\">" << namelist
[i
]->d_name
<< "</a></td>"
268 << "<td>" << SizeToStr(fs
.st_size
) << "B</td>";
270 listing
<< "<td>" << TimeRFC1123(fs
.st_mtime
) << "</td></tr>" << std::endl
;
272 listing
<< "</table></body></html>" << std::endl
;
274 std::string
response(listing
.str());
275 addDataHeaders(headers
, response
);
276 sendHead(client
, 200, headers
);
278 sendData(client
, response
);
281 bool parseFirstLine(int const client
, std::string
const &request
, /*{{{*/
282 std::string
&filename
, bool &sendContent
,
283 bool &closeConnection
)
285 if (strncmp(request
.c_str(), "HEAD ", 5) == 0)
287 if (strncmp(request
.c_str(), "GET ", 4) != 0)
289 sendError(client
, 501, request
, true);
293 size_t const lineend
= request
.find('\n');
294 size_t filestart
= request
.find(' ');
295 for (; request
[filestart
] == ' '; ++filestart
);
296 size_t fileend
= request
.rfind(' ', lineend
);
297 if (lineend
== std::string::npos
|| filestart
== std::string::npos
||
298 fileend
== std::string::npos
|| filestart
== fileend
)
300 sendError(client
, 500, request
, sendContent
, "Filename can't be extracted");
304 size_t httpstart
= fileend
;
305 for (; request
[httpstart
] == ' '; ++httpstart
);
306 if (strncmp(request
.c_str() + httpstart
, "HTTP/1.1\r", 9) == 0)
307 closeConnection
= strcasecmp(LookupTag(request
, "Connection", "Keep-Alive").c_str(), "Keep-Alive") != 0;
308 else if (strncmp(request
.c_str() + httpstart
, "HTTP/1.0\r", 9) == 0)
309 closeConnection
= strcasecmp(LookupTag(request
, "Connection", "Keep-Alive").c_str(), "close") == 0;
312 sendError(client
, 500, request
, sendContent
, "Not a HTTP/1.{0,1} request");
316 filename
= request
.substr(filestart
, fileend
- filestart
);
317 if (filename
.find(' ') != std::string::npos
)
319 sendError(client
, 500, request
, sendContent
, "Filename contains an unencoded space");
322 filename
= DeQuoteString(filename
);
324 // this is not a secure server, but at least prevent the obvious โฆ
325 if (filename
.empty() == true || filename
[0] != '/' ||
326 strncmp(filename
.c_str(), "//", 2) == 0 ||
327 filename
.find_first_of("\r\n\t\f\v") != std::string::npos
||
328 filename
.find("/../") != std::string::npos
)
330 sendError(client
, 400, request
, sendContent
, "Filename contains illegal character (sequence)");
334 // nuke the first character which is a / as we assured above
335 filename
.erase(0, 1);
336 if (filename
.empty() == true)
341 int main(int const argc
, const char * argv
[])
343 CommandLine::Args Args
[] = {
344 {0, "port", "aptwebserver::port", CommandLine::HasArg
},
345 {'c',"config-file",0,CommandLine::ConfigFile
},
346 {'o',"option",0,CommandLine::ArbItem
},
350 CommandLine
CmdL(Args
, _config
);
351 if(CmdL
.Parse(argc
,argv
) == false)
353 _error
->DumpErrors();
357 // create socket, bind and listen to it {{{
358 // ignore SIGPIPE, this can happen on write() if the socket closes connection
359 signal(SIGPIPE
, SIG_IGN
);
360 int sock
= socket(AF_INET6
, SOCK_STREAM
, 0);
363 _error
->Errno("aptwerbserver", "Couldn't create socket");
364 _error
->DumpErrors(std::cerr
);
368 int const port
= _config
->FindI("aptwebserver::port", 8080);
370 // ensure that we accept all connections: v4 or v6
371 int const iponly
= 0;
372 setsockopt(sock
, IPPROTO_IPV6
, IPV6_V6ONLY
, &iponly
, sizeof(iponly
));
373 // to not linger on an address
374 int const enable
= 1;
375 setsockopt(sock
, SOL_SOCKET
, SO_REUSEADDR
, &enable
, sizeof(enable
));
377 struct sockaddr_in6 locAddr
;
378 memset(&locAddr
, 0, sizeof(locAddr
));
379 locAddr
.sin6_family
= AF_INET6
;
380 locAddr
.sin6_port
= htons(port
);
381 locAddr
.sin6_addr
= in6addr_any
;
383 if (bind(sock
, (struct sockaddr
*) &locAddr
, sizeof(locAddr
)) < 0)
385 _error
->Errno("aptwerbserver", "Couldn't bind");
386 _error
->DumpErrors(std::cerr
);
391 if (_config
->FindB("aptwebserver::fork", false) == true)
393 std::string
const pidfilename
= _config
->Find("aptwebserver::pidfile", "aptwebserver.pid");
394 int const pidfilefd
= GetLock(pidfilename
);
395 if (pidfilefd
< 0 || pidfile
.OpenDescriptor(pidfilefd
, FileFd::WriteOnly
) == false)
397 _error
->Errno("aptwebserver", "Couldn't acquire lock on pidfile '%s'", pidfilename
.c_str());
398 _error
->DumpErrors(std::cerr
);
402 pid_t child
= fork();
405 _error
->Errno("aptwebserver", "Forking failed");
406 _error
->DumpErrors(std::cerr
);
411 // successfully forked: ready to serve!
412 std::string pidcontent
;
413 strprintf(pidcontent
, "%d", child
);
414 pidfile
.Write(pidcontent
.c_str(), pidcontent
.size());
415 if (_error
->PendingError() == true)
417 _error
->DumpErrors(std::cerr
);
420 std::cout
<< "Successfully forked as " << child
<< std::endl
;
425 std::clog
<< "Serving ANY file on port: " << port
<< std::endl
;
430 std::vector
<std::string
> messages
;
432 while ((client
= accept(sock
, NULL
, NULL
)) != -1)
434 std::clog
<< "ACCEPT client " << client
435 << " on socket " << sock
<< std::endl
;
437 while (ReadMessages(client
, messages
))
439 bool closeConnection
= false;
440 for (std::vector
<std::string
>::const_iterator m
= messages
.begin();
441 m
!= messages
.end() && closeConnection
== false; ++m
) {
442 std::clog
<< ">>> REQUEST >>>>" << std::endl
<< *m
443 << std::endl
<< "<<<<<<<<<<<<<<<<" << std::endl
;
444 std::list
<std::string
> headers
;
445 std::string filename
;
446 bool sendContent
= true;
447 if (parseFirstLine(client
, *m
, filename
, sendContent
, closeConnection
) == false)
450 std::string host
= LookupTag(*m
, "Host", "");
451 if (host
.empty() == true)
453 // RFC 2616 ยง14.23 requires Host
454 sendError(client
, 400, *m
, sendContent
, "Host header is required");
458 // string replacements in the requested filename
459 ::Configuration::Item
const *Replaces
= _config
->Tree("aptwebserver::redirect::replace");
460 if (Replaces
!= NULL
)
462 std::string redirect
= "/" + filename
;
463 for (::Configuration::Item
*I
= Replaces
->Child
; I
!= NULL
; I
= I
->Next
)
464 redirect
= SubstVar(redirect
, I
->Tag
, I
->Value
);
466 if (redirect
!= filename
)
468 sendRedirect(client
, 301, redirect
, *m
, sendContent
);
473 ::Configuration::Item
const *Overwrite
= _config
->Tree("aptwebserver::overwrite");
474 if (Overwrite
!= NULL
)
476 for (::Configuration::Item
*I
= Overwrite
->Child
; I
!= NULL
; I
= I
->Next
)
478 regex_t
*pattern
= new regex_t
;
479 int const res
= regcomp(pattern
, I
->Tag
.c_str(), REG_EXTENDED
| REG_ICASE
| REG_NOSUB
);
483 regerror(res
, pattern
, error
, sizeof(error
));
484 sendError(client
, 500, *m
, sendContent
, error
);
487 if (regexec(pattern
, filename
.c_str(), 0, 0, 0) == 0)
489 filename
= _config
->Find("aptwebserver::overwrite::" + I
->Tag
+ "::filename", filename
);
490 if (filename
[0] == '/')
499 // deal with the request
500 if (RealFileExists(filename
) == true)
502 FileFd
data(filename
, FileFd::ReadOnly
);
503 std::string condition
= LookupTag(*m
, "If-Modified-Since", "");
504 if (condition
.empty() == false)
507 if (RFC1123StrToTime(condition
.c_str(), cache
) == true &&
508 cache
>= data
.ModificationTime())
510 sendHead(client
, 304, headers
);
515 addFileHeaders(headers
, data
);
516 sendHead(client
, 200, headers
);
517 if (sendContent
== true)
518 sendFile(client
, data
);
520 else if (DirectoryExists(filename
) == true)
522 if (filename
== "." || filename
[filename
.length()-1] == '/')
523 sendDirectoryListing(client
, filename
, *m
, sendContent
);
525 sendRedirect(client
, 301, filename
.append("/"), *m
, sendContent
);
528 sendError(client
, 404, *m
, sendContent
);
530 _error
->DumpErrors(std::cerr
);
532 if (closeConnection
== true)
536 std::clog
<< "CLOSE client " << client
537 << " on socket " << sock
<< std::endl
;