author | Dan |
Fri, 12 Jun 2009 13:49:22 -0400 | |
changeset 77 | e5f1f45ea7e2 |
parent 76 | 487a16c7117c |
permissions | -rw-r--r-- |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1 |
<?php |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
3 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
4 |
* Webserver class |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
5 |
* |
6
5f35ebc4f9bb
First release version. Renamed to Greyhound and readme/license files added.
Dan
parents:
5
diff
changeset
|
6 |
* Greyhound - real web management for Amarok |
5
9b96265b5918
Relicensed to GPLv2. Previous revisions should not be downloaded as they do not contain copies of appropriate licenses, which will be added in a later commit. Completed interface for mobile devices.
Dan
parents:
0
diff
changeset
|
7 |
* Copyright (C) 2008 Dan Fuhry |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
8 |
* |
5
9b96265b5918
Relicensed to GPLv2. Previous revisions should not be downloaded as they do not contain copies of appropriate licenses, which will be added in a later commit. Completed interface for mobile devices.
Dan
parents:
0
diff
changeset
|
9 |
* This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License |
9b96265b5918
Relicensed to GPLv2. Previous revisions should not be downloaded as they do not contain copies of appropriate licenses, which will be added in a later commit. Completed interface for mobile devices.
Dan
parents:
0
diff
changeset
|
10 |
* as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
9b96265b5918
Relicensed to GPLv2. Previous revisions should not be downloaded as they do not contain copies of appropriate licenses, which will be added in a later commit. Completed interface for mobile devices.
Dan
parents:
0
diff
changeset
|
11 |
* |
9b96265b5918
Relicensed to GPLv2. Previous revisions should not be downloaded as they do not contain copies of appropriate licenses, which will be added in a later commit. Completed interface for mobile devices.
Dan
parents:
0
diff
changeset
|
12 |
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
9b96265b5918
Relicensed to GPLv2. Previous revisions should not be downloaded as they do not contain copies of appropriate licenses, which will be added in a later commit. Completed interface for mobile devices.
Dan
parents:
0
diff
changeset
|
13 |
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
14 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
15 |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
16 |
require('multithreading.php'); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
17 |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
18 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
19 |
* Version of the server |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
20 |
* @const string |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
21 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
22 |
|
43 | 23 |
define('HTTPD_VERSION', '0.1b5'); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
24 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
25 |
/** |
26
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
26 |
* Length of keep-alive connections |
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
27 |
* @const int |
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
28 |
*/ |
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
29 |
|
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
30 |
define('HTTPD_KEEP_ALIVE_TIMEOUT', 300); |
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
31 |
|
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
32 |
/** |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
33 |
* Webserver system icons |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
34 |
*/ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
35 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
36 |
define('HTTPD_ICON_SCRIPT', 'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGSSURBVCjPVVFNSwJhEF78Ad79Cf6PvXQRsotUlzKICosuRYmR2RJR0KE6lBFFZVEbpFBSqKu2rum6llFS9HHI4iUhT153n6ZtIWMOM+/MM88z7wwH7s9Ub16SJcnbmrNcxVm2q7Z8/QPvEOtntpj92NkCqITLepEpjix7xQtiLOoQ2b6+E7YAN/5nfOEJ2WbKqOIOJ4bYVMEQx4LfBBQDsvFMhUcCVU1/CxVXmDBGA5ZETrhDCQVcYAPbyEJBhvrnBVPiSpNr6cYDNCQwo4zzU/ySckkgDYuNuVpI42T9k4gLKGMPs/xPzzovQiY2hQYe0jlJfyNNhTqiWDYBq/wBMcSRpnyPzu1oS7WtxjVBSthU1vgVksiQ3Dn6Gp5ah2YOKQo5GiuHPA6xT1EKpxQNCNYejgIR457KKio0S56YckjSa9jo//3mrj+BV0QQagqGTOo+Y7gZIf1puP3WHoLhEb2PjTlCTCWGXtbp8DCX3hZuOdaIc9A+aQvWk4ihq95p67a7nP+u+Ws+r0dql9z/zv0NCYhdCPKZ7oYAAAAASUVORK5CYII='); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
37 |
define('HTTPD_ICON_FOLDER', 'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGrSURBVDjLxZO7ihRBFIa/6u0ZW7GHBUV0UQQTZzd3QdhMQxOfwMRXEANBMNQX0MzAzFAwEzHwARbNFDdwEd31Mj3X7a6uOr9BtzNjYjKBJ6nicP7v3KqcJFaxhBVtZUAK8OHlld2st7Xl3DJPVONP+zEUV4HqL5UDYHr5xvuQAjgl/Qs7TzvOOVAjxjlC+ePSwe6DfbVegLVuT4r14eTr6zvA8xSAoBLzx6pvj4l+DZIezuVkG9fY2H7YRQIMZIBwycmzH1/s3F8AapfIPNF3kQk7+kw9PWBy+IZOdg5Ug3mkAATy/t0usovzGeCUWTjCz0B+Sj0ekfdvkZ3abBv+U4GaCtJ1iEm6ANQJ6fEzrG/engcKw/wXQvEKxSEKQxRGKE7Izt+DSiwBJMUSm71rguMYhQKrBygOIRStf4TiFFRBvbRGKiQLWP29yRSHKBTtfdBmHs0BUpgvtgF4yRFR+NUKi0XZcYjCeCG2smkzLAHkbRBmP0/Uk26O5YnUActBp1GsAI+S5nRJJJal5K1aAMrq0d6Tm9uI6zjyf75dAe6tx/SsWeD//o2/Ab6IH3/h25pOAAAAAElFTkSuQmCC'); |
29 | 38 |
define('HTTPD_ICON_FILE', 'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAINSURBVBgZBcG/r55zGAfg6/4+z3va01NHlYgzEfE7MdCIGISFgS4Gk8ViYyM2Mdlsko4GSf8Do0FLRCIkghhYJA3aVBtEz3nP89wf11VJvPDepdd390+8Nso5nESBQoq0pfvXm9fzWf19453LF85vASqJlz748vInb517dIw6EyYBIIG49u+xi9/c9MdvR//99MPPZ7+4cP4IZhhTPbwzT2d+vGoaVRRp1rRliVvHq+cfvM3TD82+7mun0o/ceO7NT+/4/KOXjwZU1ekk0840bAZzMQ2mooqh0A72d5x/6sB9D5zYnff3PoYBoWBgFKPKqDKqjCpjKr//dcu9p489dra88cydps30KswACfNEKanSaxhlntjJ8Mv12Paie+vZ+0+oeSwwQ0Iw1xAR1CiFNJkGO4wu3ZMY1AAzBI0qSgmCNJsJUEOtJSMaCTBDLyQ0CknAGOgyTyFFiLI2awMzdEcSQgSAAKVUmAeNkxvWJWCGtVlDmgYQ0GFtgg4pNtOwbBcwQy/Rife/2yrRRVI0qYCEBly8Z+P4qMEMy7JaVw72N568e+iwhrXoECQkfH91kY7jwwXMsBx1L93ZruqrK6uuiAIdSnTIKKPLPFcvay8ww/Hh+ufeznTXu49v95IMoQG3784gYXdTqvRmqn/Wpa/ADFX58MW3L71SVU9ETgEIQQQIOOzub+fhIvwPRDgeVjWDahIAAAAASUVORK5CYII='); |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
39 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
40 |
/** |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
41 |
* Abstraction layer to use |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
42 |
*/ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
43 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
44 |
define('HTTPD_SOCKET_LAYER', 'Stream'); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
45 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
46 |
/** |
24
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
47 |
* Simple but full-featured embedded web server written in PHP. |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
48 |
* @package Amarok |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
49 |
* @subpackage WebControl |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
50 |
* @author Dan Fuhry |
23
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
51 |
* @license GNU General Public License <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html> |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
52 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
53 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
54 |
class WebServer |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
55 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
56 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
57 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
58 |
* IP address we're bound to |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
59 |
* @var string |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
60 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
61 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
62 |
var $bind_address = '127.0.0.1'; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
63 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
64 |
/** |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
65 |
* Port we're listening on |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
66 |
* @var int |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
67 |
*/ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
68 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
69 |
var $port = 8080; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
70 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
71 |
/** |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
72 |
* Socket abstraction object |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
73 |
* @var object |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
74 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
75 |
|
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
76 |
var $server = null; |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
77 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
78 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
79 |
* Server string |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
80 |
* @var string |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
81 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
82 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
83 |
var $server_string = 'PhpHttpd'; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
84 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
85 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
86 |
* Default document (well default handler) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
87 |
* @var string |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
88 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
89 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
90 |
var $default_document = false; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
91 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
92 |
/** |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
93 |
* List of filenames or handlers used when a directory listing is requested |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
94 |
* @var array |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
95 |
*/ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
96 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
97 |
var $directory_index = array('index.html', 'index.htm', 'index', 'default.html', 'default.htm'); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
98 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
99 |
/** |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
100 |
* HTTP response code set by the handler function |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
101 |
* @var int |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
102 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
103 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
104 |
var $response_code = 0; |
40
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
105 |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
106 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
107 |
* Content type set by the current handler function |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
108 |
* @var string |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
109 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
110 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
111 |
var $content_type = ''; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
112 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
113 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
114 |
* Response headers to send back to the client |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
115 |
* @var array |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
116 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
117 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
118 |
var $response_headers = array(); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
119 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
120 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
121 |
* List of handlers |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
122 |
* @var array |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
123 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
124 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
125 |
var $handlers = array(); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
126 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
127 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
128 |
* Switch to control if directory listing is enabled |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
129 |
* @var bool |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
130 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
131 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
132 |
var $allow_dir_list = false; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
133 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
134 |
/** |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
135 |
* Switch to control forking support. |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
136 |
* @var bool |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
137 |
*/ |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
138 |
|
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
139 |
var $allow_fork = true; |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
140 |
|
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
141 |
/** |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
142 |
* Multi-threading manager. |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
143 |
* @var object |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
144 |
*/ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
145 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
146 |
var $threader = false; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
147 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
148 |
/** |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
149 |
* Keep-alive support uses this to track what the client requested. |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
150 |
* Only used if $allow_fork is set to true. |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
151 |
* @var bool |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
152 |
*/ |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
153 |
|
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
154 |
var $in_keepalive = false; |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
155 |
|
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
156 |
/** |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
157 |
* UUID for this server instance |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
158 |
* @var string |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
159 |
*/ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
160 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
161 |
var $uuid = '00000000-0000-0000-0000-000000000000'; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
162 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
163 |
/** |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
164 |
* Switch to track whether a scriptlet is running. If it is, send_http_error() does more than normal. |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
165 |
* @var bool |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
166 |
*/ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
167 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
168 |
var $in_scriptlet = false; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
169 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
170 |
/** |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
171 |
* Switch to track whether headers have been sent or not. |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
172 |
* @var bool |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
173 |
*/ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
174 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
175 |
var $headers_sent = false; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
176 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
177 |
/** |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
178 |
* Switch to track if the socket is bound and thus needs to be freed or not |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
179 |
* @var bool |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
180 |
*/ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
181 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
182 |
var $socket_initted = false; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
183 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
184 |
/** |
32
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
185 |
* The list of child processes spawned by this server. |
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
186 |
* @var array |
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
187 |
*/ |
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
188 |
|
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
189 |
var $child_list = array(); |
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
190 |
|
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
191 |
/** |
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
192 |
* The parent process's PID |
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
193 |
* @var int |
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
194 |
*/ |
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
195 |
|
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
196 |
var $parent_pid = 0; |
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
197 |
|
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
198 |
/** |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
199 |
* List of IPC request handlers |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
200 |
* @var array |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
201 |
* @access private |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
202 |
*/ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
203 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
204 |
var $ipc_handlers = array(); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
205 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
206 |
/** |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
207 |
* Sockets for parent and child to communicate |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
208 |
* @var resource |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
209 |
* @var resource |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
210 |
*/ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
211 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
212 |
var $parent_sock = null; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
213 |
var $child_sock = null; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
214 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
215 |
/** |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
216 |
* Switched on when a graceful reboot event is sent. |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
217 |
* @var bool |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
218 |
*/ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
219 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
220 |
var $reboot_sent = false; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
221 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
222 |
/** |
76
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
223 |
* Tracks old allow_fork setting for during reboots |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
224 |
* @var bool |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
225 |
*/ |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
226 |
|
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
227 |
var $old_allow_fork = false; |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
228 |
|
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
229 |
/** |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
230 |
* Constructor. |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
231 |
* @param string IPv4 address to bind to |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
232 |
* @param int Port number |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
233 |
* @param int If port is under 1024, specify a user ID/name to switch to here |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
234 |
* @param int If port is under 1024, specify a group ID/name to switch to here |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
235 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
236 |
|
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
237 |
function __construct($address = '127.0.0.1', $port = 8080, $targetuser = null, $targetgroup = null) |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
238 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
239 |
@set_time_limit(0); |
23
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
240 |
@ini_set('memory_limit', '128M'); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
241 |
|
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
242 |
// make sure we're not running as root |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
243 |
// note that if allow_root is true, you must specify a UID/GID (or user/group) to switch to once the socket is bound |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
244 |
$allow_root = ( $port < 1024 ) ? true : false; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
245 |
if ( function_exists('posix_geteuid') ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
246 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
247 |
$euid = posix_geteuid(); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
248 |
$egid = posix_getegid(); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
249 |
$username = posix_getpwuid($euid); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
250 |
$username = $username['name']; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
251 |
$group = posix_getgrgid($egid); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
252 |
$group = $group['name']; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
253 |
if ( $euid == 0 && !$allow_root ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
254 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
255 |
// running as root but not on a privileged port - die for security |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
256 |
burnout("Running as superuser (user \"$username\" and group \"$group\"). This is not allowed for security reasons."); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
257 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
258 |
else if ( $euid == 0 && $allow_root ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
259 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
260 |
// running as root and port below 1024, so notify of the switch and verify that a target UID and GID were passed |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
261 |
if ( $targetuser === null || $targetgroup === null ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
262 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
263 |
// no target user/group specified |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
264 |
burnout("Must specify a target user and group when running server as root"); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
265 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
266 |
// get info about target user/group |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
267 |
if ( is_string($targetuser) ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
268 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
269 |
$targetuser = posix_getpwnam($targetuser); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
270 |
$targetuser = $targetuser['uid']; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
271 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
272 |
if ( is_string($targetgroup) ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
273 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
274 |
$targetgroup = posix_getgrnam($targetgroup); |
64
ee64bb096f56
A few miscellaneous fixes including modifying WebServer to write data in chunks (improved performance and reliability on a slow connection)
Dan
parents:
63
diff
changeset
|
275 |
$targetgroup = $targetgroup['gid']; |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
276 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
277 |
// make sure all info is valid |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
278 |
if ( !is_int($targetuser) || !is_int($targetgroup) ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
279 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
280 |
burnout('Invalid user or group specified'); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
281 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
282 |
$userinfo = posix_getpwuid($targetuser); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
283 |
$groupinfo = posix_getgrgid($targetgroup); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
284 |
if ( function_exists('status') ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
285 |
status("Will switch to user \"{$userinfo['name']}\" and group \"{$groupinfo['name']}\" shortly after binding to socket"); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
286 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
287 |
else if ( $allow_root && $euid > 0 ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
288 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
289 |
burnout("Must be superuser to bind to ports below 1024"); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
290 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
291 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
292 |
$socket_do_root = ( $allow_root ) ? function_exists('posix_geteuid') : false; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
293 |
|
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
294 |
$class = 'Socket_' . HTTPD_SOCKET_LAYER; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
295 |
$this->server = new $class(); |
57 | 296 |
if ( is_array($address) ) |
297 |
{ |
|
298 |
foreach ( $address as $a ) |
|
299 |
{ |
|
300 |
if ( is_array($port) ) |
|
301 |
{ |
|
302 |
foreach ( $port as $p ) |
|
303 |
{ |
|
304 |
$this->server->tcp_listen($a, $p); |
|
305 |
} |
|
306 |
} |
|
307 |
else |
|
308 |
{ |
|
309 |
$this->server->tcp_listen($a, $port); |
|
310 |
} |
|
311 |
} |
|
312 |
} |
|
313 |
else |
|
314 |
{ |
|
315 |
if ( is_array($port) ) |
|
316 |
{ |
|
317 |
foreach ( $port as $p ) |
|
318 |
{ |
|
319 |
$this->server->tcp_listen($address, $p); |
|
320 |
} |
|
321 |
} |
|
322 |
else |
|
323 |
{ |
|
324 |
$this->server->tcp_listen($address, $port); |
|
325 |
} |
|
326 |
} |
|
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
327 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
328 |
// if running as root and we made it here, switch credentials |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
329 |
if ( $socket_do_root ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
330 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
331 |
posix_setuid($targetuser); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
332 |
posix_setgid($targetgroup); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
333 |
posix_setegid($targetgroup); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
334 |
posix_seteuid($targetuser); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
335 |
if ( function_exists('status') ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
336 |
status('Successfully switched user ID'); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
337 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
338 |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
339 |
$this->bind_address = $address; |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
340 |
$this->port = $port; |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
341 |
$this->server_string = "PhpHttpd/" . HTTPD_VERSION . " PHP/" . PHP_VERSION . "\r\n"; |
32
86140ed9087d
Experimental: upon change to playlist, send SIGUSR1 to parent process and branch out to all children to force a playlist refresh
Dan
parents:
26
diff
changeset
|
342 |
$this->parent_pid = getmypid(); |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
343 |
$this->threader = new Threader(); |
76
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
344 |
$this->threader->ipc_register('ws_reboot', array(&$this, 'reboot_ipc')); |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
345 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
346 |
// create a UUID |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
347 |
$uuid_base = md5(microtime() . ( function_exists('mt_rand') ? mt_rand() : rand() )); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
348 |
$this->uuid = substr($uuid_base, 0, 8) . '-' . |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
349 |
substr($uuid_base, 8, 4) . '-' . |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
350 |
substr($uuid_base, 12, 4) . '-' . |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
351 |
substr($uuid_base, 16, 4) . '-' . |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
352 |
substr($uuid_base, 20, 20); |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
353 |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
354 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
355 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
356 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
357 |
* Destructor. |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
358 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
359 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
360 |
function __destruct() |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
361 |
{ |
68
32f6e2ee15ab
WebServer: fixed longstanding non-security fwrite buffer overflow bug
Dan
parents:
67
diff
changeset
|
362 |
if ( !$this->threader ) |
67
c4aefad02ce4
WebServer now does not attempt to destruct if threader is not up
Dan
parents:
64
diff
changeset
|
363 |
{ |
c4aefad02ce4
WebServer now does not attempt to destruct if threader is not up
Dan
parents:
64
diff
changeset
|
364 |
return false; |
c4aefad02ce4
WebServer now does not attempt to destruct if threader is not up
Dan
parents:
64
diff
changeset
|
365 |
} |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
366 |
if ( !$this->threader->is_child() && $this->socket_initted ) |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
367 |
{ |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
368 |
if ( function_exists('status') ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
369 |
status('WebServer: destroying socket'); |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
370 |
$this->server->destroy(); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
371 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
372 |
// tell all children to shut down |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
373 |
if ( $this->allow_fork ) |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
374 |
{ |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
375 |
if ( function_exists('status') ) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
376 |
status('WebServer: asking all children to exit'); |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
377 |
$this->threader->kill_all_children(); |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
378 |
} |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
379 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
380 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
381 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
382 |
/** |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
383 |
* Reboot the server. Useful for applying new settings. |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
384 |
* @param string Optional, new IP address to bind to |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
385 |
* @param int Optional, new port to bind to |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
386 |
* @param bool Optional, whether to allow forking or not |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
387 |
*/ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
388 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
389 |
function reboot($addr = null, $port = null, $allow_fork = null) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
390 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
391 |
if ( function_exists('status') ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
392 |
status('Reboot request has been received'); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
393 |
|
76
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
394 |
// The goal of the reboot() function is to only initiate the reboot - not |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
395 |
// actually start it. This is because reboot() is often called from signal |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
396 |
// handlers, thus trying to kill all children can result in a lockup. |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
397 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
398 |
$this->reboot_sent = true; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
399 |
|
76
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
400 |
// if we're a child, we have to tell the parent to reboot. during the next |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
401 |
// server loop, the child will die on its own (ok, with a little help from |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
402 |
// the reboot_sent flag) |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
403 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
404 |
if ( $this->threader->is_child() ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
405 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
406 |
$this->threader->ipc_send(array( |
76
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
407 |
'action' => 'ws_reboot', |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
408 |
'addr' => $addr, |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
409 |
'port' => $port, |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
410 |
'fork' => $allow_fork |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
411 |
)); |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
412 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
413 |
else |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
414 |
{ |
76
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
415 |
// If we're not a child, finish the job |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
416 |
$this->reboot_ipc(array( |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
417 |
'addr' => $addr, |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
418 |
'port' => $port, |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
419 |
'fork' => $allow_fork |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
420 |
)); |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
421 |
} |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
422 |
} |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
423 |
|
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
424 |
/** |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
425 |
* Internal method called from an IPC reboot event |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
426 |
* @access private |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
427 |
*/ |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
428 |
|
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
429 |
function reboot_ipc($params) |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
430 |
{ |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
431 |
if ( function_exists('status') ) |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
432 |
status('IPC reboot is in stage 2'); |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
433 |
|
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
434 |
$this->reboot_sent = true; |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
435 |
$this->old_allow_fork = $this->allow_fork; |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
436 |
|
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
437 |
if ( is_string($params['addr']) ) |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
438 |
{ |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
439 |
$this->bind_address = $params['addr']; |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
440 |
} |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
441 |
if ( is_int($params['port']) ) |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
442 |
{ |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
443 |
$this->port = $params['port']; |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
444 |
} |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
445 |
if ( is_bool($params['fork']) ) |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
446 |
{ |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
447 |
$this->allow_fork = $params['fork']; |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
448 |
} |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
449 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
450 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
451 |
/** |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
452 |
* Respawns the server. All children should be dead, and any client |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
453 |
* connections must be closed. |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
454 |
*/ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
455 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
456 |
function respawn() |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
457 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
458 |
$this->reboot_sent = false; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
459 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
460 |
if ( function_exists('status') ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
461 |
status('Respawn event sent'); |
76
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
462 |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
463 |
$this->server->destroy(); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
464 |
unset($this->server); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
465 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
466 |
// try to spawn up to 10 times |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
467 |
for ( $i = 0; $i < 10; $i++ ) |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
468 |
{ |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
469 |
try |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
470 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
471 |
$this->__construct($this->bind_address, $this->port); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
472 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
473 |
catch ( Exception $e ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
474 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
475 |
if ( $i == 9 ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
476 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
477 |
if ( function_exists('burnout') ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
478 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
479 |
burnout("Couldn't respawn because one of the child processes did not die, and thus the port was not freed."); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
480 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
481 |
exit(1); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
482 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
483 |
if ( function_exists('status') ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
484 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
485 |
status("Respawn failed, retrying in 2 seconds"); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
486 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
487 |
usleep(2000000); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
488 |
continue; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
489 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
490 |
break; |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
491 |
} |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
492 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
493 |
if ( function_exists('status') ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
494 |
status('Respawn is complete, entering server loop with bind_address = ' . $this->bind_address . ' allow_fork = ' . strval(intval($this->allow_fork))); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
495 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
496 |
// all handlers should already be set up, so just break out and we should automatically continue the server loop |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
497 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
498 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
499 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
500 |
* Main server loop |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
501 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
502 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
503 |
function serve() |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
504 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
505 |
while ( true ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
506 |
{ |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
507 |
## |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
508 |
## STAGE 0: CLEANUP FROM PREVIOUS RUN |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
509 |
## |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
510 |
|
76
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
511 |
// if this is a child process, we may need to exit here. |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
512 |
if ( $this->threader->is_child() && ( !$this->in_keepalive || $this->reboot_sent ) ) |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
513 |
{ |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
514 |
if ( function_exists('status') ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
515 |
status('Exiting child process'); |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
516 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
517 |
$remote->destroy(); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
518 |
|
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
519 |
exit(0); |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
520 |
} |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
521 |
|
76
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
522 |
// If we're waiting on a reboot, take care of it now |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
523 |
if ( $this->reboot_sent ) |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
524 |
{ |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
525 |
if ( $this->old_allow_fork ) |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
526 |
{ |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
527 |
// we are the parent and have been asked to respawn. there are (presumably) |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
528 |
// still children running around; when one of them dies, we'll receive a |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
529 |
// SIGCHLD, but often times this is already being called from the SIGUSR2 |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
530 |
// handler. whoops. |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
531 |
if ( function_exists('status') ) |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
532 |
status('Waiting on all children'); |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
533 |
|
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
534 |
// this is the parent, and there are children present |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
535 |
$this->threader->kill_all_children(); |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
536 |
} |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
537 |
|
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
538 |
if ( function_exists('status') ) |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
539 |
status('Reboot is a go'); |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
540 |
|
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
541 |
$this->respawn(); |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
542 |
} |
487a16c7117c
Considerably improved reliability of reboot code. Still producing respawn errors so currently disabled.
Dan
parents:
68
diff
changeset
|
543 |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
544 |
## |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
545 |
## STAGE 1: LISTENER AND INIT |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
546 |
## |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
547 |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
548 |
// wait for connection... |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
549 |
if ( !$this->threader->is_child() ) |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
550 |
{ |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
551 |
$remote = $this->server->accept(); |
12
b3fcc21e557f
Backend improvement to webserver that causes interrupts to work properly; made pcntl_signal only be called if it's supported
Dan
parents:
10
diff
changeset
|
552 |
} |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
553 |
|
12
b3fcc21e557f
Backend improvement to webserver that causes interrupts to work properly; made pcntl_signal only be called if it's supported
Dan
parents:
10
diff
changeset
|
554 |
if ( !$remote ) |
b3fcc21e557f
Backend improvement to webserver that causes interrupts to work properly; made pcntl_signal only be called if it's supported
Dan
parents:
10
diff
changeset
|
555 |
{ |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
556 |
$this->in_keepalive = false; |
12
b3fcc21e557f
Backend improvement to webserver that causes interrupts to work properly; made pcntl_signal only be called if it's supported
Dan
parents:
10
diff
changeset
|
557 |
continue; |
b3fcc21e557f
Backend improvement to webserver that causes interrupts to work properly; made pcntl_signal only be called if it's supported
Dan
parents:
10
diff
changeset
|
558 |
} |
b3fcc21e557f
Backend improvement to webserver that causes interrupts to work properly; made pcntl_signal only be called if it's supported
Dan
parents:
10
diff
changeset
|
559 |
|
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
560 |
// fork off if possible |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
561 |
if ( function_exists('pcntl_fork') && $this->allow_fork && !$this->in_keepalive ) |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
562 |
{ |
56 | 563 |
$fork_result = $this->threader->fork(); |
564 |
if ( $fork_result == Threader::FORK_CHILD ) |
|
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
565 |
{ |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
566 |
// this is the child |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
567 |
define('HTTPD_WS_CHILD', 1); |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
568 |
} |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
569 |
else |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
570 |
{ |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
571 |
// we are the parent, continue listening |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
572 |
$remote->soft_shutdown(); |
56 | 573 |
$this->child_list[] = $fork_result; |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
574 |
continue; |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
575 |
} |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
576 |
} |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
577 |
|
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
578 |
$this->in_keepalive = false; |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
579 |
$this->headers_sent = false; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
580 |
$this->in_scriptlet = false; |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
581 |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
582 |
## |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
583 |
## STAGE 2: READ REQUEST |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
584 |
## |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
585 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
586 |
// this is a complicated situation because we need to keep enough ticks going to properly handle |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
587 |
// signals, meaning we can't use stream_set_timeout() and instead need to rely on our own timing |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
588 |
// logic. setting the timeout to a short period, say 200,000 usec, we can minimize CPU usage and |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
589 |
// have a good response time. |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
590 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
591 |
$remote->set_timeout(0, 200000); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
592 |
$start_time = microtime(true); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
593 |
$client_headers = ''; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
594 |
$last_line = ''; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
595 |
while ( true ) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
596 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
597 |
if ( $start_time + HTTPD_KEEP_ALIVE_TIMEOUT < microtime(true) || $remote->is_eof() ) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
598 |
{ |
68
32f6e2ee15ab
WebServer: fixed longstanding non-security fwrite buffer overflow bug
Dan
parents:
67
diff
changeset
|
599 |
// request expired -- end the iteration here |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
600 |
if ( !$this->threader->is_child() ) |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
601 |
$remote->destroy(); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
602 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
603 |
continue 2; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
604 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
605 |
$line = strval($remote->read_normal()); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
606 |
$line = str_replace("\r", "", $line); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
607 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
608 |
// raw layer wants to send 2 empty lines through, stream layer wants to send one. |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
609 |
$last_line_check = ( HTTPD_SOCKET_LAYER != 'Raw' || ( HTTPD_SOCKET_LAYER == 'Raw' && $last_line == "\n" ) ); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
610 |
if ( $line == "\n" && $last_line_check ) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
611 |
// we have two newlines in a row, break out since we have a full request |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
612 |
break; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
613 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
614 |
$client_headers .= $line; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
615 |
$last_line = $line; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
616 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
617 |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
618 |
## |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
619 |
## STAGE 3: PARSE REQUEST AND HEADERS |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
620 |
## |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
621 |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
622 |
// parse request |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
623 |
$client_headers = trim($client_headers); |
29 | 624 |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
625 |
if ( isset($last_finish_time) && empty($client_headers) && $this->threader->is_child() && $last_finish_time + HTTPD_KEEP_ALIVE_TIMEOUT < microtime(true) ) |
29 | 626 |
{ |
627 |
status('[debug] keep-alive connection timed out (checkpoint 2)'); |
|
628 |
continue; // will jump back to the start of the loop and kill the child process |
|
629 |
} |
|
630 |
||
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
631 |
$client_headers = explode("\n", $client_headers); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
632 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
633 |
// first line |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
634 |
$request = $client_headers[0]; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
635 |
if ( !preg_match('/^(GET|POST) \/([^ ]*) HTTP\/1\.[01]$/', $request, $match) ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
636 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
637 |
$this->send_http_error($remote, 400, 'Your client issued a malformed or illegal request.'); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
638 |
continue; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
639 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
640 |
$method =& $match[1]; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
641 |
$uri =& $match[2]; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
642 |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
643 |
// set client header SERVER variables |
43 | 644 |
foreach ( $_SERVER as $key => $_ ) |
645 |
{ |
|
646 |
if ( preg_match('/^HTTP_/', $key) ) |
|
647 |
unset($_SERVER[$key]); |
|
648 |
} |
|
64
ee64bb096f56
A few miscellaneous fixes including modifying WebServer to write data in chunks (improved performance and reliability on a slow connection)
Dan
parents:
63
diff
changeset
|
649 |
if ( !isset($_SERVER['SERVER_SOFTWARE']) ) |
ee64bb096f56
A few miscellaneous fixes including modifying WebServer to write data in chunks (improved performance and reliability on a slow connection)
Dan
parents:
63
diff
changeset
|
650 |
{ |
ee64bb096f56
A few miscellaneous fixes including modifying WebServer to write data in chunks (improved performance and reliability on a slow connection)
Dan
parents:
63
diff
changeset
|
651 |
$_SERVER['SERVER_SOFTWARE'] =& $this->server_string; |
ee64bb096f56
A few miscellaneous fixes including modifying WebServer to write data in chunks (improved performance and reliability on a slow connection)
Dan
parents:
63
diff
changeset
|
652 |
} |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
653 |
unset($client_headers[0]); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
654 |
foreach ( $client_headers as $line ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
655 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
656 |
if ( !preg_match('/^([A-z0-9-]+): (.+)$/is', $line, $match) ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
657 |
continue; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
658 |
$key = 'HTTP_' . strtoupper(str_replace('-', '_', $match[1])); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
659 |
$_SERVER[$key] = $match[2]; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
660 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
661 |
|
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
662 |
// enable keep-alive if requested |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
663 |
if ( isset($_SERVER['HTTP_CONNECTION']) && $this->threader->is_child() ) |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
664 |
{ |
16
23d4cf2f183b
Disabled forking/keep-alive code, firefox doesn't seem to like the way it waits for requests
Dan
parents:
15
diff
changeset
|
665 |
$this->in_keepalive = ( strtolower($_SERVER['HTTP_CONNECTION']) === 'keep-alive' ); |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
666 |
} |
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
667 |
|
43 | 668 |
// process cookies |
669 |
$_COOKIE = array(); |
|
670 |
if ( isset($_SERVER['HTTP_COOKIE']) ) |
|
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
671 |
{ |
43 | 672 |
preg_match_all('/([a-z0-9_-]+)=([^;]*)(?:;|$)/', trim($_SERVER['HTTP_COOKIE']), $matches); |
673 |
foreach ( $matches[0] as $i => $match ) |
|
674 |
{ |
|
675 |
$_COOKIE[$matches[1][$i]] = str_replace('\\r', "\r", str_replace('\\n', "\n", str_replace(rawurlencode(';'), ';', $matches[2][$i]))); |
|
676 |
} |
|
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
677 |
} |
43 | 678 |
|
679 |
// parse authorization, if any |
|
680 |
unset($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']); |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
681 |
if ( isset($_SERVER['HTTP_AUTHORIZATION']) ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
682 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
683 |
$data = $_SERVER['HTTP_AUTHORIZATION']; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
684 |
$data = substr(strstr($data, ' '), 1); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
685 |
$data = base64_decode($data); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
686 |
$_SERVER['PHP_AUTH_USER'] = substr($data, 0, strpos($data, ':')); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
687 |
$_SERVER['PHP_AUTH_PW'] = substr(strstr($data, ':'), 1); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
688 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
689 |
|
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
690 |
// anything on POST? |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
691 |
$postdata = ''; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
692 |
$_POST = array(); |
23
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
693 |
$_FILES = array(); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
694 |
if ( $method == 'POST' ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
695 |
{ |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
696 |
$this->parse_post_data($remote); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
697 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
698 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
699 |
// parse URI |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
700 |
$params = ''; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
701 |
if ( strstr($uri, '?') ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
702 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
703 |
$params = substr(strstr($uri, '?'), 1); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
704 |
$uri = substr($uri, 0, strpos($uri, '?')); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
705 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
706 |
|
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
707 |
// set some server vars |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
708 |
$_SERVER['REQUEST_URI'] = '/' . rawurldecode($uri); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
709 |
$_SERVER['REQUEST_METHOD'] = $method; |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
710 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
711 |
// get remote IP and port |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
712 |
$remote->get_peer_info($_SERVER['REMOTE_ADDR'], $_SERVER['REMOTE_PORT']); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
713 |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
714 |
// process $_GET |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
715 |
$_GET = array(); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
716 |
if ( preg_match_all('/(^|&)([a-z0-9_\.\[\]-]+)(=[^ &]+)?/', $params, $matches) ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
717 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
718 |
if ( isset($matches[1]) ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
719 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
720 |
foreach ( $matches[0] as $i => $_ ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
721 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
722 |
$_GET[$matches[2][$i]] = ( !empty($matches[3][$i]) ) ? urldecode(substr($matches[3][$i], 1)) : true; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
723 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
724 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
725 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
726 |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
727 |
// Parse GET, POST, and FILES into multi-depth arrays |
23
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
728 |
$_GET = $this->parse_multi_depth_array($_GET); |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
729 |
$_POST = $this->parse_multi_depth_array($_POST); |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
730 |
$_FILES = $this->parse_multi_depth_array($_FILES); |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
731 |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
732 |
## |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
733 |
## STAGE 4: HANDLER RESOLUTION |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
734 |
## |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
735 |
|
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
736 |
// init handler |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
737 |
$handler = false; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
738 |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
739 |
if ( $uri == '' ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
740 |
{ |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
741 |
// user requested the root (/). If there's a default document, use that; else, see if we can do a directory listing |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
742 |
$uri = strval($this->default_document); |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
743 |
if ( !$this->default_document && $this->allow_dir_list ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
744 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
745 |
// we can list directories and this was requested by the user, so list it out |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
746 |
$handler = array('type' => 'rootdir'); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
747 |
} |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
748 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
749 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
750 |
$uri_parts = explode('/', $uri); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
751 |
|
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
752 |
// hook for the special UUID handler |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
753 |
if ( $uri_parts[0] === $this->uuid && !$handler ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
754 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
755 |
$handler = array('type' => 'sysuuid'); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
756 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
757 |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
758 |
// loop through URI parts, see if a handler is set |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
759 |
if ( !$handler ) |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
760 |
{ |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
761 |
for ( $i = count($uri_parts) - 1; $i >= 0; $i-- ) |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
762 |
{ |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
763 |
$handler_test = implode('/', $uri_parts); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
764 |
if ( isset($this->handlers[$handler_test]) ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
765 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
766 |
$handler = $this->handlers[$handler_test]; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
767 |
$handler['id'] = $handler_test; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
768 |
break; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
769 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
770 |
unset($uri_parts[$i]); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
771 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
772 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
773 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
774 |
if ( !$handler ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
775 |
{ |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
776 |
// try to make a fakie |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
777 |
if ( $this->check_for_handler_children($uri) ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
778 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
779 |
$handler = array( |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
780 |
'type' => 'folder', |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
781 |
'dir' => "/{$this->uuid}/__fakie", |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
782 |
'id' => $uri |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
783 |
); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
784 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
785 |
if ( !$handler ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
786 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
787 |
$this->send_http_error($remote, 404, "The requested URL /$uri was not found on this server."); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
788 |
continue; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
789 |
} |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
790 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
791 |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
792 |
## |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
793 |
## STAGE 5: HANDLER CALL |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
794 |
## |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
795 |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
796 |
$this->send_standard_response($remote, $handler, $uri, $params); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
797 |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
798 |
## |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
799 |
## STAGE 6: CLEANUP |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
800 |
## |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
801 |
|
23
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
802 |
// now that we're done sending the response, delete any temporary uploaded files |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
803 |
if ( !empty($_FILES) ) |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
804 |
{ |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
805 |
foreach ( $_FILES as $file_data ) |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
806 |
{ |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
807 |
if ( file_exists($file_data['tmp_name']) ) |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
808 |
{ |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
809 |
@unlink($file_data['tmp_name']); |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
810 |
} |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
811 |
} |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
812 |
} |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
813 |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
814 |
if ( !$this->in_keepalive && $this->threader->is_child() ) |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
815 |
{ |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
816 |
// connection: close |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
817 |
// continue on to the shutdown handler |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
818 |
continue; |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
819 |
} |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
820 |
else if ( $this->threader->is_child() ) |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
821 |
{ |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
822 |
// if ( $this->threader->is_child() ) |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
823 |
// status('Continuing connection'); |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
824 |
// $remote->write("\r\n\r\n"); |
29 | 825 |
$last_finish_time = microtime(true); |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
826 |
} |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
827 |
else |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
828 |
{ |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
829 |
// standalone process |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
830 |
$remote->destroy(); |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
831 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
832 |
// if a reboot was fired and we're running in single-process mode, now is the time to respawn |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
833 |
if ( !$this->threader->is_child() && $this->reboot_sent ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
834 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
835 |
$this->respawn(); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
836 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
837 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
838 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
839 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
840 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
841 |
/** |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
842 |
* Parse POST data and format $_POST and $_FILES. |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
843 |
* @param resource Remote socket |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
844 |
*/ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
845 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
846 |
function parse_post_data($remote) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
847 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
848 |
$postdata = ''; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
849 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
850 |
// read POST data |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
851 |
if ( isset($_SERVER['HTTP_CONTENT_TYPE']) && preg_match('#^multipart/form-data; ?boundary=([A-z0-9_-]+)$#i', $_SERVER['HTTP_CONTENT_TYPE'], $match) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
852 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
853 |
// this is a multipart request |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
854 |
$boundary =& $match[1]; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
855 |
$mode = 'data'; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
856 |
$last_line = ''; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
857 |
$i = 0; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
858 |
while ( $data = $remote->read_normal(8388608) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
859 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
860 |
$data_trim = trim($data, "\r\n"); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
861 |
if ( $mode != 'data' ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
862 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
863 |
$data = str_replace("\r", '', $data); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
864 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
865 |
if ( ( $data_trim === "--$boundary" || $data_trim === "--$boundary--" ) && $i > 0 ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
866 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
867 |
// trim off the first LF and the last CRLF |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
868 |
if ( HTTPD_SOCKET_LAYER == 'Raw' ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
869 |
$currval_data = substr($currval_data, 1, strlen($currval_data)-3); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
870 |
else |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
871 |
$currval_data = substr($currval_data, 0, strlen($currval_data)-2); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
872 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
873 |
// this is the end of a part of the message; parse it into either $_POST or $_FILES |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
874 |
if ( is_string($have_a_file) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
875 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
876 |
// write data to a temporary file |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
877 |
$errcode = UPLOAD_ERR_OK; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
878 |
$tempfile = tempnam('phpupload', ( function_exists('sys_get_temp_dir') ? sys_get_temp_dir() : '/tmp' )); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
879 |
if ( $fh = @fopen($tempfile, 'w') ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
880 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
881 |
if ( empty($have_a_file) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
882 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
883 |
$errcode = UPLOAD_ERR_NO_FILE; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
884 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
885 |
else |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
886 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
887 |
fwrite($fh, $currval_data); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
888 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
889 |
fclose($fh); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
890 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
891 |
else |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
892 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
893 |
$errcode = UPLOAD_ERR_CANT_WRITE; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
894 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
895 |
$_FILES[$currval_name] = array( |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
896 |
'name' => $have_a_file, |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
897 |
'type' => $currval_type, |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
898 |
'size' => filesize($tempfile), |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
899 |
'tmp_name' => $tempfile, |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
900 |
'error' => $errcode |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
901 |
); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
902 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
903 |
else |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
904 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
905 |
if ( preg_match('/\[\]$/', $currval_name) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
906 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
907 |
if ( !isset($_POST[$currval_name]) || ( isset($_POST[$currval_name]) && !is_array($_POST[$currval_name]) ) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
908 |
$_POST[$currval_name] = array(); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
909 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
910 |
$_POST[$currval_name][] = $currval_data; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
911 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
912 |
else |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
913 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
914 |
$_POST[$currval_name] = $currval_data; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
915 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
916 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
917 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
918 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
919 |
if ( $data_trim === "--$boundary" ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
920 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
921 |
// switch from "data" mode to "headers" mode |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
922 |
$currval_name = ''; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
923 |
$currval_data = ''; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
924 |
$currval_type = ''; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
925 |
$have_a_file = false; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
926 |
$mode = 'headers'; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
927 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
928 |
else if ( $data_trim === "--$boundary--" ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
929 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
930 |
// end of request |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
931 |
break; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
932 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
933 |
else if ( ( empty($data_trim) && ( ( HTTPD_SOCKET_LAYER == 'Raw' && empty($last_line) ) || HTTPD_SOCKET_LAYER != 'Raw' ) ) && $mode == 'headers' ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
934 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
935 |
// start of data |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
936 |
$mode = 'data'; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
937 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
938 |
else if ( $mode == 'headers' ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
939 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
940 |
// read header |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
941 |
// we're only looking for Content-Disposition and Content-Type |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
942 |
if ( preg_match('#^Content-Disposition: form-data; name="([^"\a\t\r\n]+)"(?:; filename="([^"\a\t\r\n]+)")?#i', $data_trim, $match) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
943 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
944 |
// content-disposition header, set name and mode. |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
945 |
$currval_name = $match[1]; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
946 |
if ( isset($match[2]) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
947 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
948 |
$have_a_file = $match[2]; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
949 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
950 |
else |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
951 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
952 |
$have_a_file = false; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
953 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
954 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
955 |
else if ( preg_match('#^Content-Type: ([a-z0-9-]+/[a-z0-9/-]+)$#i', $data_trim, $match) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
956 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
957 |
$currval_type = $match[1]; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
958 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
959 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
960 |
else if ( $mode == 'data' ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
961 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
962 |
$currval_data .= $data; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
963 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
964 |
$last_line = $data_trim; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
965 |
$i++; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
966 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
967 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
968 |
else |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
969 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
970 |
if ( isset($_SERVER['HTTP_CONTENT_LENGTH']) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
971 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
972 |
$postdata = $remote->read_binary(intval($_SERVER['HTTP_CONTENT_LENGTH'])); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
973 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
974 |
else |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
975 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
976 |
$postdata = $remote->read_normal(8388608); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
977 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
978 |
if ( preg_match_all('/(^|&)([a-z0-9_\.\[\]%-]+)(=[^ &]+)?/i', $postdata, $matches) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
979 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
980 |
if ( isset($matches[1]) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
981 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
982 |
foreach ( $matches[0] as $i => $_ ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
983 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
984 |
$currval_name =& $matches[2][$i]; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
985 |
$currval_data = ( !empty($matches[3][$i]) ) ? urldecode(substr($matches[3][$i], 1)) : true; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
986 |
$currval_name = urldecode($currval_name); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
987 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
988 |
if ( preg_match('/\[\]$/', $currval_name) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
989 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
990 |
$basename = preg_replace('/\[\]$/', '', $currval_name); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
991 |
if ( !isset($_POST[$basename]) || ( isset($_POST[$basename]) && !is_array($_POST[$basename]) ) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
992 |
$_POST[$basename] = array(); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
993 |
|
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
994 |
$_POST[$basename][] = $currval_data; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
995 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
996 |
else |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
997 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
998 |
$_POST[$currval_name] = $currval_data; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
999 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1000 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1001 |
} |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1002 |
} |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1003 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1004 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1005 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1006 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1007 |
* Sends the client appropriate response headers. |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1008 |
* @param resource Socket connection to client |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1009 |
* @param int HTTP status code, defaults to 200 |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1010 |
* @param string Content type, defaults to text/html |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1011 |
* @param string Additional headers to send, optional |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1012 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1013 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1014 |
function send_client_headers($socket, $http_code = 200, $contenttype = 'text/html', $headers = '') |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1015 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1016 |
global $http_responses; |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1017 |
if ( $this->headers_sent ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1018 |
return false; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1019 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1020 |
// this is reset after the request is completed (hopefully) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1021 |
$this->headers_sent = true; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1022 |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1023 |
$reason_code = ( isset($http_responses[$http_code]) ) ? $http_responses[$http_code] : 'Unknown'; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1024 |
|
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
1025 |
$_SERVER['HTTP_USER_AGENT'] = ( isset($_SERVER['HTTP_USER_AGENT']) ) ? $_SERVER['HTTP_USER_AGENT'] : '(no user agent)'; |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1026 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1027 |
if ( function_exists('status') ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1028 |
status("{$_SERVER['REMOTE_ADDR']} {$_SERVER['REQUEST_METHOD']} {$_SERVER['REQUEST_URI']} $http_code {$_SERVER['HTTP_USER_AGENT']}"); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1029 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1030 |
$headers = str_replace("\r\n", "\n", $headers); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1031 |
$headers = str_replace("\n", "\r\n", $headers); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1032 |
$headers = preg_replace("#[\r\n]+$#", '', $headers); |
15
2adca0f363fd
Added multi-threading/forking/keep-alive support to webserver. w00t, feeling all POSIX-happy today!
Dan
parents:
13
diff
changeset
|
1033 |
$connection = ( $this->in_keepalive ) ? 'keep-alive' : 'close'; |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1034 |
|
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1035 |
$socket->write("HTTP/1.1 $http_code $reason_code\r\n"); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1036 |
$socket->write("Server: $this->server_string"); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1037 |
$socket->write("Connection: $connection\r\n"); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1038 |
$socket->write("Content-Type: $contenttype\r\n"); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1039 |
if ( !empty($headers) ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1040 |
{ |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1041 |
$socket->write("$headers\r\n"); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1042 |
} |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1043 |
$socket->write("\r\n"); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1044 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1045 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1046 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1047 |
* Sends a normal response |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1048 |
* @param resource Socket connection to client |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1049 |
* @param array Handler |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1050 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1051 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1052 |
function send_standard_response($socket, $handler) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1053 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1054 |
switch ( $handler['type'] ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1055 |
{ |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1056 |
case 'folder': |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1057 |
// security |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1058 |
$uri = str_replace("\000", '', $_SERVER['REQUEST_URI']); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1059 |
if ( preg_match('#(\.\./|\/\.\.)#', $uri) || strstr($uri, "\r") || strstr($uri, "\n") ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1060 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1061 |
$this->send_http_error($socket, 403, 'Access to this resource is forbidden.'); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1062 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1063 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1064 |
// import mimetypes |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1065 |
global $mime_types; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1066 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1067 |
// trim handler id from uri |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1068 |
$uri_full = rtrim($uri, '/'); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1069 |
$uri = substr($uri, strlen($handler['id']) + 1); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1070 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1071 |
// get file path |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1072 |
$file_path = rtrim($handler['dir'], '/') . $uri; |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1073 |
if ( file_exists($file_path) || $this->check_for_handler_children($uri_full) ) |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1074 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1075 |
// found it :-D |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1076 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1077 |
// is this a directory? |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1078 |
if ( is_dir($file_path) || $this->check_for_handler_children($uri_full) ) |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1079 |
{ |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1080 |
// allowed to list? |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1081 |
if ( !$this->allow_dir_list ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1082 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1083 |
$this->send_http_error($socket, 403, "Directory listing is not allowed."); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1084 |
return true; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1085 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1086 |
// yes, list contents |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1087 |
try |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1088 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1089 |
$dir_list = $this->list_directory($uri_full, true); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1090 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1091 |
catch ( Exception $e ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1092 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1093 |
$this->send_http_error($socket, 500, "Directory listing failed due to an error in the listing core method. This may indicate that the webserver process does not have filesystem access to the specified directory.<br /><br />Debugging details:<pre>$e</pre>"); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1094 |
return true; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1095 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1096 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1097 |
$root = rtrim($uri_full, '/') . '/'; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1098 |
$parent = rtrim(dirname(rtrim($uri_full, '/')), '/') . '/'; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1099 |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1100 |
$contents = <<<EOF |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1101 |
<html> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1102 |
<head> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1103 |
<title>Index of: $root</title> |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1104 |
<link rel="stylesheet" type="text/css" href="/{$this->uuid}/dirlist.css" /> |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1105 |
</head> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1106 |
<body> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1107 |
<h1>Index of $root</h1> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1108 |
<ul> |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1109 |
<li><tt><a href="$parent">Parent directory</a></tt></li> |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1110 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1111 |
EOF; |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1112 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1113 |
foreach ( $dir_list as $filename => $info ) |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1114 |
{ |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1115 |
$ts = ( $info['type'] == 'folder' ) ? '/' : ''; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1116 |
$contents .= ' <li><tt><a href="' . htmlspecialchars($root . basename($filename) . $ts) . '"><img alt="[ ]" src="/' . $this->uuid . '/' . $info['type'] . '.png" /> ' . htmlspecialchars($filename) . $ts . '</a></tt></li>' . "\n "; |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1117 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1118 |
$contents .= "\n </ul>\n <address>Served by {$this->server_string}</address>\n</body>\n</html>\n\n"; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1119 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1120 |
$sz = strlen($contents); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1121 |
$this->send_client_headers($socket, 200, 'text/html', "Content-length: $sz\r\n"); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1122 |
|
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1123 |
$socket->write($contents); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1124 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1125 |
return true; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1126 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1127 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1128 |
// try to open the file |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1129 |
$fh = @fopen($file_path, 'r'); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1130 |
if ( !$fh ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1131 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1132 |
// can't open it, send a 404 |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1133 |
$this->send_http_error($socket, 404, "The requested URL " . htmlspecialchars($_SERVER['REQUEST_URI']) . " was not found on this server."); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1134 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1135 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1136 |
// get size |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1137 |
$sz = filesize($file_path); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1138 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1139 |
// mod time |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1140 |
$time = date('r', filemtime($file_path)); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1141 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1142 |
// all good, send headers |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1143 |
$fileext = substr($file_path, strrpos($file_path, '.') + 1); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1144 |
$mimetype = ( isset($mime_types[$fileext]) ) ? $mime_types[$fileext] : 'application/octet-stream'; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1145 |
$this->send_client_headers($socket, 200, $mimetype, "Content-length: $sz\r\nLast-Modified: $time\r\n"); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1146 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1147 |
// send body |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1148 |
while ( $blk = @fread($fh, 768000) ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1149 |
{ |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1150 |
$socket->write($blk); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1151 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1152 |
fclose($fh); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1153 |
return true; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1154 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1155 |
else |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1156 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1157 |
$this->send_http_error($socket, 404, "The requested URL " . htmlspecialchars($_SERVER['REQUEST_URI']) . " was not found on this server."); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1158 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1159 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1160 |
break; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1161 |
case 'file': |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1162 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1163 |
// import mimetypes |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1164 |
global $mime_types; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1165 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1166 |
// get file path |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1167 |
$file_path = $handler['file']; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1168 |
if ( file_exists($file_path) ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1169 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1170 |
// found it :-D |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1171 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1172 |
// is this a directory? |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1173 |
if ( is_dir($file_path) ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1174 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1175 |
$this->send_http_error($socket, 500, "Host script mapped a directory as a file entry."); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1176 |
return true; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1177 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1178 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1179 |
// try to open the file |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1180 |
$fh = @fopen($file_path, 'r'); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1181 |
if ( !$fh ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1182 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1183 |
// can't open it, send a 404 |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1184 |
$this->send_http_error($socket, 404, "The requested URL " . htmlspecialchars($_SERVER['REQUEST_URI']) . " was not found on this server."); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1185 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1186 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1187 |
// get size |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1188 |
$sz = filesize($file_path); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1189 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1190 |
// mod time |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1191 |
$time = date('r', filemtime($file_path)); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1192 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1193 |
// all good, send headers |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1194 |
$fileext = substr($file_path, strrpos($file_path, '.') + 1); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1195 |
$mimetype = ( isset($mime_types[$fileext]) ) ? $mime_types[$fileext] : 'application/octet-stream'; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1196 |
$this->send_client_headers($socket, 200, $mimetype, "Content-length: $sz\r\nLast-Modified: $time\r\n"); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1197 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1198 |
// send body |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1199 |
while ( $blk = @fread($fh, 768000) ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1200 |
{ |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1201 |
$socket->write($blk); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1202 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1203 |
fclose($fh); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1204 |
return true; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1205 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1206 |
else |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1207 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1208 |
$this->send_http_error($socket, 404, "The requested URL " . htmlspecialchars($_SERVER['REQUEST_URI']) . " was not found on this server."); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1209 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1210 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1211 |
break; |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1212 |
case 'script': |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1213 |
// init vars |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1214 |
$this->content_type = 'text/html'; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1215 |
$this->response_code = 200; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1216 |
$this->response_headers = array(); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1217 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1218 |
// error handling |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1219 |
@set_error_handler(array($this, 'function_error_handler'), E_ALL); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1220 |
try |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1221 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1222 |
ob_start(); |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1223 |
$this->in_scriptlet = true; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1224 |
$result = @call_user_func($handler['function'], $this, $socket); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1225 |
$this->in_scriptlet = false; |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1226 |
$output = ob_get_contents(); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1227 |
ob_end_clean(); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1228 |
} |
23
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1229 |
// throw an HttpExceptionFatal when you need to break out of an in-progress scriptlet due to an error, use it in place of die() or exit() |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1230 |
catch ( HttpExceptionFatal $e ) |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1231 |
{ |
24
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
1232 |
ob_end_clean(); |
23
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1233 |
restore_error_handler(); |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1234 |
$this->send_http_error($socket, 500, "A handler crashed reporting a fatal exception; see the command line for details."); |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1235 |
if ( function_exists('status') ) |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1236 |
status("fatal exception in handler {$handler['id']}:\n$e"); |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1237 |
return true; |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1238 |
} |
24
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
1239 |
catch ( HttpSuccess $e ) |
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
1240 |
{ |
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
1241 |
// just finish with success |
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
1242 |
$this->in_scriptlet = false; |
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
1243 |
$output = ob_get_contents(); |
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
1244 |
ob_end_clean(); |
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
1245 |
} |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1246 |
catch ( Exception $e ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1247 |
{ |
24
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
1248 |
ob_end_clean(); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1249 |
restore_error_handler(); |
23
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1250 |
$this->send_http_error($socket, 500, "There was an uncaught exception during the execution of a scripted handler function. See the command line for details."); |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1251 |
if ( function_exists('status') ) |
23
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1252 |
status("uncaught exception in handler {$handler['id']}:\n$e"); |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1253 |
return true; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1254 |
} |
24
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
1255 |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1256 |
restore_error_handler(); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1257 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1258 |
// the handler function should return this magic string if it writes its own headers and socket data |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1259 |
if ( $output == '__break__' ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1260 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1261 |
return true; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1262 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1263 |
|
40
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1264 |
if ( !$this->headers_sent ) |
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1265 |
{ |
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1266 |
// $this->header('Transfer-encoding: chunked'); |
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1267 |
$this->header("Content-length: " . strlen($output)); |
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1268 |
$headers = implode("\r\n", $this->response_headers); |
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1269 |
|
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1270 |
// write headers |
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1271 |
$this->send_client_headers($socket, $this->response_code, $this->content_type, $headers); |
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1272 |
|
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1273 |
// chunk output |
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1274 |
// $output = dechex(strlen($output)) . "\r\n$output"; |
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1275 |
|
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1276 |
// write body |
68
32f6e2ee15ab
WebServer: fixed longstanding non-security fwrite buffer overflow bug
Dan
parents:
67
diff
changeset
|
1277 |
if ( !empty($output) ) |
32f6e2ee15ab
WebServer: fixed longstanding non-security fwrite buffer overflow bug
Dan
parents:
67
diff
changeset
|
1278 |
$socket->write($output); |
40
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1279 |
|
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1280 |
$this->headers_sent = false; |
bd3372a2afc1
Added artwork spriting support. Artwork is now displayed using a gigantic CSS sprite instead of hundreds of little images. GD required.
Dan
parents:
38
diff
changeset
|
1281 |
} |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1282 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1283 |
break; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1284 |
case 'sysuuid': |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1285 |
// requested one of the system's icon images |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1286 |
$uri_parts = explode('/', $_SERVER['REQUEST_URI']); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1287 |
if ( count($uri_parts) != 3 ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1288 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1289 |
$this->send_http_error($socket, 404, "The requested URL " . htmlspecialchars($_SERVER['REQUEST_URI']) . " was not found on this server."); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1290 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1291 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1292 |
// load image data |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1293 |
$filename =& $uri_parts[2]; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1294 |
switch ( $filename ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1295 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1296 |
case 'script.png': |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1297 |
( !isset($image_data) ) ? $image_data = HTTPD_ICON_SCRIPT : null; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1298 |
case 'folder.png': |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1299 |
( !isset($image_data) ) ? $image_data = HTTPD_ICON_FOLDER : null; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1300 |
case 'file.png': |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1301 |
( !isset($image_data) ) ? $image_data = HTTPD_ICON_FILE : null; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1302 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1303 |
$image_data = base64_decode($image_data); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1304 |
$found = true; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1305 |
$type = 'image/png'; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1306 |
break; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1307 |
case 'dirlist.css': |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1308 |
$type = 'text/css'; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1309 |
$found = true; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1310 |
$image_data = <<<EOF |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1311 |
/** |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1312 |
* PhpHttpd directory list visual style |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1313 |
*/ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1314 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1315 |
html { |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1316 |
background-color: #c9c9c9; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1317 |
margin: 0; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1318 |
padding: 0; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1319 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1320 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1321 |
body { |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1322 |
background-color: #ffffff; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1323 |
margin: 20px; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1324 |
padding: 10px; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1325 |
border: 1px solid #aaaaaa; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1326 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1327 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1328 |
a { |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1329 |
text-decoration: none; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1330 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1331 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1332 |
a img { |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1333 |
border-width: 0; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1334 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1335 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1336 |
ul { |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1337 |
list-style-type: none; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1338 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1339 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1340 |
EOF; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1341 |
break; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1342 |
default: |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1343 |
$found = false; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1344 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1345 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1346 |
// ship it out |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1347 |
if ( $found ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1348 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1349 |
$lm_date = date('r', filemtime(__FILE__)); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1350 |
$size = strlen($image_data); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1351 |
$this->send_client_headers($socket, 200, $type, "Last-Modified: $lm_date\r\nContent-Length: $size"); |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1352 |
$socket->write($image_data); |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1353 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1354 |
else |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1355 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1356 |
$this->send_http_error($socket, 404, "The requested URL " . htmlspecialchars($_SERVER['REQUEST_URI']) . " was not found on this server."); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1357 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1358 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1359 |
return true; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1360 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1361 |
break; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1362 |
case 'rootdir': |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1363 |
// |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1364 |
// list the contents of the document root |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1365 |
// |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1366 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1367 |
$handlers = $this->list_directory('/', true); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1368 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1369 |
$contents = <<<EOF |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1370 |
<html> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1371 |
<head> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1372 |
<title>Index of: /</title> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1373 |
<link rel="stylesheet" type="text/css" href="/{$this->uuid}/dirlist.css" /> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1374 |
</head> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1375 |
<body> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1376 |
<h1>Index of /</h1> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1377 |
<ul> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1378 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1379 |
EOF; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1380 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1381 |
$html = ''; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1382 |
// generate content |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1383 |
foreach ( $handlers as $uri => $handler ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1384 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1385 |
switch($handler['type']) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1386 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1387 |
case 'folder': |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1388 |
$image = 'folder.png'; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1389 |
$abbr = 'DIR'; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1390 |
$add = '/'; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1391 |
break; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1392 |
case 'file': |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1393 |
default: |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1394 |
$image = 'file.png'; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1395 |
$abbr = ' '; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1396 |
$add = ''; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1397 |
break; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1398 |
case 'script': |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1399 |
$image = 'script.png'; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1400 |
$abbr = 'CGI'; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1401 |
$add = ''; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1402 |
break; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1403 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1404 |
$html .= " <li><tt><a href=\"/$uri\"><img alt=\"[{$abbr}]\" src=\"/{$this->uuid}/{$image}\" /> {$uri}{$add}</a></tt></li>\n "; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1405 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1406 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1407 |
$contents .= $html; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1408 |
$contents .= <<<EOF |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1409 |
</ul> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1410 |
<address>Served by {$this->server_string}</address> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1411 |
</body> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1412 |
</html> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1413 |
EOF; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1414 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1415 |
// get length |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1416 |
$len = strlen($contents); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1417 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1418 |
// send headers |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1419 |
$this->send_client_headers($socket, 200, 'text/html', "Content-Length: $len"); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1420 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1421 |
// write to the socket |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1422 |
$socket->write($contents); |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1423 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1424 |
return true; |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1425 |
break; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1426 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1427 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1428 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1429 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1430 |
* Adds an HTTP header value to send back to the client |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1431 |
* @var string Header |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1432 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1433 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1434 |
function header($str) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1435 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1436 |
if ( preg_match('#HTTP/1\.[01] ([0-9]+) (.+?)[\s]*$#', $str, $match) ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1437 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1438 |
$this->response_code = intval($match[1]); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1439 |
return true; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1440 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1441 |
else if ( preg_match('#Content-type: ([^ ;]+)#i', $str, $match) ) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1442 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1443 |
$this->content_type = $match[1]; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1444 |
return true; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1445 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1446 |
$this->response_headers[] = $str; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1447 |
return true; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1448 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1449 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1450 |
/** |
43 | 1451 |
* Sets a cookie. Identical to PHP's setcookie() function. |
1452 |
* @param string Cookie name |
|
1453 |
* @param string Cookie value |
|
1454 |
* @param int Expiration time of cookie as a UNIX timestamp; if omitted or set to zero, cookie will expire at the end of the user's browser session |
|
1455 |
* @param string Path of the cookie |
|
1456 |
* @param string Domain the cookie is available under |
|
1457 |
* @param bool If true, browser will only send the cookie through an HTTPS connection. |
|
1458 |
* @param bool If true, cookie will not be accessible to client-side code |
|
1459 |
*/ |
|
1460 |
||
1461 |
function setcookie($cookiename, $cookievalue, $expiry = false, $path = false, $domain = false, $secure = false, $httponly = false) |
|
1462 |
{ |
|
1463 |
$header = "Set-Cookie: $cookiename=$cookievalue"; |
|
1464 |
if ( !empty($expiry) ) |
|
63 | 1465 |
$header .= "; expires=" . gmdate('D, d-M-Y H:i:s T', $expiry); |
43 | 1466 |
if ( !empty($path) ) |
1467 |
$header .= "; path=$path"; |
|
1468 |
if ( !empty($domain) ) |
|
1469 |
$header .= "; domain=$domain"; |
|
1470 |
if ( $secure ) |
|
1471 |
$header .= "; secure"; |
|
1472 |
if ( $httponly ) |
|
1473 |
$header .= "; httponly"; |
|
1474 |
||
1475 |
if ( is_int($expiry) && $expiry < time() ) |
|
1476 |
{ |
|
1477 |
unset($_COOKIE[$cookiename]); |
|
1478 |
} |
|
1479 |
else |
|
1480 |
{ |
|
1481 |
$_COOKIE[$cookiename] = $cookievalue; |
|
1482 |
} |
|
1483 |
||
1484 |
$this->header($header); |
|
63 | 1485 |
return $header; |
43 | 1486 |
} |
1487 |
||
1488 |
/** |
|
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1489 |
* Sends the client an HTTP error page |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1490 |
* @param resource Socket connection to client |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1491 |
* @param int HTTP status code |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1492 |
* @param string Detailed error string |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1493 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1494 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1495 |
function send_http_error($socket, $http_code, $errstring) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1496 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1497 |
global $http_responses; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1498 |
$reason_code = ( isset($http_responses[$http_code]) ) ? $http_responses[$http_code] : 'Unknown'; |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1499 |
|
26
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
1500 |
// generate error page |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1501 |
$html = <<<EOF |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1502 |
<html> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1503 |
<head> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1504 |
<title>$http_code $reason_code</title> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1505 |
</head> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1506 |
<body> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1507 |
<h1>$http_code $reason_code</h1> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1508 |
<p>$errstring</p> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1509 |
<hr /> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1510 |
<address>Served by $this->server_string</address> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1511 |
</body> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1512 |
</html> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1513 |
EOF; |
26
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
1514 |
|
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
1515 |
// length of the response (required if we want keep-alive to work) |
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
1516 |
$this->header('Content-length: ' . strlen($html)); |
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
1517 |
|
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
1518 |
// if we're in a scriptlet, include custom headers |
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
1519 |
if ( $this->in_scriptlet ) |
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
1520 |
$headers = implode("\r\n", $this->response_headers); |
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
1521 |
else |
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
1522 |
$headers = 'Content-length: ' . strlen($html); |
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
1523 |
|
300d374d89b0
Made error pages send length of response to get keep-alive working properly; added (nonworking, sorry) keep-alive timeout support.
Dan
parents:
24
diff
changeset
|
1524 |
$this->send_client_headers($socket, $http_code, 'text/html', $headers); |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1525 |
$socket->write($html); |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1526 |
} |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1527 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1528 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1529 |
* Adds a new handler |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1530 |
* @param string URI, minus the initial / |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1531 |
* @param string Type of handler - function or dir |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1532 |
* @param string Value - function name or absolute/relative path to directory |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1533 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1534 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1535 |
function add_handler($uri, $type, $value) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1536 |
{ |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1537 |
if ( $type == 'dir' ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1538 |
$type = 'folder'; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1539 |
if ( $type == 'function' ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1540 |
$type = 'script'; |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1541 |
switch($type) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1542 |
{ |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1543 |
case 'folder': |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1544 |
$this->handlers[$uri] = array( |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1545 |
'type' => 'folder', |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1546 |
'dir' => $value |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1547 |
); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1548 |
break; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1549 |
case 'file': |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1550 |
$this->handlers[$uri] = array( |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1551 |
'type' => 'file', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1552 |
'file' => $value |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1553 |
); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1554 |
break; |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1555 |
case 'script': |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1556 |
$this->handlers[$uri] = array( |
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1557 |
'type' => 'script', |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1558 |
'function' => $value |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1559 |
); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1560 |
break; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1561 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1562 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1563 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1564 |
/** |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1565 |
* Error handling function |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1566 |
* @param see <http://us.php.net/manual/en/function.set-error-handler.php> |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1567 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1568 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1569 |
function function_error_handler($errno, $errstr, $errfile, $errline, $errcontext) |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1570 |
{ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1571 |
echo '<div style="border: 1px solid #AA0000; background-color: #FFF0F0; padding: 10px;">'; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1572 |
echo "<b>PHP warning/error:</b> type $errno ($errstr) caught in <b>$errfile</b> on <b>$errline</b><br />"; |
10
d3059e20b0fa
SECURITY: Fix ability to crash server in ajax.php; added playback position slider and ability to seek through current song
Dan
parents:
6
diff
changeset
|
1573 |
// echo "Error context:<pre>" . htmlspecialchars(print_r($errcontext, true)) . "</pre>"; |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1574 |
echo '</div>'; |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1575 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
1576 |
|
21
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1577 |
/** |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1578 |
* Lists out the contents of a directory, including virtual handlers. |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1579 |
* @example |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1580 |
* Example return data: (will be ksorted) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1581 |
<code> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1582 |
array( |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1583 |
'bar' => 'folder', |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1584 |
'baz' => 'script', |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1585 |
'foo' => 'file' |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1586 |
); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1587 |
</code> |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1588 |
* @param string Directory name, relative to the server's document root |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1589 |
* @param bool If true, sorts folders first (default: false) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1590 |
* @return array Exception thrown on failure |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1591 |
*/ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1592 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1593 |
function list_directory($dir, $folders_first = false) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1594 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1595 |
// clean slashes from the directory name |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1596 |
$dir = trim($dir, '/'); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1597 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1598 |
if ( $dir == '' ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1599 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1600 |
// |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1601 |
// list the root, which can consist only of handlers |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1602 |
// |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1603 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1604 |
// copy the handlers array, which we need to ksort |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1605 |
$handlers = $this->handlers; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1606 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1607 |
// get rid of multi-depth handlers |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1608 |
foreach ( $handlers as $uri => $handler ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1609 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1610 |
if ( strpos($uri, '/') ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1611 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1612 |
unset($handlers[$uri]); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1613 |
$newuri = explode('/', $uri); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1614 |
if ( !isset($handlers[$newuri[0]]) ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1615 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1616 |
$handlers[$newuri[0]] = array( |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1617 |
'type' => 'folder' |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1618 |
); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1619 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1620 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1621 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1622 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1623 |
ksort($handlers); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1624 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1625 |
if ( $folders_first ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1626 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1627 |
// sort folders first |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1628 |
$handlers_sorted = array(); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1629 |
foreach ( $handlers as $uri => $handler ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1630 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1631 |
if ( $handler['type'] == 'folder' ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1632 |
$handlers_sorted[$uri] = $handler; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1633 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1634 |
foreach ( $handlers as $uri => $handler ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1635 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1636 |
if ( $handler['type'] != 'folder' ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1637 |
$handlers_sorted[$uri] = $handler; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1638 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1639 |
$handlers = $handlers_sorted; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1640 |
unset($handlers_sorted); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1641 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1642 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1643 |
// done |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1644 |
return $handlers; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1645 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1646 |
else |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1647 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1648 |
// list something within the root |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1649 |
$dir_stack = explode('/', $dir); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1650 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1651 |
// lookup handler |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1652 |
$handler_search = $dir; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1653 |
$found_handler = false; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1654 |
$fake_handler = false; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1655 |
$i = 1; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1656 |
while ( $i > 0 ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1657 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1658 |
if ( isset($this->handlers[$handler_search]) ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1659 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1660 |
$found_handler = true; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1661 |
break; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1662 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1663 |
$i = strrpos($handler_search, '/'); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1664 |
$handler_search = substr($handler_search, 0, strrpos($handler_search, '/')); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1665 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1666 |
if ( $this->check_for_handler_children($dir) ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1667 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1668 |
$fake_handler = true; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1669 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1670 |
else if ( !$found_handler ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1671 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1672 |
// nope. not there. |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1673 |
throw new Exception("ERR_NO_SUCH_FILE_OR_DIRECTORY"); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1674 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1675 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1676 |
// make sure this is a directory |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1677 |
if ( !$fake_handler ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1678 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1679 |
$handler =& $handler_search; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1680 |
if ( $this->handlers[$handler]['type'] != 'folder' ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1681 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1682 |
throw new Exception("ERR_NOT_A_DIRECTORY"); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1683 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1684 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1685 |
// determine real path |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1686 |
$real_path = realpath($this->handlers[$handler]['dir'] . substr($dir, strlen($handler))); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1687 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1688 |
// directory is resolved; list contents |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1689 |
$dir_contents = array(); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1690 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1691 |
if ( $dr = opendir($real_path) ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1692 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1693 |
while ( $dh = readdir($dr) ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1694 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1695 |
if ( $dh == '.' || $dh == '..' ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1696 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1697 |
continue; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1698 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1699 |
$dir_contents[$dh] = array( |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1700 |
'type' => ( is_dir("$real_path/$dh") ) ? 'folder' : 'file', |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1701 |
'size' => filesize("$real_path/$dh"), |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1702 |
'time' => filemtime("$real_path/$dh") |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1703 |
); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1704 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1705 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1706 |
else |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1707 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1708 |
// only if directory open failed |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1709 |
throw new Exception("ERR_PERMISSION_DENIED"); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1710 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1711 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1712 |
closedir($dr); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1713 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1714 |
// some cleanup |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1715 |
unset($handler, $handler_search); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1716 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1717 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1718 |
// list any additional handlers in there |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1719 |
foreach ( $this->handlers as $handler => $info ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1720 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1721 |
// parse handler name |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1722 |
$handler_name = explode('/', trim($handler, '/')); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1723 |
// is this handler in this directory? |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1724 |
if ( count($handler_name) != count($dir_stack) + 1 ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1725 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1726 |
continue; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1727 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1728 |
foreach ( $dir_stack as $i => $_ ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1729 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1730 |
if ( $dir_stack[$i] != $handler_name[$i] ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1731 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1732 |
continue 2; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1733 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1734 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1735 |
// it's in here! |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1736 |
$dir_contents[ basename($handler) ] = array( |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1737 |
'type' => $info['type'] |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1738 |
); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1739 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1740 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1741 |
// list "fake" handlers |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1742 |
foreach ( $this->handlers as $handler => $info ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1743 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1744 |
// parse handler name |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1745 |
$handler_name = explode('/', trim($handler, '/')); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1746 |
// is this handler somewhere underneath this directory? |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1747 |
if ( count($handler_name) < count($dir_stack) + 2 ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1748 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1749 |
continue; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1750 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1751 |
// path check |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1752 |
foreach ( $dir_stack as $i => $_ ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1753 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1754 |
if ( $dir_stack[$i] != $handler_name[$i] ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1755 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1756 |
continue 2; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1757 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1758 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1759 |
// create a "fake" directory |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1760 |
$fakie_name = $handler_name[ count($dir_stack) ]; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1761 |
$dir_contents[$fakie_name] = array( |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1762 |
'type' => 'folder' |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1763 |
); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1764 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1765 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1766 |
if ( $folders_first ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1767 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1768 |
// perform folder sorting |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1769 |
$unsorted = $dir_contents; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1770 |
ksort($unsorted); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1771 |
$dir_contents = array(); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1772 |
foreach ( $unsorted as $name => $info ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1773 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1774 |
if ( $info['type'] == 'folder' ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1775 |
$dir_contents[$name] = $info; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1776 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1777 |
foreach ( $unsorted as $name => $info ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1778 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1779 |
if ( $info['type'] != 'folder' ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1780 |
$dir_contents[$name] = $info; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1781 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1782 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1783 |
else |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1784 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1785 |
// not sorting with folders first, so just alphabetize |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1786 |
ksort($dir_contents); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1787 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1788 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1789 |
// done |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1790 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1791 |
return $dir_contents; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1792 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1793 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1794 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1795 |
/** |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1796 |
* Searches deeper to see if there are sub-handlers within a path to see if a fake handler can be created |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1797 |
* @param string URI |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1798 |
* @return bool |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1799 |
*/ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1800 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1801 |
function check_for_handler_children($file_path) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1802 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1803 |
$file_path = trim($file_path, '/'); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1804 |
$dir_stack = explode('/', $file_path); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1805 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1806 |
// make sure this isn't a "real" handler |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1807 |
if ( isset($this->handlers[$file_path]) ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1808 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1809 |
return false; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1810 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1811 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1812 |
// list any additional handlers in there |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1813 |
foreach ( $this->handlers as $handler => $info ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1814 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1815 |
// parse handler name |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1816 |
$handler_name = explode('/', trim($handler, '/')); |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1817 |
// is this handler in this directory? |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1818 |
if ( count($handler_name) != count($dir_stack) + 1 ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1819 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1820 |
continue; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1821 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1822 |
foreach ( $dir_stack as $i => $_ ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1823 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1824 |
if ( $dir_stack[$i] != $handler_name[$i] ) |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1825 |
{ |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1826 |
continue 2; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1827 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1828 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1829 |
// it's in here! |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1830 |
return true; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1831 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1832 |
|
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1833 |
return false; |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1834 |
} |
74edc873234f
Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
Dan
parents:
17
diff
changeset
|
1835 |
|
23
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1836 |
/** |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1837 |
* Takes a flat array with keys of format foo[bar] and parses it into multiple depths. |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1838 |
* @param array |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1839 |
* @return array |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1840 |
*/ |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1841 |
|
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1842 |
function parse_multi_depth_array($array) |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1843 |
{ |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1844 |
foreach ( $array as $key => $value ) |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1845 |
{ |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1846 |
if ( preg_match('/^([^\[\]]+)\[([^\]]*)\]/', $key, $match) ) |
23
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1847 |
{ |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1848 |
$parent =& $match[1]; |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1849 |
$child =& $match[2]; |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1850 |
if ( !isset($array[$parent]) || ( isset($array[$parent]) && !is_array($array[$parent]) ) ) |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1851 |
{ |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1852 |
$array[$parent] = array(); |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1853 |
} |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1854 |
if ( empty($child) ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1855 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1856 |
$array[$parent][] = $value; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1857 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1858 |
else |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1859 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1860 |
$array[$parent][$child] = $value; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1861 |
} |
23
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1862 |
unset($array[$key]); |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1863 |
$array[$parent] = $this->parse_multi_depth_array($array[$parent]); |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1864 |
} |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1865 |
} |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1866 |
return $array; |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1867 |
} |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
1868 |
|
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1869 |
/** |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1870 |
* Handle an IPC event. Called only upon SIGUSR2. |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1871 |
*/ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1872 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1873 |
function _ipc_event() |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1874 |
{ |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1875 |
/* |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1876 |
case 'set_addr': |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1877 |
$this->bind_address = $param; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1878 |
break; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1879 |
case 'set_port': |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1880 |
$this->port = intval($param); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1881 |
break; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1882 |
case 'set_fork': |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1883 |
$this->allow_fork = ( $param == '1' ); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1884 |
break; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1885 |
case 'reboot': |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1886 |
if ( !$this->threader->is_child() ) |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1887 |
{ |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1888 |
list(, $addr, $port, $fork) = explode(' ', $line); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1889 |
$fork = ( $fork === '1' ); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1890 |
$this->reboot($addr, intval($port), $fork); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1891 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1892 |
break; |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1893 |
default: |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1894 |
if ( isset($this->ipc_handlers[$action]) ) |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1895 |
{ |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1896 |
@call_user_func($this->ipc_handlers[$action], $line); |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1897 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1898 |
break; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1899 |
} |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1900 |
*/ |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1901 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1902 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1903 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1904 |
/** |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1905 |
* Socket abstraction layer - low-level socket functions (socket_*) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1906 |
*/ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1907 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1908 |
class Socket_Raw |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1909 |
{ |
57 | 1910 |
var $sock = array(); |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1911 |
var $socket_initted = false; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1912 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1913 |
function tcp_listen($address, $port) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1914 |
{ |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1915 |
// do we have socket functions? |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1916 |
if ( !function_exists('socket_create') ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1917 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1918 |
burnout('System does not support socket functions. Please rebuild your PHP or install an appropriate extension.'); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1919 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
1920 |
|
57 | 1921 |
$sockid = count($this->sock); |
1922 |
||
1923 |
$socktype = ( strstr($address, ':') ) ? AF_INET6 : AF_INET; |
|
1924 |
$this->sock[$sockid] = @socket_create($socktype, SOCK_STREAM, getprotobyname('tcp')); |
|
1925 |
if ( !$this->sock[$sockid] ) |
|
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1926 |
throw new Exception('Could not create socket'); |
57 | 1927 |
$result = @socket_bind($this->sock[$sockid], $address, $port); |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1928 |
if ( !$result ) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1929 |
throw new Exception("Could not bind to $address:$port"); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1930 |
$this->socket_initted = true; |
57 | 1931 |
$result = @socket_listen($this->sock[$sockid], SOMAXCONN); |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1932 |
if ( !$result ) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1933 |
throw new Exception("Could not listen for connections $address:$port"); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1934 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1935 |
$this->socket_initted = true; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1936 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1937 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1938 |
function destroy() |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1939 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1940 |
if ( $this->socket_initted ) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1941 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1942 |
// http://us3.php.net/manual/en/function.socket-bind.php |
57 | 1943 |
if ( is_array($this->sock) ) |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1944 |
{ |
57 | 1945 |
foreach ( $this->sock as $sock ) |
1946 |
{ |
|
1947 |
if ( !@socket_set_option($sock, SOL_SOCKET, SO_REUSEADDR, 1) ) |
|
1948 |
{ |
|
1949 |
echo socket_strerror(socket_last_error($sock)) . "\n"; |
|
1950 |
} |
|
1951 |
@socket_shutdown($sock, 2); |
|
1952 |
@socket_close($sock); |
|
1953 |
} |
|
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1954 |
} |
57 | 1955 |
else |
1956 |
{ |
|
1957 |
if ( !@socket_set_option($this->sock, SOL_SOCKET, SO_REUSEADDR, 1) ) |
|
1958 |
{ |
|
1959 |
echo socket_strerror(socket_last_error($this->sock)) . "\n"; |
|
1960 |
} |
|
1961 |
@socket_shutdown($this->sock, 2); |
|
1962 |
@socket_close($this->sock); |
|
1963 |
} |
|
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1964 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1965 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1966 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1967 |
function accept() |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1968 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1969 |
$remote = false; |
57 | 1970 |
foreach ( $this->sock as $sock ) |
1971 |
{ |
|
1972 |
$timeout = 200000; |
|
1973 |
switch(@socket_select($r = array($sock), $w = array($sock), $e = array($sock), 0, $timeout)) { |
|
1974 |
case 2: |
|
1975 |
return false; |
|
1976 |
case 1: |
|
1977 |
$remote = @socket_accept($sock); |
|
1978 |
$return = new Socket_Raw(); |
|
1979 |
$return->sock = $remote; |
|
1980 |
$return->socket_initted = true; |
|
1981 |
return $return; |
|
1982 |
break; |
|
1983 |
case 0: |
|
1984 |
continue; |
|
1985 |
} |
|
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1986 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1987 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1988 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1989 |
/** |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1990 |
* Closes the socket but doesn't destroy it. |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1991 |
*/ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1992 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1993 |
function soft_shutdown() |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1994 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1995 |
@socket_set_option($this->sock, SOL_SOCKET, SO_REUSEADDR, 1); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1996 |
socket_close($this->sock); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1997 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1998 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
1999 |
function set_timeout($timeout, $usec = false) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2000 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2001 |
// doesn't work in this. |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2002 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2003 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2004 |
function read_normal($length = 1024) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2005 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2006 |
return @socket_read($this->sock, $length, PHP_NORMAL_READ); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2007 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2008 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2009 |
function read_binary($length = 1024) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2010 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2011 |
return @socket_read($this->sock, $length, PHP_BINARY_READ); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2012 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2013 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2014 |
function timed_out() |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2015 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2016 |
$md = @socket_get_status($this->sock); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2017 |
return ( isset($md['timed_out']) ) ? $md['timed_out'] : false; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2018 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2019 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2020 |
function get_peer_info(&$addr, &$port) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2021 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2022 |
socket_getpeername($this->sock, $addr, $port); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2023 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2024 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2025 |
function write($data) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2026 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2027 |
return @socket_write($this->sock, $data); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2028 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2029 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2030 |
function is_eof() |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2031 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2032 |
// feof() not supported |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2033 |
return false; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2034 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2035 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2036 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2037 |
/** |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2038 |
* Socket abstraction layer - PHP stream support |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2039 |
*/ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2040 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2041 |
class Socket_Stream |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2042 |
{ |
57 | 2043 |
var $sock = array(); |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2044 |
var $socket_initted = false; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2045 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2046 |
function tcp_listen($address, $port) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2047 |
{ |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
2048 |
// does PHP support this? |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
2049 |
if ( !function_exists('stream_socket_server') ) |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
2050 |
{ |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
2051 |
burnout('System does not support stream functions. Please rebuild your PHP or install an appropriate extension.'); |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
2052 |
} |
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
2053 |
|
57 | 2054 |
if ( strstr($address, ':') ) |
2055 |
{ |
|
2056 |
// ipv6 address (probably) |
|
2057 |
$address = "[$address]"; |
|
2058 |
} |
|
2059 |
||
2060 |
$sockid = count($this->sock); |
|
2061 |
||
2062 |
$this->sock[$sockid] = @stream_socket_server("tcp://$address:$port", $errno, $errstr); |
|
2063 |
if ( !$this->sock[$sockid] ) |
|
2064 |
{ |
|
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2065 |
throw new Exception("Could not create the socket: error $errno: $errstr"); |
57 | 2066 |
} |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2067 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2068 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2069 |
function destroy() |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2070 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2071 |
if ( $this->socket_initted ) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2072 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2073 |
// PHP >= 5.2.1 |
57 | 2074 |
if ( is_array($this->sock) ) |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2075 |
{ |
57 | 2076 |
foreach ( $this->sock as $sock ) |
2077 |
{ |
|
2078 |
if ( function_exists('stream_socket_shutdown') ) |
|
2079 |
{ |
|
2080 |
@stream_socket_shutdown($sock, STREAM_SHUT_RDWR); |
|
2081 |
} |
|
2082 |
while ( !@fclose($sock) ) |
|
2083 |
{ |
|
2084 |
usleep(100000); |
|
2085 |
} |
|
2086 |
} |
|
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2087 |
} |
57 | 2088 |
else |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
2089 |
{ |
57 | 2090 |
if ( function_exists('stream_socket_shutdown') ) |
2091 |
{ |
|
2092 |
@stream_socket_shutdown($this->sock, STREAM_SHUT_RDWR); |
|
2093 |
} |
|
2094 |
while ( !@fclose($this->sock) ) |
|
2095 |
{ |
|
2096 |
usleep(100000); |
|
2097 |
} |
|
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
2098 |
} |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2099 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2100 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2101 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2102 |
function accept() |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2103 |
{ |
48
d643bfb862d8
Replaced multithreading in WebServer with a full multithreading library that properly handles IPC and child management
Dan
parents:
43
diff
changeset
|
2104 |
// the goal of a custom accept() with *_select() is to tick every 200ms to allow signals. |
57 | 2105 |
foreach ( $this->sock as $sock ) |
62
1b73be5346df
Fixed a bug in get_peer_info(); accept() now fully works for multiple bound addresses
Dan
parents:
57
diff
changeset
|
2106 |
stream_set_blocking($sock, 1); |
1b73be5346df
Fixed a bug in get_peer_info(); accept() now fully works for multiple bound addresses
Dan
parents:
57
diff
changeset
|
2107 |
$timeout = 200000; |
1b73be5346df
Fixed a bug in get_peer_info(); accept() now fully works for multiple bound addresses
Dan
parents:
57
diff
changeset
|
2108 |
$r = $this->sock; |
1b73be5346df
Fixed a bug in get_peer_info(); accept() now fully works for multiple bound addresses
Dan
parents:
57
diff
changeset
|
2109 |
$selection = @stream_select($r, $w = array($sock), $e = array($sock), 0, $timeout); |
1b73be5346df
Fixed a bug in get_peer_info(); accept() now fully works for multiple bound addresses
Dan
parents:
57
diff
changeset
|
2110 |
if ( !$selection ) |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2111 |
{ |
62
1b73be5346df
Fixed a bug in get_peer_info(); accept() now fully works for multiple bound addresses
Dan
parents:
57
diff
changeset
|
2112 |
return false; |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2113 |
} |
62
1b73be5346df
Fixed a bug in get_peer_info(); accept() now fully works for multiple bound addresses
Dan
parents:
57
diff
changeset
|
2114 |
$remote = stream_socket_accept($r[0]); |
1b73be5346df
Fixed a bug in get_peer_info(); accept() now fully works for multiple bound addresses
Dan
parents:
57
diff
changeset
|
2115 |
$return = new Socket_Stream(); |
1b73be5346df
Fixed a bug in get_peer_info(); accept() now fully works for multiple bound addresses
Dan
parents:
57
diff
changeset
|
2116 |
$return->sock = $remote; |
1b73be5346df
Fixed a bug in get_peer_info(); accept() now fully works for multiple bound addresses
Dan
parents:
57
diff
changeset
|
2117 |
$return->socket_initted = true; |
1b73be5346df
Fixed a bug in get_peer_info(); accept() now fully works for multiple bound addresses
Dan
parents:
57
diff
changeset
|
2118 |
return $return; |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2119 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2120 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2121 |
function soft_shutdown() |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2122 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2123 |
fclose($this->sock); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2124 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2125 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2126 |
function set_timeout($timeout, $usec = false) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2127 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2128 |
return ( $usec ) ? @stream_set_timeout($this->sock, 0, $usec) : @stream_set_timeout($this->sock, $timeout); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2129 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2130 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2131 |
function read_normal($length = 1024) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2132 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2133 |
return @fgets($this->sock, $length); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2134 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2135 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2136 |
function read_binary($length = 1024) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2137 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2138 |
return @fread($this->sock, $length); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2139 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2140 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2141 |
function timed_out() |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2142 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2143 |
$md = @stream_get_meta_data($this->sock); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2144 |
return ( isset($md['timed_out']) ) ? $md['timed_out'] : false; |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2145 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2146 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2147 |
function get_peer_info(&$addr, &$port) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2148 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2149 |
$peer = stream_socket_get_name($this->sock, true); |
62
1b73be5346df
Fixed a bug in get_peer_info(); accept() now fully works for multiple bound addresses
Dan
parents:
57
diff
changeset
|
2150 |
$addr = substr($peer, 0, strrpos($peer, ':')); |
1b73be5346df
Fixed a bug in get_peer_info(); accept() now fully works for multiple bound addresses
Dan
parents:
57
diff
changeset
|
2151 |
$port = substr($peer, strrpos($peer, ':') + 1); |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2152 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2153 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2154 |
function write($data) |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2155 |
{ |
68
32f6e2ee15ab
WebServer: fixed longstanding non-security fwrite buffer overflow bug
Dan
parents:
67
diff
changeset
|
2156 |
$size = strlen($data); |
32f6e2ee15ab
WebServer: fixed longstanding non-security fwrite buffer overflow bug
Dan
parents:
67
diff
changeset
|
2157 |
$written = 0; |
32f6e2ee15ab
WebServer: fixed longstanding non-security fwrite buffer overflow bug
Dan
parents:
67
diff
changeset
|
2158 |
while ( $written < $size ) |
64
ee64bb096f56
A few miscellaneous fixes including modifying WebServer to write data in chunks (improved performance and reliability on a slow connection)
Dan
parents:
63
diff
changeset
|
2159 |
{ |
68
32f6e2ee15ab
WebServer: fixed longstanding non-security fwrite buffer overflow bug
Dan
parents:
67
diff
changeset
|
2160 |
$written += @fwrite($this->sock, substr($data, $written)); |
64
ee64bb096f56
A few miscellaneous fixes including modifying WebServer to write data in chunks (improved performance and reliability on a slow connection)
Dan
parents:
63
diff
changeset
|
2161 |
} |
ee64bb096f56
A few miscellaneous fixes including modifying WebServer to write data in chunks (improved performance and reliability on a slow connection)
Dan
parents:
63
diff
changeset
|
2162 |
return true; |
37
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2163 |
} |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2164 |
|
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2165 |
function is_eof() |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2166 |
{ |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2167 |
return feof($this->sock); |
65e70ada71c9
Major changes to webserver backend. All socket functions are abstracted to allow support for stream_* which seems to be both more widely supported and better at handling blocking and timeouts, at the cost of a small bit of speed. Keep-Alive times out properly and thanks to a bit of IPC code from stream_create_pair(), zombie children are mostly eliminated by proper pcntl_wait() being called when a child shuts down normally, and children die within 0.2sec if the parent receives a SIGTERM or SIGINT, even if the children are waiting on the socket.
Dan
parents:
34
diff
changeset
|
2168 |
} |
23
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
2169 |
} |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
2170 |
|
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
2171 |
/** |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
2172 |
* Exception class that allows breaking directly out of a scriptlet. |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
2173 |
*/ |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
2174 |
|
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
2175 |
class HttpExceptionFatal extends Exception |
08225c2eb0b6
Added support for multipart forms, file uploads, and fatal exceptions in PhpHttpd; fixed wrong license tag on WebServer class
Dan
parents:
21
diff
changeset
|
2176 |
{ |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2177 |
} |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2178 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2179 |
/** |
24
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
2180 |
* Exception class that will be treated as a scriptlet ending with success. |
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
2181 |
*/ |
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
2182 |
|
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
2183 |
class HttpSuccess extends Exception |
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
2184 |
{ |
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
2185 |
} |
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
2186 |
|
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
2187 |
/** |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2188 |
* Array of known HTTP status/error codes |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2189 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2190 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2191 |
$http_responses = array( |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2192 |
200 => 'OK', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2193 |
302 => 'Found', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2194 |
307 => 'Temporary Redirect', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2195 |
400 => 'Bad Request', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2196 |
401 => 'Unauthorized', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2197 |
403 => 'Forbidden', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2198 |
404 => 'Not Found', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2199 |
405 => 'Method Not Allowed', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2200 |
406 => 'Not Acceptable', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2201 |
500 => 'Internal Server Error', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2202 |
501 => 'Not Implemented' |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2203 |
); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2204 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2205 |
/** |
24
d275dc8f4203
Added HttpSuccess exception which can be thrown when a scriptlet is done executing normally
Dan
parents:
23
diff
changeset
|
2206 |
* Array of default extension->mimetype mappings |
0
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2207 |
*/ |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2208 |
|
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2209 |
$mime_types = array( |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2210 |
'html' => 'text/html', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2211 |
'htm' => 'text/html', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2212 |
'png' => 'image/png', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2213 |
'gif' => 'image/gif', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2214 |
'jpeg' => 'image/jpeg', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2215 |
'jpg' => 'image/jpeg', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2216 |
'js' => 'text/javascript', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2217 |
'json' => 'text/x-javascript-json', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2218 |
'css' => 'text/css', |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2219 |
'php' => 'application/x-httpd-php' |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2220 |
); |
c63de9eb7045
First commit. Basic things are working and implemented (webserver, templating, DCOP interface)
Dan
parents:
diff
changeset
|
2221 |