3 * sac-a-push - Obj/transports.phh
5 * Copyright (C) 2012 Matteo Nastasi
6 * mailto: nastasi@alternativeoutput.it
7 * matteo.nastasi@milug.org
8 * web: http://www.alternativeoutput.it
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details. You should have received a
19 * copy of the GNU General Public License along with this program; if
20 * not, write to the Free Software Foundation, Inc, 59 Temple Place -
21 * Suite 330, Boston, MA 02111-1307, USA.
27 * Values: Y: works, N: not works, @: continuous download,
28 * D: continuous download after first reload
32 * Iframe| IW | FF | Ch | Op | Ko | IE
33 * ------+----+----+----+----+----+----
34 * Lnx | D | | @ | | @ | x
35 * Win | x | D | @ | @ | | D
39 * WS | IW | FF | Ch | Op | Ko | IE
40 * ------+----+----+----+----+----+----
46 * XHR | IW | FF | Ch | Op | Ko | IE
47 * ------+----+----+----+----+----+----
48 * Lnx | Y | | ^D | | Y | x
49 * Win | x | Y | Y | | | N
53 * HtmlFl| IW | FF | Ch | Op | Ko | IE
54 * ------+----+----+----+----+----+----
56 * Win | x | N | N | | | Y* (* seems delay between click and load of a new page)
62 class Transport_template {
64 function Transport_template() {
67 // return string value is appended to the content of the returned page
68 // return FALSE if fails
69 // check with '===' operator to disambiguation between "" and FALSE return value
70 function init($enc, $header, &$header_out, $init_string, $base, $step)
78 function chunk($step, $cont)
86 // return string to add to the stream to perform something to the engine
87 static function fini($init_string, $base, $blockerr)
93 class Transport_websocket {
94 protected $magicGUID = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
96 function Transport_websocket() {
97 $this->headerOriginRequired = false;
98 $this->headerSecWebSocketProtocolRequired = false;
99 $this->headerSecWebSocketExtensionsRequired = false;
101 $this->sendingContinuous = false;
102 $this->sendingContinuous = false;
103 $this->partialMessage = "";
105 $this->hasSentClose = false;
108 protected function extractHeaders($message) {
109 $header = array('fin' => $message[0] & chr(128),
110 'rsv1' => $message[0] & chr(64),
111 'rsv2' => $message[0] & chr(32),
112 'rsv3' => $message[0] & chr(16),
113 'opcode' => ord($message[0]) & 15,
114 'hasmask' => $message[1] & chr(128),
117 $header['length'] = (ord($message[1]) >= 128) ? ord($message[1]) - 128 : ord($message[1]);
119 if ($header['length'] == 126) {
120 if ($header['hasmask']) {
121 $header['mask'] = $message[4] . $message[5] . $message[6] . $message[7];
123 $header['length'] = ord($message[2]) * 256
125 } elseif ($header['length'] == 127) {
126 if ($header['hasmask']) {
127 $header['mask'] = $message[10] . $message[11] . $message[12] . $message[13];
129 $header['length'] = ord($message[2]) * 65536 * 65536 * 65536 * 256
130 + ord($message[3]) * 65536 * 65536 * 65536
131 + ord($message[4]) * 65536 * 65536 * 256
132 + ord($message[5]) * 65536 * 65536
133 + ord($message[6]) * 65536 * 256
134 + ord($message[7]) * 65536
135 + ord($message[8]) * 256
137 } elseif ($header['hasmask']) {
138 $header['mask'] = $message[2] . $message[3] . $message[4] . $message[5];
140 //echo $this->strtohex($message);
141 //$this->printHeaders($header);
145 protected function extractPayload($message,$headers) {
147 if ($headers['hasmask']) {
150 if ($headers['length'] > 65535) {
152 } elseif ($headers['length'] > 125) {
155 return substr($message,$offset);
158 protected function applyMask($headers,$payload) {
160 if ($headers['hasmask']) {
161 $mask = $headers['mask'];
166 while (mb_strlen($effectiveMask, "ASCII") < mb_strlen($payload, "ASCII")) {
167 $effectiveMask .= $mask;
169 while (mb_strlen($effectiveMask, "ASCII") > mb_strlen($payload, "ASCII")) {
170 $effectiveMask = substr($effectiveMask,0,-1);
172 return $effectiveMask ^ $payload;
175 protected function checkRSVBits($headers,$user) { // override this method if you are using an extension where the RSV bits are used.
176 if (ord($headers['rsv1']) + ord($headers['rsv2']) + ord($headers['rsv3']) > 0) {
177 //$this->disconnect($user); // todo: fail connection
183 protected function strtohex($str) {
185 for ($i = 0; $i < mb_strlen($str, "ASCII"); $i++) {
186 $strout .= (ord($str[$i])<16) ? "0" . dechex(ord($str[$i])) : dechex(ord($str[$i]));
201 return $strout . "\n";
204 function chunk($step, $cont)
206 // fprintf(STDERR, "CHUNK: [%s]\n", $cont);
207 return $this->frame('@BEGIN@'.$cont.'@END@'); // , 'text', TRUE);
210 protected function frame($message, $messageType='text', $messageContinues=false) {
211 switch ($messageType) {
216 $b1 = ($this->sendingContinuous) ? 0 : 1;
219 $b1 = ($this->sendingContinuous) ? 0 : 2;
231 if ($messageContinues) {
232 $this->sendingContinuous = true;
235 $this->sendingContinuous = false;
238 $length = mb_strlen($message, "ASCII");
242 } elseif ($length <= 65536) {
244 $hexLength = dechex($length);
245 //$this->stdout("Hex Length: $hexLength");
246 if (mb_strlen($hexLength, "ASCII")%2 == 1) {
247 $hexLength = '0' . $hexLength;
249 $n = mb_strlen($hexLength, "ASCII") - 2;
251 for ($i = $n; $i >= 0; $i=$i-2) {
252 $lengthField = chr(hexdec(substr($hexLength, $i, 2))) . $lengthField;
254 while (mb_strlen($lengthField, "ASCII") < 2) {
255 $lengthField = chr(0) . $lengthField;
259 $hexLength = dechex($length);
260 if (mb_strlen($hexLength, "ASCII")%2 == 1) {
261 $hexLength = '0' . $hexLength;
263 $n = mb_strlen($hexLength, "ASCII") - 2;
265 for ($i = $n; $i >= 0; $i=$i-2) {
266 $lengthField = chr(hexdec(substr($hexLength, $i, 2))) . $lengthField;
268 while (mb_strlen($lengthField, "ASCII") < 8) {
269 $lengthField = chr(0) . $lengthField;
273 return chr($b1) . chr($b2) . $lengthField . $message;
276 protected function deframe($message) {
277 //echo $this->strtohex($message);
278 $headers = $this->extractHeaders($message);
281 switch($headers['opcode']) {
287 // todo: close the connection
288 $this->hasSentClose = true;
295 //$this->disconnect($user); // todo: fail connection
300 if ($this->handlingPartialPacket) {
301 $message = $this->partialBuffer . $message;
302 $this->handlingPartialPacket = false;
303 return $this->deframe($message);
306 if ($this->checkRSVBits($headers,$this)) {
311 // todo: fail the connection
315 $payload = $this->partialMessage . $this->extractPayload($message,$headers);
318 $reply = $this->frame($payload,$this,'pong');
319 // TODO FIXME ALL socket_write management
320 socket_write($user->socket,$reply,mb_strlen($reply, "ASCII"));
323 if (extension_loaded('mbstring')) {
324 if ($headers['length'] > mb_strlen($payload, "ASCII")) {
325 $this->handlingPartialPacket = true;
326 $this->partialBuffer = $message;
330 if ($headers['length'] > mb_strlen($payload, "ASCII")) {
331 $this->handlingPartialPacket = true;
332 $this->partialBuffer = $message;
337 $payload = $this->applyMask($headers,$payload);
339 if ($headers['fin']) {
340 $this->partialMessage = "";
343 $this->partialMessage = $payload;
348 protected function checkHost($hostName) {
349 return true; // Override and return false if the host is not one that you would expect.
350 // Ex: You only want to accept hosts from the my-domain.com domain,
351 // but you receive a host from malicious-site.com instead.
354 protected function checkOrigin($origin) {
355 return true; // Override and return false if the origin is not one that you would expect.
358 protected function checkWebsocProtocol($protocol) {
359 return true; // Override and return false if a protocol is not found that you would expect.
362 protected function checkWebsocExtensions($extensions) {
363 return true; // Override and return false if an extension is not found that you would expect.
366 protected function processProtocol($protocol) {
367 return ""; // return either "Sec-WebSocket-Protocol: SelectedProtocolFromClientList\r\n" or return an empty string.
368 // The carriage return/newline combo must appear at the end of a non-empty string, and must not
369 // appear at the beginning of the string nor in an otherwise empty string, or it will be considered part of
370 // the response body, which will trigger an error in the client as it will not be formatted correctly.
373 protected function processExtensions($extensions) {
374 return ""; // return either "Sec-WebSocket-Extensions: SelectedExtensions\r\n" or return an empty string.
377 function init($enc, $headers, &$headers_out, $init_string, $base, $step)
379 if (0) { // TODO: what is ?
380 if (isset($headers['get'])) {
381 $this->requestedResource = $headers['get'];
383 // todo: fail the connection
384 $headers_out['HTTP-Response'] = "405 Method Not Allowed";
388 if (!isset($headers['Host']) || !$this->checkHost($headers['Host'])) {
389 $headers_out['HTTP-Response'] = "400 Bad Request";
391 if (!isset($headers['Upgrade']) || strtolower($headers['Upgrade']) != 'websocket') {
392 $headers_out['HTTP-Response'] = "400 Bad Request";
394 if (!isset($headers['Connection']) || strpos(strtolower($headers['Connection']), 'upgrade') === FALSE) {
395 $headers_out['HTTP-Response'] = "400 Bad Request";
397 if (!isset($headers['Sec-Websocket-Key'])) {
398 $headers_out['HTTP-Response'] = "400 Bad Request";
402 if (!isset($headers['Sec-Websocket-Version']) || strtolower($headers['Sec-Websocket-Version']) != 13) {
403 $headers_out['HTTP-Response'] = "426 Upgrade Required";
404 $headers_out['Sec-WebSocketVersion'] = "13";
406 if ( ($this->headerOriginRequired && !isset($headers['Origin']) )
407 || ($this->headerOriginRequired && !$this->checkOrigin($headers['Origin'])) ) {
408 $headers_out['HTTP-Response'] = "403 Forbidden";
410 if ( ($this->headerSecWebSocketProtocolRequired && !isset($headers['Sec-Websocket-Protocol']))
411 || ($this->headerSecWebSocketProtocolRequired &&
412 !$this->checkWebsocProtocol($headers['Sec-Websocket-Protocol']))) {
413 $headers_out['HTTP-Response'] = "400 Bad Request";
415 if ( ($this->headerSecWebSocketExtensionsRequired && !isset($headers['Sec-Websocket-Extensions']))
416 || ($this->headerSecWebSocketExtensionsRequired &&
417 !$this->checkWebsocExtensions($headers['Sec-Websocket-Extensions'])) ) {
418 $headers_out['HTTP-Response'] = "400 Bad Request";
421 if (isset($headers_out['HTTP-Response'])) {
422 // TODO: check return management
426 // TODO: verify both variables
427 // here there is a change of the socket status from start to handshaked
428 // th headers are saved too but without any further access so we skip it
432 $inno = 'x3JJHMbDL1EzLkh9GBhXDw==';
433 $outo = sha1($inno . $this->magicGUID);
435 for ($i = 0; $i < 20; $i++) {
436 $rawToken .= chr(hexdec(substr($outo,$i*2, 2)));
439 $outo = base64_encode($rawToken);
441 $webSocketKeyHash = sha1($headers['Sec-Websocket-Key'] . $this->magicGUID);
443 for ($i = 0; $i < 20; $i++) {
444 $rawToken .= chr(hexdec(substr($webSocketKeyHash,$i*2, 2)));
446 $handshakeToken = base64_encode($rawToken);
447 $subProtocol = (isset($headers['Sec-Websocket-Protocol'])) ?
448 $this->processProtocol($headers['Sec-Websocket-Protocol']) : "";
449 $extensions = (isset($headers['Sec-Websocket-Extensions'])) ?
450 $this->processExtensions($headers['Sec-Websocket-Extensions']) : "";
452 $headers_out['HTTP-Response'] = "101 Switching Protocols";
453 $headers_out['Upgrade'] = 'websocket';
454 $headers_out['Connection'] = 'Upgrade';
455 $headers_out['Sec-WebSocket-Accept'] = "$handshakeToken$subProtocol$extensions";
460 static function close()
462 return(chr(0x88).chr(0x02).chr(0xe8).chr(0x03));
465 static function fini($init_string, $base, $blockerr)
467 return (sprintf('@BEGIN@ %s window.onbeforeunload = null; window.onunload = null; document.location.assign("%sindex.php"); @END@', ($blockerr ? 'xstm.stop(); ' : ''), $base).self::close());
470 function is_chunked()
477 class Transport_xhr {
479 function Transport_xhr() {
482 function init($enc, $header, &$header_out, $init_string, $base, $step)
484 $ret = sprintf("@BEGIN@ /* %s */ @END@", $init_string);
486 $header_out['Content-Encoding'] = $enc;
487 $header_out['Cache-Control'] = 'no-cache, must-revalidate'; // HTTP/1.1
488 $header_out['Expires'] = 'Mon, 26 Jul 1997 05:00:00 GMT'; // Date in the past
489 $header_out['Content-type'] = 'application/xml; charset="utf-8"';
499 static function fini($init_string, $base, $blockerr)
501 return (sprintf('@BEGIN@ %s window.onbeforeunload = null; window.onunload = null; document.location.assign("%sindex.php"); @END@', ($blockerr ? 'xstm.stop(); ' : ''), $base));
505 function chunk($step, $cont)
507 // fprintf(STDERR, "CHUNK: [%s]\n", $cont);
508 return ("@BEGIN@".$cont."@END@");
511 function is_chunked()
517 class Transport_iframe {
519 function Transport_iframe() {
522 function init($enc, $header, &$header_out, $init_string, $base, $step)
527 $header_out['Content-Encoding'] = $enc;
528 $header_out['Cache-Control'] = 'no-cache, must-revalidate'; // HTTP/1.1
529 $header_out['Expires'] = 'Mon, 26 Jul 1997 05:00:00 GMT'; // Date in the past
530 $header_out['Content-type'] = 'text/html; charset="utf-8"';
532 $ret .= sprintf("<html>
534 <script type=\"text/javascript\" src=\"%scommons.js\"></script>
535 <script type=\"text/javascript\" src=\"%sxynt-streaming-ifra.js\"></script>
536 <script type=\"text/javascript\">
537 var xynt_streaming = \"ready\";", $base, $base);
539 $ret .= sprintf("last_clean = %d;\n", ($step-1));
541 window.onload = function () { try { if (xynt_streaming != \"ready\") { xynt_streaming.transp.stopped = true; } } catch(e) { /* console.log(\"catcha\"); */ } };
545 $ret .= sprintf("<!-- \n%s -->\n", $init_string);
555 static function fini($init_string, $base, $blockerr)
558 $ret .= sprintf("<html>
560 <script type=\"text/javascript\" src=\"%scommons.js\"></script>
561 <script type=\"text/javascript\" src=\"%sxynt-streaming-ifra.js\"></script>
562 <script type=\"text/javascript\">
563 var xynt_streaming = \"ready\";", $base, $base);
565 window.onload = function () { try { if (xynt_streaming != \"ready\") { xynt_streaming.reload(); } } catch(e) { /* console.log(\"catcha\"); */ } };
569 $ret .= sprintf("<!-- \n%s -->\n", $init_string);
570 $ret .= sprintf("<script id='hs%d' type='text/javascript'><!--
573 </script>", 0, escpush($blockerr) );
577 function chunk($step, $cont)
579 // fprintf(STDERR, "CHUNK: [%s]\n", $cont);
581 return sprintf("<script id='hs%d' type='text/javascript'><!--
582 push(null);\n// -->\n</script>", $step);
585 return sprintf("<script id='hs%d' type='text/javascript'><!--
586 push(\"%s\");\n// -->\n</script>", $step, escpush($cont) );
590 function is_chunked()
596 class Transport_htmlfile extends Transport_iframe {
604 static function create($transp)
606 if ($transp == 'websocket') {
607 return new Transport_websocket();
609 else if ($transp == 'xhr') {
610 return new Transport_xhr();
612 else if ($transp == 'htmlfile') {
613 return new Transport_htmlfile();
616 return new Transport_iframe();
619 static function gettype($transp)
621 if ($transp == 'websocket' || $transp == 'xhr' || $transp == 'htmlfile') {
622 return "Transport_".$transp;
625 return 'Transport_iframe';