Update: I solved the decoding problem, thanks to pimvdb

Follows the solution (in PHP):

$len = $masks = $data = $decoded = null;

$len = ord ($buffer[1]) & 127;

if ($len === 126) {
  $masks = substr ($buffer, 4, 4);
  $data = substr ($buffer, 8);
}
else if ($len === 127) {
  $masks = substr ($buffer, 10, 4);
  $data = substr ($buffer, 14);
}
else {
  $masks = substr ($buffer, 2, 4);
  $data = substr ($buffer, 6);
}

for ($index = 0; $index < strlen ($data); $index++) {
  $decoded .= $data[$index] ^ $masks[$index % 4];
}

* Begin of the original topic *

I'm trying to develop HTML5 WebSocket for a personal application, using hybi-17 handshake.

I'm started with phpwebsocket and the only thing I changed is the handshake function, from the original to this:

function dohandshake($user,$buffer){
  $key = null;

  console("\nRequesting handshake...");
  console($buffer);
  console("Handshaking...");

  preg_match ("#Sec-WebSocket-Key: (.*?)\r\n#", $buffer, $match) && $key = $match[1];

  $key .= "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
  $key = sha1 ($key);
  $key = pack ('H*', $key);
  $key = base64_encode ($key);

  $upgrade = 
    "HTTP/1.1 101 Switching Protocols\r\n" .
    "Upgrade: websocket\r\n" .
    "Connection: Upgrade\r\n" .
    "Sec-WebSocket-Accept: {$key}\r\n\r\n";

  socket_write($user->socket,$upgrade.chr(0),strlen($upgrade.chr(0)));
  $user->handshake=true;
  console($upgrade);
  console("Done handshaking...");
  return true;
}

I used phpwebsocket source code, both for the client (http://code.google.com/p/phpwebsocket/source/browse/trunk/+phpwebsocket/client.html) and the server (http://code.google.com/p/phpwebsocket/source/browse/trunk/+phpwebsocket/server.php).

At this point, I tested the application. Follows the server debug:

Server Started : 2011-10-30 13:45:41
Master socket  : Resource id #4
Listening on   : localhost port 12345

Resource id #5 CONNECTED!

Requesting handshake...
GET /phpwebsocket/server.php HTTP/1.1
Upgrade: websocket
Connection: Upgrade
Host: localhost:12345
Sec-WebSocket-Origin: http://localhost
Sec-WebSocket-Key: +S/J2jcp/UKIS1HTW0n1/w==
Sec-WebSocket-Version: 8


Handshaking...
HTTP/1.1 101 Switching Protocols
Upgrade: websocket
Connection: Upgrade
Sec-WebSocket-Accept: LEULWidwXDxY02iv3O+xksrxFz4=


Done handshaking...
< ��z�}p
> ��z�}p not understood
Resource id #5 DISCONNECTED!  

And this is the client debug:

WebSocket - status 0
Welcome - status 1
Sent: hello
Disconnected - status 3

What I did was simply connect the client and send the command 'Hello'. As you can see, server received encoded data and not plaintext: why?

I'm looking for someone who helps me to develop html5 websocket with hybi-17.

Cyaz

PS: this (http://stackoverflow.com/questions/7908306/implementing-handshake-for-hybi-17) topic and this one (http://stackoverflow.com/questions/7912772/decoding-network-chars-html5-websocket) might help.

PPS: I tested on Chromium 15.0.874.106~r107270-0ubuntu0.11.04.1

link|improve this question

1  
You need to decode the messages you obtain; hybi includes a relatively complex framing mechanism (compared to the hixie draft). You can't "just" read the incoming bytes. I posted some decoding algorithm previously at stackoverflow.com/questions/7040078/…. – pimvdb Oct 30 '11 at 13:15
Thank you pimvdb! I did it! Now you can view the solution at the top of the original topic ;) Cyaz – Wilk Nov 1 '11 at 15:01
Sorry pimvdb but I have some problem with the payload length. Well, I always got '0' when I try to get the length with $msg[1] & 127 (or 0x7F). In my particular case, the buffer isn't an array but a string: so the code would be substr($msg, 1, 1) & 127. It doesn't work anyway. Why? Why I can't get the payload length following your istruction? Any ideas? – Wilk Nov 4 '11 at 16:04
I've almost no knowledge of PHP, but if you're using a string of characters, then the underlying character codes represent the values. You of course cannot do character & 127; it only works with numbers. You'd better build an array where each element corresponds with the character code in the string. – pimvdb Nov 4 '11 at 16:36
Like: codepad.org/EiubBUSl. – pimvdb Nov 4 '11 at 16:42
show 2 more comments
feedback

1 Answer

up vote 0 down vote accepted

Decode solution (thanks to @pimvdb):

$len = $masks = $data = $decoded = null;

$len = ord ($buffer[1]) & 127;

if ($len === 126) {
  $masks = substr ($buffer, 4, 4);
  $data = substr ($buffer, 8);
}
else if ($len === 127) {
  $masks = substr ($buffer, 10, 4);
  $data = substr ($buffer, 14);
}
else {
  $masks = substr ($buffer, 2, 4);
  $data = substr ($buffer, 6);
}

for ($index = 0; $index < strlen ($data); $index++) {
  $decoded .= $data[$index] ^ $masks[$index % 4];
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.